From c6a1b87d0b5251be8cddbd8a77c3ec477293bb59 Mon Sep 17 00:00:00 2001 From: HerringtonDarkholme <2883231+HerringtonDarkholme@users.noreply.github.com> Date: Tue, 29 Apr 2025 01:17:45 -0400 Subject: [PATCH] fix: fix parse error on import() type + type arguments fix #322 --- common/define-grammar.js | 2 + test/corpus/types.txt | 20 + tsx/src/grammar.json | 15 + tsx/src/node-types.json | 10 + tsx/src/parser.c | 321716 ++++++++++++++--------------- typescript/src/grammar.json | 15 + typescript/src/node-types.json | 10 + typescript/src/parser.c | 329233 +++++++++++++++--------------- 8 files changed, 326835 insertions(+), 324186 deletions(-) diff --git a/common/define-grammar.js b/common/define-grammar.js index efb0b76a..a3a41c09 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -78,6 +78,7 @@ module.exports = function defineGrammar(dialect) { // This appears to be necessary to parse a parenthesized class expression [$.class], + [$._type_query_member_expression_in_type_annotation], [$.nested_identifier, $.nested_type_identifier, $.primary_expression], [$.nested_identifier, $.nested_type_identifier], @@ -702,6 +703,7 @@ module.exports = function defineGrammar(dialect) { $.private_property_identifier, alias($.identifier, $.property_identifier), )), + optional($.type_arguments), ), _type_query_call_expression_in_type_annotation: $ => seq( field('function', choice( diff --git a/test/corpus/types.txt b/test/corpus/types.txt index fb586d80..aa177253 100644 --- a/test/corpus/types.txt +++ b/test/corpus/types.txt @@ -2214,3 +2214,23 @@ import something from 'foo.css' assert { type: 'css' } (property_identifier) (string (string_fragment))))))) + +========================= +Import in type +========================= + +type Foo = import('foo').Foo; + +--- + (program + (type_alias_declaration + (type_identifier) + (member_expression + (call_expression + (import) + (arguments + (string + (string_fragment)))) + (property_identifier) + (type_arguments + (type_identifier))))) diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index 794ae1e5..a159bb29 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -8985,6 +8985,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -11184,6 +11196,9 @@ [ "class" ], + [ + "_type_query_member_expression_in_type_annotation" + ], [ "nested_identifier", "nested_type_identifier", diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index 34251f88..c833db13 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -3642,6 +3642,16 @@ } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] } }, { diff --git a/tsx/src/parser.c b/tsx/src/parser.c index faa8aa40..d0356ffc 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -5,8 +5,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5986 -#define LARGE_STATE_COUNT 1167 +#define STATE_COUNT 6016 +#define LARGE_STATE_COUNT 1169 #define SYMBOL_COUNT 393 #define ALIAS_COUNT 7 #define TOKEN_COUNT 172 @@ -4659,24 +4659,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 15, [16] = 16, [17] = 17, - [18] = 16, - [19] = 16, - [20] = 17, - [21] = 16, + [18] = 18, + [19] = 17, + [20] = 14, + [21] = 14, [22] = 17, - [23] = 17, - [24] = 16, + [23] = 14, + [24] = 17, [25] = 17, - [26] = 16, + [26] = 14, [27] = 17, - [28] = 17, - [29] = 16, - [30] = 30, + [28] = 14, + [29] = 14, + [30] = 17, [31] = 31, [32] = 32, [33] = 33, [34] = 34, - [35] = 35, + [35] = 32, [36] = 36, [37] = 37, [38] = 38, @@ -4685,49 +4685,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 31, + [44] = 44, [45] = 45, - [46] = 32, - [47] = 39, - [48] = 48, - [49] = 49, - [50] = 50, - [51] = 34, - [52] = 33, - [53] = 35, - [54] = 36, + [46] = 45, + [47] = 33, + [48] = 32, + [49] = 36, + [50] = 44, + [51] = 51, + [52] = 52, + [53] = 34, + [54] = 37, [55] = 38, - [56] = 40, - [57] = 41, - [58] = 42, - [59] = 43, - [60] = 45, - [61] = 32, - [62] = 35, - [63] = 48, - [64] = 35, - [65] = 49, - [66] = 50, - [67] = 49, - [68] = 35, - [69] = 35, - [70] = 35, - [71] = 35, - [72] = 35, - [73] = 39, - [74] = 48, - [75] = 50, - [76] = 34, - [77] = 33, - [78] = 36, - [79] = 38, - [80] = 40, - [81] = 41, - [82] = 42, - [83] = 43, - [84] = 31, - [85] = 45, - [86] = 35, + [56] = 39, + [57] = 40, + [58] = 41, + [59] = 42, + [60] = 43, + [61] = 51, + [62] = 52, + [63] = 52, + [64] = 64, + [65] = 31, + [66] = 52, + [67] = 52, + [68] = 52, + [69] = 52, + [70] = 52, + [71] = 52, + [72] = 45, + [73] = 33, + [74] = 36, + [75] = 44, + [76] = 51, + [77] = 31, + [78] = 34, + [79] = 37, + [80] = 38, + [81] = 39, + [82] = 40, + [83] = 41, + [84] = 42, + [85] = 43, + [86] = 52, [87] = 87, [88] = 87, [89] = 87, @@ -4736,84 +4736,84 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [92] = 92, [93] = 93, [94] = 94, - [95] = 91, + [95] = 95, [96] = 96, - [97] = 97, + [97] = 92, [98] = 98, - [99] = 91, - [100] = 97, + [99] = 92, + [100] = 94, [101] = 101, - [102] = 101, + [102] = 102, [103] = 103, [104] = 101, [105] = 101, - [106] = 101, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 109, - [111] = 103, - [112] = 112, - [113] = 113, - [114] = 108, - [115] = 113, - [116] = 103, - [117] = 103, - [118] = 108, - [119] = 113, - [120] = 103, - [121] = 103, - [122] = 112, + [106] = 106, + [107] = 102, + [108] = 101, + [109] = 101, + [110] = 110, + [111] = 106, + [112] = 110, + [113] = 106, + [114] = 106, + [115] = 106, + [116] = 116, + [117] = 117, + [118] = 116, + [119] = 117, + [120] = 106, + [121] = 116, + [122] = 110, [123] = 123, - [124] = 124, - [125] = 107, + [124] = 103, + [125] = 125, [126] = 126, - [127] = 127, - [128] = 103, - [129] = 103, - [130] = 130, - [131] = 108, - [132] = 109, - [133] = 112, - [134] = 108, - [135] = 112, - [136] = 103, - [137] = 103, - [138] = 108, - [139] = 103, - [140] = 103, - [141] = 123, - [142] = 108, - [143] = 108, - [144] = 103, - [145] = 103, - [146] = 124, - [147] = 103, - [148] = 103, + [127] = 106, + [128] = 106, + [129] = 110, + [130] = 117, + [131] = 106, + [132] = 132, + [133] = 106, + [134] = 110, + [135] = 135, + [136] = 110, + [137] = 102, + [138] = 117, + [139] = 106, + [140] = 106, + [141] = 106, + [142] = 106, + [143] = 106, + [144] = 106, + [145] = 110, + [146] = 126, + [147] = 110, + [148] = 123, [149] = 149, - [150] = 149, + [150] = 106, [151] = 149, - [152] = 149, - [153] = 103, + [152] = 110, + [153] = 149, [154] = 149, [155] = 149, [156] = 149, - [157] = 149, - [158] = 108, - [159] = 159, + [157] = 157, + [158] = 149, + [159] = 149, [160] = 149, [161] = 161, [162] = 162, - [163] = 162, - [164] = 162, - [165] = 165, - [166] = 166, - [167] = 162, - [168] = 162, - [169] = 162, - [170] = 162, - [171] = 162, - [172] = 162, + [163] = 163, + [164] = 163, + [165] = 163, + [166] = 163, + [167] = 167, + [168] = 163, + [169] = 163, + [170] = 163, + [171] = 163, + [172] = 163, [173] = 173, [174] = 173, [175] = 173, @@ -4827,21 +4827,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [183] = 182, [184] = 182, [185] = 185, - [186] = 186, + [186] = 185, [187] = 187, - [188] = 188, - [189] = 187, - [190] = 188, - [191] = 188, - [192] = 188, - [193] = 187, - [194] = 187, - [195] = 182, - [196] = 185, - [197] = 182, + [188] = 187, + [189] = 185, + [190] = 190, + [191] = 187, + [192] = 187, + [193] = 193, + [194] = 185, + [195] = 190, + [196] = 182, + [197] = 190, [198] = 182, - [199] = 185, - [200] = 186, + [199] = 182, + [200] = 193, [201] = 182, [202] = 182, [203] = 182, @@ -4849,13 +4849,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 204, [206] = 206, [207] = 207, - [208] = 208, - [209] = 207, - [210] = 206, - [211] = 208, - [212] = 208, - [213] = 206, - [214] = 207, + [208] = 207, + [209] = 206, + [210] = 210, + [211] = 210, + [212] = 210, + [213] = 207, + [214] = 206, [215] = 215, [216] = 216, [217] = 217, @@ -4864,11 +4864,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [220] = 220, [221] = 215, [222] = 215, - [223] = 223, - [224] = 215, + [223] = 215, + [224] = 224, [225] = 215, - [226] = 226, - [227] = 215, + [226] = 215, + [227] = 227, [228] = 228, [229] = 229, [230] = 230, @@ -4886,7 +4886,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [242] = 242, [243] = 243, [244] = 244, - [245] = 245, + [245] = 227, [246] = 246, [247] = 247, [248] = 248, @@ -4895,157 +4895,157 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [251] = 251, [252] = 252, [253] = 253, - [254] = 226, + [254] = 254, [255] = 255, - [256] = 255, + [256] = 256, [257] = 255, [258] = 258, [259] = 259, - [260] = 259, - [261] = 226, - [262] = 262, - [263] = 262, - [264] = 264, + [260] = 227, + [261] = 256, + [262] = 259, + [263] = 263, + [264] = 259, [265] = 265, [266] = 266, [267] = 266, - [268] = 268, - [269] = 269, - [270] = 226, + [268] = 227, + [269] = 266, + [270] = 270, [271] = 266, - [272] = 226, - [273] = 226, - [274] = 269, - [275] = 275, - [276] = 226, - [277] = 226, - [278] = 266, - [279] = 226, - [280] = 266, - [281] = 226, - [282] = 266, - [283] = 266, - [284] = 284, - [285] = 268, + [272] = 227, + [273] = 227, + [274] = 266, + [275] = 227, + [276] = 227, + [277] = 270, + [278] = 278, + [279] = 227, + [280] = 280, + [281] = 266, + [282] = 282, + [283] = 227, + [284] = 282, + [285] = 266, [286] = 286, - [287] = 286, - [288] = 286, - [289] = 286, + [287] = 287, + [288] = 287, + [289] = 287, [290] = 290, [291] = 291, - [292] = 286, - [293] = 286, - [294] = 286, - [295] = 286, - [296] = 286, - [297] = 291, - [298] = 286, - [299] = 286, - [300] = 300, - [301] = 286, - [302] = 286, - [303] = 303, - [304] = 304, - [305] = 286, + [292] = 292, + [293] = 287, + [294] = 287, + [295] = 291, + [296] = 287, + [297] = 287, + [298] = 287, + [299] = 287, + [300] = 287, + [301] = 287, + [302] = 302, + [303] = 287, + [304] = 287, + [305] = 287, [306] = 306, [307] = 307, [308] = 308, - [309] = 306, - [310] = 310, - [311] = 311, + [309] = 309, + [310] = 308, + [311] = 306, [312] = 312, - [313] = 311, + [313] = 308, [314] = 314, [315] = 306, - [316] = 311, + [316] = 316, [317] = 317, [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 318, - [323] = 319, - [324] = 317, - [325] = 320, - [326] = 318, - [327] = 319, - [328] = 317, - [329] = 320, + [319] = 317, + [320] = 317, + [321] = 318, + [322] = 322, + [323] = 323, + [324] = 322, + [325] = 318, + [326] = 322, + [327] = 323, + [328] = 328, + [329] = 323, [330] = 330, [331] = 331, - [332] = 332, - [333] = 330, + [332] = 330, + [333] = 333, [334] = 334, - [335] = 335, - [336] = 336, + [335] = 330, + [336] = 334, [337] = 337, - [338] = 338, + [338] = 333, [339] = 339, - [340] = 330, - [341] = 332, + [340] = 340, + [341] = 337, [342] = 342, - [343] = 343, - [344] = 331, - [345] = 330, + [343] = 333, + [344] = 339, + [345] = 340, [346] = 346, [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 343, + [348] = 330, + [349] = 330, + [350] = 333, + [351] = 351, [352] = 352, - [353] = 330, - [354] = 342, - [355] = 331, - [356] = 346, - [357] = 347, - [358] = 348, - [359] = 342, - [360] = 330, - [361] = 342, - [362] = 331, - [363] = 346, - [364] = 347, - [365] = 348, - [366] = 342, - [367] = 331, - [368] = 346, - [369] = 347, - [370] = 370, - [371] = 331, - [372] = 330, - [373] = 342, - [374] = 331, - [375] = 346, - [376] = 347, - [377] = 348, - [378] = 378, - [379] = 346, - [380] = 347, - [381] = 348, - [382] = 330, - [383] = 342, - [384] = 331, - [385] = 346, - [386] = 347, - [387] = 348, - [388] = 346, - [389] = 347, - [390] = 348, - [391] = 330, - [392] = 342, - [393] = 331, - [394] = 346, - [395] = 347, - [396] = 348, - [397] = 350, - [398] = 398, - [399] = 342, - [400] = 400, - [401] = 401, - [402] = 402, + [353] = 353, + [354] = 330, + [355] = 334, + [356] = 334, + [357] = 337, + [358] = 330, + [359] = 334, + [360] = 360, + [361] = 337, + [362] = 333, + [363] = 339, + [364] = 340, + [365] = 333, + [366] = 366, + [367] = 339, + [368] = 340, + [369] = 369, + [370] = 334, + [371] = 371, + [372] = 337, + [373] = 373, + [374] = 374, + [375] = 334, + [376] = 376, + [377] = 377, + [378] = 333, + [379] = 330, + [380] = 339, + [381] = 360, + [382] = 334, + [383] = 337, + [384] = 337, + [385] = 333, + [386] = 339, + [387] = 340, + [388] = 340, + [389] = 339, + [390] = 340, + [391] = 339, + [392] = 392, + [393] = 352, + [394] = 353, + [395] = 340, + [396] = 330, + [397] = 334, + [398] = 337, + [399] = 333, + [400] = 339, + [401] = 340, + [402] = 337, [403] = 403, - [404] = 348, + [404] = 404, [405] = 405, [406] = 406, [407] = 407, @@ -5053,7 +5053,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [409] = 409, [410] = 410, [411] = 411, - [412] = 409, + [412] = 412, [413] = 413, [414] = 414, [415] = 415, @@ -5066,239 +5066,239 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [422] = 422, [423] = 423, [424] = 424, - [425] = 414, + [425] = 425, [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 418, - [433] = 410, - [434] = 427, - [435] = 435, - [436] = 436, - [437] = 411, - [438] = 405, - [439] = 435, - [440] = 407, - [441] = 413, - [442] = 428, + [427] = 406, + [428] = 407, + [429] = 411, + [430] = 412, + [431] = 413, + [432] = 414, + [433] = 415, + [434] = 416, + [435] = 417, + [436] = 418, + [437] = 419, + [438] = 420, + [439] = 421, + [440] = 422, + [441] = 423, + [442] = 442, [443] = 443, - [444] = 409, - [445] = 414, - [446] = 410, - [447] = 411, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, [448] = 448, - [449] = 413, + [449] = 405, [450] = 450, - [451] = 414, - [452] = 415, - [453] = 416, - [454] = 417, - [455] = 418, - [456] = 419, - [457] = 420, - [458] = 421, - [459] = 422, - [460] = 423, - [461] = 424, - [462] = 428, - [463] = 426, - [464] = 448, - [465] = 407, - [466] = 466, - [467] = 409, - [468] = 430, - [469] = 431, - [470] = 415, - [471] = 416, - [472] = 427, - [473] = 417, - [474] = 418, - [475] = 436, - [476] = 419, - [477] = 407, - [478] = 436, - [479] = 409, - [480] = 420, - [481] = 410, - [482] = 411, - [483] = 483, - [484] = 413, - [485] = 414, - [486] = 415, - [487] = 416, - [488] = 417, - [489] = 418, - [490] = 419, - [491] = 420, - [492] = 421, - [493] = 422, - [494] = 423, + [451] = 451, + [452] = 452, + [453] = 442, + [454] = 454, + [455] = 455, + [456] = 442, + [457] = 442, + [458] = 405, + [459] = 459, + [460] = 405, + [461] = 446, + [462] = 447, + [463] = 405, + [464] = 405, + [465] = 465, + [466] = 405, + [467] = 467, + [468] = 424, + [469] = 425, + [470] = 426, + [471] = 406, + [472] = 407, + [473] = 410, + [474] = 411, + [475] = 455, + [476] = 413, + [477] = 414, + [478] = 415, + [479] = 416, + [480] = 417, + [481] = 418, + [482] = 419, + [483] = 420, + [484] = 421, + [485] = 422, + [486] = 423, + [487] = 445, + [488] = 405, + [489] = 446, + [490] = 447, + [491] = 465, + [492] = 405, + [493] = 493, + [494] = 450, [495] = 424, - [496] = 410, + [496] = 425, [497] = 426, - [498] = 411, - [499] = 499, - [500] = 413, - [501] = 430, - [502] = 431, - [503] = 421, - [504] = 422, - [505] = 427, - [506] = 405, - [507] = 423, - [508] = 436, - [509] = 424, - [510] = 405, - [511] = 435, - [512] = 450, - [513] = 426, - [514] = 428, - [515] = 450, - [516] = 414, - [517] = 409, - [518] = 410, - [519] = 411, - [520] = 413, - [521] = 413, - [522] = 414, - [523] = 415, - [524] = 416, - [525] = 417, - [526] = 418, - [527] = 419, - [528] = 420, - [529] = 421, - [530] = 422, - [531] = 423, - [532] = 424, - [533] = 415, - [534] = 426, - [535] = 416, - [536] = 417, - [537] = 418, - [538] = 430, - [539] = 431, - [540] = 540, - [541] = 417, - [542] = 427, - [543] = 419, - [544] = 436, - [545] = 420, - [546] = 405, - [547] = 435, - [548] = 421, - [549] = 428, - [550] = 450, - [551] = 422, - [552] = 423, - [553] = 409, - [554] = 410, - [555] = 411, - [556] = 424, - [557] = 413, - [558] = 414, - [559] = 415, - [560] = 416, - [561] = 417, - [562] = 418, - [563] = 419, - [564] = 420, - [565] = 421, - [566] = 422, - [567] = 423, - [568] = 424, - [569] = 427, + [498] = 406, + [499] = 407, + [500] = 411, + [501] = 413, + [502] = 414, + [503] = 415, + [504] = 416, + [505] = 417, + [506] = 418, + [507] = 419, + [508] = 420, + [509] = 421, + [510] = 422, + [511] = 423, + [512] = 446, + [513] = 447, + [514] = 454, + [515] = 405, + [516] = 516, + [517] = 517, + [518] = 450, + [519] = 454, + [520] = 455, + [521] = 467, + [522] = 425, + [523] = 426, + [524] = 406, + [525] = 407, + [526] = 410, + [527] = 411, + [528] = 413, + [529] = 414, + [530] = 415, + [531] = 416, + [532] = 417, + [533] = 418, + [534] = 420, + [535] = 421, + [536] = 422, + [537] = 537, + [538] = 423, + [539] = 446, + [540] = 447, + [541] = 405, + [542] = 450, + [543] = 424, + [544] = 425, + [545] = 426, + [546] = 406, + [547] = 407, + [548] = 411, + [549] = 413, + [550] = 414, + [551] = 415, + [552] = 416, + [553] = 417, + [554] = 418, + [555] = 419, + [556] = 420, + [557] = 421, + [558] = 422, + [559] = 423, + [560] = 425, + [561] = 446, + [562] = 447, + [563] = 405, + [564] = 450, + [565] = 454, + [566] = 455, + [567] = 467, + [568] = 410, + [569] = 425, [570] = 426, - [571] = 426, - [572] = 466, - [573] = 407, - [574] = 430, - [575] = 431, - [576] = 430, - [577] = 431, - [578] = 427, - [579] = 419, - [580] = 450, - [581] = 436, - [582] = 427, - [583] = 405, - [584] = 435, - [585] = 585, - [586] = 428, - [587] = 450, - [588] = 588, - [589] = 430, - [590] = 431, - [591] = 591, - [592] = 405, - [593] = 435, - [594] = 436, - [595] = 407, - [596] = 420, - [597] = 421, - [598] = 598, - [599] = 407, - [600] = 426, - [601] = 409, - [602] = 410, - [603] = 411, - [604] = 430, - [605] = 413, - [606] = 414, - [607] = 415, - [608] = 416, - [609] = 417, - [610] = 418, - [611] = 419, - [612] = 420, - [613] = 421, - [614] = 422, - [615] = 423, - [616] = 424, - [617] = 431, - [618] = 426, - [619] = 591, - [620] = 409, - [621] = 427, - [622] = 430, - [623] = 431, - [624] = 427, - [625] = 427, - [626] = 410, - [627] = 627, - [628] = 436, - [629] = 427, - [630] = 427, - [631] = 435, - [632] = 632, - [633] = 405, - [634] = 435, - [635] = 635, - [636] = 436, - [637] = 411, - [638] = 428, - [639] = 450, - [640] = 422, - [641] = 429, - [642] = 423, - [643] = 427, - [644] = 405, - [645] = 435, - [646] = 646, - [647] = 407, - [648] = 407, - [649] = 428, - [650] = 429, - [651] = 450, - [652] = 415, - [653] = 416, - [654] = 428, - [655] = 424, - [656] = 450, - [657] = 429, + [571] = 406, + [572] = 407, + [573] = 411, + [574] = 413, + [575] = 414, + [576] = 415, + [577] = 416, + [578] = 417, + [579] = 418, + [580] = 419, + [581] = 420, + [582] = 421, + [583] = 422, + [584] = 423, + [585] = 446, + [586] = 447, + [587] = 405, + [588] = 450, + [589] = 454, + [590] = 455, + [591] = 426, + [592] = 467, + [593] = 410, + [594] = 425, + [595] = 426, + [596] = 406, + [597] = 407, + [598] = 411, + [599] = 413, + [600] = 414, + [601] = 415, + [602] = 416, + [603] = 417, + [604] = 418, + [605] = 419, + [606] = 420, + [607] = 421, + [608] = 422, + [609] = 423, + [610] = 446, + [611] = 447, + [612] = 450, + [613] = 454, + [614] = 455, + [615] = 467, + [616] = 410, + [617] = 454, + [618] = 455, + [619] = 424, + [620] = 467, + [621] = 424, + [622] = 425, + [623] = 426, + [624] = 406, + [625] = 407, + [626] = 411, + [627] = 413, + [628] = 414, + [629] = 415, + [630] = 416, + [631] = 417, + [632] = 418, + [633] = 419, + [634] = 420, + [635] = 421, + [636] = 422, + [637] = 423, + [638] = 446, + [639] = 447, + [640] = 405, + [641] = 450, + [642] = 450, + [643] = 454, + [644] = 455, + [645] = 424, + [646] = 467, + [647] = 410, + [648] = 454, + [649] = 455, + [650] = 650, + [651] = 424, + [652] = 424, + [653] = 467, + [654] = 410, + [655] = 467, + [656] = 410, + [657] = 419, [658] = 658, [659] = 658, [660] = 658, @@ -5315,103 +5315,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [671] = 670, [672] = 670, [673] = 673, - [674] = 673, - [675] = 675, - [676] = 675, - [677] = 673, - [678] = 675, + [674] = 674, + [675] = 674, + [676] = 673, + [677] = 674, + [678] = 673, [679] = 679, - [680] = 248, - [681] = 241, - [682] = 679, - [683] = 679, + [680] = 679, + [681] = 679, + [682] = 243, + [683] = 254, [684] = 684, [685] = 685, [686] = 686, [687] = 687, [688] = 688, [689] = 689, - [690] = 690, + [690] = 689, [691] = 691, [692] = 691, - [693] = 689, - [694] = 690, - [695] = 691, - [696] = 689, - [697] = 690, + [693] = 693, + [694] = 689, + [695] = 693, + [696] = 693, + [697] = 691, [698] = 698, - [699] = 698, + [699] = 699, [700] = 700, - [701] = 700, - [702] = 702, - [703] = 700, - [704] = 704, - [705] = 700, + [701] = 699, + [702] = 698, + [703] = 703, + [704] = 698, + [705] = 698, [706] = 700, - [707] = 704, - [708] = 704, - [709] = 700, - [710] = 702, - [711] = 700, + [707] = 698, + [708] = 698, + [709] = 703, + [710] = 703, + [711] = 711, [712] = 712, - [713] = 713, - [714] = 700, - [715] = 249, - [716] = 716, - [717] = 717, - [718] = 700, - [719] = 700, - [720] = 700, - [721] = 717, - [722] = 700, - [723] = 717, - [724] = 698, - [725] = 246, - [726] = 726, - [727] = 727, - [728] = 700, - [729] = 242, - [730] = 232, - [731] = 246, - [732] = 700, - [733] = 700, - [734] = 702, - [735] = 252, - [736] = 713, - [737] = 234, - [738] = 700, - [739] = 249, - [740] = 232, - [741] = 242, + [713] = 698, + [714] = 698, + [715] = 698, + [716] = 699, + [717] = 241, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 698, + [722] = 253, + [723] = 723, + [724] = 723, + [725] = 698, + [726] = 723, + [727] = 698, + [728] = 248, + [729] = 244, + [730] = 233, + [731] = 241, + [732] = 230, + [733] = 253, + [734] = 698, + [735] = 698, + [736] = 700, + [737] = 712, + [738] = 248, + [739] = 698, + [740] = 698, + [741] = 230, [742] = 742, - [743] = 743, - [744] = 743, - [745] = 743, - [746] = 743, - [747] = 743, - [748] = 700, - [749] = 743, - [750] = 219, - [751] = 223, - [752] = 743, - [753] = 743, - [754] = 743, + [743] = 219, + [744] = 744, + [745] = 744, + [746] = 744, + [747] = 698, + [748] = 744, + [749] = 744, + [750] = 744, + [751] = 744, + [752] = 218, + [753] = 744, + [754] = 744, [755] = 755, [756] = 756, - [757] = 229, + [757] = 757, [758] = 758, - [759] = 759, - [760] = 760, - [761] = 760, - [762] = 760, - [763] = 760, - [764] = 764, + [759] = 758, + [760] = 758, + [761] = 761, + [762] = 224, + [763] = 763, + [764] = 252, [765] = 765, [766] = 766, - [767] = 767, + [767] = 240, [768] = 768, - [769] = 239, - [770] = 770, + [769] = 758, + [770] = 758, [771] = 771, [772] = 772, [773] = 773, @@ -5422,8 +5422,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [778] = 778, [779] = 779, [780] = 780, - [781] = 216, - [782] = 760, + [781] = 781, + [782] = 782, [783] = 783, [784] = 784, [785] = 785, @@ -5431,22 +5431,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [787] = 787, [788] = 788, [789] = 789, - [790] = 790, + [790] = 249, [791] = 791, [792] = 792, [793] = 793, [794] = 794, - [795] = 784, - [796] = 796, + [795] = 233, + [796] = 244, [797] = 797, [798] = 798, [799] = 799, - [800] = 794, - [801] = 784, + [800] = 800, + [801] = 801, [802] = 802, [803] = 803, - [804] = 794, - [805] = 784, + [804] = 804, + [805] = 805, [806] = 806, [807] = 807, [808] = 808, @@ -5461,7 +5461,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [817] = 817, [818] = 818, [819] = 819, - [820] = 820, + [820] = 250, [821] = 821, [822] = 822, [823] = 823, @@ -5475,12 +5475,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [831] = 831, [832] = 832, [833] = 833, - [834] = 794, + [834] = 834, [835] = 835, [836] = 836, [837] = 837, [838] = 838, - [839] = 839, + [839] = 829, [840] = 840, [841] = 841, [842] = 842, @@ -5494,9 +5494,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [850] = 850, [851] = 851, [852] = 852, - [853] = 234, + [853] = 853, [854] = 854, - [855] = 252, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, @@ -5505,34 +5505,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [861] = 861, [862] = 862, [863] = 863, - [864] = 784, + [864] = 864, [865] = 865, - [866] = 866, + [866] = 829, [867] = 867, [868] = 868, [869] = 869, [870] = 870, [871] = 871, - [872] = 872, + [872] = 843, [873] = 873, [874] = 874, [875] = 875, - [876] = 876, - [877] = 877, + [876] = 829, + [877] = 843, [878] = 878, [879] = 879, [880] = 880, - [881] = 881, + [881] = 829, [882] = 882, [883] = 883, [884] = 884, - [885] = 885, + [885] = 843, [886] = 886, [887] = 887, [888] = 888, [889] = 889, [890] = 890, - [891] = 891, + [891] = 843, [892] = 892, [893] = 893, [894] = 894, @@ -5545,14 +5545,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [901] = 901, [902] = 902, [903] = 903, - [904] = 245, + [904] = 904, [905] = 905, - [906] = 794, + [906] = 906, [907] = 907, [908] = 908, [909] = 909, [910] = 910, - [911] = 247, + [911] = 911, [912] = 912, [913] = 913, [914] = 914, @@ -5560,58 +5560,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [916] = 916, [917] = 917, [918] = 918, - [919] = 919, + [919] = 918, [920] = 920, - [921] = 918, - [922] = 919, - [923] = 923, - [924] = 924, - [925] = 925, + [921] = 921, + [922] = 921, + [923] = 781, + [924] = 920, + [925] = 921, [926] = 926, - [927] = 919, + [927] = 920, [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 919, + [929] = 756, + [930] = 918, + [931] = 918, + [932] = 932, [933] = 933, [934] = 934, - [935] = 918, - [936] = 936, - [937] = 923, - [938] = 923, - [939] = 919, - [940] = 923, - [941] = 919, - [942] = 923, - [943] = 923, - [944] = 755, - [945] = 919, - [946] = 756, - [947] = 923, + [935] = 920, + [936] = 920, + [937] = 918, + [938] = 938, + [939] = 918, + [940] = 920, + [941] = 941, + [942] = 920, + [943] = 943, + [944] = 944, + [945] = 918, + [946] = 946, + [947] = 947, [948] = 948, [949] = 949, [950] = 950, - [951] = 949, - [952] = 952, - [953] = 950, - [954] = 949, - [955] = 949, - [956] = 952, - [957] = 957, - [958] = 958, - [959] = 952, + [951] = 950, + [952] = 949, + [953] = 948, + [954] = 948, + [955] = 950, + [956] = 949, + [957] = 950, + [958] = 949, + [959] = 948, [960] = 960, - [961] = 949, - [962] = 952, - [963] = 949, - [964] = 952, - [965] = 952, - [966] = 950, - [967] = 952, - [968] = 950, - [969] = 949, - [970] = 950, + [961] = 950, + [962] = 949, + [963] = 950, + [964] = 948, + [965] = 948, + [966] = 948, + [967] = 950, + [968] = 968, + [969] = 969, + [970] = 970, [971] = 971, [972] = 972, [973] = 973, @@ -5626,146 +5626,146 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [982] = 982, [983] = 983, [984] = 984, - [985] = 982, - [986] = 972, - [987] = 973, - [988] = 988, + [985] = 972, + [986] = 973, + [987] = 974, + [988] = 975, [989] = 989, - [990] = 974, - [991] = 975, - [992] = 980, - [993] = 981, - [994] = 994, + [990] = 990, + [991] = 991, + [992] = 991, + [993] = 993, + [994] = 993, [995] = 995, - [996] = 976, - [997] = 972, - [998] = 973, - [999] = 974, - [1000] = 975, - [1001] = 976, - [1002] = 978, - [1003] = 978, - [1004] = 983, - [1005] = 984, - [1006] = 971, - [1007] = 988, - [1008] = 989, - [1009] = 1009, - [1010] = 980, - [1011] = 1011, - [1012] = 1012, - [1013] = 981, + [996] = 996, + [997] = 997, + [998] = 976, + [999] = 977, + [1000] = 978, + [1001] = 979, + [1002] = 980, + [1003] = 981, + [1004] = 982, + [1005] = 1005, + [1006] = 1006, + [1007] = 983, + [1008] = 984, + [1009] = 974, + [1010] = 972, + [1011] = 973, + [1012] = 974, + [1013] = 975, [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 994, - [1019] = 995, - [1020] = 994, - [1021] = 1021, - [1022] = 995, - [1023] = 974, - [1024] = 980, - [1025] = 981, - [1026] = 975, - [1027] = 972, - [1028] = 973, - [1029] = 976, - [1030] = 978, - [1031] = 994, - [1032] = 995, - [1033] = 1021, + [1015] = 1005, + [1016] = 1006, + [1017] = 976, + [1018] = 977, + [1019] = 1019, + [1020] = 976, + [1021] = 977, + [1022] = 978, + [1023] = 1005, + [1024] = 1006, + [1025] = 979, + [1026] = 980, + [1027] = 978, + [1028] = 979, + [1029] = 980, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, [1034] = 1034, - [1035] = 974, - [1036] = 975, - [1037] = 1037, - [1038] = 976, - [1039] = 978, - [1040] = 1034, - [1041] = 1041, - [1042] = 983, - [1043] = 984, - [1044] = 971, - [1045] = 988, - [1046] = 989, - [1047] = 1009, + [1035] = 1035, + [1036] = 1036, + [1037] = 1019, + [1038] = 1038, + [1039] = 981, + [1040] = 982, + [1041] = 1005, + [1042] = 1006, + [1043] = 983, + [1044] = 984, + [1045] = 990, + [1046] = 972, + [1047] = 989, [1048] = 1048, - [1049] = 1049, - [1050] = 1050, + [1049] = 974, + [1050] = 975, [1051] = 1051, - [1052] = 1052, - [1053] = 974, - [1054] = 975, - [1055] = 1037, - [1056] = 972, - [1057] = 973, - [1058] = 1037, - [1059] = 1059, - [1060] = 1041, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1012, - [1065] = 976, - [1066] = 980, - [1067] = 981, - [1068] = 983, - [1069] = 984, - [1070] = 971, - [1071] = 988, - [1072] = 989, - [1073] = 994, - [1074] = 980, - [1075] = 981, - [1076] = 995, - [1077] = 972, - [1078] = 972, - [1079] = 1009, - [1080] = 978, - [1081] = 1037, - [1082] = 973, - [1083] = 973, - [1084] = 994, - [1085] = 994, - [1086] = 995, - [1087] = 1009, - [1088] = 995, - [1089] = 983, - [1090] = 984, - [1091] = 971, - [1092] = 988, - [1093] = 989, - [1094] = 1009, - [1095] = 1037, - [1096] = 1059, - [1097] = 1097, - [1098] = 1098, - [1099] = 974, - [1100] = 975, - [1101] = 1009, - [1102] = 1009, - [1103] = 976, - [1104] = 1017, - [1105] = 983, - [1106] = 984, - [1107] = 983, - [1108] = 984, - [1109] = 971, - [1110] = 988, - [1111] = 989, - [1112] = 971, - [1113] = 1037, - [1114] = 988, - [1115] = 989, - [1116] = 978, - [1117] = 980, - [1118] = 981, - [1119] = 982, - [1120] = 1037, - [1121] = 982, - [1122] = 982, - [1123] = 982, - [1124] = 982, + [1052] = 1033, + [1053] = 981, + [1054] = 982, + [1055] = 1038, + [1056] = 1033, + [1057] = 1005, + [1058] = 1006, + [1059] = 983, + [1060] = 984, + [1061] = 1048, + [1062] = 972, + [1063] = 972, + [1064] = 973, + [1065] = 974, + [1066] = 975, + [1067] = 973, + [1068] = 1048, + [1069] = 975, + [1070] = 1070, + [1071] = 1033, + [1072] = 1048, + [1073] = 976, + [1074] = 977, + [1075] = 978, + [1076] = 979, + [1077] = 980, + [1078] = 1078, + [1079] = 981, + [1080] = 982, + [1081] = 983, + [1082] = 1033, + [1083] = 1048, + [1084] = 971, + [1085] = 1005, + [1086] = 1006, + [1087] = 983, + [1088] = 984, + [1089] = 984, + [1090] = 972, + [1091] = 1091, + [1092] = 973, + [1093] = 1093, + [1094] = 974, + [1095] = 981, + [1096] = 975, + [1097] = 982, + [1098] = 1033, + [1099] = 989, + [1100] = 1033, + [1101] = 976, + [1102] = 976, + [1103] = 977, + [1104] = 978, + [1105] = 979, + [1106] = 980, + [1107] = 977, + [1108] = 1048, + [1109] = 978, + [1110] = 979, + [1111] = 980, + [1112] = 1112, + [1113] = 1005, + [1114] = 1006, + [1115] = 981, + [1116] = 982, + [1117] = 983, + [1118] = 984, + [1119] = 989, + [1120] = 1048, + [1121] = 989, + [1122] = 989, + [1123] = 989, + [1124] = 973, [1125] = 1125, [1126] = 1125, [1127] = 1125, @@ -5780,44 +5780,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1136] = 1125, [1137] = 1137, [1138] = 1138, - [1139] = 1138, - [1140] = 1140, - [1141] = 1140, - [1142] = 1138, - [1143] = 1140, - [1144] = 1137, + [1139] = 1139, + [1140] = 1139, + [1141] = 1137, + [1142] = 1139, + [1143] = 1138, + [1144] = 1138, [1145] = 1137, [1146] = 1146, [1147] = 1147, - [1148] = 1147, - [1149] = 1149, - [1150] = 1146, + [1148] = 1148, + [1149] = 1146, + [1150] = 1147, [1151] = 1151, [1152] = 1151, - [1153] = 1147, + [1153] = 1153, [1154] = 1154, - [1155] = 1155, - [1156] = 1149, - [1157] = 1157, - [1158] = 1157, - [1159] = 1147, - [1160] = 1155, + [1155] = 1148, + [1156] = 1147, + [1157] = 1147, + [1158] = 1158, + [1159] = 1159, + [1160] = 1158, [1161] = 1147, - [1162] = 1157, - [1163] = 1147, - [1164] = 1154, + [1162] = 1147, + [1163] = 1163, + [1164] = 1163, [1165] = 1154, - [1166] = 1155, - [1167] = 1167, - [1168] = 1168, + [1166] = 1163, + [1167] = 1154, + [1168] = 1158, [1169] = 1169, - [1170] = 1167, + [1170] = 1170, [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 1167, + [1176] = 1174, [1177] = 1177, [1178] = 1178, [1179] = 1179, @@ -5825,246 +5825,246 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1181] = 1147, [1182] = 1182, [1183] = 1147, - [1184] = 1184, - [1185] = 756, + [1184] = 1174, + [1185] = 781, [1186] = 1146, - [1187] = 1175, + [1187] = 1187, [1188] = 1188, - [1189] = 1189, + [1189] = 756, [1190] = 1190, - [1191] = 1191, - [1192] = 1191, - [1193] = 1147, - [1194] = 1189, - [1195] = 1195, - [1196] = 1188, - [1197] = 1188, - [1198] = 1147, - [1199] = 1190, - [1200] = 1147, - [1201] = 1201, - [1202] = 1202, - [1203] = 1190, - [1204] = 1204, - [1205] = 1191, + [1191] = 1147, + [1192] = 1192, + [1193] = 1193, + [1194] = 1193, + [1195] = 1147, + [1196] = 1193, + [1197] = 1187, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1199, + [1202] = 1187, + [1203] = 1178, + [1204] = 1147, + [1205] = 1192, [1206] = 1147, - [1207] = 1147, - [1208] = 755, - [1209] = 1147, + [1207] = 1199, + [1208] = 1147, + [1209] = 1209, [1210] = 1147, - [1211] = 1147, - [1212] = 1149, - [1213] = 1175, - [1214] = 1214, - [1215] = 1175, - [1216] = 1147, - [1217] = 1217, + [1211] = 1211, + [1212] = 1147, + [1213] = 1147, + [1214] = 1147, + [1215] = 1148, + [1216] = 1170, + [1217] = 1178, [1218] = 1218, - [1219] = 1219, - [1220] = 1175, - [1221] = 1168, + [1219] = 1178, + [1220] = 1178, + [1221] = 1221, [1222] = 1222, [1223] = 1223, [1224] = 1224, [1225] = 1225, - [1226] = 1225, - [1227] = 1227, - [1228] = 1224, - [1229] = 1224, - [1230] = 1175, - [1231] = 1222, - [1232] = 1175, - [1233] = 1224, - [1234] = 1227, - [1235] = 1224, - [1236] = 1175, - [1237] = 1224, - [1238] = 1202, + [1226] = 1218, + [1227] = 1190, + [1228] = 1153, + [1229] = 1229, + [1230] = 1223, + [1231] = 1159, + [1232] = 1218, + [1233] = 1190, + [1234] = 1234, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1159, [1239] = 1239, - [1240] = 1224, - [1241] = 1224, - [1242] = 1224, - [1243] = 1243, - [1244] = 1219, - [1245] = 1245, - [1246] = 1175, - [1247] = 1247, - [1248] = 1147, - [1249] = 1219, - [1250] = 1250, - [1251] = 1223, - [1252] = 1202, - [1253] = 1253, - [1254] = 1202, - [1255] = 1255, - [1256] = 1255, - [1257] = 1173, - [1258] = 1214, - [1259] = 1259, - [1260] = 1173, + [1240] = 1240, + [1241] = 1234, + [1242] = 1178, + [1243] = 1234, + [1244] = 1234, + [1245] = 1147, + [1246] = 1234, + [1247] = 1234, + [1248] = 1234, + [1249] = 1222, + [1250] = 1234, + [1251] = 1240, + [1252] = 1237, + [1253] = 1234, + [1254] = 1178, + [1255] = 1153, + [1256] = 1159, + [1257] = 1178, + [1258] = 1153, + [1259] = 1178, + [1260] = 1260, [1261] = 1261, - [1262] = 1195, - [1263] = 1202, - [1264] = 1175, - [1265] = 1265, - [1266] = 1171, - [1267] = 1173, - [1268] = 1265, - [1269] = 1243, + [1262] = 1262, + [1263] = 1263, + [1264] = 1239, + [1265] = 1178, + [1266] = 1178, + [1267] = 1267, + [1268] = 1209, + [1269] = 1209, [1270] = 1270, - [1271] = 1175, - [1272] = 1175, + [1271] = 1261, + [1272] = 1190, [1273] = 1273, - [1274] = 1274, - [1275] = 1214, - [1276] = 1202, - [1277] = 1261, - [1278] = 1171, - [1279] = 1261, - [1280] = 1243, - [1281] = 1171, - [1282] = 1282, - [1283] = 1222, - [1284] = 1284, - [1285] = 1214, - [1286] = 1243, - [1287] = 1174, - [1288] = 756, - [1289] = 1195, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1172, - [1294] = 1177, - [1295] = 1178, - [1296] = 1175, - [1297] = 1245, - [1298] = 1225, - [1299] = 1179, - [1300] = 1180, - [1301] = 1202, + [1274] = 1270, + [1275] = 1190, + [1276] = 1198, + [1277] = 1190, + [1278] = 1239, + [1279] = 1178, + [1280] = 1261, + [1281] = 1262, + [1282] = 1178, + [1283] = 1159, + [1284] = 1177, + [1285] = 1179, + [1286] = 1182, + [1287] = 1287, + [1288] = 1172, + [1289] = 1240, + [1290] = 1240, + [1291] = 1222, + [1292] = 1159, + [1293] = 1240, + [1294] = 1180, + [1295] = 1222, + [1296] = 1229, + [1297] = 1222, + [1298] = 1298, + [1299] = 1153, + [1300] = 756, + [1301] = 1209, [1302] = 1302, - [1303] = 755, - [1304] = 1222, - [1305] = 1225, - [1306] = 1222, - [1307] = 1222, - [1308] = 1214, - [1309] = 1214, - [1310] = 1225, - [1311] = 1291, - [1312] = 1291, - [1313] = 1292, - [1314] = 1225, - [1315] = 1292, - [1316] = 1202, - [1317] = 1282, - [1318] = 1202, - [1319] = 1175, - [1320] = 1169, - [1321] = 1214, - [1322] = 1171, - [1323] = 1173, - [1324] = 1214, - [1325] = 1325, - [1326] = 1173, - [1327] = 1202, - [1328] = 1273, - [1329] = 1222, - [1330] = 1171, - [1331] = 1331, + [1303] = 1303, + [1304] = 781, + [1305] = 1209, + [1306] = 1173, + [1307] = 1178, + [1308] = 1209, + [1309] = 1169, + [1310] = 1310, + [1311] = 1302, + [1312] = 1310, + [1313] = 1303, + [1314] = 1303, + [1315] = 1239, + [1316] = 1222, + [1317] = 1198, + [1318] = 1190, + [1319] = 1190, + [1320] = 1310, + [1321] = 1240, + [1322] = 1322, + [1323] = 1153, + [1324] = 1190, + [1325] = 1209, + [1326] = 1326, + [1327] = 1153, + [1328] = 1240, + [1329] = 1159, + [1330] = 1330, + [1331] = 1190, [1332] = 1332, - [1333] = 1222, - [1334] = 1325, - [1335] = 1195, + [1333] = 1263, + [1334] = 1240, + [1335] = 1224, [1336] = 1336, - [1337] = 1195, - [1338] = 1214, - [1339] = 1225, - [1340] = 1225, + [1337] = 1198, + [1338] = 1209, + [1339] = 1209, + [1340] = 1222, [1341] = 1341, - [1342] = 1250, - [1343] = 1343, - [1344] = 1344, + [1342] = 1222, + [1343] = 1198, + [1344] = 1341, [1345] = 1345, - [1346] = 1225, - [1347] = 1225, - [1348] = 1348, - [1349] = 1171, - [1350] = 1227, - [1351] = 1345, - [1352] = 1345, - [1353] = 1353, - [1354] = 1354, - [1355] = 1223, - [1356] = 1173, - [1357] = 1345, - [1358] = 1225, + [1346] = 1346, + [1347] = 1240, + [1348] = 1346, + [1349] = 1346, + [1350] = 1346, + [1351] = 1351, + [1352] = 1237, + [1353] = 1222, + [1354] = 1209, + [1355] = 1240, + [1356] = 1222, + [1357] = 1240, + [1358] = 1358, [1359] = 1222, - [1360] = 1222, - [1361] = 1345, - [1362] = 1225, - [1363] = 1345, - [1364] = 1222, - [1365] = 1195, - [1366] = 1214, + [1360] = 1360, + [1361] = 1198, + [1362] = 1362, + [1363] = 1240, + [1364] = 1223, + [1365] = 1346, + [1366] = 1346, [1367] = 1222, - [1368] = 1225, + [1368] = 1262, [1369] = 1222, - [1370] = 1265, + [1370] = 1222, [1371] = 1222, - [1372] = 1222, - [1373] = 1222, - [1374] = 1195, - [1375] = 1195, - [1376] = 1245, - [1377] = 1225, - [1378] = 1341, - [1379] = 1331, - [1380] = 1225, - [1381] = 1225, - [1382] = 1195, + [1372] = 1240, + [1373] = 1229, + [1374] = 1240, + [1375] = 1326, + [1376] = 1240, + [1377] = 1198, + [1378] = 1198, + [1379] = 1222, + [1380] = 1240, + [1381] = 1336, + [1382] = 1382, [1383] = 1383, [1384] = 1384, - [1385] = 1383, + [1385] = 1384, [1386] = 1386, - [1387] = 1387, - [1388] = 1386, - [1389] = 1387, - [1390] = 1387, - [1391] = 1387, - [1392] = 1392, - [1393] = 1387, - [1394] = 1386, - [1395] = 1383, - [1396] = 1387, - [1397] = 1392, - [1398] = 1392, - [1399] = 1222, - [1400] = 1387, - [1401] = 1392, - [1402] = 1386, - [1403] = 1392, - [1404] = 1384, - [1405] = 1386, - [1406] = 1195, - [1407] = 1392, - [1408] = 1384, - [1409] = 1273, - [1410] = 1387, - [1411] = 1383, - [1412] = 1383, - [1413] = 1387, - [1414] = 1383, - [1415] = 1354, - [1416] = 1392, - [1417] = 1392, - [1418] = 1386, - [1419] = 1384, - [1420] = 1392, - [1421] = 1384, - [1422] = 1384, - [1423] = 1225, + [1387] = 1383, + [1388] = 1388, + [1389] = 1240, + [1390] = 1388, + [1391] = 1386, + [1392] = 1382, + [1393] = 1384, + [1394] = 1383, + [1395] = 1388, + [1396] = 1386, + [1397] = 1382, + [1398] = 1384, + [1399] = 1383, + [1400] = 1386, + [1401] = 1384, + [1402] = 1388, + [1403] = 1383, + [1404] = 1382, + [1405] = 1382, + [1406] = 1386, + [1407] = 1384, + [1408] = 1388, + [1409] = 1383, + [1410] = 1382, + [1411] = 1388, + [1412] = 1263, + [1413] = 1351, + [1414] = 1382, + [1415] = 1388, + [1416] = 1382, + [1417] = 1388, + [1418] = 1388, + [1419] = 1382, + [1420] = 1222, + [1421] = 1198, + [1422] = 1198, + [1423] = 1386, [1424] = 1424, [1425] = 1424, [1426] = 1424, @@ -6076,61 +6076,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1432] = 1424, [1433] = 1433, [1434] = 1433, - [1435] = 1433, + [1435] = 1435, [1436] = 1433, [1437] = 1433, - [1438] = 1438, + [1438] = 1433, [1439] = 1433, [1440] = 1440, [1441] = 1441, [1442] = 1442, - [1443] = 1442, - [1444] = 1441, - [1445] = 1441, - [1446] = 1440, - [1447] = 1440, - [1448] = 1448, - [1449] = 1442, - [1450] = 1441, - [1451] = 1440, - [1452] = 1442, + [1443] = 1440, + [1444] = 1440, + [1445] = 1442, + [1446] = 1446, + [1447] = 1441, + [1448] = 1440, + [1449] = 1440, + [1450] = 1442, + [1451] = 1442, + [1452] = 1441, [1453] = 1441, - [1454] = 1440, + [1454] = 1441, [1455] = 1442, [1456] = 1456, [1457] = 1456, - [1458] = 1456, - [1459] = 1459, + [1458] = 1458, + [1459] = 1456, [1460] = 1456, [1461] = 1456, [1462] = 1456, [1463] = 1463, - [1464] = 1464, + [1464] = 243, [1465] = 1465, [1466] = 1466, - [1467] = 241, + [1467] = 254, [1468] = 1468, [1469] = 1469, - [1470] = 248, + [1470] = 1470, [1471] = 1471, - [1472] = 248, + [1472] = 1472, [1473] = 1473, - [1474] = 948, + [1474] = 968, [1475] = 1475, - [1476] = 241, + [1476] = 1476, [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 957, - [1481] = 217, + [1478] = 216, + [1479] = 243, + [1480] = 969, + [1481] = 254, [1482] = 1482, - [1483] = 958, + [1483] = 1483, [1484] = 1484, [1485] = 1485, [1486] = 1486, [1487] = 1487, [1488] = 1488, - [1489] = 1489, + [1489] = 970, [1490] = 1490, [1491] = 1491, [1492] = 1492, @@ -6138,26 +6138,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 219, - [1498] = 223, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, - [1500] = 216, - [1501] = 219, - [1502] = 223, - [1503] = 216, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, [1504] = 1504, - [1505] = 246, - [1506] = 1506, - [1507] = 1507, + [1505] = 218, + [1506] = 219, + [1507] = 224, [1508] = 1508, [1509] = 1509, [1510] = 1510, - [1511] = 1511, + [1511] = 688, [1512] = 1512, [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 684, + [1516] = 1516, [1517] = 1517, [1518] = 1518, [1519] = 1519, @@ -6175,18 +6175,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 686, + [1534] = 1534, [1535] = 1535, [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, + [1537] = 218, + [1538] = 219, + [1539] = 224, [1540] = 1540, - [1541] = 1541, + [1541] = 253, [1542] = 1542, [1543] = 1543, [1544] = 1544, - [1545] = 1545, + [1545] = 685, [1546] = 1546, [1547] = 1547, [1548] = 1548, @@ -6196,11 +6196,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 249, + [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, - [1559] = 687, + [1559] = 1559, [1560] = 1560, [1561] = 1561, [1562] = 1562, @@ -6213,7 +6213,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1572, + [1572] = 684, [1573] = 1573, [1574] = 1574, [1575] = 1575, @@ -6222,23 +6222,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1578] = 1578, [1579] = 1579, [1580] = 1580, - [1581] = 1581, + [1581] = 241, [1582] = 1582, - [1583] = 685, + [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1589, + [1589] = 686, [1590] = 1590, [1591] = 1591, [1592] = 1592, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1596, - [1597] = 688, + [1596] = 687, + [1597] = 1597, [1598] = 1598, [1599] = 1599, [1600] = 1600, @@ -6258,7 +6258,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1614] = 1614, [1615] = 1615, [1616] = 1616, - [1617] = 1617, + [1617] = 233, [1618] = 1618, [1619] = 1619, [1620] = 1620, @@ -6266,10 +6266,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1622] = 1622, [1623] = 1623, [1624] = 1624, - [1625] = 1625, + [1625] = 250, [1626] = 1626, - [1627] = 1627, - [1628] = 245, + [1627] = 248, + [1628] = 1628, [1629] = 1629, [1630] = 1630, [1631] = 1631, @@ -6277,13 +6277,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 229, - [1637] = 252, + [1636] = 1636, + [1637] = 1637, [1638] = 1638, - [1639] = 247, - [1640] = 1459, - [1641] = 242, - [1642] = 239, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, [1643] = 1643, [1644] = 1644, [1645] = 1645, @@ -6292,7 +6292,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1648] = 1648, [1649] = 1649, [1650] = 1650, - [1651] = 1651, + [1651] = 1636, [1652] = 1652, [1653] = 1653, [1654] = 1654, @@ -6300,21 +6300,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1656] = 1656, [1657] = 1657, [1658] = 1658, - [1659] = 1617, - [1660] = 1660, - [1661] = 1661, + [1659] = 1659, + [1660] = 252, + [1661] = 240, [1662] = 1662, - [1663] = 1663, + [1663] = 230, [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, [1668] = 1668, - [1669] = 1669, - [1670] = 1617, + [1669] = 1636, + [1670] = 1670, [1671] = 1671, [1672] = 1672, - [1673] = 1673, + [1673] = 249, [1674] = 1674, [1675] = 1675, [1676] = 1676, @@ -6322,27 +6322,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1678] = 1678, [1679] = 1679, [1680] = 1680, - [1681] = 1681, + [1681] = 1636, [1682] = 1682, [1683] = 1683, [1684] = 1684, [1685] = 1685, [1686] = 1686, - [1687] = 1687, + [1687] = 1458, [1688] = 1688, [1689] = 1689, [1690] = 1690, [1691] = 1691, [1692] = 1692, - [1693] = 1693, + [1693] = 252, [1694] = 1694, [1695] = 1695, [1696] = 1696, - [1697] = 234, - [1698] = 229, - [1699] = 1699, - [1700] = 239, - [1701] = 232, + [1697] = 1697, + [1698] = 1636, + [1699] = 240, + [1700] = 1700, + [1701] = 1701, [1702] = 1702, [1703] = 1703, [1704] = 1704, @@ -6351,13 +6351,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1707] = 1707, [1708] = 1708, [1709] = 1709, - [1710] = 1710, + [1710] = 244, [1711] = 1711, - [1712] = 1617, + [1712] = 1712, [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1617, + [1716] = 1716, [1717] = 1717, [1718] = 1718, [1719] = 1719, @@ -6368,890 +6368,890 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1724] = 1724, [1725] = 1725, [1726] = 1726, - [1727] = 242, + [1727] = 1727, [1728] = 1728, - [1729] = 252, - [1730] = 1726, + [1729] = 1729, + [1730] = 1730, [1731] = 1731, - [1732] = 1728, - [1733] = 249, - [1734] = 1734, - [1735] = 1695, - [1736] = 247, - [1737] = 1737, - [1738] = 1738, - [1739] = 1726, - [1740] = 245, - [1741] = 1728, - [1742] = 1465, - [1743] = 232, - [1744] = 1726, - [1745] = 1466, - [1746] = 1463, - [1747] = 1468, - [1748] = 1748, - [1749] = 246, - [1750] = 234, - [1751] = 1726, - [1752] = 1728, - [1753] = 1728, - [1754] = 1610, - [1755] = 1676, - [1756] = 1471, - [1757] = 1488, - [1758] = 1657, - [1759] = 1488, - [1760] = 1657, - [1761] = 1496, - [1762] = 1496, - [1763] = 1496, - [1764] = 1672, - [1765] = 958, - [1766] = 1557, - [1767] = 1687, - [1768] = 1710, - [1769] = 1715, - [1770] = 1770, - [1771] = 1661, - [1772] = 1770, - [1773] = 1720, - [1774] = 1688, - [1775] = 1663, - [1776] = 1776, - [1777] = 1725, - [1778] = 1624, - [1779] = 1722, - [1780] = 1625, - [1781] = 1699, - [1782] = 1708, - [1783] = 1710, - [1784] = 1626, - [1785] = 1785, - [1786] = 1488, - [1787] = 1679, - [1788] = 1671, - [1789] = 1770, - [1790] = 948, - [1791] = 1791, - [1792] = 1612, - [1793] = 1791, - [1794] = 1664, - [1795] = 1661, - [1796] = 1680, - [1797] = 1624, - [1798] = 1798, - [1799] = 1715, - [1800] = 1610, - [1801] = 1663, - [1802] = 957, - [1803] = 1687, - [1804] = 1475, - [1805] = 1688, - [1806] = 1791, - [1807] = 1720, - [1808] = 1672, - [1809] = 1722, - [1810] = 1723, - [1811] = 1723, - [1812] = 1632, - [1813] = 1813, - [1814] = 1478, - [1815] = 1776, - [1816] = 1656, - [1817] = 1486, - [1818] = 1632, - [1819] = 1664, - [1820] = 1708, - [1821] = 1695, - [1822] = 1679, - [1823] = 1665, - [1824] = 1612, - [1825] = 1654, - [1826] = 1490, - [1827] = 1827, - [1828] = 1484, - [1829] = 1699, - [1830] = 1625, - [1831] = 1626, - [1832] = 1666, - [1833] = 1623, - [1834] = 1506, - [1835] = 1835, - [1836] = 1667, - [1837] = 1473, - [1838] = 1680, - [1839] = 1770, - [1840] = 1477, - [1841] = 1654, - [1842] = 1770, - [1843] = 1485, - [1844] = 1482, - [1845] = 1845, - [1846] = 1656, - [1847] = 1725, - [1848] = 1665, - [1849] = 1666, - [1850] = 1667, - [1851] = 1791, - [1852] = 1623, - [1853] = 1671, + [1732] = 1732, + [1733] = 1733, + [1734] = 1637, + [1735] = 1735, + [1736] = 249, + [1737] = 1465, + [1738] = 241, + [1739] = 1466, + [1740] = 248, + [1741] = 1468, + [1742] = 1742, + [1743] = 1742, + [1744] = 1742, + [1745] = 1742, + [1746] = 233, + [1747] = 1733, + [1748] = 1733, + [1749] = 250, + [1750] = 1733, + [1751] = 230, + [1752] = 1469, + [1753] = 1742, + [1754] = 253, + [1755] = 1650, + [1756] = 1733, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1645, + [1761] = 244, + [1762] = 1639, + [1763] = 1690, + [1764] = 1764, + [1765] = 1645, + [1766] = 1766, + [1767] = 1767, + [1768] = 1721, + [1769] = 1691, + [1770] = 1692, + [1771] = 1650, + [1772] = 1667, + [1773] = 1493, + [1774] = 1677, + [1775] = 1720, + [1776] = 1501, + [1777] = 1727, + [1778] = 1653, + [1779] = 1477, + [1780] = 1767, + [1781] = 1781, + [1782] = 1487, + [1783] = 1490, + [1784] = 1764, + [1785] = 1719, + [1786] = 1674, + [1787] = 1787, + [1788] = 1491, + [1789] = 1554, + [1790] = 1677, + [1791] = 1502, + [1792] = 1621, + [1793] = 1720, + [1794] = 1630, + [1795] = 1624, + [1796] = 1554, + [1797] = 1482, + [1798] = 1767, + [1799] = 1674, + [1800] = 1476, + [1801] = 1659, + [1802] = 1642, + [1803] = 1628, + [1804] = 1675, + [1805] = 1764, + [1806] = 1676, + [1807] = 1722, + [1808] = 1483, + [1809] = 1809, + [1810] = 1501, + [1811] = 1647, + [1812] = 1812, + [1813] = 1724, + [1814] = 1501, + [1815] = 1633, + [1816] = 1667, + [1817] = 1554, + [1818] = 1633, + [1819] = 1819, + [1820] = 1712, + [1821] = 1821, + [1822] = 1724, + [1823] = 1680, + [1824] = 1722, + [1825] = 1685, + [1826] = 968, + [1827] = 1484, + [1828] = 1488, + [1829] = 1642, + [1830] = 1648, + [1831] = 1473, + [1832] = 1639, + [1833] = 1485, + [1834] = 1492, + [1835] = 1557, + [1836] = 1727, + [1837] = 1719, + [1838] = 1472, + [1839] = 1712, + [1840] = 969, + [1841] = 1637, + [1842] = 1648, + [1843] = 1471, + [1844] = 1688, + [1845] = 1764, + [1846] = 1621, + [1847] = 1624, + [1848] = 1628, + [1849] = 1809, + [1850] = 1486, + [1851] = 1630, + [1852] = 1659, + [1853] = 1675, [1854] = 1676, - [1855] = 1708, - [1856] = 1856, - [1857] = 1857, - [1858] = 217, - [1859] = 1558, - [1860] = 1860, - [1861] = 1861, - [1862] = 1507, - [1863] = 1508, - [1864] = 1509, - [1865] = 1510, - [1866] = 1512, - [1867] = 1513, - [1868] = 1514, - [1869] = 1515, - [1870] = 1561, - [1871] = 1562, - [1872] = 1511, - [1873] = 1675, - [1874] = 1677, - [1875] = 1738, - [1876] = 1577, - [1877] = 684, - [1878] = 1517, - [1879] = 1518, - [1880] = 1519, - [1881] = 1881, - [1882] = 1827, - [1883] = 1520, + [1855] = 1680, + [1856] = 1685, + [1857] = 970, + [1858] = 1767, + [1859] = 1764, + [1860] = 1647, + [1861] = 1688, + [1862] = 1690, + [1863] = 1691, + [1864] = 1692, + [1865] = 1653, + [1866] = 1721, + [1867] = 1584, + [1868] = 1868, + [1869] = 1869, + [1870] = 216, + [1871] = 1534, + [1872] = 1872, + [1873] = 1873, + [1874] = 1546, + [1875] = 1549, + [1876] = 1556, + [1877] = 1561, + [1878] = 1564, + [1879] = 1565, + [1880] = 1566, + [1881] = 1567, + [1882] = 1570, + [1883] = 1575, [1884] = 1521, - [1885] = 1522, - [1886] = 1523, - [1887] = 1524, - [1888] = 1525, - [1889] = 1526, - [1890] = 1527, - [1891] = 1528, - [1892] = 1529, - [1893] = 1530, - [1894] = 1531, - [1895] = 1532, - [1896] = 1491, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 686, - [1901] = 1535, - [1902] = 1536, - [1903] = 1537, - [1904] = 1538, - [1905] = 1609, - [1906] = 1539, - [1907] = 1540, - [1908] = 1541, + [1885] = 1702, + [1886] = 1707, + [1887] = 1759, + [1888] = 1611, + [1889] = 684, + [1890] = 1573, + [1891] = 1574, + [1892] = 1576, + [1893] = 1893, + [1894] = 1766, + [1895] = 1578, + [1896] = 1579, + [1897] = 1580, + [1898] = 1582, + [1899] = 1583, + [1900] = 1585, + [1901] = 1586, + [1902] = 1587, + [1903] = 1588, + [1904] = 1590, + [1905] = 1591, + [1906] = 1592, + [1907] = 1525, + [1908] = 1908, [1909] = 1909, - [1910] = 1542, - [1911] = 1543, - [1912] = 1544, - [1913] = 1545, - [1914] = 1546, - [1915] = 1547, - [1916] = 1548, - [1917] = 1549, - [1918] = 1550, - [1919] = 1551, - [1920] = 1552, - [1921] = 1553, - [1922] = 1554, - [1923] = 1556, - [1924] = 1487, - [1925] = 687, - [1926] = 1560, - [1927] = 1563, - [1928] = 1564, - [1929] = 1565, - [1930] = 1566, - [1931] = 1567, - [1932] = 1568, - [1933] = 1569, - [1934] = 1570, - [1935] = 1571, - [1936] = 1572, - [1937] = 1573, - [1938] = 1574, - [1939] = 1575, - [1940] = 1576, - [1941] = 1578, - [1942] = 1579, - [1943] = 1580, - [1944] = 1581, - [1945] = 1582, - [1946] = 1499, - [1947] = 685, - [1948] = 1584, - [1949] = 1585, - [1950] = 1586, - [1951] = 1587, - [1952] = 1588, - [1953] = 1589, - [1954] = 1590, - [1955] = 1591, - [1956] = 1592, - [1957] = 1593, - [1958] = 1594, - [1959] = 1595, - [1960] = 1596, - [1961] = 688, - [1962] = 1598, - [1963] = 1599, - [1964] = 1600, - [1965] = 1601, - [1966] = 1602, - [1967] = 1612, - [1968] = 1604, - [1969] = 1605, - [1970] = 1606, - [1971] = 1607, - [1972] = 1608, - [1973] = 1489, - [1974] = 217, - [1975] = 1860, - [1976] = 1533, - [1977] = 1677, - [1978] = 1978, - [1979] = 1488, - [1980] = 1496, - [1981] = 1492, - [1982] = 1493, - [1983] = 1494, - [1984] = 1860, - [1985] = 1985, - [1986] = 1675, - [1987] = 1987, - [1988] = 1988, + [1910] = 1910, + [1911] = 1911, + [1912] = 687, + [1913] = 1599, + [1914] = 1600, + [1915] = 1602, + [1916] = 1603, + [1917] = 1604, + [1918] = 1605, + [1919] = 1606, + [1920] = 1608, + [1921] = 1612, + [1922] = 1613, + [1923] = 1614, + [1924] = 1494, + [1925] = 1559, + [1926] = 1610, + [1927] = 1544, + [1928] = 1571, + [1929] = 1530, + [1930] = 686, + [1931] = 1593, + [1932] = 1594, + [1933] = 1595, + [1934] = 1597, + [1935] = 1607, + [1936] = 1504, + [1937] = 1512, + [1938] = 1513, + [1939] = 1514, + [1940] = 1515, + [1941] = 1526, + [1942] = 1531, + [1943] = 1540, + [1944] = 1551, + [1945] = 1609, + [1946] = 1542, + [1947] = 1495, + [1948] = 1496, + [1949] = 1497, + [1950] = 1498, + [1951] = 1499, + [1952] = 1500, + [1953] = 1503, + [1954] = 1508, + [1955] = 1509, + [1956] = 1510, + [1957] = 1533, + [1958] = 688, + [1959] = 1516, + [1960] = 1517, + [1961] = 1518, + [1962] = 1519, + [1963] = 1520, + [1964] = 1523, + [1965] = 1527, + [1966] = 1528, + [1967] = 1529, + [1968] = 1532, + [1969] = 1535, + [1970] = 1536, + [1971] = 1615, + [1972] = 685, + [1973] = 1547, + [1974] = 1548, + [1975] = 1550, + [1976] = 1552, + [1977] = 1553, + [1978] = 1555, + [1979] = 1674, + [1980] = 1560, + [1981] = 1562, + [1982] = 1568, + [1983] = 1569, + [1984] = 1577, + [1985] = 216, + [1986] = 1872, + [1987] = 1522, + [1988] = 1707, [1989] = 1989, - [1990] = 1990, - [1991] = 1495, - [1992] = 1504, - [1993] = 1638, - [1994] = 1994, - [1995] = 1881, - [1996] = 1827, - [1997] = 1860, - [1998] = 1676, - [1999] = 1488, - [2000] = 1496, - [2001] = 1506, - [2002] = 1490, - [2003] = 1860, - [2004] = 1488, - [2005] = 1496, - [2006] = 1675, - [2007] = 1638, - [2008] = 1677, - [2009] = 1557, - [2010] = 1985, - [2011] = 1495, - [2012] = 1504, - [2013] = 1638, - [2014] = 1506, - [2015] = 2015, - [2016] = 1695, - [2017] = 1860, - [2018] = 2018, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 1738, - [2023] = 2023, - [2024] = 2024, - [2025] = 2025, - [2026] = 1490, - [2027] = 2027, - [2028] = 2028, - [2029] = 1610, - [2030] = 1623, - [2031] = 1624, - [2032] = 1632, - [2033] = 1654, - [2034] = 1656, - [2035] = 1657, - [2036] = 1661, - [2037] = 1663, - [2038] = 1664, - [2039] = 1665, - [2040] = 1666, - [2041] = 1667, - [2042] = 1725, - [2043] = 1671, - [2044] = 1672, - [2045] = 1679, - [2046] = 1680, - [2047] = 1687, - [2048] = 1688, - [2049] = 1715, - [2050] = 1720, - [2051] = 1722, - [2052] = 1625, - [2053] = 1626, - [2054] = 1723, - [2055] = 2055, - [2056] = 1699, - [2057] = 1710, - [2058] = 1603, - [2059] = 2059, - [2060] = 243, - [2061] = 244, - [2062] = 2062, - [2063] = 2063, - [2064] = 250, - [2065] = 251, - [2066] = 231, - [2067] = 2067, - [2068] = 233, - [2069] = 2069, - [2070] = 2070, - [2071] = 1696, - [2072] = 2072, - [2073] = 2073, - [2074] = 2074, + [1990] = 1501, + [1991] = 1554, + [1992] = 1524, + [1993] = 1598, + [1994] = 1601, + [1995] = 1995, + [1996] = 1872, + [1997] = 1702, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, + [2002] = 1543, + [2003] = 1563, + [2004] = 1683, + [2005] = 2005, + [2006] = 1893, + [2007] = 1766, + [2008] = 1645, + [2009] = 1872, + [2010] = 1501, + [2011] = 1554, + [2012] = 1493, + [2013] = 1502, + [2014] = 1872, + [2015] = 1501, + [2016] = 1554, + [2017] = 1702, + [2018] = 1683, + [2019] = 1707, + [2020] = 1557, + [2021] = 1543, + [2022] = 1995, + [2023] = 1563, + [2024] = 1683, + [2025] = 1493, + [2026] = 2026, + [2027] = 1650, + [2028] = 1872, + [2029] = 2029, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, + [2033] = 1759, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 1502, + [2038] = 2038, + [2039] = 2039, + [2040] = 1637, + [2041] = 1712, + [2042] = 1724, + [2043] = 1719, + [2044] = 1621, + [2045] = 1624, + [2046] = 1628, + [2047] = 1659, + [2048] = 1675, + [2049] = 1676, + [2050] = 1680, + [2051] = 1685, + [2052] = 1688, + [2053] = 1690, + [2054] = 1691, + [2055] = 1692, + [2056] = 1721, + [2057] = 1722, + [2058] = 1648, + [2059] = 1653, + [2060] = 1630, + [2061] = 1633, + [2062] = 1639, + [2063] = 1647, + [2064] = 1667, + [2065] = 1642, + [2066] = 2066, + [2067] = 1677, + [2068] = 1720, + [2069] = 1727, + [2070] = 1558, + [2071] = 1704, + [2072] = 239, + [2073] = 1684, + [2074] = 1702, [2075] = 2075, - [2076] = 2076, - [2077] = 2077, + [2076] = 1694, + [2077] = 1726, [2078] = 2078, - [2079] = 1813, - [2080] = 1611, - [2081] = 1738, - [2082] = 2082, - [2083] = 1647, + [2079] = 228, + [2080] = 238, + [2081] = 1766, + [2082] = 251, + [2083] = 1728, [2084] = 2084, - [2085] = 1648, - [2086] = 1649, - [2087] = 2087, - [2088] = 1660, - [2089] = 237, - [2090] = 1650, - [2091] = 2091, - [2092] = 2092, - [2093] = 2093, - [2094] = 1692, - [2095] = 1731, - [2096] = 1622, - [2097] = 1713, - [2098] = 1714, - [2099] = 1717, - [2100] = 1719, - [2101] = 2072, - [2102] = 2102, - [2103] = 2074, - [2104] = 1721, - [2105] = 1707, - [2106] = 1675, - [2107] = 2107, - [2108] = 1629, - [2109] = 1633, - [2110] = 228, - [2111] = 1646, - [2112] = 2112, - [2113] = 1638, - [2114] = 231, - [2115] = 240, - [2116] = 1678, - [2117] = 1634, - [2118] = 1690, - [2119] = 2072, - [2120] = 233, - [2121] = 2074, + [2085] = 1543, + [2086] = 231, + [2087] = 1563, + [2088] = 1683, + [2089] = 232, + [2090] = 242, + [2091] = 237, + [2092] = 231, + [2093] = 232, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 1700, + [2098] = 234, + [2099] = 236, + [2100] = 2100, + [2101] = 246, + [2102] = 247, + [2103] = 1705, + [2104] = 2104, + [2105] = 234, + [2106] = 2106, + [2107] = 236, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 1819, + [2112] = 1759, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 2116, + [2117] = 1989, + [2118] = 2118, + [2119] = 228, + [2120] = 2120, + [2121] = 238, [2122] = 2122, - [2123] = 2123, - [2124] = 1702, - [2125] = 1613, - [2126] = 1674, - [2127] = 1618, - [2128] = 1813, - [2129] = 1488, - [2130] = 1496, - [2131] = 1651, - [2132] = 2122, - [2133] = 2123, - [2134] = 2134, - [2135] = 1488, - [2136] = 1496, - [2137] = 2122, - [2138] = 2123, - [2139] = 2122, - [2140] = 2123, - [2141] = 2122, - [2142] = 2123, - [2143] = 1652, - [2144] = 2144, - [2145] = 2145, - [2146] = 2146, - [2147] = 1682, - [2148] = 2148, - [2149] = 1683, - [2150] = 1623, - [2151] = 1624, + [2123] = 1697, + [2124] = 1626, + [2125] = 1629, + [2126] = 1631, + [2127] = 1632, + [2128] = 1638, + [2129] = 1641, + [2130] = 1619, + [2131] = 1646, + [2132] = 1668, + [2133] = 2106, + [2134] = 1622, + [2135] = 2108, + [2136] = 1672, + [2137] = 1702, + [2138] = 1731, + [2139] = 1682, + [2140] = 1689, + [2141] = 2141, + [2142] = 1620, + [2143] = 1683, + [2144] = 1623, + [2145] = 1696, + [2146] = 1716, + [2147] = 2147, + [2148] = 2106, + [2149] = 1657, + [2150] = 2108, + [2151] = 2151, [2152] = 2152, - [2153] = 2153, - [2154] = 1632, - [2155] = 1644, - [2156] = 1658, - [2157] = 1662, - [2158] = 1654, - [2159] = 1656, - [2160] = 1657, - [2161] = 2076, - [2162] = 1661, - [2163] = 2107, - [2164] = 1663, - [2165] = 1664, - [2166] = 1665, - [2167] = 1666, - [2168] = 1667, - [2169] = 1725, - [2170] = 1671, - [2171] = 1672, - [2172] = 1684, - [2173] = 2082, - [2174] = 1679, - [2175] = 1680, - [2176] = 2148, - [2177] = 1687, - [2178] = 1688, - [2179] = 1704, - [2180] = 1715, - [2181] = 1720, - [2182] = 1722, - [2183] = 1625, - [2184] = 1626, - [2185] = 1705, - [2186] = 2153, - [2187] = 1723, - [2188] = 2188, - [2189] = 1706, - [2190] = 1711, - [2191] = 1615, - [2192] = 1616, - [2193] = 1630, - [2194] = 2076, - [2195] = 2195, - [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 1685, - [2200] = 2072, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 2076, - [2205] = 2205, - [2206] = 2206, - [2207] = 2074, - [2208] = 2208, - [2209] = 2076, - [2210] = 2210, - [2211] = 2211, - [2212] = 2076, - [2213] = 2076, - [2214] = 2214, - [2215] = 1699, - [2216] = 1978, - [2217] = 1708, - [2218] = 230, + [2153] = 2106, + [2154] = 1501, + [2155] = 1554, + [2156] = 2151, + [2157] = 2152, + [2158] = 2108, + [2159] = 1501, + [2160] = 1554, + [2161] = 2151, + [2162] = 2152, + [2163] = 2151, + [2164] = 2152, + [2165] = 2151, + [2166] = 2152, + [2167] = 2167, + [2168] = 2168, + [2169] = 239, + [2170] = 2170, + [2171] = 2171, + [2172] = 1644, + [2173] = 2173, + [2174] = 1701, + [2175] = 1717, + [2176] = 1718, + [2177] = 1712, + [2178] = 1724, + [2179] = 2179, + [2180] = 2180, + [2181] = 1719, + [2182] = 1729, + [2183] = 1679, + [2184] = 1621, + [2185] = 1624, + [2186] = 1628, + [2187] = 2187, + [2188] = 1659, + [2189] = 2189, + [2190] = 1675, + [2191] = 1676, + [2192] = 1680, + [2193] = 1685, + [2194] = 1688, + [2195] = 1690, + [2196] = 1691, + [2197] = 1692, + [2198] = 1721, + [2199] = 1722, + [2200] = 2075, + [2201] = 1648, + [2202] = 1653, + [2203] = 1630, + [2204] = 1633, + [2205] = 1639, + [2206] = 1647, + [2207] = 1667, + [2208] = 2173, + [2209] = 2209, + [2210] = 1642, + [2211] = 1708, + [2212] = 1709, + [2213] = 1640, + [2214] = 1652, + [2215] = 1711, + [2216] = 2216, + [2217] = 2217, + [2218] = 2187, [2219] = 2219, - [2220] = 1612, - [2221] = 2221, - [2222] = 2222, + [2220] = 2220, + [2221] = 251, + [2222] = 2106, [2223] = 2223, - [2224] = 235, - [2225] = 1653, - [2226] = 1655, - [2227] = 2152, - [2228] = 2077, - [2229] = 1631, - [2230] = 2198, - [2231] = 2210, + [2224] = 246, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2108, + [2229] = 2229, + [2230] = 2187, + [2231] = 2231, [2232] = 2232, - [2233] = 2233, - [2234] = 2234, + [2233] = 2187, + [2234] = 2187, [2235] = 2235, - [2236] = 2236, - [2237] = 1686, - [2238] = 1689, - [2239] = 1709, - [2240] = 1614, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 1623, - [2245] = 1624, - [2246] = 1632, - [2247] = 1654, - [2248] = 1656, - [2249] = 1657, - [2250] = 1661, - [2251] = 1663, - [2252] = 1664, - [2253] = 1665, - [2254] = 1666, - [2255] = 1667, - [2256] = 1725, - [2257] = 1671, - [2258] = 1672, - [2259] = 1679, - [2260] = 1680, - [2261] = 1687, - [2262] = 1688, - [2263] = 1715, - [2264] = 1720, - [2265] = 1722, - [2266] = 1625, - [2267] = 1626, - [2268] = 1723, - [2269] = 2072, - [2270] = 2270, - [2271] = 1718, - [2272] = 1673, - [2273] = 1724, - [2274] = 1627, - [2275] = 1643, - [2276] = 1645, - [2277] = 1668, - [2278] = 2278, - [2279] = 1699, - [2280] = 1708, - [2281] = 1710, - [2282] = 1612, - [2283] = 2283, - [2284] = 1557, - [2285] = 2285, - [2286] = 2074, - [2287] = 2232, - [2288] = 1691, - [2289] = 2233, - [2290] = 2290, - [2291] = 2234, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2297, + [2236] = 2187, + [2237] = 2187, + [2238] = 247, + [2239] = 2239, + [2240] = 1677, + [2241] = 1720, + [2242] = 1727, + [2243] = 1674, + [2244] = 2244, + [2245] = 2245, + [2246] = 1671, + [2247] = 2247, + [2248] = 1730, + [2249] = 2109, + [2250] = 2220, + [2251] = 1714, + [2252] = 2252, + [2253] = 2253, + [2254] = 2254, + [2255] = 2255, + [2256] = 2256, + [2257] = 2257, + [2258] = 1634, + [2259] = 1635, + [2260] = 1664, + [2261] = 2261, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 1712, + [2266] = 1724, + [2267] = 1719, + [2268] = 1621, + [2269] = 1624, + [2270] = 1628, + [2271] = 1659, + [2272] = 1675, + [2273] = 1676, + [2274] = 1680, + [2275] = 1685, + [2276] = 1688, + [2277] = 1690, + [2278] = 1691, + [2279] = 1692, + [2280] = 1721, + [2281] = 1722, + [2282] = 1648, + [2283] = 1653, + [2284] = 1630, + [2285] = 1633, + [2286] = 1639, + [2287] = 1647, + [2288] = 1667, + [2289] = 1642, + [2290] = 1655, + [2291] = 1649, + [2292] = 1656, + [2293] = 1662, + [2294] = 1665, + [2295] = 1666, + [2296] = 1616, + [2297] = 2096, [2298] = 2298, - [2299] = 2299, - [2300] = 2201, - [2301] = 243, - [2302] = 2146, - [2303] = 244, - [2304] = 2304, - [2305] = 1619, - [2306] = 2306, - [2307] = 2072, - [2308] = 1693, - [2309] = 2074, - [2310] = 236, - [2311] = 1978, - [2312] = 250, - [2313] = 1675, - [2314] = 251, - [2315] = 1620, + [2299] = 1557, + [2300] = 2300, + [2301] = 1677, + [2302] = 1720, + [2303] = 1727, + [2304] = 1674, + [2305] = 242, + [2306] = 2253, + [2307] = 2254, + [2308] = 2308, + [2309] = 2255, + [2310] = 2310, + [2311] = 2311, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, + [2315] = 2315, [2316] = 2316, - [2317] = 1621, - [2318] = 1738, - [2319] = 230, - [2320] = 235, - [2321] = 1827, + [2317] = 2078, + [2318] = 2223, + [2319] = 2319, + [2320] = 2170, + [2321] = 2321, [2322] = 237, - [2323] = 2299, - [2324] = 1694, - [2325] = 1495, - [2326] = 236, - [2327] = 1504, - [2328] = 1638, - [2329] = 1738, - [2330] = 1669, - [2331] = 2331, - [2332] = 2332, - [2333] = 1635, - [2334] = 1681, - [2335] = 1703, - [2336] = 2336, - [2337] = 2337, - [2338] = 2278, - [2339] = 2339, - [2340] = 2198, - [2341] = 2341, - [2342] = 2232, - [2343] = 2233, - [2344] = 2235, - [2345] = 2235, - [2346] = 1557, - [2347] = 2299, - [2348] = 2201, - [2349] = 2278, - [2350] = 228, - [2351] = 240, + [2323] = 2180, + [2324] = 1654, + [2325] = 1686, + [2326] = 1703, + [2327] = 1732, + [2328] = 2189, + [2329] = 1678, + [2330] = 1658, + [2331] = 1713, + [2332] = 1759, + [2333] = 2247, + [2334] = 1715, + [2335] = 2335, + [2336] = 1819, + [2337] = 1618, + [2338] = 1725, + [2339] = 1643, + [2340] = 2340, + [2341] = 1989, + [2342] = 2106, + [2343] = 1759, + [2344] = 2344, + [2345] = 2345, + [2346] = 1723, + [2347] = 1695, + [2348] = 1706, + [2349] = 2349, + [2350] = 2350, + [2351] = 2351, [2352] = 2352, - [2353] = 2236, - [2354] = 1710, - [2355] = 1557, - [2356] = 2356, - [2357] = 2357, - [2358] = 2357, - [2359] = 1677, - [2360] = 2360, - [2361] = 2361, - [2362] = 2362, - [2363] = 2363, - [2364] = 1506, - [2365] = 2365, - [2366] = 1490, - [2367] = 1610, - [2368] = 1676, - [2369] = 1695, - [2370] = 2357, - [2371] = 2371, - [2372] = 1677, - [2373] = 1738, - [2374] = 1495, - [2375] = 2375, - [2376] = 1504, - [2377] = 2377, - [2378] = 2357, - [2379] = 1675, - [2380] = 1638, - [2381] = 1676, - [2382] = 2382, - [2383] = 1488, - [2384] = 1496, - [2385] = 2385, - [2386] = 2386, - [2387] = 1835, + [2353] = 2353, + [2354] = 2220, + [2355] = 2253, + [2356] = 2254, + [2357] = 2256, + [2358] = 2256, + [2359] = 1557, + [2360] = 2078, + [2361] = 2223, + [2362] = 2096, + [2363] = 2257, + [2364] = 1670, + [2365] = 2108, + [2366] = 2231, + [2367] = 1493, + [2368] = 1628, + [2369] = 1659, + [2370] = 1675, + [2371] = 1676, + [2372] = 1680, + [2373] = 1685, + [2374] = 1688, + [2375] = 1690, + [2376] = 1691, + [2377] = 1692, + [2378] = 1721, + [2379] = 1722, + [2380] = 1648, + [2381] = 1653, + [2382] = 1630, + [2383] = 1633, + [2384] = 1639, + [2385] = 1647, + [2386] = 1667, + [2387] = 1642, [2388] = 2388, - [2389] = 2389, - [2390] = 2390, + [2389] = 1677, + [2390] = 1720, [2391] = 2391, - [2392] = 2392, - [2393] = 2392, + [2392] = 1727, + [2393] = 1674, [2394] = 2394, [2395] = 2395, - [2396] = 2375, - [2397] = 2389, + [2396] = 2396, + [2397] = 2397, [2398] = 2398, - [2399] = 2399, - [2400] = 2400, + [2399] = 1683, + [2400] = 235, [2401] = 2401, - [2402] = 2402, - [2403] = 2357, + [2402] = 1645, + [2403] = 2403, [2404] = 2404, [2405] = 2405, - [2406] = 2398, + [2406] = 2391, [2407] = 2407, - [2408] = 2399, + [2408] = 2408, [2409] = 2409, - [2410] = 253, - [2411] = 2411, + [2410] = 1502, + [2411] = 1707, [2412] = 2412, - [2413] = 253, - [2414] = 1623, - [2415] = 1624, - [2416] = 1632, - [2417] = 1654, - [2418] = 1656, - [2419] = 1657, - [2420] = 1661, - [2421] = 1663, - [2422] = 1664, - [2423] = 1665, - [2424] = 1666, - [2425] = 1667, - [2426] = 1725, - [2427] = 1671, - [2428] = 1672, - [2429] = 1679, - [2430] = 1680, - [2431] = 1687, - [2432] = 1688, - [2433] = 1715, - [2434] = 1720, - [2435] = 1722, - [2436] = 1625, - [2437] = 1626, - [2438] = 1723, - [2439] = 1699, - [2440] = 1708, - [2441] = 1710, - [2442] = 1612, - [2443] = 2443, - [2444] = 2357, - [2445] = 1813, - [2446] = 1623, - [2447] = 1624, - [2448] = 1632, - [2449] = 1654, - [2450] = 1656, - [2451] = 1657, - [2452] = 1661, - [2453] = 1663, - [2454] = 1664, - [2455] = 1665, - [2456] = 1666, - [2457] = 1667, - [2458] = 1725, - [2459] = 1671, - [2460] = 1672, - [2461] = 1679, - [2462] = 1680, - [2463] = 1687, - [2464] = 1688, - [2465] = 1715, - [2466] = 1720, - [2467] = 1722, - [2468] = 1625, - [2469] = 1626, - [2470] = 1723, - [2471] = 1699, - [2472] = 1708, - [2473] = 1710, - [2474] = 1612, - [2475] = 1738, - [2476] = 1738, - [2477] = 2386, - [2478] = 1626, - [2479] = 2479, - [2480] = 2480, - [2481] = 2481, + [2413] = 1759, + [2414] = 2414, + [2415] = 2415, + [2416] = 2416, + [2417] = 1819, + [2418] = 2404, + [2419] = 1501, + [2420] = 1554, + [2421] = 1543, + [2422] = 2422, + [2423] = 2423, + [2424] = 1563, + [2425] = 1707, + [2426] = 235, + [2427] = 2427, + [2428] = 2404, + [2429] = 2429, + [2430] = 1621, + [2431] = 1624, + [2432] = 2432, + [2433] = 2433, + [2434] = 1637, + [2435] = 2435, + [2436] = 1645, + [2437] = 2395, + [2438] = 1650, + [2439] = 2401, + [2440] = 1712, + [2441] = 1724, + [2442] = 1719, + [2443] = 1621, + [2444] = 1624, + [2445] = 1628, + [2446] = 1659, + [2447] = 1675, + [2448] = 1676, + [2449] = 1680, + [2450] = 1685, + [2451] = 1688, + [2452] = 1690, + [2453] = 1691, + [2454] = 1692, + [2455] = 1721, + [2456] = 1722, + [2457] = 1648, + [2458] = 1653, + [2459] = 1630, + [2460] = 1633, + [2461] = 1639, + [2462] = 1647, + [2463] = 1667, + [2464] = 1642, + [2465] = 2465, + [2466] = 2404, + [2467] = 2394, + [2468] = 2468, + [2469] = 2469, + [2470] = 2470, + [2471] = 1812, + [2472] = 2403, + [2473] = 1677, + [2474] = 1720, + [2475] = 1727, + [2476] = 1674, + [2477] = 2429, + [2478] = 2478, + [2479] = 1702, + [2480] = 1759, + [2481] = 1759, [2482] = 2482, - [2483] = 2483, - [2484] = 1506, - [2485] = 2485, - [2486] = 1623, - [2487] = 1624, - [2488] = 948, - [2489] = 1490, - [2490] = 1632, - [2491] = 1654, - [2492] = 1656, - [2493] = 1657, - [2494] = 1661, - [2495] = 1663, - [2496] = 1664, - [2497] = 1665, - [2498] = 1666, - [2499] = 1667, - [2500] = 1725, - [2501] = 1671, - [2502] = 1672, - [2503] = 1679, - [2504] = 1680, - [2505] = 1687, - [2506] = 1688, - [2507] = 1978, - [2508] = 1715, - [2509] = 1720, - [2510] = 1722, - [2511] = 1776, - [2512] = 2481, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, - [2516] = 2516, - [2517] = 2481, - [2518] = 1625, - [2519] = 1557, - [2520] = 2481, - [2521] = 957, - [2522] = 2522, - [2523] = 2523, - [2524] = 1738, - [2525] = 2525, - [2526] = 2481, - [2527] = 1723, - [2528] = 1677, - [2529] = 1675, - [2530] = 1638, - [2531] = 2531, - [2532] = 2481, - [2533] = 2533, + [2483] = 1712, + [2484] = 1557, + [2485] = 1724, + [2486] = 1719, + [2487] = 2404, + [2488] = 2488, + [2489] = 2404, + [2490] = 1557, + [2491] = 2491, + [2492] = 1989, + [2493] = 2493, + [2494] = 2494, + [2495] = 1637, + [2496] = 1645, + [2497] = 1650, + [2498] = 969, + [2499] = 1707, + [2500] = 970, + [2501] = 1493, + [2502] = 968, + [2503] = 1502, + [2504] = 1707, + [2505] = 1702, + [2506] = 1683, + [2507] = 2507, + [2508] = 2508, + [2509] = 2509, + [2510] = 2510, + [2511] = 2494, + [2512] = 1712, + [2513] = 1724, + [2514] = 1719, + [2515] = 1621, + [2516] = 1624, + [2517] = 1628, + [2518] = 1659, + [2519] = 1675, + [2520] = 1676, + [2521] = 1680, + [2522] = 1685, + [2523] = 1688, + [2524] = 1690, + [2525] = 1691, + [2526] = 1692, + [2527] = 1721, + [2528] = 1722, + [2529] = 1648, + [2530] = 1653, + [2531] = 1630, + [2532] = 1633, + [2533] = 1639, [2534] = 2534, - [2535] = 2535, - [2536] = 2536, - [2537] = 1610, + [2535] = 1667, + [2536] = 1642, + [2537] = 2537, [2538] = 2538, - [2539] = 1676, + [2539] = 2539, [2540] = 2540, [2541] = 2541, [2542] = 2542, [2543] = 2543, [2544] = 2544, - [2545] = 1695, - [2546] = 2482, - [2547] = 2015, - [2548] = 1699, - [2549] = 1708, - [2550] = 1710, - [2551] = 1612, - [2552] = 2481, - [2553] = 2553, - [2554] = 2481, - [2555] = 958, + [2545] = 2545, + [2546] = 2546, + [2547] = 2547, + [2548] = 2026, + [2549] = 1809, + [2550] = 1677, + [2551] = 1720, + [2552] = 1727, + [2553] = 1674, + [2554] = 2510, + [2555] = 1759, [2556] = 2556, - [2557] = 2481, - [2558] = 1557, - [2559] = 2559, - [2560] = 1677, + [2557] = 2557, + [2558] = 2558, + [2559] = 2510, + [2560] = 2510, [2561] = 2561, - [2562] = 2562, - [2563] = 2123, + [2562] = 2510, + [2563] = 2563, [2564] = 2564, - [2565] = 1813, + [2565] = 2565, [2566] = 2566, - [2567] = 2567, - [2568] = 2122, - [2569] = 2123, - [2570] = 2122, - [2571] = 2123, - [2572] = 2572, - [2573] = 2573, - [2574] = 2567, + [2567] = 2510, + [2568] = 1557, + [2569] = 2510, + [2570] = 2510, + [2571] = 2571, + [2572] = 2510, + [2573] = 1647, + [2574] = 2151, [2575] = 2575, - [2576] = 2576, - [2577] = 2577, - [2578] = 1557, + [2576] = 2151, + [2577] = 2152, + [2578] = 1819, [2579] = 2579, [2580] = 2580, - [2581] = 2581, - [2582] = 2582, + [2581] = 2151, + [2582] = 2152, [2583] = 2583, [2584] = 2584, [2585] = 2585, - [2586] = 2586, - [2587] = 2412, - [2588] = 2122, - [2589] = 2123, - [2590] = 2590, - [2591] = 2122, - [2592] = 2123, - [2593] = 2593, - [2594] = 2594, - [2595] = 2595, - [2596] = 2122, - [2597] = 2123, - [2598] = 1557, - [2599] = 2122, + [2586] = 2152, + [2587] = 2587, + [2588] = 2588, + [2589] = 2589, + [2590] = 2152, + [2591] = 2591, + [2592] = 2592, + [2593] = 2151, + [2594] = 2152, + [2595] = 2151, + [2596] = 2152, + [2597] = 2597, + [2598] = 2598, + [2599] = 2599, [2600] = 2600, - [2601] = 242, - [2602] = 2602, - [2603] = 2600, + [2601] = 2601, + [2602] = 2584, + [2603] = 2603, [2604] = 2604, - [2605] = 2605, - [2606] = 1217, - [2607] = 2607, - [2608] = 2608, - [2609] = 249, - [2610] = 2610, + [2605] = 2433, + [2606] = 2606, + [2607] = 1557, + [2608] = 1557, + [2609] = 2609, + [2610] = 2151, [2611] = 2611, [2612] = 2612, [2613] = 2613, @@ -7262,22 +7262,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2618] = 2618, [2619] = 2619, [2620] = 2620, - [2621] = 2621, - [2622] = 2600, - [2623] = 246, + [2621] = 248, + [2622] = 241, + [2623] = 2623, [2624] = 2624, - [2625] = 2625, - [2626] = 2600, - [2627] = 2600, - [2628] = 2628, - [2629] = 232, + [2625] = 1211, + [2626] = 2626, + [2627] = 253, + [2628] = 230, + [2629] = 2629, [2630] = 2630, [2631] = 2631, - [2632] = 2600, - [2633] = 2600, + [2632] = 2632, + [2633] = 2633, [2634] = 2634, [2635] = 2635, - [2636] = 249, + [2636] = 2636, [2637] = 2637, [2638] = 2638, [2639] = 2639, @@ -7289,146 +7289,146 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2645] = 2645, [2646] = 2646, [2647] = 2647, - [2648] = 2648, + [2648] = 2612, [2649] = 2649, [2650] = 2650, [2651] = 2651, - [2652] = 2652, - [2653] = 2653, + [2652] = 1521, + [2653] = 2612, [2654] = 2654, - [2655] = 2600, + [2655] = 2655, [2656] = 2656, - [2657] = 2657, - [2658] = 2600, - [2659] = 246, - [2660] = 2660, - [2661] = 1511, + [2657] = 2612, + [2658] = 253, + [2659] = 2659, + [2660] = 2612, + [2661] = 2612, [2662] = 2662, [2663] = 2663, - [2664] = 2664, + [2664] = 2612, [2665] = 2665, - [2666] = 2666, - [2667] = 2525, - [2668] = 242, - [2669] = 2523, - [2670] = 1533, + [2666] = 2612, + [2667] = 2667, + [2668] = 241, + [2669] = 2612, + [2670] = 2670, [2671] = 2671, [2672] = 2672, - [2673] = 232, + [2673] = 2673, [2674] = 2674, [2675] = 2675, [2676] = 2676, - [2677] = 2241, + [2677] = 2547, [2678] = 2678, - [2679] = 2316, + [2679] = 2679, [2680] = 2680, [2681] = 2681, - [2682] = 2112, + [2682] = 248, [2683] = 2683, [2684] = 2684, - [2685] = 2685, - [2686] = 2686, - [2687] = 2687, - [2688] = 2202, - [2689] = 1247, - [2690] = 2690, - [2691] = 2691, + [2685] = 230, + [2686] = 1522, + [2687] = 2544, + [2688] = 2688, + [2689] = 2689, + [2690] = 2319, + [2691] = 2113, [2692] = 2692, - [2693] = 2371, - [2694] = 2399, - [2695] = 2375, - [2696] = 2409, - [2697] = 2362, - [2698] = 2698, - [2699] = 2388, - [2700] = 2411, - [2701] = 2389, - [2702] = 2390, - [2703] = 2391, - [2704] = 2375, - [2705] = 2389, - [2706] = 2398, - [2707] = 2399, - [2708] = 2692, - [2709] = 2709, - [2710] = 2405, - [2711] = 2398, - [2712] = 2712, - [2713] = 2407, - [2714] = 2362, - [2715] = 2371, - [2716] = 2388, - [2717] = 1253, - [2718] = 2405, - [2719] = 2691, - [2720] = 2720, + [2693] = 2693, + [2694] = 1235, + [2695] = 2695, + [2696] = 2696, + [2697] = 2697, + [2698] = 2116, + [2699] = 2699, + [2700] = 2147, + [2701] = 2701, + [2702] = 2394, + [2703] = 2429, + [2704] = 2391, + [2705] = 2423, + [2706] = 2706, + [2707] = 1225, + [2708] = 2708, + [2709] = 2465, + [2710] = 2412, + [2711] = 2407, + [2712] = 2429, + [2713] = 2391, + [2714] = 2415, + [2715] = 2395, + [2716] = 2716, + [2717] = 2388, + [2718] = 2414, + [2719] = 2478, + [2720] = 2423, [2721] = 2721, - [2722] = 2722, - [2723] = 2723, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 2725, + [2722] = 2716, + [2723] = 2721, + [2724] = 2478, + [2725] = 2394, + [2726] = 2409, + [2727] = 2395, [2728] = 2728, - [2729] = 2724, - [2730] = 2730, - [2731] = 2731, + [2729] = 2729, + [2730] = 2414, + [2731] = 2388, [2732] = 2732, - [2733] = 2724, - [2734] = 2720, - [2735] = 2725, - [2736] = 2730, - [2737] = 2731, - [2738] = 2721, - [2739] = 2722, - [2740] = 2724, + [2733] = 2733, + [2734] = 2734, + [2735] = 2735, + [2736] = 2736, + [2737] = 2737, + [2738] = 2737, + [2739] = 2733, + [2740] = 2734, [2741] = 2741, [2742] = 2742, [2743] = 2743, - [2744] = 2744, - [2745] = 2745, + [2744] = 2735, + [2745] = 2733, [2746] = 2746, - [2747] = 1270, + [2747] = 2737, [2748] = 2748, - [2749] = 1290, - [2750] = 2750, - [2751] = 1302, - [2752] = 1284, - [2753] = 1259, + [2749] = 2746, + [2750] = 2743, + [2751] = 2737, + [2752] = 2752, + [2753] = 2742, [2754] = 2754, [2755] = 2755, [2756] = 2756, [2757] = 2757, - [2758] = 2758, - [2759] = 2356, + [2758] = 1298, + [2759] = 1273, [2760] = 2760, [2761] = 2761, [2762] = 2762, [2763] = 2763, [2764] = 2764, - [2765] = 2765, + [2765] = 1287, [2766] = 2766, [2767] = 2767, - [2768] = 2768, - [2769] = 2769, + [2768] = 1267, + [2769] = 1322, [2770] = 2770, - [2771] = 2771, + [2771] = 2397, [2772] = 2772, [2773] = 2773, [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2775, + [2777] = 2777, [2778] = 2778, [2779] = 2779, - [2780] = 2772, + [2780] = 2780, [2781] = 2781, [2782] = 2782, [2783] = 2783, - [2784] = 2767, + [2784] = 2784, [2785] = 2785, [2786] = 2786, - [2787] = 2774, + [2787] = 2787, [2788] = 2788, [2789] = 2789, [2790] = 2790, @@ -7440,18 +7440,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2796] = 2796, [2797] = 2797, [2798] = 2798, - [2799] = 2799, + [2799] = 2794, [2800] = 2800, [2801] = 2801, - [2802] = 2802, - [2803] = 2801, + [2802] = 2797, + [2803] = 2803, [2804] = 2804, - [2805] = 2805, - [2806] = 2771, + [2805] = 2801, + [2806] = 2806, [2807] = 2807, [2808] = 2808, - [2809] = 2779, - [2810] = 2770, + [2809] = 2809, + [2810] = 2810, [2811] = 2811, [2812] = 2812, [2813] = 2813, @@ -7459,338 +7459,338 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2815] = 2815, [2816] = 2816, [2817] = 2817, - [2818] = 2811, - [2819] = 2819, + [2818] = 2798, + [2819] = 2779, [2820] = 2820, [2821] = 2821, - [2822] = 2816, - [2823] = 2823, + [2822] = 2822, + [2823] = 2792, [2824] = 2824, - [2825] = 2769, - [2826] = 2776, + [2825] = 2825, + [2826] = 2804, [2827] = 2827, [2828] = 2828, - [2829] = 1466, - [2830] = 1468, - [2831] = 1463, - [2832] = 1573, - [2833] = 1602, - [2834] = 1600, - [2835] = 1603, - [2836] = 1607, - [2837] = 1584, - [2838] = 1589, - [2839] = 1593, - [2840] = 1590, - [2841] = 1591, - [2842] = 1604, - [2843] = 1560, - [2844] = 1605, - [2845] = 1563, - [2846] = 1564, - [2847] = 1565, - [2848] = 1601, - [2849] = 1567, - [2850] = 1586, - [2851] = 1587, - [2852] = 1588, - [2853] = 1585, - [2854] = 1568, - [2855] = 1592, - [2856] = 1569, - [2857] = 1570, - [2858] = 1571, - [2859] = 1572, - [2860] = 1574, - [2861] = 1575, - [2862] = 1598, - [2863] = 1599, - [2864] = 1606, - [2865] = 1566, - [2866] = 241, - [2867] = 2867, - [2868] = 2867, - [2869] = 1484, - [2870] = 248, - [2871] = 1549, - [2872] = 1609, - [2873] = 2873, - [2874] = 1551, - [2875] = 1550, - [2876] = 1537, - [2877] = 1465, - [2878] = 1552, - [2879] = 1518, - [2880] = 1535, - [2881] = 1543, - [2882] = 1544, - [2883] = 1468, - [2884] = 1466, - [2885] = 1485, - [2886] = 1545, - [2887] = 1463, - [2888] = 1546, - [2889] = 1517, - [2890] = 1530, - [2891] = 1486, - [2892] = 1487, - [2893] = 1532, - [2894] = 1499, - [2895] = 1512, - [2896] = 1482, - [2897] = 1478, - [2898] = 1491, - [2899] = 1591, - [2900] = 1524, - [2901] = 1567, - [2902] = 2902, - [2903] = 1547, - [2904] = 1568, - [2905] = 1598, - [2906] = 1599, - [2907] = 1600, - [2908] = 1553, - [2909] = 1525, - [2910] = 2902, - [2911] = 2911, - [2912] = 2912, - [2913] = 2913, - [2914] = 2914, - [2915] = 1556, - [2916] = 1569, - [2917] = 1527, - [2918] = 1601, - [2919] = 1529, - [2920] = 1570, - [2921] = 1602, - [2922] = 1531, - [2923] = 2902, - [2924] = 1603, - [2925] = 1571, - [2926] = 1509, - [2927] = 1510, - [2928] = 1604, - [2929] = 1605, - [2930] = 1606, - [2931] = 1513, - [2932] = 1514, - [2933] = 1594, - [2934] = 1607, - [2935] = 1515, - [2936] = 1492, - [2937] = 2911, - [2938] = 2912, - [2939] = 2913, - [2940] = 2914, - [2941] = 1572, - [2942] = 1573, - [2943] = 2902, - [2944] = 1574, - [2945] = 1560, - [2946] = 1466, - [2947] = 1463, - [2948] = 1468, - [2949] = 2911, - [2950] = 2912, - [2951] = 1593, - [2952] = 2914, - [2953] = 1575, - [2954] = 2902, - [2955] = 1595, - [2956] = 2911, - [2957] = 2912, - [2958] = 2913, - [2959] = 2914, - [2960] = 1563, - [2961] = 1564, - [2962] = 1565, - [2963] = 1596, - [2964] = 2902, - [2965] = 1566, - [2966] = 1584, - [2967] = 1585, - [2968] = 1586, - [2969] = 2902, - [2970] = 1507, - [2971] = 1587, - [2972] = 1519, - [2973] = 2911, - [2974] = 1588, - [2975] = 1589, - [2976] = 2912, - [2977] = 1608, - [2978] = 1465, - [2979] = 1590, - [2980] = 2913, - [2981] = 1508, - [2982] = 1520, - [2983] = 2914, - [2984] = 1576, - [2985] = 1578, - [2986] = 1580, - [2987] = 1536, - [2988] = 1581, - [2989] = 1538, - [2990] = 2902, - [2991] = 1592, - [2992] = 1539, - [2993] = 1521, + [2829] = 2808, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2807, + [2835] = 2835, + [2836] = 2796, + [2837] = 2809, + [2838] = 2838, + [2839] = 2814, + [2840] = 2840, + [2841] = 1465, + [2842] = 1466, + [2843] = 1468, + [2844] = 1472, + [2845] = 1562, + [2846] = 1492, + [2847] = 1471, + [2848] = 1486, + [2849] = 1487, + [2850] = 1473, + [2851] = 1516, + [2852] = 1517, + [2853] = 1518, + [2854] = 1519, + [2855] = 1547, + [2856] = 1568, + [2857] = 1550, + [2858] = 1593, + [2859] = 1594, + [2860] = 1595, + [2861] = 1597, + [2862] = 1607, + [2863] = 1504, + [2864] = 1512, + [2865] = 1513, + [2866] = 1514, + [2867] = 1515, + [2868] = 1526, + [2869] = 1531, + [2870] = 1540, + [2871] = 1551, + [2872] = 1552, + [2873] = 1553, + [2874] = 1520, + [2875] = 1523, + [2876] = 1527, + [2877] = 1555, + [2878] = 1528, + [2879] = 1529, + [2880] = 1532, + [2881] = 1558, + [2882] = 1560, + [2883] = 1548, + [2884] = 2884, + [2885] = 243, + [2886] = 254, + [2887] = 2884, + [2888] = 1483, + [2889] = 1496, + [2890] = 1498, + [2891] = 1525, + [2892] = 1465, + [2893] = 1466, + [2894] = 1468, + [2895] = 1530, + [2896] = 1533, + [2897] = 2897, + [2898] = 1599, + [2899] = 1602, + [2900] = 1469, + [2901] = 1497, + [2902] = 1499, + [2903] = 1500, + [2904] = 1503, + [2905] = 1604, + [2906] = 1613, + [2907] = 1484, + [2908] = 1573, + [2909] = 1614, + [2910] = 1574, + [2911] = 1564, + [2912] = 1482, + [2913] = 1592, + [2914] = 1590, + [2915] = 1488, + [2916] = 1485, + [2917] = 1588, + [2918] = 1600, + [2919] = 1603, + [2920] = 1605, + [2921] = 1606, + [2922] = 1608, + [2923] = 1612, + [2924] = 1494, + [2925] = 1556, + [2926] = 1610, + [2927] = 1571, + [2928] = 1561, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2932, + [2933] = 1469, + [2934] = 1576, + [2935] = 2935, + [2936] = 1546, + [2937] = 1465, + [2938] = 1466, + [2939] = 1468, + [2940] = 2929, + [2941] = 2930, + [2942] = 2931, + [2943] = 2932, + [2944] = 1578, + [2945] = 2935, + [2946] = 1565, + [2947] = 1566, + [2948] = 2929, + [2949] = 2930, + [2950] = 2931, + [2951] = 2932, + [2952] = 1579, + [2953] = 1492, + [2954] = 1582, + [2955] = 1472, + [2956] = 1583, + [2957] = 2935, + [2958] = 1584, + [2959] = 2929, + [2960] = 2930, + [2961] = 2931, + [2962] = 2932, + [2963] = 1586, + [2964] = 1567, + [2965] = 1591, + [2966] = 2935, + [2967] = 1471, + [2968] = 1486, + [2969] = 2935, + [2970] = 2935, + [2971] = 2929, + [2972] = 2930, + [2973] = 1549, + [2974] = 2932, + [2975] = 1487, + [2976] = 1473, + [2977] = 1609, + [2978] = 1542, + [2979] = 1508, + [2980] = 1509, + [2981] = 2935, + [2982] = 1593, + [2983] = 1594, + [2984] = 1595, + [2985] = 1597, + [2986] = 1607, + [2987] = 1504, + [2988] = 1512, + [2989] = 1513, + [2990] = 1514, + [2991] = 1515, + [2992] = 1526, + [2993] = 1531, [2994] = 1540, - [2995] = 1541, - [2996] = 2902, - [2997] = 1523, - [2998] = 1542, - [2999] = 2913, - [3000] = 3000, - [3001] = 3001, - [3002] = 1475, - [3003] = 3003, - [3004] = 3004, - [3005] = 3005, - [3006] = 3006, - [3007] = 3007, - [3008] = 3008, - [3009] = 3009, - [3010] = 3010, - [3011] = 3011, - [3012] = 3012, - [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 3007, - [3017] = 3017, - [3018] = 1473, - [3019] = 3001, - [3020] = 3020, - [3021] = 3021, - [3022] = 3022, - [3023] = 3023, - [3024] = 3007, + [2995] = 1551, + [2996] = 2935, + [2997] = 1535, + [2998] = 1516, + [2999] = 1517, + [3000] = 1518, + [3001] = 1519, + [3002] = 1520, + [3003] = 1523, + [3004] = 1527, + [3005] = 1528, + [3006] = 1529, + [3007] = 1532, + [3008] = 1547, + [3009] = 1548, + [3010] = 1550, + [3011] = 1552, + [3012] = 1553, + [3013] = 1555, + [3014] = 1558, + [3015] = 1560, + [3016] = 1562, + [3017] = 1568, + [3018] = 1536, + [3019] = 1615, + [3020] = 2935, + [3021] = 1569, + [3022] = 1524, + [3023] = 2931, + [3024] = 3024, [3025] = 3025, [3026] = 3026, - [3027] = 3027, - [3028] = 1484, - [3029] = 1482, - [3030] = 3001, - [3031] = 3031, + [3027] = 1483, + [3028] = 3028, + [3029] = 3029, + [3030] = 3030, + [3031] = 1491, [3032] = 3032, - [3033] = 3007, + [3033] = 3033, [3034] = 3034, - [3035] = 3001, - [3036] = 1477, - [3037] = 3001, - [3038] = 3001, - [3039] = 3007, - [3040] = 3040, - [3041] = 3001, - [3042] = 1607, - [3043] = 1609, + [3035] = 3033, + [3036] = 1485, + [3037] = 3033, + [3038] = 3028, + [3039] = 3039, + [3040] = 3028, + [3041] = 3028, + [3042] = 3033, + [3043] = 3043, [3044] = 3044, - [3045] = 1604, - [3046] = 1535, - [3047] = 957, + [3045] = 3028, + [3046] = 3028, + [3047] = 3033, [3048] = 3048, - [3049] = 1602, - [3050] = 1605, - [3051] = 1593, + [3049] = 3049, + [3050] = 3028, + [3051] = 3051, [3052] = 3052, - [3053] = 1549, + [3053] = 3053, [3054] = 3054, [3055] = 3055, - [3056] = 1603, - [3057] = 1598, - [3058] = 1526, - [3059] = 1606, - [3060] = 1543, - [3061] = 1528, - [3062] = 1550, - [3063] = 1579, - [3064] = 1554, - [3065] = 1545, - [3066] = 1548, - [3067] = 1494, - [3068] = 1582, - [3069] = 3069, - [3070] = 1485, - [3071] = 1537, - [3072] = 1592, - [3073] = 1546, - [3074] = 3052, - [3075] = 3075, - [3076] = 1599, - [3077] = 1600, - [3078] = 1517, - [3079] = 948, - [3080] = 3080, - [3081] = 3081, - [3082] = 1493, - [3083] = 1552, - [3084] = 1465, - [3085] = 1560, - [3086] = 1563, - [3087] = 1564, - [3088] = 1565, - [3089] = 1566, - [3090] = 1567, - [3091] = 1568, - [3092] = 1569, - [3093] = 1570, - [3094] = 1571, - [3095] = 1572, - [3096] = 1573, - [3097] = 1574, - [3098] = 1575, - [3099] = 1518, - [3100] = 1544, - [3101] = 1601, - [3102] = 1551, - [3103] = 1584, - [3104] = 1585, - [3105] = 1586, - [3106] = 1587, - [3107] = 1588, - [3108] = 1589, - [3109] = 1590, + [3056] = 3056, + [3057] = 3057, + [3058] = 3058, + [3059] = 3059, + [3060] = 1477, + [3061] = 3061, + [3062] = 3062, + [3063] = 3063, + [3064] = 3064, + [3065] = 1490, + [3066] = 1547, + [3067] = 1492, + [3068] = 1548, + [3069] = 1532, + [3070] = 1472, + [3071] = 1533, + [3072] = 1484, + [3073] = 3073, + [3074] = 968, + [3075] = 1471, + [3076] = 1486, + [3077] = 1530, + [3078] = 1487, + [3079] = 1473, + [3080] = 1573, + [3081] = 1559, + [3082] = 3082, + [3083] = 1593, + [3084] = 1577, + [3085] = 1517, + [3086] = 3086, + [3087] = 1594, + [3088] = 970, + [3089] = 1595, + [3090] = 1574, + [3091] = 1525, + [3092] = 1495, + [3093] = 1597, + [3094] = 1518, + [3095] = 1607, + [3096] = 1504, + [3097] = 1512, + [3098] = 1513, + [3099] = 1544, + [3100] = 1510, + [3101] = 1514, + [3102] = 1515, + [3103] = 1526, + [3104] = 1531, + [3105] = 3105, + [3106] = 3106, + [3107] = 1550, + [3108] = 1552, + [3109] = 1553, [3110] = 3110, - [3111] = 3111, - [3112] = 1489, - [3113] = 1591, - [3114] = 958, - [3115] = 1522, - [3116] = 1486, - [3117] = 3117, - [3118] = 3118, - [3119] = 1491, - [3120] = 3120, - [3121] = 3121, - [3122] = 1475, - [3123] = 3123, - [3124] = 3124, - [3125] = 3117, - [3126] = 3126, - [3127] = 1484, - [3128] = 1482, - [3129] = 3129, - [3130] = 3130, - [3131] = 3131, - [3132] = 3132, - [3133] = 3133, + [3111] = 1599, + [3112] = 1602, + [3113] = 1604, + [3114] = 3114, + [3115] = 1558, + [3116] = 1496, + [3117] = 1560, + [3118] = 1497, + [3119] = 1540, + [3120] = 1551, + [3121] = 1519, + [3122] = 1498, + [3123] = 1499, + [3124] = 1500, + [3125] = 1503, + [3126] = 1520, + [3127] = 1523, + [3128] = 1613, + [3129] = 1527, + [3130] = 1580, + [3131] = 1528, + [3132] = 1562, + [3133] = 1568, [3134] = 3134, - [3135] = 3135, - [3136] = 3136, + [3135] = 969, + [3136] = 1585, [3137] = 3137, [3138] = 3138, - [3139] = 3117, - [3140] = 3140, - [3141] = 3129, + [3139] = 1587, + [3140] = 1529, + [3141] = 3106, [3142] = 3142, - [3143] = 3143, - [3144] = 3144, - [3145] = 3145, - [3146] = 3129, - [3147] = 3147, - [3148] = 3148, - [3149] = 1487, + [3143] = 1516, + [3144] = 1469, + [3145] = 1614, + [3146] = 1598, + [3147] = 1601, + [3148] = 1555, + [3149] = 3149, [3150] = 3150, [3151] = 3151, [3152] = 3152, @@ -7798,410 +7798,410 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3154] = 3154, [3155] = 3155, [3156] = 3156, - [3157] = 3157, - [3158] = 1478, - [3159] = 1512, + [3157] = 1490, + [3158] = 3158, + [3159] = 3159, [3160] = 3160, - [3161] = 1473, - [3162] = 3162, - [3163] = 1477, - [3164] = 1466, - [3165] = 1463, - [3166] = 1468, - [3167] = 3167, + [3161] = 1466, + [3162] = 1482, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 3166, + [3167] = 1468, [3168] = 3168, - [3169] = 3129, - [3170] = 3117, + [3169] = 3169, + [3170] = 3164, [3171] = 3171, - [3172] = 1532, - [3173] = 3129, - [3174] = 1499, + [3172] = 3172, + [3173] = 3173, + [3174] = 3174, [3175] = 3175, - [3176] = 1530, - [3177] = 3177, - [3178] = 1527, - [3179] = 1579, - [3180] = 1492, - [3181] = 1543, - [3182] = 3182, - [3183] = 1546, - [3184] = 686, + [3176] = 1491, + [3177] = 1477, + [3178] = 3178, + [3179] = 3164, + [3180] = 3180, + [3181] = 3181, + [3182] = 3164, + [3183] = 3183, + [3184] = 1488, [3185] = 3185, - [3186] = 1535, - [3187] = 1537, - [3188] = 1553, - [3189] = 1578, - [3190] = 1609, - [3191] = 1485, - [3192] = 1554, - [3193] = 1493, - [3194] = 1494, - [3195] = 1580, - [3196] = 1465, - [3197] = 1536, - [3198] = 1581, - [3199] = 3182, - [3200] = 1594, - [3201] = 1595, - [3202] = 1596, - [3203] = 688, - [3204] = 1582, - [3205] = 958, - [3206] = 687, - [3207] = 1538, - [3208] = 1517, - [3209] = 1539, - [3210] = 1507, - [3211] = 1508, - [3212] = 1518, - [3213] = 1509, - [3214] = 1540, - [3215] = 1510, - [3216] = 3185, - [3217] = 3217, - [3218] = 1513, - [3219] = 1515, - [3220] = 1544, - [3221] = 3221, - [3222] = 1545, - [3223] = 3223, - [3224] = 1549, - [3225] = 1550, - [3226] = 684, - [3227] = 1556, - [3228] = 1489, - [3229] = 1551, - [3230] = 1552, - [3231] = 1608, - [3232] = 685, - [3233] = 1541, - [3234] = 948, - [3235] = 1542, - [3236] = 1548, - [3237] = 957, - [3238] = 3182, - [3239] = 1519, - [3240] = 1520, - [3241] = 1521, - [3242] = 1522, - [3243] = 1523, - [3244] = 1524, - [3245] = 1525, - [3246] = 1526, - [3247] = 3185, - [3248] = 3153, - [3249] = 1528, - [3250] = 1547, - [3251] = 3185, - [3252] = 3182, - [3253] = 1576, + [3186] = 1485, + [3187] = 1590, + [3188] = 1483, + [3189] = 3189, + [3190] = 3190, + [3191] = 3191, + [3192] = 1592, + [3193] = 3193, + [3194] = 3189, + [3195] = 3195, + [3196] = 3196, + [3197] = 3197, + [3198] = 3164, + [3199] = 3189, + [3200] = 3200, + [3201] = 3201, + [3202] = 3202, + [3203] = 1465, + [3204] = 1564, + [3205] = 3205, + [3206] = 3206, + [3207] = 3189, + [3208] = 1583, + [3209] = 1576, + [3210] = 1614, + [3211] = 1578, + [3212] = 968, + [3213] = 1580, + [3214] = 1582, + [3215] = 1584, + [3216] = 1585, + [3217] = 1586, + [3218] = 1530, + [3219] = 1598, + [3220] = 1587, + [3221] = 1588, + [3222] = 1591, + [3223] = 1601, + [3224] = 687, + [3225] = 1600, + [3226] = 1603, + [3227] = 3227, + [3228] = 1605, + [3229] = 1606, + [3230] = 1608, + [3231] = 1612, + [3232] = 3232, + [3233] = 1573, + [3234] = 1524, + [3235] = 1574, + [3236] = 1496, + [3237] = 1497, + [3238] = 1498, + [3239] = 1499, + [3240] = 1500, + [3241] = 1503, + [3242] = 1533, + [3243] = 1494, + [3244] = 1559, + [3245] = 970, + [3246] = 1525, + [3247] = 1484, + [3248] = 3248, + [3249] = 1599, + [3250] = 1602, + [3251] = 1469, + [3252] = 3248, + [3253] = 1604, [3254] = 3254, - [3255] = 1529, - [3256] = 1531, - [3257] = 1514, - [3258] = 3258, - [3259] = 3259, - [3260] = 3260, - [3261] = 1532, - [3262] = 3262, - [3263] = 1482, - [3264] = 3264, - [3265] = 3264, - [3266] = 3266, - [3267] = 3267, - [3268] = 3268, - [3269] = 3269, - [3270] = 3259, - [3271] = 3271, - [3272] = 3264, - [3273] = 3273, - [3274] = 3274, - [3275] = 1475, - [3276] = 1465, - [3277] = 3274, - [3278] = 3278, - [3279] = 3279, - [3280] = 1477, - [3281] = 3281, - [3282] = 3282, - [3283] = 3262, - [3284] = 1486, - [3285] = 1478, - [3286] = 1530, - [3287] = 1512, - [3288] = 3258, - [3289] = 3274, - [3290] = 3290, - [3291] = 3262, - [3292] = 1473, - [3293] = 3264, + [3255] = 1610, + [3256] = 1544, + [3257] = 3257, + [3258] = 1571, + [3259] = 3248, + [3260] = 686, + [3261] = 3261, + [3262] = 1609, + [3263] = 1542, + [3264] = 1495, + [3265] = 969, + [3266] = 1546, + [3267] = 1508, + [3268] = 1509, + [3269] = 1510, + [3270] = 1549, + [3271] = 688, + [3272] = 1556, + [3273] = 1561, + [3274] = 3248, + [3275] = 1565, + [3276] = 1566, + [3277] = 1535, + [3278] = 1536, + [3279] = 1615, + [3280] = 685, + [3281] = 1567, + [3282] = 1569, + [3283] = 1577, + [3284] = 3257, + [3285] = 3257, + [3286] = 1613, + [3287] = 3257, + [3288] = 684, + [3289] = 3180, + [3290] = 1579, + [3291] = 1485, + [3292] = 1482, + [3293] = 1590, [3294] = 3294, - [3295] = 3295, - [3296] = 1536, + [3295] = 1592, + [3296] = 3296, [3297] = 3297, [3298] = 3298, [3299] = 3299, - [3300] = 3129, + [3300] = 3300, [3301] = 3301, [3302] = 3302, [3303] = 3303, [3304] = 3304, - [3305] = 3305, - [3306] = 1538, - [3307] = 3307, - [3308] = 3308, + [3305] = 1488, + [3306] = 3302, + [3307] = 3298, + [3308] = 3302, [3309] = 3309, [3310] = 3310, - [3311] = 3309, - [3312] = 3312, - [3313] = 3310, - [3314] = 3308, - [3315] = 3315, - [3316] = 3316, - [3317] = 3317, - [3318] = 3304, + [3311] = 3311, + [3312] = 3303, + [3313] = 3303, + [3314] = 1491, + [3315] = 3302, + [3316] = 3300, + [3317] = 1564, + [3318] = 3318, [3319] = 3319, - [3320] = 3320, - [3321] = 1513, + [3320] = 1477, + [3321] = 1469, [3322] = 3322, - [3323] = 1539, - [3324] = 3324, - [3325] = 1514, - [3326] = 1515, + [3323] = 3297, + [3324] = 1490, + [3325] = 3325, + [3326] = 3300, [3327] = 3327, [3328] = 3328, - [3329] = 1540, - [3330] = 1596, - [3331] = 3316, - [3332] = 3317, + [3329] = 3329, + [3330] = 1598, + [3331] = 3331, + [3332] = 1535, [3333] = 3333, - [3334] = 3266, - [3335] = 3335, - [3336] = 3336, - [3337] = 3308, - [3338] = 1608, + [3334] = 3334, + [3335] = 3334, + [3336] = 1536, + [3337] = 686, + [3338] = 3327, [3339] = 3339, - [3340] = 3310, - [3341] = 3299, + [3340] = 1615, + [3341] = 684, [3342] = 3342, - [3343] = 684, + [3343] = 685, [3344] = 3344, - [3345] = 3304, - [3346] = 241, + [3345] = 3345, + [3346] = 3346, [3347] = 3347, - [3348] = 3327, - [3349] = 3309, - [3350] = 3304, - [3351] = 1519, - [3352] = 1520, - [3353] = 1521, - [3354] = 1541, - [3355] = 1522, - [3356] = 1523, - [3357] = 1524, - [3358] = 1542, - [3359] = 1526, - [3360] = 1527, - [3361] = 3129, - [3362] = 1528, - [3363] = 3339, - [3364] = 3310, - [3365] = 3327, - [3366] = 3366, + [3348] = 1524, + [3349] = 3333, + [3350] = 1556, + [3351] = 687, + [3352] = 3352, + [3353] = 3353, + [3354] = 3354, + [3355] = 3355, + [3356] = 3164, + [3357] = 1600, + [3358] = 254, + [3359] = 1565, + [3360] = 3360, + [3361] = 3361, + [3362] = 3362, + [3363] = 3363, + [3364] = 1603, + [3365] = 3365, + [3366] = 3311, [3367] = 3367, - [3368] = 3129, - [3369] = 3316, - [3370] = 3299, - [3371] = 1529, + [3368] = 3368, + [3369] = 3369, + [3370] = 1605, + [3371] = 1606, [3372] = 3372, - [3373] = 3307, + [3373] = 1608, [3374] = 3374, - [3375] = 3375, - [3376] = 1482, + [3375] = 1561, + [3376] = 1612, [3377] = 3377, [3378] = 3378, [3379] = 3379, - [3380] = 3380, - [3381] = 1547, - [3382] = 1548, - [3383] = 3383, - [3384] = 3339, - [3385] = 3129, + [3380] = 1566, + [3381] = 3381, + [3382] = 3382, + [3383] = 1609, + [3384] = 1601, + [3385] = 1576, [3386] = 3386, - [3387] = 3129, - [3388] = 3129, - [3389] = 1489, - [3390] = 3390, - [3391] = 3391, - [3392] = 1492, - [3393] = 3393, - [3394] = 3394, - [3395] = 3299, - [3396] = 3267, - [3397] = 3316, - [3398] = 1491, - [3399] = 3399, + [3387] = 3387, + [3388] = 3388, + [3389] = 1542, + [3390] = 1567, + [3391] = 3339, + [3392] = 3345, + [3393] = 1495, + [3394] = 3386, + [3395] = 3352, + [3396] = 3396, + [3397] = 1569, + [3398] = 1577, + [3399] = 3164, [3400] = 3400, - [3401] = 3401, - [3402] = 3402, - [3403] = 1553, - [3404] = 1554, - [3405] = 1556, + [3401] = 3164, + [3402] = 3325, + [3403] = 3353, + [3404] = 3354, + [3405] = 3405, [3406] = 3406, - [3407] = 1487, - [3408] = 3408, - [3409] = 3344, - [3410] = 3309, - [3411] = 687, - [3412] = 3307, - [3413] = 3390, - [3414] = 248, - [3415] = 1493, - [3416] = 1594, + [3407] = 3381, + [3408] = 1494, + [3409] = 3409, + [3410] = 3377, + [3411] = 3411, + [3412] = 3327, + [3413] = 3413, + [3414] = 1559, + [3415] = 3382, + [3416] = 3416, [3417] = 3417, - [3418] = 688, - [3419] = 3419, - [3420] = 1507, + [3418] = 3344, + [3419] = 3334, + [3420] = 3164, [3421] = 3421, - [3422] = 3279, - [3423] = 3423, - [3424] = 1595, - [3425] = 1494, - [3426] = 1576, - [3427] = 1578, - [3428] = 3307, + [3422] = 3164, + [3423] = 3344, + [3424] = 3424, + [3425] = 1546, + [3426] = 1549, + [3427] = 3427, + [3428] = 3428, [3429] = 3429, - [3430] = 3430, - [3431] = 3431, - [3432] = 3432, + [3430] = 1584, + [3431] = 3339, + [3432] = 3346, [3433] = 3433, - [3434] = 3339, + [3434] = 3354, [3435] = 3435, [3436] = 3436, [3437] = 3437, - [3438] = 3308, - [3439] = 3439, - [3440] = 1579, - [3441] = 1580, - [3442] = 1581, - [3443] = 1508, - [3444] = 3444, + [3438] = 1508, + [3439] = 1578, + [3440] = 3440, + [3441] = 3441, + [3442] = 3442, + [3443] = 1509, + [3444] = 3388, [3445] = 3445, - [3446] = 1582, - [3447] = 3328, - [3448] = 1525, - [3449] = 1499, - [3450] = 685, + [3446] = 3318, + [3447] = 3447, + [3448] = 1610, + [3449] = 3345, + [3450] = 1510, [3451] = 3451, [3452] = 3452, - [3453] = 3390, - [3454] = 3454, - [3455] = 3455, - [3456] = 1531, - [3457] = 3322, - [3458] = 3327, - [3459] = 3459, - [3460] = 3460, - [3461] = 3328, - [3462] = 3400, - [3463] = 1509, - [3464] = 3324, - [3465] = 3391, + [3453] = 243, + [3454] = 1579, + [3455] = 688, + [3456] = 3456, + [3457] = 3352, + [3458] = 1591, + [3459] = 1580, + [3460] = 3344, + [3461] = 3461, + [3462] = 1582, + [3463] = 3463, + [3464] = 1583, + [3465] = 3465, [3466] = 3466, - [3467] = 3467, + [3467] = 1585, [3468] = 3468, [3469] = 3469, - [3470] = 686, - [3471] = 3471, - [3472] = 1510, - [3473] = 3473, - [3474] = 3474, + [3470] = 1586, + [3471] = 1587, + [3472] = 3164, + [3473] = 3386, + [3474] = 3386, [3475] = 3475, - [3476] = 3153, - [3477] = 3477, + [3476] = 3476, + [3477] = 3382, [3478] = 3478, [3479] = 3479, - [3480] = 3480, - [3481] = 241, - [3482] = 3279, - [3483] = 248, + [3480] = 1544, + [3481] = 3481, + [3482] = 1485, + [3483] = 1588, [3484] = 3484, [3485] = 3485, [3486] = 3486, - [3487] = 3484, - [3488] = 3488, - [3489] = 3489, - [3490] = 958, - [3491] = 3484, - [3492] = 957, - [3493] = 948, - [3494] = 3485, - [3495] = 3485, - [3496] = 3496, - [3497] = 3497, - [3498] = 3484, - [3499] = 3485, - [3500] = 3477, - [3501] = 3484, - [3502] = 219, - [3503] = 1473, - [3504] = 223, - [3505] = 1477, - [3506] = 3485, - [3507] = 3485, - [3508] = 3485, - [3509] = 3478, - [3510] = 3485, - [3511] = 3484, - [3512] = 229, - [3513] = 239, - [3514] = 1475, - [3515] = 3515, - [3516] = 3516, - [3517] = 3517, + [3487] = 3487, + [3488] = 3353, + [3489] = 3339, + [3490] = 3345, + [3491] = 3491, + [3492] = 3492, + [3493] = 3493, + [3494] = 3352, + [3495] = 3495, + [3496] = 3484, + [3497] = 3353, + [3498] = 3381, + [3499] = 3334, + [3500] = 3500, + [3501] = 3354, + [3502] = 3381, + [3503] = 1571, + [3504] = 3493, + [3505] = 3505, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, + [3509] = 3505, + [3510] = 3506, + [3511] = 3505, + [3512] = 3506, + [3513] = 3513, + [3514] = 3505, + [3515] = 3506, + [3516] = 3506, + [3517] = 3506, [3518] = 3518, - [3519] = 3519, - [3520] = 3520, + [3519] = 3506, + [3520] = 3506, [3521] = 3521, - [3522] = 3223, - [3523] = 3523, - [3524] = 3524, - [3525] = 3525, + [3522] = 252, + [3523] = 240, + [3524] = 1477, + [3525] = 3325, [3526] = 3526, - [3527] = 3527, - [3528] = 3528, - [3529] = 3529, - [3530] = 3530, + [3527] = 3521, + [3528] = 3505, + [3529] = 218, + [3530] = 219, [3531] = 3531, [3532] = 3532, [3533] = 3533, [3534] = 3534, - [3535] = 3535, - [3536] = 3536, - [3537] = 3537, - [3538] = 3538, - [3539] = 3539, - [3540] = 3540, - [3541] = 3541, - [3542] = 3542, - [3543] = 3543, + [3535] = 243, + [3536] = 254, + [3537] = 3505, + [3538] = 1490, + [3539] = 1491, + [3540] = 969, + [3541] = 970, + [3542] = 968, + [3543] = 3526, [3544] = 3544, [3545] = 3545, [3546] = 3546, [3547] = 3547, [3548] = 3548, [3549] = 3549, - [3550] = 3550, + [3550] = 3180, [3551] = 3551, - [3552] = 3552, + [3552] = 3417, [3553] = 3553, [3554] = 3554, [3555] = 3555, [3556] = 3556, [3557] = 3557, [3558] = 3558, - [3559] = 1489, - [3560] = 3560, + [3559] = 3559, + [3560] = 3433, [3561] = 3561, [3562] = 3562, [3563] = 3563, @@ -8212,103 +8212,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3568] = 3568, [3569] = 3569, [3570] = 3570, - [3571] = 3571, + [3571] = 3554, [3572] = 3572, - [3573] = 229, - [3574] = 239, + [3573] = 3573, + [3574] = 3557, [3575] = 3575, [3576] = 3576, - [3577] = 3571, + [3577] = 3577, [3578] = 3578, [3579] = 3579, [3580] = 3580, [3581] = 3581, - [3582] = 3582, + [3582] = 3554, [3583] = 3583, - [3584] = 3584, + [3584] = 3557, [3585] = 3585, [3586] = 3586, [3587] = 3587, - [3588] = 3568, - [3589] = 3589, - [3590] = 3590, - [3591] = 3591, + [3588] = 3557, + [3589] = 3554, + [3590] = 3557, + [3591] = 1477, [3592] = 3592, - [3593] = 3593, - [3594] = 3347, + [3593] = 3554, + [3594] = 3558, [3595] = 3595, [3596] = 3596, - [3597] = 3597, + [3597] = 3554, [3598] = 3598, [3599] = 3599, [3600] = 3600, [3601] = 3601, [3602] = 3602, [3603] = 3603, - [3604] = 3604, + [3604] = 3583, [3605] = 3605, - [3606] = 3606, - [3607] = 3587, + [3606] = 3596, + [3607] = 3607, [3608] = 3608, [3609] = 3609, [3610] = 3610, [3611] = 3611, - [3612] = 3582, + [3612] = 3261, [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3429, - [3617] = 3587, + [3614] = 3580, + [3615] = 3500, + [3616] = 3616, + [3617] = 3476, [3618] = 3618, [3619] = 3619, [3620] = 3620, - [3621] = 3621, + [3621] = 1490, [3622] = 3622, - [3623] = 3623, - [3624] = 3624, + [3623] = 1491, + [3624] = 3469, [3625] = 3625, [3626] = 3626, [3627] = 3627, [3628] = 3628, [3629] = 3629, [3630] = 3630, - [3631] = 3596, - [3632] = 1475, - [3633] = 3582, - [3634] = 3595, - [3635] = 3536, - [3636] = 3587, - [3637] = 3637, + [3631] = 3631, + [3632] = 3632, + [3633] = 3633, + [3634] = 1559, + [3635] = 1544, + [3636] = 1598, + [3637] = 1601, [3638] = 3638, [3639] = 3639, [3640] = 3640, - [3641] = 3641, - [3642] = 3568, - [3643] = 3643, - [3644] = 3555, - [3645] = 3582, + [3641] = 1495, + [3642] = 1510, + [3643] = 3567, + [3644] = 1577, + [3645] = 3645, [3646] = 3646, [3647] = 3647, - [3648] = 3562, - [3649] = 3603, + [3648] = 3648, + [3649] = 3649, [3650] = 3650, - [3651] = 3582, - [3652] = 1522, - [3653] = 3653, - [3654] = 1528, - [3655] = 3587, - [3656] = 3656, - [3657] = 216, - [3658] = 3271, + [3651] = 3570, + [3652] = 3652, + [3653] = 3554, + [3654] = 3654, + [3655] = 3655, + [3656] = 3554, + [3657] = 3657, + [3658] = 3658, [3659] = 3659, [3660] = 3660, - [3661] = 3582, - [3662] = 3662, + [3661] = 224, + [3662] = 3608, [3663] = 3663, [3664] = 3664, [3665] = 3665, [3666] = 3666, - [3667] = 3667, + [3667] = 3631, [3668] = 3668, [3669] = 3669, [3670] = 3670, @@ -8320,38 +8320,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3676] = 3676, [3677] = 3677, [3678] = 3678, - [3679] = 3593, - [3680] = 3528, + [3679] = 3679, + [3680] = 3680, [3681] = 3681, [3682] = 3682, [3683] = 3683, - [3684] = 3587, + [3684] = 3684, [3685] = 3685, - [3686] = 3541, + [3686] = 3686, [3687] = 3687, [3688] = 3688, [3689] = 3689, - [3690] = 3690, + [3690] = 3576, [3691] = 3691, - [3692] = 3638, + [3692] = 3692, [3693] = 3693, - [3694] = 3681, - [3695] = 3567, + [3694] = 3694, + [3695] = 3695, [3696] = 3696, - [3697] = 3638, + [3697] = 3697, [3698] = 3698, [3699] = 3699, [3700] = 3700, [3701] = 3701, [3702] = 3702, - [3703] = 3693, - [3704] = 3582, + [3703] = 3703, + [3704] = 3704, [3705] = 3705, - [3706] = 3643, + [3706] = 3706, [3707] = 3707, [3708] = 3708, [3709] = 3709, - [3710] = 3571, + [3710] = 3710, [3711] = 3711, [3712] = 3712, [3713] = 3713, @@ -8360,275 +8360,275 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3716] = 3716, [3717] = 3717, [3718] = 3718, - [3719] = 3719, + [3719] = 3587, [3720] = 3720, - [3721] = 3721, - [3722] = 3722, - [3723] = 1473, - [3724] = 3724, - [3725] = 1477, - [3726] = 3527, + [3721] = 3647, + [3722] = 3553, + [3723] = 3586, + [3724] = 3599, + [3725] = 3725, + [3726] = 3726, [3727] = 3727, [3728] = 3728, - [3729] = 3729, - [3730] = 3730, - [3731] = 3731, + [3729] = 252, + [3730] = 240, + [3731] = 3581, [3732] = 3732, - [3733] = 3628, - [3734] = 3294, + [3733] = 3733, + [3734] = 3734, [3735] = 3735, [3736] = 3736, - [3737] = 3595, + [3737] = 3737, [3738] = 3738, - [3739] = 3393, - [3740] = 3668, + [3739] = 3739, + [3740] = 3740, [3741] = 3741, - [3742] = 3647, - [3743] = 3628, - [3744] = 3744, - [3745] = 3741, + [3742] = 1580, + [3743] = 1585, + [3744] = 1587, + [3745] = 3745, [3746] = 3746, [3747] = 3747, [3748] = 3748, - [3749] = 1579, + [3749] = 3749, [3750] = 3750, - [3751] = 3471, - [3752] = 1582, - [3753] = 1548, - [3754] = 1554, - [3755] = 3582, + [3751] = 3751, + [3752] = 3752, + [3753] = 3753, + [3754] = 3304, + [3755] = 3755, [3756] = 3756, - [3757] = 1493, - [3758] = 1494, + [3757] = 3757, + [3758] = 3758, [3759] = 3759, [3760] = 3760, [3761] = 3761, [3762] = 3762, - [3763] = 3763, + [3763] = 3680, [3764] = 3764, [3765] = 3765, - [3766] = 1526, - [3767] = 3727, + [3766] = 3766, + [3767] = 3767, [3768] = 3768, [3769] = 3769, [3770] = 3770, - [3771] = 3771, - [3772] = 3772, - [3773] = 3770, + [3771] = 3557, + [3772] = 3607, + [3773] = 3773, [3774] = 3774, [3775] = 3775, [3776] = 3776, - [3777] = 687, - [3778] = 3778, + [3777] = 3586, + [3778] = 3592, [3779] = 3779, [3780] = 3780, - [3781] = 685, + [3781] = 3781, [3782] = 3782, - [3783] = 3583, - [3784] = 688, + [3783] = 3783, + [3784] = 3587, [3785] = 3785, - [3786] = 3653, - [3787] = 1491, - [3788] = 3759, - [3789] = 3682, - [3790] = 3778, + [3786] = 3780, + [3787] = 3768, + [3788] = 3553, + [3789] = 3774, + [3790] = 3790, [3791] = 3791, [3792] = 3792, - [3793] = 3793, - [3794] = 3794, + [3793] = 3768, + [3794] = 3558, [3795] = 3795, [3796] = 3796, - [3797] = 1487, + [3797] = 3797, [3798] = 3798, - [3799] = 1493, - [3800] = 1489, - [3801] = 1494, + [3799] = 3799, + [3800] = 3311, + [3801] = 3801, [3802] = 3802, [3803] = 3803, - [3804] = 3804, + [3804] = 3677, [3805] = 3805, [3806] = 3806, - [3807] = 3807, - [3808] = 3533, - [3809] = 3778, - [3810] = 3524, - [3811] = 3529, - [3812] = 3812, - [3813] = 3813, + [3807] = 1598, + [3808] = 3798, + [3809] = 1601, + [3810] = 3801, + [3811] = 3811, + [3812] = 3769, + [3813] = 3798, [3814] = 3814, - [3815] = 3770, - [3816] = 3816, - [3817] = 3659, + [3815] = 1495, + [3816] = 1510, + [3817] = 3817, [3818] = 3818, - [3819] = 3812, - [3820] = 3780, - [3821] = 1499, - [3822] = 1579, - [3823] = 3544, + [3819] = 3819, + [3820] = 3805, + [3821] = 3626, + [3822] = 3806, + [3823] = 3823, [3824] = 3824, [3825] = 3825, [3826] = 3826, [3827] = 3827, - [3828] = 3769, - [3829] = 1582, - [3830] = 3769, - [3831] = 3771, - [3832] = 3832, - [3833] = 3816, - [3834] = 3834, - [3835] = 3770, - [3836] = 3836, - [3837] = 3825, + [3828] = 3828, + [3829] = 1577, + [3830] = 3830, + [3831] = 3831, + [3832] = 3613, + [3833] = 1580, + [3834] = 1585, + [3835] = 1587, + [3836] = 3803, + [3837] = 3837, [3838] = 3838, - [3839] = 3683, - [3840] = 3840, + [3839] = 3814, + [3840] = 3756, [3841] = 3841, - [3842] = 3774, - [3843] = 3575, - [3844] = 3771, + [3842] = 3842, + [3843] = 3801, + [3844] = 3844, [3845] = 3845, [3846] = 3846, - [3847] = 3660, - [3848] = 3267, - [3849] = 684, + [3847] = 3847, + [3848] = 1530, + [3849] = 3849, [3850] = 3850, - [3851] = 3779, + [3851] = 3318, [3852] = 3852, - [3853] = 3853, + [3853] = 3817, [3854] = 3854, - [3855] = 3770, - [3856] = 3662, - [3857] = 3857, - [3858] = 3778, - [3859] = 3779, - [3860] = 3266, - [3861] = 3774, + [3855] = 3855, + [3856] = 3830, + [3857] = 3751, + [3858] = 3842, + [3859] = 3859, + [3860] = 3860, + [3861] = 3659, [3862] = 3862, - [3863] = 3778, - [3864] = 3791, - [3865] = 3852, - [3866] = 3850, - [3867] = 3805, - [3868] = 3853, + [3863] = 3803, + [3864] = 3698, + [3865] = 3699, + [3866] = 3811, + [3867] = 3752, + [3868] = 3700, [3869] = 3869, - [3870] = 3792, - [3871] = 3769, - [3872] = 3803, - [3873] = 1522, - [3874] = 1526, - [3875] = 1528, - [3876] = 3771, - [3877] = 3778, - [3878] = 3780, - [3879] = 3795, - [3880] = 3221, - [3881] = 3687, - [3882] = 3688, - [3883] = 3883, - [3884] = 3803, + [3870] = 3758, + [3871] = 3759, + [3872] = 3872, + [3873] = 3828, + [3874] = 3760, + [3875] = 3875, + [3876] = 3876, + [3877] = 3701, + [3878] = 3878, + [3879] = 3831, + [3880] = 3826, + [3881] = 3881, + [3882] = 3882, + [3883] = 3801, + [3884] = 3232, [3885] = 3885, - [3886] = 3769, - [3887] = 3838, - [3888] = 3883, - [3889] = 3771, - [3890] = 3834, - [3891] = 3891, - [3892] = 3862, + [3886] = 3803, + [3887] = 3755, + [3888] = 3888, + [3889] = 3805, + [3890] = 3823, + [3891] = 3806, + [3892] = 3798, [3893] = 3893, - [3894] = 686, - [3895] = 3794, - [3896] = 3770, - [3897] = 3579, - [3898] = 1548, - [3899] = 3670, - [3900] = 3728, - [3901] = 3576, - [3902] = 3869, - [3903] = 3780, - [3904] = 3730, - [3905] = 3841, - [3906] = 3780, - [3907] = 3862, - [3908] = 3785, - [3909] = 3909, - [3910] = 3778, - [3911] = 3911, - [3912] = 3731, - [3913] = 3732, + [3894] = 3798, + [3895] = 3779, + [3896] = 3896, + [3897] = 3841, + [3898] = 3898, + [3899] = 3899, + [3900] = 3899, + [3901] = 684, + [3902] = 3838, + [3903] = 3766, + [3904] = 687, + [3905] = 3905, + [3906] = 686, + [3907] = 688, + [3908] = 685, + [3909] = 3801, + [3910] = 3801, + [3911] = 3803, + [3912] = 3912, + [3913] = 3845, [3914] = 3914, - [3915] = 3763, - [3916] = 3804, - [3917] = 3917, - [3918] = 3738, - [3919] = 3805, - [3920] = 3769, - [3921] = 3764, - [3922] = 1554, - [3923] = 3771, - [3924] = 3924, - [3925] = 3780, - [3926] = 3813, - [3927] = 3927, - [3928] = 3928, + [3915] = 3896, + [3916] = 3673, + [3917] = 3805, + [3918] = 3806, + [3919] = 1533, + [3920] = 3855, + [3921] = 3921, + [3922] = 1525, + [3923] = 3896, + [3924] = 3841, + [3925] = 3844, + [3926] = 3798, + [3927] = 3921, + [3928] = 3805, [3929] = 3929, - [3930] = 3930, - [3931] = 3931, + [3930] = 3764, + [3931] = 3765, [3932] = 3932, - [3933] = 3933, - [3934] = 3934, - [3935] = 3935, + [3933] = 3806, + [3934] = 3862, + [3935] = 3675, [3936] = 3936, - [3937] = 3937, + [3937] = 3817, [3938] = 3938, - [3939] = 3939, - [3940] = 3940, - [3941] = 3941, - [3942] = 3942, - [3943] = 908, - [3944] = 909, - [3945] = 910, - [3946] = 3946, - [3947] = 3947, - [3948] = 3948, - [3949] = 3949, - [3950] = 3950, - [3951] = 3951, - [3952] = 3952, - [3953] = 3951, - [3954] = 3954, + [3939] = 3801, + [3940] = 3825, + [3941] = 1559, + [3942] = 3899, + [3943] = 3803, + [3944] = 3728, + [3945] = 3732, + [3946] = 3824, + [3947] = 3838, + [3948] = 1544, + [3949] = 3733, + [3950] = 3805, + [3951] = 3806, + [3952] = 3936, + [3953] = 3736, + [3954] = 3938, [3955] = 3955, - [3956] = 3956, + [3956] = 3882, [3957] = 3957, - [3958] = 3818, - [3959] = 3832, - [3960] = 3836, - [3961] = 3961, - [3962] = 843, - [3963] = 901, - [3964] = 858, - [3965] = 893, - [3966] = 896, - [3967] = 780, - [3968] = 912, - [3969] = 913, - [3970] = 914, - [3971] = 879, + [3958] = 3958, + [3959] = 3959, + [3960] = 3960, + [3961] = 890, + [3962] = 828, + [3963] = 3963, + [3964] = 874, + [3965] = 3965, + [3966] = 1634, + [3967] = 1635, + [3968] = 3968, + [3969] = 3969, + [3970] = 3970, + [3971] = 3971, [3972] = 3972, [3973] = 3973, [3974] = 3974, [3975] = 3975, [3976] = 3976, [3977] = 3977, - [3978] = 3549, + [3978] = 3978, [3979] = 3979, - [3980] = 812, - [3981] = 813, - [3982] = 831, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, [3983] = 3983, [3984] = 3984, [3985] = 3985, [3986] = 3986, - [3987] = 3987, + [3987] = 859, [3988] = 3988, [3989] = 3989, [3990] = 3990, @@ -8640,54 +8640,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3996] = 3996, [3997] = 3997, [3998] = 3998, - [3999] = 3999, - [4000] = 790, - [4001] = 792, - [4002] = 4002, - [4003] = 793, - [4004] = 4004, - [4005] = 4005, + [3999] = 867, + [4000] = 4000, + [4001] = 4001, + [4002] = 3802, + [4003] = 4003, + [4004] = 870, + [4005] = 871, [4006] = 4006, [4007] = 4007, [4008] = 4008, [4009] = 4009, [4010] = 4010, [4011] = 4011, - [4012] = 796, - [4013] = 797, - [4014] = 799, - [4015] = 802, + [4012] = 4012, + [4013] = 4013, + [4014] = 4014, + [4015] = 4015, [4016] = 4016, - [4017] = 4017, + [4017] = 4015, [4018] = 4018, - [4019] = 3948, + [4019] = 4019, [4020] = 4020, - [4021] = 4009, - [4022] = 3998, - [4023] = 4017, + [4021] = 3797, + [4022] = 4022, + [4023] = 4023, [4024] = 4024, [4025] = 4025, - [4026] = 4026, - [4027] = 3639, - [4028] = 806, - [4029] = 4029, - [4030] = 4030, - [4031] = 807, - [4032] = 808, - [4033] = 809, - [4034] = 764, - [4035] = 765, - [4036] = 767, - [4037] = 3979, - [4038] = 814, + [4026] = 882, + [4027] = 4027, + [4028] = 1634, + [4029] = 883, + [4030] = 884, + [4031] = 887, + [4032] = 1726, + [4033] = 1635, + [4034] = 4034, + [4035] = 4035, + [4036] = 4036, + [4037] = 4037, + [4038] = 249, [4039] = 4039, - [4040] = 3992, - [4041] = 3997, + [4040] = 250, + [4041] = 4035, [4042] = 4042, - [4043] = 4043, - [4044] = 766, + [4043] = 3932, + [4044] = 1728, [4045] = 4045, - [4046] = 819, + [4046] = 4046, [4047] = 4047, [4048] = 4048, [4049] = 4049, @@ -8699,114 +8699,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4055] = 4055, [4056] = 4056, [4057] = 4057, - [4058] = 4058, - [4059] = 771, - [4060] = 772, + [4058] = 3849, + [4059] = 4059, + [4060] = 4060, [4061] = 4061, - [4062] = 4062, + [4062] = 840, [4063] = 4063, [4064] = 4064, - [4065] = 4043, + [4065] = 3960, [4066] = 4066, [4067] = 4067, [4068] = 4068, - [4069] = 776, + [4069] = 893, [4070] = 4070, [4071] = 4071, [4072] = 4072, - [4073] = 4045, + [4073] = 4073, [4074] = 4074, [4075] = 4075, [4076] = 4076, - [4077] = 4077, - [4078] = 4078, - [4079] = 835, - [4080] = 836, - [4081] = 837, - [4082] = 4082, - [4083] = 838, - [4084] = 4075, - [4085] = 839, - [4086] = 840, - [4087] = 841, + [4077] = 896, + [4078] = 897, + [4079] = 898, + [4080] = 775, + [4081] = 4022, + [4082] = 776, + [4083] = 780, + [4084] = 905, + [4085] = 4085, + [4086] = 4086, + [4087] = 4087, [4088] = 4088, - [4089] = 842, - [4090] = 783, + [4089] = 4089, + [4090] = 766, [4091] = 4091, [4092] = 4092, [4093] = 4093, - [4094] = 845, - [4095] = 846, - [4096] = 849, - [4097] = 770, - [4098] = 773, - [4099] = 774, - [4100] = 915, + [4094] = 823, + [4095] = 4095, + [4096] = 4096, + [4097] = 4097, + [4098] = 4098, + [4099] = 912, + [4100] = 861, [4101] = 4101, [4102] = 4102, [4103] = 4103, [4104] = 4104, [4105] = 4105, - [4106] = 3993, + [4106] = 4061, [4107] = 4107, - [4108] = 3999, - [4109] = 4002, + [4108] = 4108, + [4109] = 4109, [4110] = 4110, - [4111] = 4111, - [4112] = 4112, + [4111] = 863, + [4112] = 3996, [4113] = 4113, - [4114] = 4114, - [4115] = 4026, - [4116] = 4030, + [4114] = 3986, + [4115] = 4115, + [4116] = 4116, [4117] = 4117, - [4118] = 866, - [4119] = 867, - [4120] = 868, - [4121] = 869, - [4122] = 870, - [4123] = 871, - [4124] = 872, + [4118] = 4118, + [4119] = 4119, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 783, + [4124] = 4124, [4125] = 4125, [4126] = 4126, [4127] = 4127, - [4128] = 876, - [4129] = 877, - [4130] = 777, + [4128] = 894, + [4129] = 4129, + [4130] = 4130, [4131] = 4131, - [4132] = 4132, - [4133] = 3993, - [4134] = 4134, + [4132] = 902, + [4133] = 765, + [4134] = 797, [4135] = 4135, - [4136] = 3999, + [4136] = 4136, [4137] = 4137, [4138] = 4138, [4139] = 4139, [4140] = 4140, [4141] = 4141, - [4142] = 4026, - [4143] = 4143, - [4144] = 887, - [4145] = 888, - [4146] = 889, - [4147] = 890, - [4148] = 892, + [4142] = 4142, + [4143] = 4023, + [4144] = 4144, + [4145] = 4145, + [4146] = 4146, + [4147] = 4147, + [4148] = 822, [4149] = 4149, [4150] = 4150, - [4151] = 4151, - [4152] = 4152, + [4151] = 841, + [4152] = 853, [4153] = 4153, - [4154] = 4048, - [4155] = 4155, + [4154] = 864, + [4155] = 1613, [4156] = 4156, - [4157] = 3999, - [4158] = 4158, - [4159] = 4159, - [4160] = 4160, - [4161] = 4161, - [4162] = 4026, - [4163] = 4163, - [4164] = 4164, - [4165] = 4165, + [4157] = 4157, + [4158] = 892, + [4159] = 1614, + [4160] = 830, + [4161] = 4037, + [4162] = 851, + [4163] = 854, + [4164] = 803, + [4165] = 804, [4166] = 4166, [4167] = 4167, [4168] = 4168, @@ -8815,48 +8815,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4171] = 4171, [4172] = 4172, [4173] = 4173, - [4174] = 1611, - [4175] = 1621, + [4174] = 787, + [4175] = 4175, [4176] = 4176, [4177] = 4177, [4178] = 4178, - [4179] = 4179, - [4180] = 4180, - [4181] = 4074, - [4182] = 4182, - [4183] = 4183, - [4184] = 4184, - [4185] = 4185, - [4186] = 4186, - [4187] = 1651, - [4188] = 4188, - [4189] = 4189, - [4190] = 1652, + [4179] = 789, + [4180] = 821, + [4181] = 4181, + [4182] = 838, + [4183] = 824, + [4184] = 825, + [4185] = 4070, + [4186] = 791, + [4187] = 772, + [4188] = 774, + [4189] = 782, + [4190] = 807, [4191] = 4191, [4192] = 4192, - [4193] = 4193, + [4193] = 3979, [4194] = 4194, - [4195] = 1683, - [4196] = 1684, + [4195] = 4195, + [4196] = 4196, [4197] = 4197, - [4198] = 4167, + [4198] = 4198, [4199] = 4199, - [4200] = 3993, + [4200] = 4070, [4201] = 4201, [4202] = 4202, [4203] = 4203, [4204] = 4204, [4205] = 4205, [4206] = 4206, - [4207] = 4207, + [4207] = 4052, [4208] = 4208, - [4209] = 4209, - [4210] = 4210, - [4211] = 4006, - [4212] = 4020, - [4213] = 4213, - [4214] = 4113, - [4215] = 4132, + [4209] = 3996, + [4210] = 4023, + [4211] = 4211, + [4212] = 4212, + [4213] = 888, + [4214] = 4214, + [4215] = 4215, [4216] = 4216, [4217] = 4217, [4218] = 4218, @@ -8869,127 +8869,127 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4225] = 4225, [4226] = 4226, [4227] = 4227, - [4228] = 4102, - [4229] = 1646, - [4230] = 1678, - [4231] = 1634, - [4232] = 1690, - [4233] = 1702, - [4234] = 1618, - [4235] = 4235, + [4228] = 4228, + [4229] = 4229, + [4230] = 4230, + [4231] = 4231, + [4232] = 4232, + [4233] = 4233, + [4234] = 4234, + [4235] = 768, [4236] = 4236, [4237] = 4237, [4238] = 4238, [4239] = 4239, - [4240] = 1658, - [4241] = 1662, + [4240] = 4102, + [4241] = 4241, [4242] = 4242, [4243] = 4243, [4244] = 4244, [4245] = 4245, - [4246] = 4078, - [4247] = 4077, - [4248] = 4248, + [4246] = 4246, + [4247] = 4247, + [4248] = 771, [4249] = 4249, [4250] = 4250, - [4251] = 4008, + [4251] = 3646, [4252] = 4252, - [4253] = 4253, - [4254] = 4254, - [4255] = 4255, - [4256] = 4256, + [4253] = 3648, + [4254] = 1717, + [4255] = 800, + [4256] = 910, [4257] = 4257, - [4258] = 3996, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 4262, + [4258] = 4258, + [4259] = 784, + [4260] = 805, + [4261] = 4074, + [4262] = 793, [4263] = 4263, - [4264] = 4264, + [4264] = 794, [4265] = 4265, [4266] = 4266, [4267] = 4267, - [4268] = 1689, - [4269] = 1709, - [4270] = 4270, + [4268] = 4055, + [4269] = 801, + [4270] = 4076, [4271] = 4271, [4272] = 4272, [4273] = 4273, - [4274] = 4274, + [4274] = 802, [4275] = 4275, - [4276] = 4076, - [4277] = 4277, + [4276] = 4276, + [4277] = 812, [4278] = 4278, [4279] = 4279, - [4280] = 4056, - [4281] = 4185, - [4282] = 4282, - [4283] = 4283, + [4280] = 818, + [4281] = 4281, + [4282] = 819, + [4283] = 779, [4284] = 4284, [4285] = 4285, [4286] = 4286, - [4287] = 4193, - [4288] = 4288, + [4287] = 4287, + [4288] = 4221, [4289] = 4289, - [4290] = 4201, - [4291] = 4204, - [4292] = 4237, - [4293] = 4293, - [4294] = 4222, + [4290] = 1672, + [4291] = 4291, + [4292] = 4292, + [4293] = 1731, + [4294] = 4294, [4295] = 4295, - [4296] = 4296, + [4296] = 4117, [4297] = 4297, [4298] = 4298, [4299] = 4299, - [4300] = 4300, - [4301] = 4301, - [4302] = 4302, - [4303] = 3972, - [4304] = 1611, - [4305] = 1621, - [4306] = 4306, - [4307] = 4307, + [4300] = 4122, + [4301] = 1672, + [4302] = 4052, + [4303] = 1682, + [4304] = 4304, + [4305] = 4305, + [4306] = 4037, + [4307] = 4014, [4308] = 4308, [4309] = 4309, [4310] = 4310, [4311] = 4311, [4312] = 4312, - [4313] = 4313, - [4314] = 4314, - [4315] = 1651, - [4316] = 1652, - [4317] = 4317, - [4318] = 4062, + [4313] = 1731, + [4314] = 4291, + [4315] = 4281, + [4316] = 4286, + [4317] = 4275, + [4318] = 4318, [4319] = 4319, - [4320] = 1683, - [4321] = 1684, - [4322] = 4322, - [4323] = 4323, + [4320] = 4320, + [4321] = 4321, + [4322] = 4019, + [4323] = 1689, [4324] = 4324, - [4325] = 4325, + [4325] = 1696, [4326] = 4326, [4327] = 4327, [4328] = 4328, [4329] = 4329, - [4330] = 4330, - [4331] = 4331, - [4332] = 4332, - [4333] = 4193, - [4334] = 4334, + [4330] = 1716, + [4331] = 4110, + [4332] = 855, + [4333] = 873, + [4334] = 875, [4335] = 4335, - [4336] = 4336, - [4337] = 1646, - [4338] = 1678, - [4339] = 1634, + [4336] = 878, + [4337] = 886, + [4338] = 4338, + [4339] = 755, [4340] = 4340, - [4341] = 1690, - [4342] = 1702, - [4343] = 1618, + [4341] = 4341, + [4342] = 4342, + [4343] = 4343, [4344] = 4344, - [4345] = 4345, - [4346] = 1658, - [4347] = 1662, - [4348] = 4348, + [4345] = 3973, + [4346] = 3773, + [4347] = 4347, + [4348] = 3996, [4349] = 4349, [4350] = 4350, [4351] = 4351, @@ -8997,284 +8997,284 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4353] = 4353, [4354] = 4354, [4355] = 4355, - [4356] = 4356, + [4356] = 3981, [4357] = 4357, [4358] = 4358, [4359] = 4359, [4360] = 4360, - [4361] = 1689, - [4362] = 1709, + [4361] = 4361, + [4362] = 1718, [4363] = 4363, [4364] = 4364, [4365] = 4365, [4366] = 4366, - [4367] = 4284, - [4368] = 4368, - [4369] = 4194, - [4370] = 4370, + [4367] = 4013, + [4368] = 1682, + [4369] = 903, + [4370] = 4222, [4371] = 4371, - [4372] = 4372, + [4372] = 4048, [4373] = 4373, - [4374] = 4026, + [4374] = 4374, [4375] = 4375, - [4376] = 4376, - [4377] = 4377, + [4376] = 4095, + [4377] = 4349, [4378] = 4378, [4379] = 4379, - [4380] = 3948, - [4381] = 4007, - [4382] = 4382, - [4383] = 3992, - [4384] = 3997, - [4385] = 4064, - [4386] = 4222, - [4387] = 4056, - [4388] = 4030, + [4380] = 3957, + [4381] = 4198, + [4382] = 904, + [4383] = 3974, + [4384] = 4384, + [4385] = 906, + [4386] = 1717, + [4387] = 1718, + [4388] = 1716, [4389] = 4389, [4390] = 4390, - [4391] = 245, - [4392] = 247, - [4393] = 852, + [4391] = 4391, + [4392] = 4392, + [4393] = 4393, [4394] = 4394, - [4395] = 3999, + [4395] = 4357, [4396] = 4396, [4397] = 4397, - [4398] = 885, - [4399] = 811, - [4400] = 4400, - [4401] = 4401, - [4402] = 4067, + [4398] = 4398, + [4399] = 4399, + [4400] = 1671, + [4401] = 1694, + [4402] = 4402, [4403] = 4403, - [4404] = 4404, - [4405] = 4405, + [4404] = 4281, + [4405] = 4019, [4406] = 4406, [4407] = 4407, [4408] = 4408, - [4409] = 4185, - [4410] = 4201, - [4411] = 4204, - [4412] = 4244, - [4413] = 4002, + [4409] = 4409, + [4410] = 4410, + [4411] = 4411, + [4412] = 4412, + [4413] = 4286, [4414] = 4414, - [4415] = 886, - [4416] = 900, + [4415] = 4415, + [4416] = 4416, [4417] = 4417, - [4418] = 4418, + [4418] = 4061, [4419] = 4419, - [4420] = 4420, - [4421] = 4421, + [4420] = 1671, + [4421] = 1689, [4422] = 4422, - [4423] = 4423, - [4424] = 4424, + [4423] = 4374, + [4424] = 4053, [4425] = 4425, [4426] = 4426, - [4427] = 4427, - [4428] = 3824, - [4429] = 1543, + [4427] = 4117, + [4428] = 4022, + [4429] = 4429, [4430] = 4430, - [4431] = 859, - [4432] = 1546, + [4431] = 4431, + [4432] = 4037, [4433] = 4433, - [4434] = 905, + [4434] = 1694, [4435] = 4435, [4436] = 4436, [4437] = 4437, [4438] = 4438, - [4439] = 4439, - [4440] = 4440, + [4439] = 4236, + [4440] = 1696, [4441] = 4441, [4442] = 4442, - [4443] = 4443, - [4444] = 4070, - [4445] = 4445, + [4443] = 889, + [4444] = 4074, + [4445] = 4076, [4446] = 4446, - [4447] = 4447, + [4447] = 3996, [4448] = 4448, - [4449] = 3586, - [4450] = 3598, - [4451] = 4451, - [4452] = 4312, - [4453] = 828, - [4454] = 4454, - [4455] = 829, + [4449] = 4201, + [4450] = 4408, + [4451] = 1618, + [4452] = 4412, + [4453] = 4453, + [4454] = 4350, + [4455] = 3994, [4456] = 4456, [4457] = 4457, [4458] = 4458, [4459] = 4459, - [4460] = 4088, + [4460] = 4460, [4461] = 4461, - [4462] = 4462, + [4462] = 3727, [4463] = 4463, - [4464] = 4464, - [4465] = 4465, + [4464] = 4168, + [4465] = 1619, [4466] = 4466, - [4467] = 4467, - [4468] = 4465, - [4469] = 4469, + [4467] = 1618, + [4468] = 4468, + [4469] = 1619, [4470] = 4470, [4471] = 4471, - [4472] = 4472, - [4473] = 4473, + [4472] = 4037, + [4473] = 4117, [4474] = 4474, - [4475] = 4475, + [4475] = 4442, [4476] = 4476, - [4477] = 4477, - [4478] = 3558, - [4479] = 4466, + [4477] = 4168, + [4478] = 4478, + [4479] = 4479, [4480] = 4480, - [4481] = 4465, - [4482] = 4482, - [4483] = 4466, - [4484] = 4476, + [4481] = 4481, + [4482] = 1726, + [4483] = 1728, + [4484] = 4484, [4485] = 4485, [4486] = 4486, [4487] = 4487, - [4488] = 4485, + [4488] = 4488, [4489] = 4489, - [4490] = 4471, + [4490] = 4490, [4491] = 4491, - [4492] = 4486, + [4492] = 4492, [4493] = 4493, [4494] = 4494, - [4495] = 4465, - [4496] = 4487, - [4497] = 4475, + [4495] = 4493, + [4496] = 4496, + [4497] = 4497, [4498] = 4498, - [4499] = 4491, - [4500] = 4466, - [4501] = 4462, - [4502] = 4486, - [4503] = 4463, + [4499] = 4499, + [4500] = 4500, + [4501] = 4494, + [4502] = 4502, + [4503] = 4503, [4504] = 4504, [4505] = 4505, - [4506] = 4506, - [4507] = 4498, - [4508] = 4471, - [4509] = 4471, - [4510] = 4510, - [4511] = 4491, - [4512] = 4486, - [4513] = 4513, - [4514] = 4514, - [4515] = 4465, - [4516] = 4472, - [4517] = 4489, - [4518] = 4491, - [4519] = 4465, - [4520] = 4466, - [4521] = 4521, - [4522] = 4522, - [4523] = 4523, - [4524] = 4524, - [4525] = 4485, - [4526] = 4526, - [4527] = 4485, - [4528] = 4528, - [4529] = 4475, - [4530] = 4513, - [4531] = 4531, - [4532] = 4471, - [4533] = 4533, + [4506] = 4502, + [4507] = 4507, + [4508] = 4508, + [4509] = 4509, + [4510] = 4493, + [4511] = 4494, + [4512] = 4503, + [4513] = 4497, + [4514] = 4498, + [4515] = 4515, + [4516] = 4502, + [4517] = 4503, + [4518] = 4518, + [4519] = 4505, + [4520] = 4520, + [4521] = 4507, + [4522] = 4493, + [4523] = 4494, + [4524] = 4497, + [4525] = 4498, + [4526] = 4502, + [4527] = 4503, + [4528] = 4505, + [4529] = 4507, + [4530] = 4493, + [4531] = 4494, + [4532] = 4497, + [4533] = 4498, [4534] = 4534, - [4535] = 4535, - [4536] = 4462, - [4537] = 4537, - [4538] = 4463, + [4535] = 4493, + [4536] = 4494, + [4537] = 4497, + [4538] = 4498, [4539] = 4539, - [4540] = 4540, - [4541] = 4498, - [4542] = 4471, - [4543] = 4543, - [4544] = 4462, - [4545] = 4463, - [4546] = 4462, + [4540] = 4500, + [4541] = 4539, + [4542] = 4542, + [4543] = 4507, + [4544] = 4544, + [4545] = 4545, + [4546] = 4546, [4547] = 4547, - [4548] = 4463, - [4549] = 4486, - [4550] = 4491, - [4551] = 4551, - [4552] = 4504, - [4553] = 4475, + [4548] = 4548, + [4549] = 4549, + [4550] = 4550, + [4551] = 4502, + [4552] = 4518, + [4553] = 4553, [4554] = 4554, - [4555] = 4555, - [4556] = 4498, - [4557] = 4462, - [4558] = 4463, + [4555] = 4505, + [4556] = 4547, + [4557] = 4557, + [4558] = 4558, [4559] = 4559, - [4560] = 4485, - [4561] = 4561, - [4562] = 4498, - [4563] = 4475, - [4564] = 4471, - [4565] = 4480, + [4560] = 4507, + [4561] = 218, + [4562] = 219, + [4563] = 4563, + [4564] = 4564, + [4565] = 4565, [4566] = 4566, - [4567] = 4567, - [4568] = 4498, + [4567] = 4553, + [4568] = 4568, [4569] = 4569, [4570] = 4570, - [4571] = 4462, - [4572] = 4572, - [4573] = 219, - [4574] = 223, - [4575] = 4506, - [4576] = 4504, - [4577] = 4486, - [4578] = 4491, - [4579] = 4579, - [4580] = 4504, - [4581] = 4463, + [4571] = 4571, + [4572] = 3720, + [4573] = 4573, + [4574] = 4574, + [4575] = 4575, + [4576] = 4493, + [4577] = 4494, + [4578] = 4547, + [4579] = 4518, + [4580] = 4569, + [4581] = 4581, [4582] = 4582, - [4583] = 4504, - [4584] = 3713, + [4583] = 4583, + [4584] = 4584, [4585] = 4585, - [4586] = 4534, - [4587] = 4473, - [4588] = 4475, - [4589] = 4589, - [4590] = 4537, - [4591] = 4498, - [4592] = 4486, - [4593] = 4491, + [4586] = 4586, + [4587] = 4587, + [4588] = 4509, + [4589] = 4520, + [4590] = 4590, + [4591] = 4497, + [4592] = 4498, + [4593] = 4593, [4594] = 4594, - [4595] = 4504, - [4596] = 4524, - [4597] = 4597, - [4598] = 4598, + [4595] = 4595, + [4596] = 4547, + [4597] = 4518, + [4598] = 4496, [4599] = 4599, - [4600] = 4600, - [4601] = 4601, - [4602] = 4602, - [4603] = 4504, - [4604] = 4475, - [4605] = 4605, - [4606] = 4606, - [4607] = 4607, - [4608] = 4608, - [4609] = 4609, - [4610] = 4610, - [4611] = 4611, - [4612] = 4612, - [4613] = 4613, + [4600] = 4547, + [4601] = 4568, + [4602] = 4518, + [4603] = 4570, + [4604] = 4604, + [4605] = 4581, + [4606] = 4547, + [4607] = 4502, + [4608] = 4503, + [4609] = 4518, + [4610] = 3601, + [4611] = 4553, + [4612] = 4507, + [4613] = 4549, [4614] = 4614, [4615] = 4615, [4616] = 4616, - [4617] = 4617, - [4618] = 4618, - [4619] = 4619, - [4620] = 4620, + [4617] = 4590, + [4618] = 4497, + [4619] = 4498, + [4620] = 4505, [4621] = 4621, [4622] = 4622, [4623] = 4623, [4624] = 4624, - [4625] = 3659, - [4626] = 4626, - [4627] = 4627, - [4628] = 4628, + [4625] = 4553, + [4626] = 4507, + [4627] = 4553, + [4628] = 4553, [4629] = 4629, [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4633, + [4631] = 4547, + [4632] = 4518, + [4633] = 4553, [4634] = 4634, [4635] = 4635, [4636] = 4636, @@ -9282,14 +9282,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4638] = 4638, [4639] = 4639, [4640] = 4640, - [4641] = 4624, - [4642] = 4640, + [4641] = 4641, + [4642] = 4642, [4643] = 4643, [4644] = 4644, [4645] = 4645, [4646] = 4646, [4647] = 4647, - [4648] = 4633, + [4648] = 4648, [4649] = 4649, [4650] = 4650, [4651] = 4651, @@ -9300,7 +9300,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4656] = 4656, [4657] = 4657, [4658] = 4658, - [4659] = 4610, + [4659] = 4659, [4660] = 4660, [4661] = 4661, [4662] = 4662, @@ -9313,66 +9313,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4669] = 4669, [4670] = 4670, [4671] = 4671, - [4672] = 3946, - [4673] = 4633, - [4674] = 4624, - [4675] = 4624, - [4676] = 4640, + [4672] = 4672, + [4673] = 4673, + [4674] = 4674, + [4675] = 4675, + [4676] = 4676, [4677] = 4677, - [4678] = 4640, + [4678] = 4678, [4679] = 4679, [4680] = 4680, - [4681] = 4681, - [4682] = 4649, - [4683] = 4650, - [4684] = 4652, + [4681] = 4663, + [4682] = 4682, + [4683] = 4683, + [4684] = 4684, [4685] = 4685, - [4686] = 4654, + [4686] = 4686, [4687] = 4687, [4688] = 4688, - [4689] = 4689, - [4690] = 4606, - [4691] = 4607, - [4692] = 4608, - [4693] = 4609, + [4689] = 4650, + [4690] = 4651, + [4691] = 4691, + [4692] = 4692, + [4693] = 4693, [4694] = 4694, - [4695] = 4610, - [4696] = 4696, + [4695] = 4695, + [4696] = 4661, [4697] = 4697, - [4698] = 4698, + [4698] = 4662, [4699] = 4699, [4700] = 4700, [4701] = 4701, [4702] = 4702, - [4703] = 4703, + [4703] = 3991, [4704] = 4704, [4705] = 4705, [4706] = 4706, - [4707] = 4624, - [4708] = 4640, + [4707] = 4707, + [4708] = 4708, [4709] = 4709, [4710] = 4710, - [4711] = 4652, + [4711] = 4711, [4712] = 4712, - [4713] = 4654, - [4714] = 4714, - [4715] = 4715, + [4713] = 4713, + [4714] = 4650, + [4715] = 4651, [4716] = 4716, - [4717] = 4717, + [4717] = 4649, [4718] = 4718, [4719] = 4719, - [4720] = 4720, - [4721] = 4646, + [4720] = 4661, + [4721] = 4662, [4722] = 4722, - [4723] = 4624, - [4724] = 4640, + [4723] = 4723, + [4724] = 4724, [4725] = 4725, [4726] = 4726, [4727] = 4727, [4728] = 4728, - [4729] = 4652, + [4729] = 4729, [4730] = 4730, - [4731] = 4654, + [4731] = 4731, [4732] = 4732, [4733] = 4733, [4734] = 4734, @@ -9386,14 +9386,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4742] = 4742, [4743] = 4743, [4744] = 4744, - [4745] = 4745, + [4745] = 4643, [4746] = 4746, [4747] = 4747, [4748] = 4748, [4749] = 4749, [4750] = 4750, [4751] = 4751, - [4752] = 4752, + [4752] = 1584, [4753] = 4753, [4754] = 4754, [4755] = 4755, @@ -9403,9 +9403,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4759] = 4759, [4760] = 4760, [4761] = 4761, - [4762] = 4762, + [4762] = 1591, [4763] = 4763, - [4764] = 4658, + [4764] = 4764, [4765] = 4765, [4766] = 4766, [4767] = 4767, @@ -9415,31 +9415,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4771] = 4771, [4772] = 4772, [4773] = 4773, - [4774] = 4727, - [4775] = 4738, + [4774] = 4774, + [4775] = 4775, [4776] = 4776, - [4777] = 4777, + [4777] = 4666, [4778] = 4778, [4779] = 4779, [4780] = 4780, [4781] = 4781, [4782] = 4782, - [4783] = 768, - [4784] = 4649, + [4783] = 4667, + [4784] = 4784, [4785] = 4785, - [4786] = 4633, - [4787] = 4650, - [4788] = 4606, - [4789] = 4607, + [4786] = 4786, + [4787] = 4787, + [4788] = 4788, + [4789] = 761, [4790] = 4790, - [4791] = 4608, - [4792] = 4792, - [4793] = 4609, + [4791] = 4791, + [4792] = 4650, + [4793] = 4649, [4794] = 4794, - [4795] = 4795, + [4795] = 4668, [4796] = 4796, [4797] = 4797, - [4798] = 4798, + [4798] = 4669, [4799] = 4799, [4800] = 4800, [4801] = 4801, @@ -9448,9 +9448,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4804] = 4804, [4805] = 4805, [4806] = 4806, - [4807] = 4807, + [4807] = 4671, [4808] = 4808, - [4809] = 4610, + [4809] = 4651, [4810] = 4810, [4811] = 4811, [4812] = 4812, @@ -9458,87 +9458,87 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4814] = 4814, [4815] = 4815, [4816] = 4816, - [4817] = 4650, + [4817] = 4817, [4818] = 4818, - [4819] = 4652, + [4819] = 4819, [4820] = 4820, - [4821] = 4807, + [4821] = 4821, [4822] = 4822, - [4823] = 4815, + [4823] = 4823, [4824] = 4824, [4825] = 4825, - [4826] = 4652, + [4826] = 4826, [4827] = 4827, - [4828] = 4654, + [4828] = 4828, [4829] = 4829, - [4830] = 4654, + [4830] = 4830, [4831] = 4831, - [4832] = 4832, + [4832] = 4659, [4833] = 4833, - [4834] = 4665, + [4834] = 4834, [4835] = 4835, [4836] = 4836, [4837] = 4837, [4838] = 4838, [4839] = 4839, [4840] = 4840, - [4841] = 4687, + [4841] = 4841, [4842] = 4842, [4843] = 4843, - [4844] = 3576, + [4844] = 4844, [4845] = 4845, [4846] = 4846, [4847] = 4847, - [4848] = 4618, - [4849] = 4622, + [4848] = 4848, + [4849] = 4849, [4850] = 4850, [4851] = 4851, [4852] = 4852, [4853] = 4853, - [4854] = 4854, + [4854] = 4685, [4855] = 4855, [4856] = 4856, - [4857] = 4857, + [4857] = 4638, [4858] = 4858, [4859] = 4859, [4860] = 4860, [4861] = 4861, [4862] = 4862, - [4863] = 4863, + [4863] = 4657, [4864] = 4864, [4865] = 4865, - [4866] = 4866, + [4866] = 4659, [4867] = 4867, [4868] = 4868, - [4869] = 4869, - [4870] = 4610, + [4869] = 4649, + [4870] = 4870, [4871] = 4871, [4872] = 4872, [4873] = 4873, [4874] = 4874, [4875] = 4875, [4876] = 4876, - [4877] = 4877, - [4878] = 4878, + [4877] = 4661, + [4878] = 4662, [4879] = 4879, [4880] = 4880, [4881] = 4881, [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 4873, + [4885] = 4885, [4886] = 4886, - [4887] = 4876, + [4887] = 4887, [4888] = 4888, - [4889] = 4861, + [4889] = 4889, [4890] = 4890, [4891] = 4891, [4892] = 4892, [4893] = 4893, - [4894] = 4894, + [4894] = 4666, [4895] = 4895, - [4896] = 4896, - [4897] = 4897, + [4896] = 4667, + [4897] = 4668, [4898] = 4898, [4899] = 4899, [4900] = 4900, @@ -9547,15 +9547,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4903] = 4903, [4904] = 4904, [4905] = 4905, - [4906] = 4906, + [4906] = 1525, [4907] = 4907, - [4908] = 4908, - [4909] = 4909, + [4908] = 4669, + [4909] = 4671, [4910] = 4910, - [4911] = 4911, + [4911] = 1530, [4912] = 4912, [4913] = 4913, - [4914] = 4914, + [4914] = 1533, [4915] = 4915, [4916] = 4916, [4917] = 4917, @@ -9565,8 +9565,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4921] = 4921, [4922] = 4922, [4923] = 4923, - [4924] = 4633, - [4925] = 1491, + [4924] = 4924, + [4925] = 4925, [4926] = 4926, [4927] = 4927, [4928] = 4928, @@ -9575,7 +9575,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4931] = 4931, [4932] = 4932, [4933] = 4933, - [4934] = 4934, + [4934] = 4661, [4935] = 4935, [4936] = 4936, [4937] = 4937, @@ -9583,15 +9583,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4939] = 4939, [4940] = 4940, [4941] = 4941, - [4942] = 3544, - [4943] = 4617, + [4942] = 4942, + [4943] = 4943, [4944] = 4944, - [4945] = 4945, + [4945] = 4649, [4946] = 4946, [4947] = 4947, - [4948] = 4948, + [4948] = 4662, [4949] = 4949, - [4950] = 4950, + [4950] = 3659, [4951] = 4951, [4952] = 4952, [4953] = 4953, @@ -9599,31 +9599,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4955] = 4955, [4956] = 4956, [4957] = 4957, - [4958] = 4749, + [4958] = 4958, [4959] = 4959, [4960] = 4960, [4961] = 4961, [4962] = 4962, [4963] = 4963, - [4964] = 4964, - [4965] = 4965, + [4964] = 3779, + [4965] = 4686, [4966] = 4966, [4967] = 4967, [4968] = 4968, - [4969] = 4969, + [4969] = 4937, [4970] = 4970, [4971] = 4971, [4972] = 4972, [4973] = 4973, - [4974] = 4974, + [4974] = 3769, [4975] = 4975, [4976] = 4976, [4977] = 4977, [4978] = 4978, [4979] = 4979, [4980] = 4980, - [4981] = 4981, - [4982] = 4982, + [4981] = 4638, + [4982] = 4735, [4983] = 4983, [4984] = 4984, [4985] = 4985, @@ -9640,7 +9640,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4996] = 4996, [4997] = 4997, [4998] = 4998, - [4999] = 4646, + [4999] = 4999, [5000] = 5000, [5001] = 5001, [5002] = 5002, @@ -9652,43 +9652,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5008] = 5008, [5009] = 5009, [5010] = 5010, - [5011] = 3533, + [5011] = 5011, [5012] = 5012, [5013] = 5013, [5014] = 5014, - [5015] = 5015, + [5015] = 4893, [5016] = 5016, [5017] = 5017, [5018] = 5018, [5019] = 5019, [5020] = 5020, [5021] = 5021, - [5022] = 4257, + [5022] = 3613, [5023] = 5023, - [5024] = 1487, + [5024] = 5024, [5025] = 5025, [5026] = 5026, [5027] = 5027, [5028] = 5028, - [5029] = 4801, + [5029] = 5029, [5030] = 5030, [5031] = 5031, [5032] = 5032, [5033] = 5033, - [5034] = 5034, - [5035] = 5035, + [5034] = 4663, + [5035] = 4664, [5036] = 5036, - [5037] = 5037, + [5037] = 4685, [5038] = 5038, [5039] = 5039, [5040] = 5040, [5041] = 5041, [5042] = 5042, [5043] = 5043, - [5044] = 5044, - [5045] = 5045, + [5044] = 4657, + [5045] = 4649, [5046] = 5046, - [5047] = 5047, + [5047] = 4686, [5048] = 5048, [5049] = 5049, [5050] = 5050, @@ -9702,180 +9702,180 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5058] = 5058, [5059] = 5059, [5060] = 5060, - [5061] = 4919, - [5062] = 5062, - [5063] = 5063, - [5064] = 5064, + [5061] = 5061, + [5062] = 4650, + [5063] = 4649, + [5064] = 4651, [5065] = 5065, - [5066] = 4649, + [5066] = 5066, [5067] = 5067, [5068] = 5068, - [5069] = 4435, + [5069] = 5069, [5070] = 5070, - [5071] = 1499, - [5072] = 4753, + [5071] = 5071, + [5072] = 4957, [5073] = 5073, [5074] = 5074, [5075] = 5075, [5076] = 5076, - [5077] = 4650, + [5077] = 5077, [5078] = 5078, - [5079] = 5079, + [5079] = 5033, [5080] = 5080, - [5081] = 5081, + [5081] = 5007, [5082] = 5082, - [5083] = 4935, - [5084] = 5084, + [5083] = 4650, + [5084] = 4651, [5085] = 5085, [5086] = 5086, [5087] = 5087, [5088] = 5088, - [5089] = 4650, + [5089] = 4096, [5090] = 5090, [5091] = 5091, [5092] = 5092, - [5093] = 4750, + [5093] = 5093, [5094] = 5094, [5095] = 5095, [5096] = 5096, [5097] = 5097, [5098] = 5098, - [5099] = 5099, - [5100] = 4687, - [5101] = 4618, - [5102] = 5102, - [5103] = 5103, + [5099] = 4765, + [5100] = 5100, + [5101] = 4967, + [5102] = 4935, + [5103] = 4833, [5104] = 5104, - [5105] = 5105, + [5105] = 4968, [5106] = 5106, [5107] = 5107, [5108] = 5108, - [5109] = 4861, + [5109] = 5109, [5110] = 5110, [5111] = 5111, - [5112] = 4901, + [5112] = 4949, [5113] = 5113, [5114] = 5114, - [5115] = 4633, - [5116] = 5116, + [5115] = 4875, + [5116] = 4876, [5117] = 5117, [5118] = 5118, - [5119] = 4912, - [5120] = 5120, - [5121] = 5121, - [5122] = 5122, + [5119] = 4657, + [5120] = 4659, + [5121] = 4659, + [5122] = 4650, [5123] = 5123, [5124] = 5124, - [5125] = 5125, + [5125] = 4651, [5126] = 5126, [5127] = 5127, [5128] = 5128, [5129] = 5129, [5130] = 5130, [5131] = 5131, - [5132] = 4921, + [5132] = 5132, [5133] = 5133, - [5134] = 4923, - [5135] = 5135, - [5136] = 5129, - [5137] = 5094, - [5138] = 5138, - [5139] = 5139, - [5140] = 5140, - [5141] = 4617, + [5134] = 5134, + [5135] = 4926, + [5136] = 5136, + [5137] = 4931, + [5138] = 4661, + [5139] = 4833, + [5140] = 4662, + [5141] = 5141, [5142] = 5142, - [5143] = 1525, + [5143] = 4985, [5144] = 5144, - [5145] = 5145, + [5145] = 4833, [5146] = 5146, - [5147] = 5147, + [5147] = 4986, [5148] = 5148, - [5149] = 1531, + [5149] = 5149, [5150] = 5150, [5151] = 5151, [5152] = 5152, - [5153] = 4633, - [5154] = 5154, + [5153] = 5153, + [5154] = 4659, [5155] = 5155, [5156] = 5156, [5157] = 5157, - [5158] = 5158, + [5158] = 4988, [5159] = 5159, - [5160] = 5160, - [5161] = 4619, - [5162] = 4743, + [5160] = 4989, + [5161] = 5161, + [5162] = 5162, [5163] = 5163, [5164] = 5164, [5165] = 5165, - [5166] = 768, - [5167] = 4624, - [5168] = 4640, + [5166] = 4970, + [5167] = 4671, + [5168] = 5168, [5169] = 5169, [5170] = 5170, - [5171] = 5171, + [5171] = 4968, [5172] = 5172, [5173] = 5173, [5174] = 5174, - [5175] = 4620, + [5175] = 4657, [5176] = 5176, [5177] = 5177, - [5178] = 4760, - [5179] = 4646, - [5180] = 4663, + [5178] = 4172, + [5179] = 5049, + [5180] = 4882, [5181] = 5181, - [5182] = 5182, - [5183] = 3596, + [5182] = 4885, + [5183] = 5183, [5184] = 5184, [5185] = 5185, [5186] = 5186, [5187] = 5187, - [5188] = 4743, + [5188] = 5188, [5189] = 5189, [5190] = 5190, - [5191] = 5129, - [5192] = 5131, - [5193] = 5193, - [5194] = 4649, - [5195] = 5195, + [5191] = 5191, + [5192] = 4735, + [5193] = 5050, + [5194] = 4659, + [5195] = 761, [5196] = 5196, - [5197] = 5060, + [5197] = 4759, [5198] = 5198, [5199] = 5199, [5200] = 5200, - [5201] = 4650, - [5202] = 5202, + [5201] = 5201, + [5202] = 4744, [5203] = 5203, [5204] = 5204, [5205] = 5205, - [5206] = 5206, - [5207] = 5094, + [5206] = 3647, + [5207] = 5207, [5208] = 5208, - [5209] = 4652, - [5210] = 5210, - [5211] = 4654, - [5212] = 5212, - [5213] = 5213, + [5209] = 5209, + [5210] = 5036, + [5211] = 5211, + [5212] = 4661, + [5213] = 4662, [5214] = 5214, [5215] = 5215, [5216] = 5216, - [5217] = 4667, + [5217] = 5217, [5218] = 5218, [5219] = 5219, [5220] = 5220, [5221] = 5221, [5222] = 5222, - [5223] = 5223, + [5223] = 4671, [5224] = 5224, - [5225] = 3832, + [5225] = 5225, [5226] = 5226, [5227] = 5227, [5228] = 5228, [5229] = 5229, - [5230] = 5230, + [5230] = 4937, [5231] = 5231, - [5232] = 2615, + [5232] = 5232, [5233] = 5233, - [5234] = 2618, + [5234] = 5234, [5235] = 5235, [5236] = 5236, [5237] = 5237, @@ -9897,69 +9897,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5253] = 5253, [5254] = 5254, [5255] = 5255, - [5256] = 5235, + [5256] = 5256, [5257] = 5257, - [5258] = 5222, - [5259] = 5237, + [5258] = 5258, + [5259] = 5259, [5260] = 5260, [5261] = 5261, [5262] = 5262, [5263] = 5263, [5264] = 5264, - [5265] = 5223, + [5265] = 5265, [5266] = 5266, - [5267] = 5240, + [5267] = 5267, [5268] = 5268, - [5269] = 5243, + [5269] = 5269, [5270] = 5270, [5271] = 5271, - [5272] = 2639, - [5273] = 5244, - [5274] = 2641, - [5275] = 5247, - [5276] = 5240, + [5272] = 5272, + [5273] = 5273, + [5274] = 5274, + [5275] = 5270, + [5276] = 5276, [5277] = 5277, [5278] = 5278, [5279] = 5279, - [5280] = 5235, + [5280] = 5280, [5281] = 5281, - [5282] = 5250, + [5282] = 5282, [5283] = 5283, - [5284] = 5266, - [5285] = 5251, - [5286] = 5264, - [5287] = 5253, + [5284] = 5284, + [5285] = 5285, + [5286] = 2644, + [5287] = 5287, [5288] = 5288, [5289] = 5289, [5290] = 5290, [5291] = 5291, - [5292] = 1630, + [5292] = 2667, [5293] = 5293, - [5294] = 5294, + [5294] = 2670, [5295] = 5295, [5296] = 5296, [5297] = 5297, [5298] = 5298, - [5299] = 5260, + [5299] = 5299, [5300] = 5300, - [5301] = 5301, - [5302] = 3836, - [5303] = 5303, + [5301] = 5270, + [5302] = 5302, + [5303] = 1664, [5304] = 5304, - [5305] = 5305, + [5305] = 1670, [5306] = 5306, [5307] = 5307, [5308] = 5308, [5309] = 5309, - [5310] = 5310, + [5310] = 5297, [5311] = 5311, - [5312] = 5240, - [5313] = 5313, + [5312] = 5312, + [5313] = 5308, [5314] = 5314, [5315] = 5315, [5316] = 5316, [5317] = 5317, - [5318] = 5318, + [5318] = 5279, [5319] = 5319, [5320] = 5320, [5321] = 5321, @@ -9969,664 +9969,694 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5325] = 5325, [5326] = 5326, [5327] = 5327, - [5328] = 5268, - [5329] = 5277, - [5330] = 5278, - [5331] = 5331, - [5332] = 5309, - [5333] = 5333, + [5328] = 5328, + [5329] = 5288, + [5330] = 5330, + [5331] = 5268, + [5332] = 5332, + [5333] = 5295, [5334] = 5334, [5335] = 5335, [5336] = 5336, [5337] = 5337, [5338] = 5338, - [5339] = 5231, + [5339] = 5335, [5340] = 5340, [5341] = 5341, [5342] = 5342, - [5343] = 5343, - [5344] = 5310, - [5345] = 5345, - [5346] = 5346, - [5347] = 5347, + [5343] = 5255, + [5344] = 5344, + [5345] = 5324, + [5346] = 5279, + [5347] = 5332, [5348] = 5348, - [5349] = 5338, - [5350] = 5350, - [5351] = 2631, - [5352] = 2621, - [5353] = 5324, + [5349] = 5336, + [5350] = 2654, + [5351] = 5351, + [5352] = 5299, + [5353] = 5308, [5354] = 5354, - [5355] = 5335, + [5355] = 5311, [5356] = 5356, - [5357] = 5233, - [5358] = 2608, + [5357] = 5357, + [5358] = 5324, [5359] = 5359, - [5360] = 2614, - [5361] = 5268, - [5362] = 5277, - [5363] = 5343, - [5364] = 5278, - [5365] = 2611, - [5366] = 5366, - [5367] = 5346, - [5368] = 2635, + [5360] = 5342, + [5361] = 5361, + [5362] = 5362, + [5363] = 5363, + [5364] = 5364, + [5365] = 5279, + [5366] = 5279, + [5367] = 5367, + [5368] = 5368, [5369] = 5369, [5370] = 5370, - [5371] = 5371, - [5372] = 5371, + [5371] = 3932, + [5372] = 5372, [5373] = 5373, - [5374] = 2634, - [5375] = 5336, - [5376] = 5376, - [5377] = 5298, - [5378] = 5331, - [5379] = 5320, - [5380] = 5268, + [5374] = 5374, + [5375] = 5375, + [5376] = 5332, + [5377] = 5377, + [5378] = 5378, + [5379] = 5379, + [5380] = 2641, [5381] = 5381, [5382] = 5382, [5383] = 5383, [5384] = 5384, [5385] = 5385, - [5386] = 2619, - [5387] = 5337, - [5388] = 5249, - [5389] = 1692, - [5390] = 5281, - [5391] = 1693, - [5392] = 5392, - [5393] = 5283, - [5394] = 5392, - [5395] = 5252, - [5396] = 5396, - [5397] = 5266, - [5398] = 5398, - [5399] = 5347, - [5400] = 5255, - [5401] = 5264, - [5402] = 5402, - [5403] = 5403, - [5404] = 5288, - [5405] = 5366, - [5406] = 2660, - [5407] = 2662, - [5408] = 5408, - [5409] = 5409, - [5410] = 5410, - [5411] = 2628, + [5386] = 5336, + [5387] = 5369, + [5388] = 5381, + [5389] = 5389, + [5390] = 5299, + [5391] = 5308, + [5392] = 5372, + [5393] = 5311, + [5394] = 5254, + [5395] = 5368, + [5396] = 5382, + [5397] = 5369, + [5398] = 5259, + [5399] = 5399, + [5400] = 5400, + [5401] = 5401, + [5402] = 5374, + [5403] = 5299, + [5404] = 5404, + [5405] = 5405, + [5406] = 5253, + [5407] = 5257, + [5408] = 2675, + [5409] = 5375, + [5410] = 5383, + [5411] = 5411, [5412] = 5412, - [5413] = 2624, - [5414] = 5414, - [5415] = 5415, + [5413] = 5372, + [5414] = 5367, + [5415] = 5259, [5416] = 5416, - [5417] = 5277, + [5417] = 5417, [5418] = 5418, [5419] = 5419, - [5420] = 5307, - [5421] = 5303, + [5420] = 5374, + [5421] = 5421, [5422] = 5422, - [5423] = 5222, - [5424] = 5408, - [5425] = 5425, - [5426] = 5426, - [5427] = 5385, + [5423] = 5423, + [5424] = 5424, + [5425] = 5375, + [5426] = 5326, + [5427] = 5427, [5428] = 5428, - [5429] = 5249, + [5429] = 5311, [5430] = 5430, - [5431] = 5410, + [5431] = 5431, [5432] = 5432, - [5433] = 5268, - [5434] = 5252, - [5435] = 5231, - [5436] = 5436, - [5437] = 5255, - [5438] = 5438, - [5439] = 5439, + [5433] = 5263, + [5434] = 2672, + [5435] = 5256, + [5436] = 2673, + [5437] = 5437, + [5438] = 5288, + [5439] = 5295, [5440] = 5440, - [5441] = 5441, - [5442] = 5277, + [5441] = 5357, + [5442] = 5442, [5443] = 5443, - [5444] = 5277, - [5445] = 5249, - [5446] = 5446, - [5447] = 5409, - [5448] = 5252, - [5449] = 5255, - [5450] = 5450, - [5451] = 5426, - [5452] = 5278, - [5453] = 5348, - [5454] = 5425, - [5455] = 5403, + [5444] = 5354, + [5445] = 5442, + [5446] = 5264, + [5447] = 5447, + [5448] = 5448, + [5449] = 5359, + [5450] = 5302, + [5451] = 5284, + [5452] = 5309, + [5453] = 2643, + [5454] = 5340, + [5455] = 5278, [5456] = 5456, - [5457] = 5457, - [5458] = 5458, + [5457] = 5299, + [5458] = 5427, [5459] = 5459, - [5460] = 5460, - [5461] = 5278, - [5462] = 5240, - [5463] = 5463, + [5460] = 5297, + [5461] = 5361, + [5462] = 5462, + [5463] = 5308, [5464] = 5464, - [5465] = 5432, - [5466] = 5248, - [5467] = 5304, - [5468] = 5468, - [5469] = 2644, - [5470] = 5430, - [5471] = 5290, + [5465] = 5308, + [5466] = 5324, + [5467] = 5356, + [5468] = 5341, + [5469] = 5332, + [5470] = 5336, + [5471] = 5471, [5472] = 5472, - [5473] = 5281, - [5474] = 5283, - [5475] = 3818, - [5476] = 5240, - [5477] = 5266, - [5478] = 5478, - [5479] = 5264, + [5473] = 5473, + [5474] = 5311, + [5475] = 5475, + [5476] = 5440, + [5477] = 5477, + [5478] = 5437, + [5479] = 5341, [5480] = 5480, - [5481] = 5278, + [5481] = 5481, [5482] = 5482, - [5483] = 5483, - [5484] = 5484, - [5485] = 5485, - [5486] = 5486, - [5487] = 5268, - [5488] = 5242, - [5489] = 3824, - [5490] = 5263, - [5491] = 2613, - [5492] = 5492, - [5493] = 5311, - [5494] = 5257, - [5495] = 5321, - [5496] = 5496, - [5497] = 2607, - [5498] = 5314, - [5499] = 2620, - [5500] = 5305, - [5501] = 5315, - [5502] = 5262, - [5503] = 5369, + [5483] = 5288, + [5484] = 5324, + [5485] = 5251, + [5486] = 5332, + [5487] = 5336, + [5488] = 5488, + [5489] = 5489, + [5490] = 5295, + [5491] = 2635, + [5492] = 5279, + [5493] = 5493, + [5494] = 2642, + [5495] = 5448, + [5496] = 5489, + [5497] = 5497, + [5498] = 5368, + [5499] = 5401, + [5500] = 5473, + [5501] = 5501, + [5502] = 5502, + [5503] = 5503, [5504] = 5504, - [5505] = 2645, + [5505] = 5311, [5506] = 5506, - [5507] = 5419, + [5507] = 5507, [5508] = 5508, - [5509] = 5300, + [5509] = 5272, [5510] = 5510, - [5511] = 5254, - [5512] = 5512, - [5513] = 5316, - [5514] = 5514, - [5515] = 5298, - [5516] = 5307, - [5517] = 5438, - [5518] = 5518, - [5519] = 5337, - [5520] = 5520, - [5521] = 5440, - [5522] = 5342, - [5523] = 5223, - [5524] = 5382, - [5525] = 5418, - [5526] = 5305, + [5511] = 5351, + [5512] = 5260, + [5513] = 5513, + [5514] = 5279, + [5515] = 5515, + [5516] = 5516, + [5517] = 5502, + [5518] = 2630, + [5519] = 5369, + [5520] = 5372, + [5521] = 5374, + [5522] = 5375, + [5523] = 5523, + [5524] = 5287, + [5525] = 5525, + [5526] = 5526, [5527] = 5527, - [5528] = 5436, + [5528] = 2619, [5529] = 5529, - [5530] = 5439, - [5531] = 5253, - [5532] = 5443, + [5530] = 2620, + [5531] = 5369, + [5532] = 5532, [5533] = 5533, - [5534] = 5222, - [5535] = 5535, + [5534] = 2638, + [5535] = 5448, [5536] = 5536, [5537] = 5537, - [5538] = 5371, - [5539] = 5539, - [5540] = 5540, - [5541] = 5541, - [5542] = 5281, - [5543] = 5283, - [5544] = 5266, + [5538] = 2639, + [5539] = 2662, + [5540] = 5372, + [5541] = 2663, + [5542] = 5362, + [5543] = 5374, + [5544] = 5544, [5545] = 5545, - [5546] = 5546, - [5547] = 5547, - [5548] = 5325, - [5549] = 5224, - [5550] = 5264, - [5551] = 5551, - [5552] = 5249, - [5553] = 5553, - [5554] = 5252, - [5555] = 5255, - [5556] = 5376, - [5557] = 5430, - [5558] = 5482, - [5559] = 5268, - [5560] = 5410, - [5561] = 5277, - [5562] = 5562, - [5563] = 5432, - [5564] = 5278, - [5565] = 2656, - [5566] = 5253, - [5567] = 5240, - [5568] = 5369, - [5569] = 5300, - [5570] = 5283, - [5571] = 5571, - [5572] = 5239, - [5573] = 5281, - [5574] = 5574, - [5575] = 5575, + [5546] = 5278, + [5547] = 5281, + [5548] = 5377, + [5549] = 5289, + [5550] = 5293, + [5551] = 5296, + [5552] = 5300, + [5553] = 5304, + [5554] = 5506, + [5555] = 2613, + [5556] = 5326, + [5557] = 5482, + [5558] = 5335, + [5559] = 2626, + [5560] = 5356, + [5561] = 2631, + [5562] = 5375, + [5563] = 5507, + [5564] = 3802, + [5565] = 5565, + [5566] = 5566, + [5567] = 5567, + [5568] = 5526, + [5569] = 5529, + [5570] = 5532, + [5571] = 3797, + [5572] = 5572, + [5573] = 5344, + [5574] = 2615, + [5575] = 5536, [5576] = 5576, - [5577] = 5577, + [5577] = 5527, [5578] = 5578, - [5579] = 5579, - [5580] = 5580, - [5581] = 5581, - [5582] = 5582, + [5579] = 5578, + [5580] = 3849, + [5581] = 5537, + [5582] = 5544, [5583] = 5583, [5584] = 5584, - [5585] = 5585, + [5585] = 5385, [5586] = 5586, [5587] = 5587, - [5588] = 5585, - [5589] = 5589, - [5590] = 5590, - [5591] = 5591, - [5592] = 5592, + [5588] = 5508, + [5589] = 5363, + [5590] = 5299, + [5591] = 5427, + [5592] = 5308, [5593] = 5593, - [5594] = 5594, - [5595] = 5589, + [5594] = 5251, + [5595] = 5311, [5596] = 5596, - [5597] = 5597, - [5598] = 5598, - [5599] = 5599, + [5597] = 5443, + [5598] = 5299, + [5599] = 5268, [5600] = 5600, - [5601] = 5601, - [5602] = 5602, - [5603] = 5603, + [5601] = 1711, + [5602] = 5405, + [5603] = 5265, [5604] = 5604, [5605] = 5605, - [5606] = 5576, + [5606] = 5606, [5607] = 5607, - [5608] = 5585, - [5609] = 5589, + [5608] = 5608, + [5609] = 5608, [5610] = 5610, [5611] = 5611, [5612] = 5612, - [5613] = 5575, + [5613] = 5613, [5614] = 5614, [5615] = 5615, [5616] = 5616, - [5617] = 5615, + [5617] = 5617, [5618] = 5618, [5619] = 5619, [5620] = 5620, [5621] = 5621, [5622] = 5622, - [5623] = 5623, - [5624] = 5624, + [5623] = 5620, + [5624] = 5616, [5625] = 5625, [5626] = 5626, [5627] = 5627, [5628] = 5628, - [5629] = 5629, - [5630] = 5610, + [5629] = 5628, + [5630] = 5630, [5631] = 5631, [5632] = 5632, [5633] = 5633, - [5634] = 5634, - [5635] = 5602, - [5636] = 5615, + [5634] = 5625, + [5635] = 5635, + [5636] = 5636, [5637] = 5637, [5638] = 5638, - [5639] = 5639, - [5640] = 5640, - [5641] = 5601, - [5642] = 5642, - [5643] = 5579, - [5644] = 5581, - [5645] = 5614, - [5646] = 5599, + [5639] = 5628, + [5640] = 5630, + [5641] = 5641, + [5642] = 5632, + [5643] = 5633, + [5644] = 5644, + [5645] = 5645, + [5646] = 5646, [5647] = 5647, - [5648] = 5612, + [5648] = 5615, [5649] = 5649, - [5650] = 5642, + [5650] = 5619, [5651] = 5651, [5652] = 5652, - [5653] = 5629, - [5654] = 5652, + [5653] = 5653, + [5654] = 5635, [5655] = 5655, - [5656] = 5580, - [5657] = 5576, - [5658] = 5586, + [5656] = 5656, + [5657] = 5657, + [5658] = 5658, [5659] = 5659, - [5660] = 5575, - [5661] = 5642, - [5662] = 5662, - [5663] = 5634, + [5660] = 5660, + [5661] = 5661, + [5662] = 5652, + [5663] = 5663, [5664] = 5664, - [5665] = 5665, - [5666] = 5594, - [5667] = 5600, + [5665] = 5621, + [5666] = 5666, + [5667] = 5667, [5668] = 5668, - [5669] = 5614, - [5670] = 5670, - [5671] = 5671, - [5672] = 5585, - [5673] = 5614, - [5674] = 5574, - [5675] = 5625, - [5676] = 5596, - [5677] = 5640, - [5678] = 5678, - [5679] = 5652, - [5680] = 5625, - [5681] = 5611, - [5682] = 5662, - [5683] = 5670, + [5669] = 5644, + [5670] = 5659, + [5671] = 5637, + [5672] = 5621, + [5673] = 5612, + [5674] = 5674, + [5675] = 5661, + [5676] = 5676, + [5677] = 5677, + [5678] = 5655, + [5679] = 5663, + [5680] = 5680, + [5681] = 5681, + [5682] = 5682, + [5683] = 5657, [5684] = 5684, - [5685] = 5602, - [5686] = 5686, + [5685] = 5685, + [5686] = 5644, [5687] = 5687, - [5688] = 5582, - [5689] = 5689, - [5690] = 5589, + [5688] = 5655, + [5689] = 5616, + [5690] = 5690, [5691] = 5691, - [5692] = 5692, - [5693] = 5629, - [5694] = 5600, - [5695] = 5695, - [5696] = 5691, + [5692] = 5655, + [5693] = 5693, + [5694] = 5694, + [5695] = 5614, + [5696] = 5696, [5697] = 5697, - [5698] = 5687, - [5699] = 5618, - [5700] = 5625, - [5701] = 5593, + [5698] = 5614, + [5699] = 5614, + [5700] = 5618, + [5701] = 5701, [5702] = 5625, - [5703] = 5618, + [5703] = 5614, [5704] = 5704, - [5705] = 5610, - [5706] = 5633, - [5707] = 5615, - [5708] = 5642, - [5709] = 5662, - [5710] = 5628, - [5711] = 5652, + [5705] = 5705, + [5706] = 5646, + [5707] = 5707, + [5708] = 5626, + [5709] = 5645, + [5710] = 5676, + [5711] = 5711, [5712] = 5712, - [5713] = 5662, - [5714] = 5580, - [5715] = 5619, - [5716] = 5628, - [5717] = 5620, - [5718] = 5692, - [5719] = 5623, - [5720] = 5582, - [5721] = 5721, - [5722] = 5684, - [5723] = 5586, - [5724] = 5687, - [5725] = 5638, - [5726] = 5626, - [5727] = 5651, - [5728] = 5584, - [5729] = 5627, - [5730] = 5593, - [5731] = 5659, - [5732] = 5586, - [5733] = 5684, - [5734] = 5625, - [5735] = 5634, - [5736] = 5665, - [5737] = 5737, - [5738] = 5612, - [5739] = 5575, - [5740] = 5655, - [5741] = 5623, - [5742] = 5691, - [5743] = 5604, - [5744] = 5580, + [5713] = 5696, + [5714] = 5714, + [5715] = 5715, + [5716] = 5620, + [5717] = 5717, + [5718] = 5676, + [5719] = 5719, + [5720] = 5628, + [5721] = 5638, + [5722] = 5615, + [5723] = 5723, + [5724] = 5724, + [5725] = 5725, + [5726] = 5656, + [5727] = 5649, + [5728] = 5728, + [5729] = 5714, + [5730] = 5646, + [5731] = 5621, + [5732] = 5676, + [5733] = 5651, + [5734] = 5714, + [5735] = 5653, + [5736] = 5696, + [5737] = 5610, + [5738] = 5636, + [5739] = 5666, + [5740] = 5652, + [5741] = 5728, + [5742] = 5614, + [5743] = 5667, + [5744] = 5744, [5745] = 5664, - [5746] = 5582, - [5747] = 5687, + [5746] = 5618, + [5747] = 5668, [5748] = 5748, - [5749] = 5749, - [5750] = 5750, - [5751] = 5607, - [5752] = 5689, - [5753] = 5639, - [5754] = 5586, - [5755] = 5692, - [5756] = 5756, - [5757] = 5590, - [5758] = 5758, - [5759] = 5638, - [5760] = 5600, - [5761] = 5590, - [5762] = 5691, - [5763] = 5692, - [5764] = 5594, - [5765] = 5601, - [5766] = 5671, - [5767] = 5610, + [5749] = 5626, + [5750] = 5646, + [5751] = 5696, + [5752] = 5714, + [5753] = 5753, + [5754] = 5659, + [5755] = 5630, + [5756] = 5707, + [5757] = 5614, + [5758] = 5641, + [5759] = 5680, + [5760] = 5618, + [5761] = 5677, + [5762] = 5652, + [5763] = 5676, + [5764] = 5717, + [5765] = 5613, + [5766] = 5766, + [5767] = 5714, [5768] = 5618, - [5769] = 5612, - [5770] = 5575, - [5771] = 5593, + [5769] = 5638, + [5770] = 5615, + [5771] = 5681, [5772] = 5772, - [5773] = 5619, - [5774] = 5774, + [5773] = 5773, + [5774] = 5618, [5775] = 5775, - [5776] = 5604, - [5777] = 5777, - [5778] = 5778, - [5779] = 5590, - [5780] = 5594, - [5781] = 5620, - [5782] = 5596, + [5776] = 5776, + [5777] = 5612, + [5778] = 5604, + [5779] = 5630, + [5780] = 5682, + [5781] = 5638, + [5782] = 5646, [5783] = 5783, - [5784] = 5687, - [5785] = 5596, - [5786] = 5584, - [5787] = 5684, - [5788] = 5610, - [5789] = 5612, - [5790] = 5575, - [5791] = 5616, - [5792] = 5758, - [5793] = 5622, - [5794] = 5691, + [5784] = 5615, + [5785] = 5785, + [5786] = 5786, + [5787] = 5625, + [5788] = 5620, + [5789] = 5616, + [5790] = 5628, + [5791] = 5791, + [5792] = 5630, + [5793] = 5632, + [5794] = 5633, [5795] = 5795, - [5796] = 5619, - [5797] = 5692, - [5798] = 5622, - [5799] = 5627, - [5800] = 5800, - [5801] = 5801, - [5802] = 5628, - [5803] = 5637, - [5804] = 5616, - [5805] = 5590, - [5806] = 5639, - [5807] = 5692, - [5808] = 5808, - [5809] = 5590, - [5810] = 5810, - [5811] = 5664, - [5812] = 5812, - [5813] = 5594, - [5814] = 5814, - [5815] = 5808, - [5816] = 5623, - [5817] = 5638, - [5818] = 5800, - [5819] = 5622, - [5820] = 5614, - [5821] = 5628, - [5822] = 5621, - [5823] = 5578, - [5824] = 5810, - [5825] = 5580, - [5826] = 5582, - [5827] = 5620, - [5828] = 5637, - [5829] = 5586, - [5830] = 5687, - [5831] = 5579, - [5832] = 5581, - [5833] = 5599, - [5834] = 5639, - [5835] = 5684, - [5836] = 5668, - [5837] = 5576, - [5838] = 5585, + [5796] = 5625, + [5797] = 5714, + [5798] = 5645, + [5799] = 5728, + [5800] = 5649, + [5801] = 5620, + [5802] = 5714, + [5803] = 5621, + [5804] = 5652, + [5805] = 5651, + [5806] = 5806, + [5807] = 5657, + [5808] = 5612, + [5809] = 5620, + [5810] = 5616, + [5811] = 5811, + [5812] = 5626, + [5813] = 5653, + [5814] = 5719, + [5815] = 5646, + [5816] = 5666, + [5817] = 5775, + [5818] = 5630, + [5819] = 5632, + [5820] = 5633, + [5821] = 5638, + [5822] = 5822, + [5823] = 5687, + [5824] = 5628, + [5825] = 5615, + [5826] = 5667, + [5827] = 5707, + [5828] = 5652, + [5829] = 5783, + [5830] = 5701, + [5831] = 5776, + [5832] = 5674, + [5833] = 5668, + [5834] = 5834, + [5835] = 5677, + [5836] = 5707, + [5837] = 5704, + [5838] = 5681, [5839] = 5604, [5840] = 5840, - [5841] = 5589, - [5842] = 5622, - [5843] = 5615, - [5844] = 5637, - [5845] = 5845, - [5846] = 5642, + [5841] = 5841, + [5842] = 5632, + [5843] = 5728, + [5844] = 5728, + [5845] = 5633, + [5846] = 5711, [5847] = 5847, - [5848] = 5848, - [5849] = 5662, + [5848] = 5687, + [5849] = 5849, [5850] = 5850, - [5851] = 5851, - [5852] = 5579, - [5853] = 5596, - [5854] = 5629, - [5855] = 5607, + [5851] = 5632, + [5852] = 5657, + [5853] = 5776, + [5854] = 5841, + [5855] = 5641, [5856] = 5856, - [5857] = 5651, - [5858] = 5687, - [5859] = 5800, - [5860] = 5580, - [5861] = 5810, - [5862] = 5862, - [5863] = 5610, - [5864] = 5840, - [5865] = 5624, - [5866] = 5750, - [5867] = 5581, - [5868] = 5868, - [5869] = 5590, - [5870] = 5592, - [5871] = 5600, - [5872] = 5601, - [5873] = 5596, - [5874] = 5750, - [5875] = 5579, + [5857] = 5657, + [5858] = 5850, + [5859] = 5859, + [5860] = 5633, + [5861] = 5841, + [5862] = 5850, + [5863] = 5685, + [5864] = 5864, + [5865] = 5645, + [5866] = 5649, + [5867] = 5867, + [5868] = 5651, + [5869] = 5687, + [5870] = 5870, + [5871] = 5655, + [5872] = 5872, + [5873] = 5653, + [5874] = 5874, + [5875] = 5666, [5876] = 5876, [5877] = 5877, - [5878] = 5590, - [5879] = 5593, - [5880] = 5840, - [5881] = 5594, - [5882] = 5618, - [5883] = 5596, - [5884] = 5619, - [5885] = 5614, - [5886] = 5610, - [5887] = 5602, - [5888] = 5612, - [5889] = 5575, - [5890] = 5651, - [5891] = 5891, + [5878] = 5622, + [5879] = 5667, + [5880] = 5806, + [5881] = 5644, + [5882] = 5644, + [5883] = 5723, + [5884] = 5668, + [5885] = 5613, + [5886] = 5859, + [5887] = 5659, + [5888] = 5677, + [5889] = 5775, + [5890] = 5681, + [5891] = 5783, [5892] = 5604, - [5893] = 5620, - [5894] = 5894, - [5895] = 5593, - [5896] = 5877, - [5897] = 5631, - [5898] = 5622, - [5899] = 5639, - [5900] = 5604, + [5893] = 5859, + [5894] = 5864, + [5895] = 5659, + [5896] = 5872, + [5897] = 5728, + [5898] = 5898, + [5899] = 5864, + [5900] = 5900, [5901] = 5655, - [5902] = 5623, - [5903] = 5638, - [5904] = 5586, - [5905] = 5671, + [5902] = 5902, + [5903] = 5626, + [5904] = 5627, + [5905] = 5616, [5906] = 5906, - [5907] = 5594, - [5908] = 5689, - [5909] = 5651, - [5910] = 5616, - [5911] = 5577, - [5912] = 5659, - [5913] = 5601, - [5914] = 5627, - [5915] = 5795, - [5916] = 5634, - [5917] = 5848, - [5918] = 5596, - [5919] = 5655, - [5920] = 5614, - [5921] = 5629, - [5922] = 5610, - [5923] = 5664, - [5924] = 5612, - [5925] = 5575, - [5926] = 5590, - [5927] = 5629, - [5928] = 5594, - [5929] = 5596, - [5930] = 5655, - [5931] = 5931, - [5932] = 5610, - [5933] = 5659, - [5934] = 5612, - [5935] = 5652, - [5936] = 5575, - [5937] = 5937, - [5938] = 5938, - [5939] = 5599, - [5940] = 5691, - [5941] = 5941, - [5942] = 5772, - [5943] = 5634, - [5944] = 5625, - [5945] = 5664, - [5946] = 5598, - [5947] = 5652, - [5948] = 5756, - [5949] = 5949, + [5907] = 5907, + [5908] = 5620, + [5909] = 5723, + [5910] = 5620, + [5911] = 5616, + [5912] = 5766, + [5913] = 5626, + [5914] = 5638, + [5915] = 5687, + [5916] = 5630, + [5917] = 5690, + [5918] = 5632, + [5919] = 5633, + [5920] = 5615, + [5921] = 5766, + [5922] = 5690, + [5923] = 5682, + [5924] = 5607, + [5925] = 5776, + [5926] = 5841, + [5927] = 5850, + [5928] = 5652, + [5929] = 5859, + [5930] = 5872, + [5931] = 5685, + [5932] = 5723, + [5933] = 5766, + [5934] = 5690, + [5935] = 5701, + [5936] = 5616, + [5937] = 5682, + [5938] = 5719, + [5939] = 5682, + [5940] = 5674, + [5941] = 5674, + [5942] = 5942, + [5943] = 5943, + [5944] = 5620, + [5945] = 5945, + [5946] = 5616, + [5947] = 5645, + [5948] = 5626, + [5949] = 5685, [5950] = 5655, - [5951] = 5580, - [5952] = 5952, + [5951] = 5951, + [5952] = 5649, [5953] = 5953, - [5954] = 5581, - [5955] = 5778, - [5956] = 5622, + [5954] = 5630, + [5955] = 5632, + [5956] = 5633, [5957] = 5957, - [5958] = 5627, - [5959] = 5959, - [5960] = 5622, - [5961] = 5721, - [5962] = 5684, - [5963] = 5605, - [5964] = 5576, - [5965] = 5953, - [5966] = 5639, - [5967] = 5622, - [5968] = 5941, - [5969] = 5684, - [5970] = 5692, - [5971] = 5750, - [5972] = 5599, - [5973] = 5612, - [5974] = 5584, - [5975] = 5659, - [5976] = 5750, - [5977] = 5756, - [5978] = 5637, - [5979] = 5597, - [5980] = 5980, - [5981] = 5655, - [5982] = 5982, - [5983] = 5594, - [5984] = 5984, - [5985] = 5691, + [5958] = 5958, + [5959] = 5626, + [5960] = 5685, + [5961] = 5651, + [5962] = 5822, + [5963] = 5653, + [5964] = 5630, + [5965] = 5666, + [5966] = 5667, + [5967] = 5632, + [5968] = 5968, + [5969] = 5694, + [5970] = 5970, + [5971] = 5856, + [5972] = 5877, + [5973] = 5668, + [5974] = 5658, + [5975] = 5677, + [5976] = 5693, + [5977] = 5681, + [5978] = 5715, + [5979] = 5604, + [5980] = 5685, + [5981] = 5644, + [5982] = 5652, + [5983] = 5753, + [5984] = 5660, + [5985] = 5942, + [5986] = 5633, + [5987] = 5676, + [5988] = 5674, + [5989] = 5612, + [5990] = 5687, + [5991] = 5680, + [5992] = 5680, + [5993] = 5626, + [5994] = 5728, + [5995] = 5644, + [5996] = 5776, + [5997] = 5841, + [5998] = 5850, + [5999] = 5631, + [6000] = 6000, + [6001] = 5859, + [6002] = 5625, + [6003] = 5872, + [6004] = 5723, + [6005] = 5676, + [6006] = 5766, + [6007] = 5715, + [6008] = 5690, + [6009] = 5696, + [6010] = 6010, + [6011] = 5685, + [6012] = 5872, + [6013] = 5638, + [6014] = 5652, + [6015] = 5641, }; static TSCharacterRange extras_character_set_1[] = { @@ -13723,7 +13753,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [32] = {.lex_state = 128, .external_lex_state = 2}, [33] = {.lex_state = 128, .external_lex_state = 2}, [34] = {.lex_state = 128, .external_lex_state = 2}, - [35] = {.lex_state = 8, .external_lex_state = 2}, + [35] = {.lex_state = 128, .external_lex_state = 2}, [36] = {.lex_state = 128, .external_lex_state = 2}, [37] = {.lex_state = 128, .external_lex_state = 2}, [38] = {.lex_state = 128, .external_lex_state = 2}, @@ -13740,8 +13770,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [49] = {.lex_state = 128, .external_lex_state = 2}, [50] = {.lex_state = 128, .external_lex_state = 2}, [51] = {.lex_state = 128, .external_lex_state = 2}, - [52] = {.lex_state = 128, .external_lex_state = 2}, - [53] = {.lex_state = 8, .external_lex_state = 2}, + [52] = {.lex_state = 8, .external_lex_state = 2}, + [53] = {.lex_state = 128, .external_lex_state = 2}, [54] = {.lex_state = 128, .external_lex_state = 2}, [55] = {.lex_state = 128, .external_lex_state = 2}, [56] = {.lex_state = 128, .external_lex_state = 2}, @@ -13751,16 +13781,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 128, .external_lex_state = 2}, [61] = {.lex_state = 128, .external_lex_state = 2}, [62] = {.lex_state = 8, .external_lex_state = 2}, - [63] = {.lex_state = 128, .external_lex_state = 2}, - [64] = {.lex_state = 8, .external_lex_state = 2}, + [63] = {.lex_state = 8, .external_lex_state = 2}, + [64] = {.lex_state = 128, .external_lex_state = 2}, [65] = {.lex_state = 128, .external_lex_state = 2}, - [66] = {.lex_state = 128, .external_lex_state = 2}, - [67] = {.lex_state = 128, .external_lex_state = 2}, + [66] = {.lex_state = 8, .external_lex_state = 2}, + [67] = {.lex_state = 8, .external_lex_state = 2}, [68] = {.lex_state = 8, .external_lex_state = 2}, [69] = {.lex_state = 8, .external_lex_state = 2}, [70] = {.lex_state = 8, .external_lex_state = 2}, [71] = {.lex_state = 8, .external_lex_state = 2}, - [72] = {.lex_state = 8, .external_lex_state = 2}, + [72] = {.lex_state = 128, .external_lex_state = 2}, [73] = {.lex_state = 128, .external_lex_state = 2}, [74] = {.lex_state = 128, .external_lex_state = 2}, [75] = {.lex_state = 128, .external_lex_state = 2}, @@ -13779,55 +13809,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [88] = {.lex_state = 3, .external_lex_state = 4}, [89] = {.lex_state = 3, .external_lex_state = 4}, [90] = {.lex_state = 3, .external_lex_state = 3}, - [91] = {.lex_state = 8, .external_lex_state = 2}, - [92] = {.lex_state = 3, .external_lex_state = 3}, + [91] = {.lex_state = 3, .external_lex_state = 3}, + [92] = {.lex_state = 8, .external_lex_state = 2}, [93] = {.lex_state = 3, .external_lex_state = 3}, [94] = {.lex_state = 3, .external_lex_state = 3}, - [95] = {.lex_state = 8, .external_lex_state = 2}, + [95] = {.lex_state = 3, .external_lex_state = 3}, [96] = {.lex_state = 3, .external_lex_state = 3}, - [97] = {.lex_state = 3, .external_lex_state = 3}, + [97] = {.lex_state = 8, .external_lex_state = 2}, [98] = {.lex_state = 3, .external_lex_state = 3}, [99] = {.lex_state = 8, .external_lex_state = 2}, [100] = {.lex_state = 3, .external_lex_state = 3}, [101] = {.lex_state = 8, .external_lex_state = 2}, - [102] = {.lex_state = 8, .external_lex_state = 2}, + [102] = {.lex_state = 3, .external_lex_state = 3}, [103] = {.lex_state = 3, .external_lex_state = 3}, [104] = {.lex_state = 8, .external_lex_state = 2}, [105] = {.lex_state = 8, .external_lex_state = 2}, - [106] = {.lex_state = 8, .external_lex_state = 2}, + [106] = {.lex_state = 3, .external_lex_state = 3}, [107] = {.lex_state = 3, .external_lex_state = 3}, - [108] = {.lex_state = 3, .external_lex_state = 3}, - [109] = {.lex_state = 3, .external_lex_state = 3}, + [108] = {.lex_state = 8, .external_lex_state = 2}, + [109] = {.lex_state = 8, .external_lex_state = 2}, [110] = {.lex_state = 3, .external_lex_state = 3}, [111] = {.lex_state = 3, .external_lex_state = 3}, - [112] = {.lex_state = 3, .external_lex_state = 3}, + [112] = {.lex_state = 3, .external_lex_state = 4}, [113] = {.lex_state = 3, .external_lex_state = 4}, [114] = {.lex_state = 3, .external_lex_state = 4}, [115] = {.lex_state = 3, .external_lex_state = 4}, [116] = {.lex_state = 3, .external_lex_state = 4}, - [117] = {.lex_state = 3, .external_lex_state = 4}, + [117] = {.lex_state = 3, .external_lex_state = 3}, [118] = {.lex_state = 3, .external_lex_state = 4}, - [119] = {.lex_state = 3, .external_lex_state = 4}, + [119] = {.lex_state = 3, .external_lex_state = 3}, [120] = {.lex_state = 3, .external_lex_state = 4}, [121] = {.lex_state = 3, .external_lex_state = 4}, - [122] = {.lex_state = 3, .external_lex_state = 3}, + [122] = {.lex_state = 3, .external_lex_state = 4}, [123] = {.lex_state = 3, .external_lex_state = 3}, [124] = {.lex_state = 3, .external_lex_state = 3}, [125] = {.lex_state = 3, .external_lex_state = 3}, [126] = {.lex_state = 3, .external_lex_state = 3}, [127] = {.lex_state = 3, .external_lex_state = 3}, - [128] = {.lex_state = 3, .external_lex_state = 4}, - [129] = {.lex_state = 3, .external_lex_state = 4}, + [128] = {.lex_state = 3, .external_lex_state = 3}, + [129] = {.lex_state = 3, .external_lex_state = 3}, [130] = {.lex_state = 3, .external_lex_state = 3}, - [131] = {.lex_state = 3, .external_lex_state = 4}, + [131] = {.lex_state = 3, .external_lex_state = 3}, [132] = {.lex_state = 3, .external_lex_state = 3}, - [133] = {.lex_state = 3, .external_lex_state = 3}, - [134] = {.lex_state = 3, .external_lex_state = 3}, + [133] = {.lex_state = 3, .external_lex_state = 4}, + [134] = {.lex_state = 3, .external_lex_state = 4}, [135] = {.lex_state = 3, .external_lex_state = 3}, [136] = {.lex_state = 3, .external_lex_state = 3}, [137] = {.lex_state = 3, .external_lex_state = 3}, [138] = {.lex_state = 3, .external_lex_state = 3}, - [139] = {.lex_state = 3, .external_lex_state = 3}, + [139] = {.lex_state = 3, .external_lex_state = 4}, [140] = {.lex_state = 3, .external_lex_state = 3}, [141] = {.lex_state = 3, .external_lex_state = 3}, [142] = {.lex_state = 3, .external_lex_state = 3}, @@ -13845,9 +13875,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 3, .external_lex_state = 3}, [155] = {.lex_state = 3, .external_lex_state = 3}, [156] = {.lex_state = 3, .external_lex_state = 3}, - [157] = {.lex_state = 3, .external_lex_state = 3}, + [157] = {.lex_state = 8, .external_lex_state = 2}, [158] = {.lex_state = 3, .external_lex_state = 3}, - [159] = {.lex_state = 8, .external_lex_state = 2}, + [159] = {.lex_state = 3, .external_lex_state = 3}, [160] = {.lex_state = 3, .external_lex_state = 3}, [161] = {.lex_state = 8, .external_lex_state = 2}, [162] = {.lex_state = 8, .external_lex_state = 2}, @@ -13864,8 +13894,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [173] = {.lex_state = 127, .external_lex_state = 3}, [174] = {.lex_state = 127, .external_lex_state = 4}, [175] = {.lex_state = 127, .external_lex_state = 4}, - [176] = {.lex_state = 127, .external_lex_state = 4}, - [177] = {.lex_state = 127, .external_lex_state = 3}, + [176] = {.lex_state = 127, .external_lex_state = 3}, + [177] = {.lex_state = 127, .external_lex_state = 4}, [178] = {.lex_state = 127, .external_lex_state = 3}, [179] = {.lex_state = 127, .external_lex_state = 3}, [180] = {.lex_state = 127, .external_lex_state = 3}, @@ -13873,19 +13903,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [182] = {.lex_state = 2, .external_lex_state = 3}, [183] = {.lex_state = 2, .external_lex_state = 4}, [184] = {.lex_state = 2, .external_lex_state = 4}, - [185] = {.lex_state = 2, .external_lex_state = 3}, - [186] = {.lex_state = 2, .external_lex_state = 3}, + [185] = {.lex_state = 128, .external_lex_state = 2}, + [186] = {.lex_state = 128, .external_lex_state = 2}, [187] = {.lex_state = 128, .external_lex_state = 2}, [188] = {.lex_state = 128, .external_lex_state = 2}, [189] = {.lex_state = 128, .external_lex_state = 2}, - [190] = {.lex_state = 128, .external_lex_state = 2}, + [190] = {.lex_state = 2, .external_lex_state = 3}, [191] = {.lex_state = 128, .external_lex_state = 2}, [192] = {.lex_state = 128, .external_lex_state = 2}, - [193] = {.lex_state = 128, .external_lex_state = 2}, + [193] = {.lex_state = 2, .external_lex_state = 3}, [194] = {.lex_state = 128, .external_lex_state = 2}, [195] = {.lex_state = 2, .external_lex_state = 3}, - [196] = {.lex_state = 2, .external_lex_state = 3}, - [197] = {.lex_state = 2, .external_lex_state = 4}, + [196] = {.lex_state = 2, .external_lex_state = 4}, + [197] = {.lex_state = 2, .external_lex_state = 3}, [198] = {.lex_state = 2, .external_lex_state = 3}, [199] = {.lex_state = 2, .external_lex_state = 3}, [200] = {.lex_state = 2, .external_lex_state = 3}, @@ -13905,19 +13935,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [214] = {.lex_state = 128, .external_lex_state = 2}, [215] = {.lex_state = 128, .external_lex_state = 2}, [216] = {.lex_state = 127, .external_lex_state = 4}, - [217] = {.lex_state = 127, .external_lex_state = 4}, - [218] = {.lex_state = 128, .external_lex_state = 2}, + [217] = {.lex_state = 128, .external_lex_state = 2}, + [218] = {.lex_state = 127, .external_lex_state = 4}, [219] = {.lex_state = 127, .external_lex_state = 4}, [220] = {.lex_state = 128, .external_lex_state = 2}, [221] = {.lex_state = 128, .external_lex_state = 2}, [222] = {.lex_state = 128, .external_lex_state = 2}, - [223] = {.lex_state = 127, .external_lex_state = 4}, - [224] = {.lex_state = 128, .external_lex_state = 2}, + [223] = {.lex_state = 128, .external_lex_state = 2}, + [224] = {.lex_state = 127, .external_lex_state = 4}, [225] = {.lex_state = 128, .external_lex_state = 2}, [226] = {.lex_state = 128, .external_lex_state = 2}, [227] = {.lex_state = 128, .external_lex_state = 2}, [228] = {.lex_state = 127, .external_lex_state = 4}, - [229] = {.lex_state = 127, .external_lex_state = 4}, + [229] = {.lex_state = 128, .external_lex_state = 2}, [230] = {.lex_state = 127, .external_lex_state = 4}, [231] = {.lex_state = 127, .external_lex_state = 4}, [232] = {.lex_state = 127, .external_lex_state = 4}, @@ -13926,14 +13956,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [235] = {.lex_state = 127, .external_lex_state = 4}, [236] = {.lex_state = 127, .external_lex_state = 4}, [237] = {.lex_state = 127, .external_lex_state = 4}, - [238] = {.lex_state = 128, .external_lex_state = 2}, + [238] = {.lex_state = 127, .external_lex_state = 4}, [239] = {.lex_state = 127, .external_lex_state = 4}, [240] = {.lex_state = 127, .external_lex_state = 4}, [241] = {.lex_state = 127, .external_lex_state = 4}, [242] = {.lex_state = 127, .external_lex_state = 4}, [243] = {.lex_state = 127, .external_lex_state = 4}, [244] = {.lex_state = 127, .external_lex_state = 4}, - [245] = {.lex_state = 127, .external_lex_state = 4}, + [245] = {.lex_state = 128, .external_lex_state = 5}, [246] = {.lex_state = 127, .external_lex_state = 4}, [247] = {.lex_state = 127, .external_lex_state = 4}, [248] = {.lex_state = 127, .external_lex_state = 4}, @@ -13942,7 +13972,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [251] = {.lex_state = 127, .external_lex_state = 4}, [252] = {.lex_state = 127, .external_lex_state = 4}, [253] = {.lex_state = 127, .external_lex_state = 4}, - [254] = {.lex_state = 128, .external_lex_state = 5}, + [254] = {.lex_state = 127, .external_lex_state = 4}, [255] = {.lex_state = 128, .external_lex_state = 2}, [256] = {.lex_state = 128, .external_lex_state = 2}, [257] = {.lex_state = 128, .external_lex_state = 2}, @@ -13956,24 +13986,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [265] = {.lex_state = 128, .external_lex_state = 2}, [266] = {.lex_state = 128, .external_lex_state = 2}, [267] = {.lex_state = 128, .external_lex_state = 2}, - [268] = {.lex_state = 3, .external_lex_state = 3}, - [269] = {.lex_state = 3, .external_lex_state = 3}, - [270] = {.lex_state = 128, .external_lex_state = 2}, + [268] = {.lex_state = 128, .external_lex_state = 2}, + [269] = {.lex_state = 128, .external_lex_state = 2}, + [270] = {.lex_state = 3, .external_lex_state = 3}, [271] = {.lex_state = 128, .external_lex_state = 2}, [272] = {.lex_state = 128, .external_lex_state = 2}, [273] = {.lex_state = 128, .external_lex_state = 2}, - [274] = {.lex_state = 3, .external_lex_state = 3}, + [274] = {.lex_state = 128, .external_lex_state = 2}, [275] = {.lex_state = 128, .external_lex_state = 2}, [276] = {.lex_state = 128, .external_lex_state = 2}, - [277] = {.lex_state = 128, .external_lex_state = 2}, + [277] = {.lex_state = 3, .external_lex_state = 3}, [278] = {.lex_state = 128, .external_lex_state = 2}, [279] = {.lex_state = 128, .external_lex_state = 2}, [280] = {.lex_state = 128, .external_lex_state = 2}, [281] = {.lex_state = 128, .external_lex_state = 2}, - [282] = {.lex_state = 128, .external_lex_state = 2}, + [282] = {.lex_state = 3, .external_lex_state = 3}, [283] = {.lex_state = 128, .external_lex_state = 2}, - [284] = {.lex_state = 128, .external_lex_state = 2}, - [285] = {.lex_state = 3, .external_lex_state = 3}, + [284] = {.lex_state = 3, .external_lex_state = 3}, + [285] = {.lex_state = 128, .external_lex_state = 2}, [286] = {.lex_state = 128, .external_lex_state = 2}, [287] = {.lex_state = 128, .external_lex_state = 2}, [288] = {.lex_state = 128, .external_lex_state = 2}, @@ -13995,12 +14025,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [304] = {.lex_state = 128, .external_lex_state = 2}, [305] = {.lex_state = 128, .external_lex_state = 2}, [306] = {.lex_state = 128, .external_lex_state = 2}, - [307] = {.lex_state = 128, .external_lex_state = 5}, + [307] = {.lex_state = 128, .external_lex_state = 2}, [308] = {.lex_state = 128, .external_lex_state = 2}, [309] = {.lex_state = 128, .external_lex_state = 2}, [310] = {.lex_state = 128, .external_lex_state = 2}, [311] = {.lex_state = 128, .external_lex_state = 2}, - [312] = {.lex_state = 128, .external_lex_state = 2}, + [312] = {.lex_state = 128, .external_lex_state = 5}, [313] = {.lex_state = 128, .external_lex_state = 2}, [314] = {.lex_state = 128, .external_lex_state = 2}, [315] = {.lex_state = 128, .external_lex_state = 2}, @@ -14368,10 +14398,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [677] = {.lex_state = 2, .external_lex_state = 4}, [678] = {.lex_state = 2, .external_lex_state = 4}, [679] = {.lex_state = 2, .external_lex_state = 4}, - [680] = {.lex_state = 128, .external_lex_state = 2}, - [681] = {.lex_state = 128, .external_lex_state = 2}, - [682] = {.lex_state = 2, .external_lex_state = 4}, - [683] = {.lex_state = 2, .external_lex_state = 4}, + [680] = {.lex_state = 2, .external_lex_state = 4}, + [681] = {.lex_state = 2, .external_lex_state = 4}, + [682] = {.lex_state = 128, .external_lex_state = 2}, + [683] = {.lex_state = 128, .external_lex_state = 2}, [684] = {.lex_state = 128, .external_lex_state = 2}, [685] = {.lex_state = 128, .external_lex_state = 2}, [686] = {.lex_state = 128, .external_lex_state = 2}, @@ -14394,85 +14424,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [703] = {.lex_state = 2, .external_lex_state = 4}, [704] = {.lex_state = 2, .external_lex_state = 4}, [705] = {.lex_state = 2, .external_lex_state = 4}, - [706] = {.lex_state = 2, .external_lex_state = 4}, + [706] = {.lex_state = 2, .external_lex_state = 3}, [707] = {.lex_state = 2, .external_lex_state = 4}, [708] = {.lex_state = 2, .external_lex_state = 4}, [709] = {.lex_state = 2, .external_lex_state = 4}, - [710] = {.lex_state = 2, .external_lex_state = 3}, - [711] = {.lex_state = 3, .external_lex_state = 3}, + [710] = {.lex_state = 2, .external_lex_state = 4}, + [711] = {.lex_state = 2, .external_lex_state = 3}, [712] = {.lex_state = 2, .external_lex_state = 3}, - [713] = {.lex_state = 2, .external_lex_state = 3}, + [713] = {.lex_state = 3, .external_lex_state = 3}, [714] = {.lex_state = 3, .external_lex_state = 3}, - [715] = {.lex_state = 128, .external_lex_state = 5}, + [715] = {.lex_state = 2, .external_lex_state = 4}, [716] = {.lex_state = 2, .external_lex_state = 3}, - [717] = {.lex_state = 2, .external_lex_state = 4}, + [717] = {.lex_state = 128, .external_lex_state = 5}, [718] = {.lex_state = 2, .external_lex_state = 3}, - [719] = {.lex_state = 2, .external_lex_state = 4}, + [719] = {.lex_state = 128, .external_lex_state = 2}, [720] = {.lex_state = 2, .external_lex_state = 3}, - [721] = {.lex_state = 2, .external_lex_state = 4}, - [722] = {.lex_state = 2, .external_lex_state = 4}, + [721] = {.lex_state = 2, .external_lex_state = 3}, + [722] = {.lex_state = 128, .external_lex_state = 5}, [723] = {.lex_state = 2, .external_lex_state = 4}, - [724] = {.lex_state = 2, .external_lex_state = 3}, - [725] = {.lex_state = 128, .external_lex_state = 5}, - [726] = {.lex_state = 2, .external_lex_state = 3}, - [727] = {.lex_state = 128, .external_lex_state = 2}, - [728] = {.lex_state = 2, .external_lex_state = 3}, + [724] = {.lex_state = 2, .external_lex_state = 4}, + [725] = {.lex_state = 2, .external_lex_state = 3}, + [726] = {.lex_state = 2, .external_lex_state = 4}, + [727] = {.lex_state = 2, .external_lex_state = 4}, + [728] = {.lex_state = 128, .external_lex_state = 5}, [729] = {.lex_state = 128, .external_lex_state = 5}, - [730] = {.lex_state = 128, .external_lex_state = 2}, + [730] = {.lex_state = 128, .external_lex_state = 5}, [731] = {.lex_state = 128, .external_lex_state = 5}, - [732] = {.lex_state = 2, .external_lex_state = 3}, - [733] = {.lex_state = 2, .external_lex_state = 3}, + [732] = {.lex_state = 128, .external_lex_state = 5}, + [733] = {.lex_state = 128, .external_lex_state = 5}, [734] = {.lex_state = 2, .external_lex_state = 3}, - [735] = {.lex_state = 128, .external_lex_state = 5}, + [735] = {.lex_state = 2, .external_lex_state = 3}, [736] = {.lex_state = 2, .external_lex_state = 3}, - [737] = {.lex_state = 128, .external_lex_state = 5}, - [738] = {.lex_state = 2, .external_lex_state = 3}, - [739] = {.lex_state = 128, .external_lex_state = 5}, - [740] = {.lex_state = 128, .external_lex_state = 5}, + [737] = {.lex_state = 2, .external_lex_state = 3}, + [738] = {.lex_state = 128, .external_lex_state = 2}, + [739] = {.lex_state = 2, .external_lex_state = 3}, + [740] = {.lex_state = 2, .external_lex_state = 3}, [741] = {.lex_state = 128, .external_lex_state = 2}, [742] = {.lex_state = 128, .external_lex_state = 2}, - [743] = {.lex_state = 2, .external_lex_state = 3}, + [743] = {.lex_state = 128, .external_lex_state = 2}, [744] = {.lex_state = 2, .external_lex_state = 3}, [745] = {.lex_state = 2, .external_lex_state = 3}, [746] = {.lex_state = 2, .external_lex_state = 3}, [747] = {.lex_state = 2, .external_lex_state = 3}, [748] = {.lex_state = 2, .external_lex_state = 3}, [749] = {.lex_state = 2, .external_lex_state = 3}, - [750] = {.lex_state = 128, .external_lex_state = 2}, - [751] = {.lex_state = 128, .external_lex_state = 2}, - [752] = {.lex_state = 2, .external_lex_state = 3}, + [750] = {.lex_state = 2, .external_lex_state = 3}, + [751] = {.lex_state = 2, .external_lex_state = 3}, + [752] = {.lex_state = 128, .external_lex_state = 2}, [753] = {.lex_state = 2, .external_lex_state = 3}, [754] = {.lex_state = 2, .external_lex_state = 3}, [755] = {.lex_state = 128, .external_lex_state = 5}, [756] = {.lex_state = 128, .external_lex_state = 5}, - [757] = {.lex_state = 128, .external_lex_state = 2}, - [758] = {.lex_state = 128, .external_lex_state = 5}, - [759] = {.lex_state = 128, .external_lex_state = 2}, + [757] = {.lex_state = 128, .external_lex_state = 5}, + [758] = {.lex_state = 9, .external_lex_state = 2}, + [759] = {.lex_state = 9, .external_lex_state = 2}, [760] = {.lex_state = 9, .external_lex_state = 2}, - [761] = {.lex_state = 9, .external_lex_state = 2}, - [762] = {.lex_state = 9, .external_lex_state = 2}, - [763] = {.lex_state = 9, .external_lex_state = 2}, - [764] = {.lex_state = 128, .external_lex_state = 5}, + [761] = {.lex_state = 128, .external_lex_state = 2}, + [762] = {.lex_state = 128, .external_lex_state = 2}, + [763] = {.lex_state = 128, .external_lex_state = 2}, + [764] = {.lex_state = 128, .external_lex_state = 2}, [765] = {.lex_state = 128, .external_lex_state = 5}, [766] = {.lex_state = 128, .external_lex_state = 5}, - [767] = {.lex_state = 128, .external_lex_state = 5}, - [768] = {.lex_state = 128, .external_lex_state = 2}, - [769] = {.lex_state = 128, .external_lex_state = 2}, - [770] = {.lex_state = 128, .external_lex_state = 5}, + [767] = {.lex_state = 128, .external_lex_state = 2}, + [768] = {.lex_state = 128, .external_lex_state = 5}, + [769] = {.lex_state = 9, .external_lex_state = 2}, + [770] = {.lex_state = 9, .external_lex_state = 2}, [771] = {.lex_state = 128, .external_lex_state = 5}, [772] = {.lex_state = 128, .external_lex_state = 5}, - [773] = {.lex_state = 128, .external_lex_state = 5}, + [773] = {.lex_state = 128, .external_lex_state = 2}, [774] = {.lex_state = 128, .external_lex_state = 5}, - [775] = {.lex_state = 128, .external_lex_state = 2}, + [775] = {.lex_state = 128, .external_lex_state = 5}, [776] = {.lex_state = 128, .external_lex_state = 5}, - [777] = {.lex_state = 128, .external_lex_state = 5}, + [777] = {.lex_state = 128, .external_lex_state = 2}, [778] = {.lex_state = 128, .external_lex_state = 2}, - [779] = {.lex_state = 128, .external_lex_state = 2}, + [779] = {.lex_state = 128, .external_lex_state = 5}, [780] = {.lex_state = 128, .external_lex_state = 5}, - [781] = {.lex_state = 128, .external_lex_state = 2}, - [782] = {.lex_state = 9, .external_lex_state = 2}, + [781] = {.lex_state = 128, .external_lex_state = 5}, + [782] = {.lex_state = 128, .external_lex_state = 5}, [783] = {.lex_state = 128, .external_lex_state = 2}, - [784] = {.lex_state = 9, .external_lex_state = 2}, + [784] = {.lex_state = 128, .external_lex_state = 2}, [785] = {.lex_state = 128, .external_lex_state = 2}, [786] = {.lex_state = 128, .external_lex_state = 2}, [787] = {.lex_state = 128, .external_lex_state = 2}, @@ -14482,18 +14512,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [791] = {.lex_state = 128, .external_lex_state = 2}, [792] = {.lex_state = 128, .external_lex_state = 2}, [793] = {.lex_state = 128, .external_lex_state = 2}, - [794] = {.lex_state = 9, .external_lex_state = 2}, - [795] = {.lex_state = 9, .external_lex_state = 2}, + [794] = {.lex_state = 128, .external_lex_state = 2}, + [795] = {.lex_state = 128, .external_lex_state = 2}, [796] = {.lex_state = 128, .external_lex_state = 2}, [797] = {.lex_state = 128, .external_lex_state = 2}, [798] = {.lex_state = 128, .external_lex_state = 2}, [799] = {.lex_state = 128, .external_lex_state = 2}, - [800] = {.lex_state = 9, .external_lex_state = 2}, - [801] = {.lex_state = 9, .external_lex_state = 2}, + [800] = {.lex_state = 128, .external_lex_state = 2}, + [801] = {.lex_state = 128, .external_lex_state = 2}, [802] = {.lex_state = 128, .external_lex_state = 2}, [803] = {.lex_state = 128, .external_lex_state = 2}, - [804] = {.lex_state = 9, .external_lex_state = 2}, - [805] = {.lex_state = 9, .external_lex_state = 2}, + [804] = {.lex_state = 128, .external_lex_state = 2}, + [805] = {.lex_state = 128, .external_lex_state = 2}, [806] = {.lex_state = 128, .external_lex_state = 2}, [807] = {.lex_state = 128, .external_lex_state = 2}, [808] = {.lex_state = 128, .external_lex_state = 2}, @@ -14517,21 +14547,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [826] = {.lex_state = 128, .external_lex_state = 2}, [827] = {.lex_state = 128, .external_lex_state = 2}, [828] = {.lex_state = 128, .external_lex_state = 2}, - [829] = {.lex_state = 128, .external_lex_state = 2}, + [829] = {.lex_state = 9, .external_lex_state = 2}, [830] = {.lex_state = 128, .external_lex_state = 2}, [831] = {.lex_state = 128, .external_lex_state = 2}, [832] = {.lex_state = 128, .external_lex_state = 2}, [833] = {.lex_state = 128, .external_lex_state = 2}, - [834] = {.lex_state = 9, .external_lex_state = 2}, + [834] = {.lex_state = 128, .external_lex_state = 2}, [835] = {.lex_state = 128, .external_lex_state = 2}, [836] = {.lex_state = 128, .external_lex_state = 2}, [837] = {.lex_state = 128, .external_lex_state = 2}, [838] = {.lex_state = 128, .external_lex_state = 2}, - [839] = {.lex_state = 128, .external_lex_state = 2}, + [839] = {.lex_state = 9, .external_lex_state = 2}, [840] = {.lex_state = 128, .external_lex_state = 2}, [841] = {.lex_state = 128, .external_lex_state = 2}, [842] = {.lex_state = 128, .external_lex_state = 2}, - [843] = {.lex_state = 128, .external_lex_state = 2}, + [843] = {.lex_state = 9, .external_lex_state = 2}, [844] = {.lex_state = 128, .external_lex_state = 2}, [845] = {.lex_state = 128, .external_lex_state = 2}, [846] = {.lex_state = 128, .external_lex_state = 2}, @@ -14552,34 +14582,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [861] = {.lex_state = 128, .external_lex_state = 2}, [862] = {.lex_state = 128, .external_lex_state = 2}, [863] = {.lex_state = 128, .external_lex_state = 2}, - [864] = {.lex_state = 9, .external_lex_state = 2}, + [864] = {.lex_state = 128, .external_lex_state = 2}, [865] = {.lex_state = 128, .external_lex_state = 2}, - [866] = {.lex_state = 128, .external_lex_state = 2}, + [866] = {.lex_state = 9, .external_lex_state = 2}, [867] = {.lex_state = 128, .external_lex_state = 2}, [868] = {.lex_state = 128, .external_lex_state = 2}, [869] = {.lex_state = 128, .external_lex_state = 2}, [870] = {.lex_state = 128, .external_lex_state = 2}, [871] = {.lex_state = 128, .external_lex_state = 2}, - [872] = {.lex_state = 128, .external_lex_state = 2}, + [872] = {.lex_state = 9, .external_lex_state = 2}, [873] = {.lex_state = 128, .external_lex_state = 2}, [874] = {.lex_state = 128, .external_lex_state = 2}, [875] = {.lex_state = 128, .external_lex_state = 2}, - [876] = {.lex_state = 128, .external_lex_state = 2}, - [877] = {.lex_state = 128, .external_lex_state = 2}, + [876] = {.lex_state = 9, .external_lex_state = 2}, + [877] = {.lex_state = 9, .external_lex_state = 2}, [878] = {.lex_state = 128, .external_lex_state = 2}, [879] = {.lex_state = 128, .external_lex_state = 2}, [880] = {.lex_state = 128, .external_lex_state = 2}, - [881] = {.lex_state = 128, .external_lex_state = 2}, + [881] = {.lex_state = 9, .external_lex_state = 2}, [882] = {.lex_state = 128, .external_lex_state = 2}, [883] = {.lex_state = 128, .external_lex_state = 2}, [884] = {.lex_state = 128, .external_lex_state = 2}, - [885] = {.lex_state = 128, .external_lex_state = 2}, + [885] = {.lex_state = 9, .external_lex_state = 2}, [886] = {.lex_state = 128, .external_lex_state = 2}, [887] = {.lex_state = 128, .external_lex_state = 2}, [888] = {.lex_state = 128, .external_lex_state = 2}, [889] = {.lex_state = 128, .external_lex_state = 2}, [890] = {.lex_state = 128, .external_lex_state = 2}, - [891] = {.lex_state = 128, .external_lex_state = 2}, + [891] = {.lex_state = 9, .external_lex_state = 2}, [892] = {.lex_state = 128, .external_lex_state = 2}, [893] = {.lex_state = 128, .external_lex_state = 2}, [894] = {.lex_state = 128, .external_lex_state = 2}, @@ -14594,7 +14624,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [903] = {.lex_state = 128, .external_lex_state = 2}, [904] = {.lex_state = 128, .external_lex_state = 2}, [905] = {.lex_state = 128, .external_lex_state = 2}, - [906] = {.lex_state = 9, .external_lex_state = 2}, + [906] = {.lex_state = 128, .external_lex_state = 2}, [907] = {.lex_state = 128, .external_lex_state = 2}, [908] = {.lex_state = 128, .external_lex_state = 2}, [909] = {.lex_state = 128, .external_lex_state = 2}, @@ -14608,35 +14638,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [917] = {.lex_state = 128, .external_lex_state = 2}, [918] = {.lex_state = 9, .external_lex_state = 2}, [919] = {.lex_state = 9, .external_lex_state = 2}, - [920] = {.lex_state = 128, .external_lex_state = 2}, + [920] = {.lex_state = 9, .external_lex_state = 2}, [921] = {.lex_state = 9, .external_lex_state = 2}, [922] = {.lex_state = 9, .external_lex_state = 2}, - [923] = {.lex_state = 9, .external_lex_state = 2}, - [924] = {.lex_state = 128, .external_lex_state = 2}, - [925] = {.lex_state = 128, .external_lex_state = 2}, + [923] = {.lex_state = 128, .external_lex_state = 2}, + [924] = {.lex_state = 9, .external_lex_state = 2}, + [925] = {.lex_state = 9, .external_lex_state = 2}, [926] = {.lex_state = 128, .external_lex_state = 2}, [927] = {.lex_state = 9, .external_lex_state = 2}, [928] = {.lex_state = 128, .external_lex_state = 2}, [929] = {.lex_state = 128, .external_lex_state = 2}, - [930] = {.lex_state = 128, .external_lex_state = 2}, - [931] = {.lex_state = 128, .external_lex_state = 2}, - [932] = {.lex_state = 9, .external_lex_state = 2}, + [930] = {.lex_state = 9, .external_lex_state = 2}, + [931] = {.lex_state = 9, .external_lex_state = 2}, + [932] = {.lex_state = 128, .external_lex_state = 2}, [933] = {.lex_state = 128, .external_lex_state = 2}, [934] = {.lex_state = 128, .external_lex_state = 2}, [935] = {.lex_state = 9, .external_lex_state = 2}, - [936] = {.lex_state = 128, .external_lex_state = 2}, + [936] = {.lex_state = 9, .external_lex_state = 2}, [937] = {.lex_state = 9, .external_lex_state = 2}, - [938] = {.lex_state = 9, .external_lex_state = 2}, + [938] = {.lex_state = 128, .external_lex_state = 2}, [939] = {.lex_state = 9, .external_lex_state = 2}, [940] = {.lex_state = 9, .external_lex_state = 2}, - [941] = {.lex_state = 9, .external_lex_state = 2}, + [941] = {.lex_state = 128, .external_lex_state = 2}, [942] = {.lex_state = 9, .external_lex_state = 2}, - [943] = {.lex_state = 9, .external_lex_state = 2}, + [943] = {.lex_state = 128, .external_lex_state = 2}, [944] = {.lex_state = 128, .external_lex_state = 2}, [945] = {.lex_state = 9, .external_lex_state = 2}, [946] = {.lex_state = 128, .external_lex_state = 2}, - [947] = {.lex_state = 9, .external_lex_state = 2}, - [948] = {.lex_state = 7, .external_lex_state = 2}, + [947] = {.lex_state = 128, .external_lex_state = 2}, + [948] = {.lex_state = 9, .external_lex_state = 2}, [949] = {.lex_state = 9, .external_lex_state = 2}, [950] = {.lex_state = 9, .external_lex_state = 2}, [951] = {.lex_state = 9, .external_lex_state = 2}, @@ -14645,8 +14675,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [954] = {.lex_state = 9, .external_lex_state = 2}, [955] = {.lex_state = 9, .external_lex_state = 2}, [956] = {.lex_state = 9, .external_lex_state = 2}, - [957] = {.lex_state = 7, .external_lex_state = 2}, - [958] = {.lex_state = 7, .external_lex_state = 2}, + [957] = {.lex_state = 9, .external_lex_state = 2}, + [958] = {.lex_state = 9, .external_lex_state = 2}, [959] = {.lex_state = 9, .external_lex_state = 2}, [960] = {.lex_state = 11, .external_lex_state = 2}, [961] = {.lex_state = 9, .external_lex_state = 2}, @@ -14656,9 +14686,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [965] = {.lex_state = 9, .external_lex_state = 2}, [966] = {.lex_state = 9, .external_lex_state = 2}, [967] = {.lex_state = 9, .external_lex_state = 2}, - [968] = {.lex_state = 9, .external_lex_state = 2}, - [969] = {.lex_state = 9, .external_lex_state = 2}, - [970] = {.lex_state = 9, .external_lex_state = 2}, + [968] = {.lex_state = 7, .external_lex_state = 2}, + [969] = {.lex_state = 7, .external_lex_state = 2}, + [970] = {.lex_state = 7, .external_lex_state = 2}, [971] = {.lex_state = 9, .external_lex_state = 2}, [972] = {.lex_state = 9, .external_lex_state = 2}, [973] = {.lex_state = 9, .external_lex_state = 2}, @@ -14825,15 +14855,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1134] = {.lex_state = 10, .external_lex_state = 2}, [1135] = {.lex_state = 10, .external_lex_state = 2}, [1136] = {.lex_state = 10, .external_lex_state = 2}, - [1137] = {.lex_state = 2, .external_lex_state = 4}, + [1137] = {.lex_state = 3, .external_lex_state = 4}, [1138] = {.lex_state = 2, .external_lex_state = 4}, [1139] = {.lex_state = 2, .external_lex_state = 4}, - [1140] = {.lex_state = 3, .external_lex_state = 4}, + [1140] = {.lex_state = 2, .external_lex_state = 4}, [1141] = {.lex_state = 3, .external_lex_state = 4}, [1142] = {.lex_state = 2, .external_lex_state = 4}, - [1143] = {.lex_state = 3, .external_lex_state = 4}, + [1143] = {.lex_state = 2, .external_lex_state = 4}, [1144] = {.lex_state = 2, .external_lex_state = 4}, - [1145] = {.lex_state = 2, .external_lex_state = 4}, + [1145] = {.lex_state = 3, .external_lex_state = 4}, [1146] = {.lex_state = 2, .external_lex_state = 3}, [1147] = {.lex_state = 2, .external_lex_state = 3}, [1148] = {.lex_state = 2, .external_lex_state = 3}, @@ -14841,220 +14871,220 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1150] = {.lex_state = 2, .external_lex_state = 3}, [1151] = {.lex_state = 10, .external_lex_state = 2}, [1152] = {.lex_state = 10, .external_lex_state = 2}, - [1153] = {.lex_state = 2, .external_lex_state = 4}, - [1154] = {.lex_state = 3, .external_lex_state = 4}, - [1155] = {.lex_state = 2, .external_lex_state = 4}, - [1156] = {.lex_state = 2, .external_lex_state = 3}, + [1153] = {.lex_state = 3, .external_lex_state = 3}, + [1154] = {.lex_state = 2, .external_lex_state = 4}, + [1155] = {.lex_state = 2, .external_lex_state = 3}, + [1156] = {.lex_state = 2, .external_lex_state = 4}, [1157] = {.lex_state = 2, .external_lex_state = 4}, [1158] = {.lex_state = 2, .external_lex_state = 4}, - [1159] = {.lex_state = 2, .external_lex_state = 4}, + [1159] = {.lex_state = 3, .external_lex_state = 3}, [1160] = {.lex_state = 2, .external_lex_state = 4}, [1161] = {.lex_state = 2, .external_lex_state = 4}, [1162] = {.lex_state = 2, .external_lex_state = 4}, - [1163] = {.lex_state = 2, .external_lex_state = 4}, + [1163] = {.lex_state = 3, .external_lex_state = 4}, [1164] = {.lex_state = 3, .external_lex_state = 4}, - [1165] = {.lex_state = 3, .external_lex_state = 4}, - [1166] = {.lex_state = 2, .external_lex_state = 4}, + [1165] = {.lex_state = 2, .external_lex_state = 4}, + [1166] = {.lex_state = 3, .external_lex_state = 4}, [1167] = {.lex_state = 2, .external_lex_state = 4}, - [1168] = {.lex_state = 2, .external_lex_state = 3}, + [1168] = {.lex_state = 2, .external_lex_state = 4}, [1169] = {.lex_state = 3, .external_lex_state = 3}, - [1170] = {.lex_state = 2, .external_lex_state = 4}, + [1170] = {.lex_state = 2, .external_lex_state = 3}, [1171] = {.lex_state = 3, .external_lex_state = 3}, [1172] = {.lex_state = 3, .external_lex_state = 3}, [1173] = {.lex_state = 3, .external_lex_state = 3}, - [1174] = {.lex_state = 3, .external_lex_state = 3}, + [1174] = {.lex_state = 2, .external_lex_state = 4}, [1175] = {.lex_state = 2, .external_lex_state = 3}, [1176] = {.lex_state = 2, .external_lex_state = 4}, [1177] = {.lex_state = 3, .external_lex_state = 3}, - [1178] = {.lex_state = 3, .external_lex_state = 3}, + [1178] = {.lex_state = 2, .external_lex_state = 3}, [1179] = {.lex_state = 3, .external_lex_state = 3}, [1180] = {.lex_state = 3, .external_lex_state = 3}, [1181] = {.lex_state = 3, .external_lex_state = 3}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 3, .external_lex_state = 3}, [1183] = {.lex_state = 3, .external_lex_state = 3}, - [1184] = {.lex_state = 3, .external_lex_state = 3}, + [1184] = {.lex_state = 2, .external_lex_state = 4}, [1185] = {.lex_state = 3, .external_lex_state = 3}, [1186] = {.lex_state = 2, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 4}, - [1188] = {.lex_state = 2, .external_lex_state = 4}, - [1189] = {.lex_state = 3, .external_lex_state = 4}, - [1190] = {.lex_state = 2, .external_lex_state = 4}, - [1191] = {.lex_state = 2, .external_lex_state = 4}, - [1192] = {.lex_state = 2, .external_lex_state = 4}, + [1188] = {.lex_state = 2, .external_lex_state = 3}, + [1189] = {.lex_state = 3, .external_lex_state = 3}, + [1190] = {.lex_state = 2, .external_lex_state = 3}, + [1191] = {.lex_state = 2, .external_lex_state = 3}, + [1192] = {.lex_state = 3, .external_lex_state = 4}, [1193] = {.lex_state = 2, .external_lex_state = 4}, - [1194] = {.lex_state = 3, .external_lex_state = 4}, - [1195] = {.lex_state = 3, .external_lex_state = 3}, + [1194] = {.lex_state = 2, .external_lex_state = 4}, + [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 2, .external_lex_state = 4}, [1197] = {.lex_state = 2, .external_lex_state = 4}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 3, .external_lex_state = 3}, [1199] = {.lex_state = 2, .external_lex_state = 4}, - [1200] = {.lex_state = 2, .external_lex_state = 4}, - [1201] = {.lex_state = 2, .external_lex_state = 3}, - [1202] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 2, .external_lex_state = 3}, + [1201] = {.lex_state = 2, .external_lex_state = 4}, + [1202] = {.lex_state = 2, .external_lex_state = 4}, [1203] = {.lex_state = 2, .external_lex_state = 4}, - [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 2, .external_lex_state = 4}, + [1204] = {.lex_state = 2, .external_lex_state = 4}, + [1205] = {.lex_state = 3, .external_lex_state = 4}, [1206] = {.lex_state = 2, .external_lex_state = 4}, - [1207] = {.lex_state = 2, .external_lex_state = 3}, - [1208] = {.lex_state = 3, .external_lex_state = 3}, + [1207] = {.lex_state = 2, .external_lex_state = 4}, + [1208] = {.lex_state = 2, .external_lex_state = 4}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 128, .external_lex_state = 2}, [1212] = {.lex_state = 2, .external_lex_state = 3}, - [1213] = {.lex_state = 2, .external_lex_state = 4}, + [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, - [1215] = {.lex_state = 2, .external_lex_state = 4}, + [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 2, .external_lex_state = 3}, - [1217] = {.lex_state = 128, .external_lex_state = 2}, - [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 2, .external_lex_state = 4}, - [1220] = {.lex_state = 2, .external_lex_state = 3}, + [1217] = {.lex_state = 2, .external_lex_state = 4}, + [1218] = {.lex_state = 2, .external_lex_state = 4}, + [1219] = {.lex_state = 2, .external_lex_state = 3}, + [1220] = {.lex_state = 2, .external_lex_state = 4}, [1221] = {.lex_state = 2, .external_lex_state = 3}, [1222] = {.lex_state = 2, .external_lex_state = 3}, [1223] = {.lex_state = 2, .external_lex_state = 3}, [1224] = {.lex_state = 2, .external_lex_state = 3}, - [1225] = {.lex_state = 2, .external_lex_state = 3}, + [1225] = {.lex_state = 128, .external_lex_state = 2}, [1226] = {.lex_state = 2, .external_lex_state = 3}, - [1227] = {.lex_state = 2, .external_lex_state = 3}, - [1228] = {.lex_state = 2, .external_lex_state = 3}, + [1227] = {.lex_state = 2, .external_lex_state = 4}, + [1228] = {.lex_state = 2, .external_lex_state = 4}, [1229] = {.lex_state = 2, .external_lex_state = 3}, - [1230] = {.lex_state = 3, .external_lex_state = 3}, - [1231] = {.lex_state = 2, .external_lex_state = 3}, - [1232] = {.lex_state = 2, .external_lex_state = 4}, - [1233] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 3}, + [1231] = {.lex_state = 2, .external_lex_state = 4}, + [1232] = {.lex_state = 2, .external_lex_state = 3}, + [1233] = {.lex_state = 2, .external_lex_state = 4}, [1234] = {.lex_state = 2, .external_lex_state = 3}, - [1235] = {.lex_state = 2, .external_lex_state = 3}, - [1236] = {.lex_state = 2, .external_lex_state = 3}, + [1235] = {.lex_state = 128, .external_lex_state = 2}, + [1236] = {.lex_state = 3, .external_lex_state = 3}, [1237] = {.lex_state = 2, .external_lex_state = 3}, - [1238] = {.lex_state = 2, .external_lex_state = 4}, - [1239] = {.lex_state = 3, .external_lex_state = 3}, + [1238] = {.lex_state = 2, .external_lex_state = 3}, + [1239] = {.lex_state = 2, .external_lex_state = 4}, [1240] = {.lex_state = 2, .external_lex_state = 3}, [1241] = {.lex_state = 2, .external_lex_state = 3}, - [1242] = {.lex_state = 2, .external_lex_state = 3}, - [1243] = {.lex_state = 2, .external_lex_state = 4}, + [1242] = {.lex_state = 2, .external_lex_state = 4}, + [1243] = {.lex_state = 2, .external_lex_state = 3}, [1244] = {.lex_state = 2, .external_lex_state = 3}, [1245] = {.lex_state = 2, .external_lex_state = 3}, [1246] = {.lex_state = 2, .external_lex_state = 3}, - [1247] = {.lex_state = 128, .external_lex_state = 2}, + [1247] = {.lex_state = 2, .external_lex_state = 3}, [1248] = {.lex_state = 2, .external_lex_state = 3}, [1249] = {.lex_state = 2, .external_lex_state = 3}, [1250] = {.lex_state = 2, .external_lex_state = 3}, [1251] = {.lex_state = 2, .external_lex_state = 3}, - [1252] = {.lex_state = 2, .external_lex_state = 4}, - [1253] = {.lex_state = 128, .external_lex_state = 2}, + [1252] = {.lex_state = 2, .external_lex_state = 3}, + [1253] = {.lex_state = 2, .external_lex_state = 3}, [1254] = {.lex_state = 2, .external_lex_state = 3}, - [1255] = {.lex_state = 2, .external_lex_state = 3}, - [1256] = {.lex_state = 2, .external_lex_state = 3}, - [1257] = {.lex_state = 2, .external_lex_state = 4}, - [1258] = {.lex_state = 2, .external_lex_state = 4}, - [1259] = {.lex_state = 128, .external_lex_state = 2}, - [1260] = {.lex_state = 2, .external_lex_state = 3}, + [1255] = {.lex_state = 2, .external_lex_state = 4}, + [1256] = {.lex_state = 2, .external_lex_state = 4}, + [1257] = {.lex_state = 2, .external_lex_state = 3}, + [1258] = {.lex_state = 2, .external_lex_state = 3}, + [1259] = {.lex_state = 3, .external_lex_state = 3}, + [1260] = {.lex_state = 128, .external_lex_state = 2}, [1261] = {.lex_state = 2, .external_lex_state = 4}, [1262] = {.lex_state = 2, .external_lex_state = 3}, - [1263] = {.lex_state = 2, .external_lex_state = 4}, + [1263] = {.lex_state = 2, .external_lex_state = 3}, [1264] = {.lex_state = 2, .external_lex_state = 3}, [1265] = {.lex_state = 2, .external_lex_state = 3}, - [1266] = {.lex_state = 2, .external_lex_state = 4}, - [1267] = {.lex_state = 2, .external_lex_state = 4}, - [1268] = {.lex_state = 2, .external_lex_state = 3}, - [1269] = {.lex_state = 2, .external_lex_state = 3}, - [1270] = {.lex_state = 128, .external_lex_state = 2}, - [1271] = {.lex_state = 2, .external_lex_state = 3}, - [1272] = {.lex_state = 2, .external_lex_state = 3}, - [1273] = {.lex_state = 2, .external_lex_state = 3}, - [1274] = {.lex_state = 128, .external_lex_state = 2}, - [1275] = {.lex_state = 2, .external_lex_state = 4}, - [1276] = {.lex_state = 3, .external_lex_state = 3}, - [1277] = {.lex_state = 2, .external_lex_state = 4}, + [1266] = {.lex_state = 2, .external_lex_state = 3}, + [1267] = {.lex_state = 128, .external_lex_state = 2}, + [1268] = {.lex_state = 2, .external_lex_state = 4}, + [1269] = {.lex_state = 2, .external_lex_state = 4}, + [1270] = {.lex_state = 2, .external_lex_state = 3}, + [1271] = {.lex_state = 2, .external_lex_state = 4}, + [1272] = {.lex_state = 2, .external_lex_state = 4}, + [1273] = {.lex_state = 128, .external_lex_state = 2}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, + [1275] = {.lex_state = 3, .external_lex_state = 3}, + [1276] = {.lex_state = 2, .external_lex_state = 3}, + [1277] = {.lex_state = 2, .external_lex_state = 3}, [1278] = {.lex_state = 2, .external_lex_state = 3}, - [1279] = {.lex_state = 2, .external_lex_state = 4}, - [1280] = {.lex_state = 2, .external_lex_state = 3}, - [1281] = {.lex_state = 2, .external_lex_state = 4}, + [1279] = {.lex_state = 2, .external_lex_state = 3}, + [1280] = {.lex_state = 2, .external_lex_state = 4}, + [1281] = {.lex_state = 2, .external_lex_state = 3}, [1282] = {.lex_state = 2, .external_lex_state = 3}, - [1283] = {.lex_state = 2, .external_lex_state = 4}, - [1284] = {.lex_state = 128, .external_lex_state = 2}, + [1283] = {.lex_state = 2, .external_lex_state = 3}, + [1284] = {.lex_state = 2, .external_lex_state = 4}, [1285] = {.lex_state = 2, .external_lex_state = 4}, - [1286] = {.lex_state = 2, .external_lex_state = 3}, - [1287] = {.lex_state = 2, .external_lex_state = 4}, + [1286] = {.lex_state = 2, .external_lex_state = 4}, + [1287] = {.lex_state = 128, .external_lex_state = 2}, [1288] = {.lex_state = 2, .external_lex_state = 4}, [1289] = {.lex_state = 2, .external_lex_state = 4}, - [1290] = {.lex_state = 128, .external_lex_state = 2}, + [1290] = {.lex_state = 2, .external_lex_state = 4}, [1291] = {.lex_state = 2, .external_lex_state = 4}, [1292] = {.lex_state = 2, .external_lex_state = 4}, [1293] = {.lex_state = 2, .external_lex_state = 4}, [1294] = {.lex_state = 2, .external_lex_state = 4}, [1295] = {.lex_state = 2, .external_lex_state = 4}, [1296] = {.lex_state = 2, .external_lex_state = 3}, - [1297] = {.lex_state = 2, .external_lex_state = 3}, - [1298] = {.lex_state = 2, .external_lex_state = 4}, + [1297] = {.lex_state = 2, .external_lex_state = 4}, + [1298] = {.lex_state = 128, .external_lex_state = 2}, [1299] = {.lex_state = 2, .external_lex_state = 4}, [1300] = {.lex_state = 2, .external_lex_state = 4}, - [1301] = {.lex_state = 2, .external_lex_state = 3}, - [1302] = {.lex_state = 128, .external_lex_state = 2}, + [1301] = {.lex_state = 2, .external_lex_state = 4}, + [1302] = {.lex_state = 2, .external_lex_state = 3}, [1303] = {.lex_state = 2, .external_lex_state = 4}, [1304] = {.lex_state = 2, .external_lex_state = 4}, - [1305] = {.lex_state = 2, .external_lex_state = 4}, + [1305] = {.lex_state = 3, .external_lex_state = 3}, [1306] = {.lex_state = 2, .external_lex_state = 4}, - [1307] = {.lex_state = 2, .external_lex_state = 4}, - [1308] = {.lex_state = 3, .external_lex_state = 3}, - [1309] = {.lex_state = 2, .external_lex_state = 3}, + [1307] = {.lex_state = 2, .external_lex_state = 3}, + [1308] = {.lex_state = 2, .external_lex_state = 3}, + [1309] = {.lex_state = 2, .external_lex_state = 4}, [1310] = {.lex_state = 2, .external_lex_state = 4}, - [1311] = {.lex_state = 2, .external_lex_state = 4}, + [1311] = {.lex_state = 2, .external_lex_state = 3}, [1312] = {.lex_state = 2, .external_lex_state = 4}, [1313] = {.lex_state = 2, .external_lex_state = 4}, [1314] = {.lex_state = 2, .external_lex_state = 4}, - [1315] = {.lex_state = 2, .external_lex_state = 4}, - [1316] = {.lex_state = 2, .external_lex_state = 3}, - [1317] = {.lex_state = 2, .external_lex_state = 3}, + [1315] = {.lex_state = 2, .external_lex_state = 3}, + [1316] = {.lex_state = 2, .external_lex_state = 4}, + [1317] = {.lex_state = 2, .external_lex_state = 4}, [1318] = {.lex_state = 2, .external_lex_state = 3}, [1319] = {.lex_state = 2, .external_lex_state = 3}, [1320] = {.lex_state = 2, .external_lex_state = 4}, - [1321] = {.lex_state = 2, .external_lex_state = 3}, - [1322] = {.lex_state = 2, .external_lex_state = 3}, + [1321] = {.lex_state = 2, .external_lex_state = 4}, + [1322] = {.lex_state = 128, .external_lex_state = 2}, [1323] = {.lex_state = 2, .external_lex_state = 3}, [1324] = {.lex_state = 2, .external_lex_state = 3}, - [1325] = {.lex_state = 2, .external_lex_state = 4}, - [1326] = {.lex_state = 2, .external_lex_state = 4}, + [1325] = {.lex_state = 2, .external_lex_state = 3}, + [1326] = {.lex_state = 2, .external_lex_state = 3}, [1327] = {.lex_state = 2, .external_lex_state = 3}, - [1328] = {.lex_state = 2, .external_lex_state = 3}, - [1329] = {.lex_state = 3, .external_lex_state = 3}, - [1330] = {.lex_state = 2, .external_lex_state = 4}, + [1328] = {.lex_state = 3, .external_lex_state = 3}, + [1329] = {.lex_state = 2, .external_lex_state = 3}, + [1330] = {.lex_state = 2, .external_lex_state = 3}, [1331] = {.lex_state = 2, .external_lex_state = 3}, [1332] = {.lex_state = 2, .external_lex_state = 3}, - [1333] = {.lex_state = 3, .external_lex_state = 3}, - [1334] = {.lex_state = 2, .external_lex_state = 4}, - [1335] = {.lex_state = 2, .external_lex_state = 4}, + [1333] = {.lex_state = 2, .external_lex_state = 3}, + [1334] = {.lex_state = 3, .external_lex_state = 3}, + [1335] = {.lex_state = 2, .external_lex_state = 3}, [1336] = {.lex_state = 2, .external_lex_state = 3}, [1337] = {.lex_state = 2, .external_lex_state = 4}, [1338] = {.lex_state = 2, .external_lex_state = 3}, - [1339] = {.lex_state = 3, .external_lex_state = 3}, + [1339] = {.lex_state = 2, .external_lex_state = 3}, [1340] = {.lex_state = 3, .external_lex_state = 3}, - [1341] = {.lex_state = 2, .external_lex_state = 3}, - [1342] = {.lex_state = 2, .external_lex_state = 3}, - [1343] = {.lex_state = 2, .external_lex_state = 3}, - [1344] = {.lex_state = 2, .external_lex_state = 3}, - [1345] = {.lex_state = 9, .external_lex_state = 2}, - [1346] = {.lex_state = 2, .external_lex_state = 4}, + [1341] = {.lex_state = 2, .external_lex_state = 4}, + [1342] = {.lex_state = 3, .external_lex_state = 3}, + [1343] = {.lex_state = 2, .external_lex_state = 4}, + [1344] = {.lex_state = 2, .external_lex_state = 4}, + [1345] = {.lex_state = 2, .external_lex_state = 3}, + [1346] = {.lex_state = 9, .external_lex_state = 2}, [1347] = {.lex_state = 2, .external_lex_state = 4}, - [1348] = {.lex_state = 2, .external_lex_state = 3}, - [1349] = {.lex_state = 2, .external_lex_state = 3}, - [1350] = {.lex_state = 2, .external_lex_state = 3}, - [1351] = {.lex_state = 9, .external_lex_state = 2}, - [1352] = {.lex_state = 9, .external_lex_state = 2}, - [1353] = {.lex_state = 2, .external_lex_state = 3}, + [1348] = {.lex_state = 9, .external_lex_state = 2}, + [1349] = {.lex_state = 9, .external_lex_state = 2}, + [1350] = {.lex_state = 9, .external_lex_state = 2}, + [1351] = {.lex_state = 2, .external_lex_state = 3}, + [1352] = {.lex_state = 2, .external_lex_state = 3}, + [1353] = {.lex_state = 2, .external_lex_state = 4}, [1354] = {.lex_state = 2, .external_lex_state = 3}, - [1355] = {.lex_state = 2, .external_lex_state = 3}, + [1355] = {.lex_state = 2, .external_lex_state = 4}, [1356] = {.lex_state = 2, .external_lex_state = 3}, - [1357] = {.lex_state = 9, .external_lex_state = 2}, + [1357] = {.lex_state = 2, .external_lex_state = 3}, [1358] = {.lex_state = 2, .external_lex_state = 3}, [1359] = {.lex_state = 2, .external_lex_state = 3}, - [1360] = {.lex_state = 2, .external_lex_state = 4}, - [1361] = {.lex_state = 9, .external_lex_state = 2}, + [1360] = {.lex_state = 2, .external_lex_state = 3}, + [1361] = {.lex_state = 3, .external_lex_state = 3}, [1362] = {.lex_state = 2, .external_lex_state = 3}, - [1363] = {.lex_state = 9, .external_lex_state = 2}, + [1363] = {.lex_state = 2, .external_lex_state = 3}, [1364] = {.lex_state = 2, .external_lex_state = 3}, - [1365] = {.lex_state = 3, .external_lex_state = 3}, - [1366] = {.lex_state = 2, .external_lex_state = 3}, + [1365] = {.lex_state = 9, .external_lex_state = 2}, + [1366] = {.lex_state = 9, .external_lex_state = 2}, [1367] = {.lex_state = 2, .external_lex_state = 4}, [1368] = {.lex_state = 2, .external_lex_state = 3}, [1369] = {.lex_state = 2, .external_lex_state = 3}, @@ -15062,10 +15092,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1371] = {.lex_state = 2, .external_lex_state = 3}, [1372] = {.lex_state = 2, .external_lex_state = 3}, [1373] = {.lex_state = 2, .external_lex_state = 3}, - [1374] = {.lex_state = 2, .external_lex_state = 4}, + [1374] = {.lex_state = 2, .external_lex_state = 3}, [1375] = {.lex_state = 2, .external_lex_state = 3}, [1376] = {.lex_state = 2, .external_lex_state = 3}, - [1377] = {.lex_state = 2, .external_lex_state = 3}, + [1377] = {.lex_state = 2, .external_lex_state = 4}, [1378] = {.lex_state = 2, .external_lex_state = 3}, [1379] = {.lex_state = 2, .external_lex_state = 3}, [1380] = {.lex_state = 2, .external_lex_state = 3}, @@ -15075,43 +15105,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1384] = {.lex_state = 9, .external_lex_state = 2}, [1385] = {.lex_state = 9, .external_lex_state = 2}, [1386] = {.lex_state = 9, .external_lex_state = 2}, - [1387] = {.lex_state = 2, .external_lex_state = 3}, - [1388] = {.lex_state = 9, .external_lex_state = 2}, + [1387] = {.lex_state = 9, .external_lex_state = 2}, + [1388] = {.lex_state = 2, .external_lex_state = 3}, [1389] = {.lex_state = 2, .external_lex_state = 3}, [1390] = {.lex_state = 2, .external_lex_state = 3}, - [1391] = {.lex_state = 2, .external_lex_state = 3}, + [1391] = {.lex_state = 9, .external_lex_state = 2}, [1392] = {.lex_state = 2, .external_lex_state = 3}, - [1393] = {.lex_state = 2, .external_lex_state = 3}, + [1393] = {.lex_state = 9, .external_lex_state = 2}, [1394] = {.lex_state = 9, .external_lex_state = 2}, - [1395] = {.lex_state = 9, .external_lex_state = 2}, - [1396] = {.lex_state = 2, .external_lex_state = 3}, + [1395] = {.lex_state = 2, .external_lex_state = 3}, + [1396] = {.lex_state = 9, .external_lex_state = 2}, [1397] = {.lex_state = 2, .external_lex_state = 3}, - [1398] = {.lex_state = 2, .external_lex_state = 3}, - [1399] = {.lex_state = 2, .external_lex_state = 3}, - [1400] = {.lex_state = 2, .external_lex_state = 3}, - [1401] = {.lex_state = 2, .external_lex_state = 3}, - [1402] = {.lex_state = 9, .external_lex_state = 2}, - [1403] = {.lex_state = 2, .external_lex_state = 3}, - [1404] = {.lex_state = 9, .external_lex_state = 2}, - [1405] = {.lex_state = 9, .external_lex_state = 2}, - [1406] = {.lex_state = 2, .external_lex_state = 3}, - [1407] = {.lex_state = 2, .external_lex_state = 3}, - [1408] = {.lex_state = 9, .external_lex_state = 2}, - [1409] = {.lex_state = 2, .external_lex_state = 3}, + [1398] = {.lex_state = 9, .external_lex_state = 2}, + [1399] = {.lex_state = 9, .external_lex_state = 2}, + [1400] = {.lex_state = 9, .external_lex_state = 2}, + [1401] = {.lex_state = 9, .external_lex_state = 2}, + [1402] = {.lex_state = 2, .external_lex_state = 3}, + [1403] = {.lex_state = 9, .external_lex_state = 2}, + [1404] = {.lex_state = 2, .external_lex_state = 3}, + [1405] = {.lex_state = 2, .external_lex_state = 3}, + [1406] = {.lex_state = 9, .external_lex_state = 2}, + [1407] = {.lex_state = 9, .external_lex_state = 2}, + [1408] = {.lex_state = 2, .external_lex_state = 3}, + [1409] = {.lex_state = 9, .external_lex_state = 2}, [1410] = {.lex_state = 2, .external_lex_state = 3}, - [1411] = {.lex_state = 9, .external_lex_state = 2}, - [1412] = {.lex_state = 9, .external_lex_state = 2}, + [1411] = {.lex_state = 2, .external_lex_state = 3}, + [1412] = {.lex_state = 2, .external_lex_state = 3}, [1413] = {.lex_state = 2, .external_lex_state = 3}, - [1414] = {.lex_state = 9, .external_lex_state = 2}, + [1414] = {.lex_state = 2, .external_lex_state = 3}, [1415] = {.lex_state = 2, .external_lex_state = 3}, [1416] = {.lex_state = 2, .external_lex_state = 3}, [1417] = {.lex_state = 2, .external_lex_state = 3}, - [1418] = {.lex_state = 9, .external_lex_state = 2}, - [1419] = {.lex_state = 9, .external_lex_state = 2}, + [1418] = {.lex_state = 2, .external_lex_state = 3}, + [1419] = {.lex_state = 2, .external_lex_state = 3}, [1420] = {.lex_state = 2, .external_lex_state = 3}, - [1421] = {.lex_state = 9, .external_lex_state = 2}, - [1422] = {.lex_state = 9, .external_lex_state = 2}, - [1423] = {.lex_state = 2, .external_lex_state = 3}, + [1421] = {.lex_state = 2, .external_lex_state = 3}, + [1422] = {.lex_state = 2, .external_lex_state = 3}, + [1423] = {.lex_state = 9, .external_lex_state = 2}, [1424] = {.lex_state = 2, .external_lex_state = 3}, [1425] = {.lex_state = 2, .external_lex_state = 3}, [1426] = {.lex_state = 2, .external_lex_state = 3}, @@ -15128,48 +15158,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1437] = {.lex_state = 9, .external_lex_state = 2}, [1438] = {.lex_state = 9, .external_lex_state = 2}, [1439] = {.lex_state = 9, .external_lex_state = 2}, - [1440] = {.lex_state = 128, .external_lex_state = 5}, + [1440] = {.lex_state = 9, .external_lex_state = 2}, [1441] = {.lex_state = 9, .external_lex_state = 2}, - [1442] = {.lex_state = 9, .external_lex_state = 2}, + [1442] = {.lex_state = 128, .external_lex_state = 5}, [1443] = {.lex_state = 9, .external_lex_state = 2}, [1444] = {.lex_state = 9, .external_lex_state = 2}, - [1445] = {.lex_state = 9, .external_lex_state = 2}, - [1446] = {.lex_state = 128, .external_lex_state = 5}, - [1447] = {.lex_state = 128, .external_lex_state = 5}, + [1445] = {.lex_state = 128, .external_lex_state = 5}, + [1446] = {.lex_state = 9, .external_lex_state = 2}, + [1447] = {.lex_state = 9, .external_lex_state = 2}, [1448] = {.lex_state = 9, .external_lex_state = 2}, [1449] = {.lex_state = 9, .external_lex_state = 2}, - [1450] = {.lex_state = 9, .external_lex_state = 2}, + [1450] = {.lex_state = 128, .external_lex_state = 5}, [1451] = {.lex_state = 128, .external_lex_state = 5}, [1452] = {.lex_state = 9, .external_lex_state = 2}, [1453] = {.lex_state = 9, .external_lex_state = 2}, - [1454] = {.lex_state = 128, .external_lex_state = 5}, - [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1454] = {.lex_state = 9, .external_lex_state = 2}, + [1455] = {.lex_state = 128, .external_lex_state = 5}, [1456] = {.lex_state = 128, .external_lex_state = 2}, [1457] = {.lex_state = 128, .external_lex_state = 2}, - [1458] = {.lex_state = 128, .external_lex_state = 2}, - [1459] = {.lex_state = 127, .external_lex_state = 3}, + [1458] = {.lex_state = 127, .external_lex_state = 3}, + [1459] = {.lex_state = 128, .external_lex_state = 2}, [1460] = {.lex_state = 128, .external_lex_state = 2}, [1461] = {.lex_state = 128, .external_lex_state = 2}, [1462] = {.lex_state = 128, .external_lex_state = 2}, - [1463] = {.lex_state = 127, .external_lex_state = 3}, - [1464] = {.lex_state = 128, .external_lex_state = 5}, + [1463] = {.lex_state = 128, .external_lex_state = 5}, + [1464] = {.lex_state = 127, .external_lex_state = 4}, [1465] = {.lex_state = 127, .external_lex_state = 3}, [1466] = {.lex_state = 127, .external_lex_state = 3}, [1467] = {.lex_state = 127, .external_lex_state = 4}, [1468] = {.lex_state = 127, .external_lex_state = 3}, - [1469] = {.lex_state = 128, .external_lex_state = 5}, - [1470] = {.lex_state = 127, .external_lex_state = 4}, + [1469] = {.lex_state = 127, .external_lex_state = 3}, + [1470] = {.lex_state = 128, .external_lex_state = 5}, [1471] = {.lex_state = 127, .external_lex_state = 3}, [1472] = {.lex_state = 127, .external_lex_state = 3}, [1473] = {.lex_state = 127, .external_lex_state = 3}, [1474] = {.lex_state = 127, .external_lex_state = 3}, - [1475] = {.lex_state = 127, .external_lex_state = 3}, + [1475] = {.lex_state = 128, .external_lex_state = 2}, [1476] = {.lex_state = 127, .external_lex_state = 3}, [1477] = {.lex_state = 127, .external_lex_state = 3}, - [1478] = {.lex_state = 127, .external_lex_state = 3}, - [1479] = {.lex_state = 128, .external_lex_state = 2}, + [1478] = {.lex_state = 127, .external_lex_state = 4}, + [1479] = {.lex_state = 127, .external_lex_state = 3}, [1480] = {.lex_state = 127, .external_lex_state = 3}, - [1481] = {.lex_state = 127, .external_lex_state = 4}, + [1481] = {.lex_state = 127, .external_lex_state = 3}, [1482] = {.lex_state = 127, .external_lex_state = 3}, [1483] = {.lex_state = 127, .external_lex_state = 3}, [1484] = {.lex_state = 127, .external_lex_state = 3}, @@ -15185,17 +15215,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1494] = {.lex_state = 127, .external_lex_state = 3}, [1495] = {.lex_state = 127, .external_lex_state = 3}, [1496] = {.lex_state = 127, .external_lex_state = 3}, - [1497] = {.lex_state = 127, .external_lex_state = 4}, - [1498] = {.lex_state = 127, .external_lex_state = 4}, + [1497] = {.lex_state = 127, .external_lex_state = 3}, + [1498] = {.lex_state = 127, .external_lex_state = 3}, [1499] = {.lex_state = 127, .external_lex_state = 3}, - [1500] = {.lex_state = 127, .external_lex_state = 4}, + [1500] = {.lex_state = 127, .external_lex_state = 3}, [1501] = {.lex_state = 127, .external_lex_state = 3}, [1502] = {.lex_state = 127, .external_lex_state = 3}, [1503] = {.lex_state = 127, .external_lex_state = 3}, [1504] = {.lex_state = 127, .external_lex_state = 3}, [1505] = {.lex_state = 127, .external_lex_state = 4}, - [1506] = {.lex_state = 127, .external_lex_state = 3}, - [1507] = {.lex_state = 127, .external_lex_state = 3}, + [1506] = {.lex_state = 127, .external_lex_state = 4}, + [1507] = {.lex_state = 127, .external_lex_state = 4}, [1508] = {.lex_state = 127, .external_lex_state = 3}, [1509] = {.lex_state = 127, .external_lex_state = 3}, [1510] = {.lex_state = 127, .external_lex_state = 3}, @@ -15229,7 +15259,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1538] = {.lex_state = 127, .external_lex_state = 3}, [1539] = {.lex_state = 127, .external_lex_state = 3}, [1540] = {.lex_state = 127, .external_lex_state = 3}, - [1541] = {.lex_state = 127, .external_lex_state = 3}, + [1541] = {.lex_state = 127, .external_lex_state = 4}, [1542] = {.lex_state = 127, .external_lex_state = 3}, [1543] = {.lex_state = 127, .external_lex_state = 3}, [1544] = {.lex_state = 127, .external_lex_state = 3}, @@ -15243,7 +15273,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1552] = {.lex_state = 127, .external_lex_state = 3}, [1553] = {.lex_state = 127, .external_lex_state = 3}, [1554] = {.lex_state = 127, .external_lex_state = 3}, - [1555] = {.lex_state = 127, .external_lex_state = 4}, + [1555] = {.lex_state = 127, .external_lex_state = 3}, [1556] = {.lex_state = 127, .external_lex_state = 3}, [1557] = {.lex_state = 127, .external_lex_state = 3}, [1558] = {.lex_state = 127, .external_lex_state = 3}, @@ -15269,7 +15299,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1578] = {.lex_state = 127, .external_lex_state = 3}, [1579] = {.lex_state = 127, .external_lex_state = 3}, [1580] = {.lex_state = 127, .external_lex_state = 3}, - [1581] = {.lex_state = 127, .external_lex_state = 3}, + [1581] = {.lex_state = 127, .external_lex_state = 4}, [1582] = {.lex_state = 127, .external_lex_state = 3}, [1583] = {.lex_state = 127, .external_lex_state = 3}, [1584] = {.lex_state = 127, .external_lex_state = 3}, @@ -15305,7 +15335,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1614] = {.lex_state = 127, .external_lex_state = 3}, [1615] = {.lex_state = 127, .external_lex_state = 3}, [1616] = {.lex_state = 127, .external_lex_state = 3}, - [1617] = {.lex_state = 128, .external_lex_state = 5}, + [1617] = {.lex_state = 127, .external_lex_state = 3}, [1618] = {.lex_state = 127, .external_lex_state = 3}, [1619] = {.lex_state = 127, .external_lex_state = 3}, [1620] = {.lex_state = 127, .external_lex_state = 3}, @@ -15324,11 +15354,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1633] = {.lex_state = 127, .external_lex_state = 3}, [1634] = {.lex_state = 127, .external_lex_state = 3}, [1635] = {.lex_state = 127, .external_lex_state = 3}, - [1636] = {.lex_state = 127, .external_lex_state = 3}, + [1636] = {.lex_state = 128, .external_lex_state = 5}, [1637] = {.lex_state = 127, .external_lex_state = 3}, [1638] = {.lex_state = 127, .external_lex_state = 3}, [1639] = {.lex_state = 127, .external_lex_state = 3}, - [1640] = {.lex_state = 127, .external_lex_state = 4}, + [1640] = {.lex_state = 127, .external_lex_state = 3}, [1641] = {.lex_state = 127, .external_lex_state = 3}, [1642] = {.lex_state = 127, .external_lex_state = 3}, [1643] = {.lex_state = 127, .external_lex_state = 3}, @@ -15339,7 +15369,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1648] = {.lex_state = 127, .external_lex_state = 3}, [1649] = {.lex_state = 127, .external_lex_state = 3}, [1650] = {.lex_state = 127, .external_lex_state = 3}, - [1651] = {.lex_state = 127, .external_lex_state = 3}, + [1651] = {.lex_state = 128, .external_lex_state = 5}, [1652] = {.lex_state = 127, .external_lex_state = 3}, [1653] = {.lex_state = 127, .external_lex_state = 3}, [1654] = {.lex_state = 127, .external_lex_state = 3}, @@ -15347,9 +15377,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1656] = {.lex_state = 127, .external_lex_state = 3}, [1657] = {.lex_state = 127, .external_lex_state = 3}, [1658] = {.lex_state = 127, .external_lex_state = 3}, - [1659] = {.lex_state = 128, .external_lex_state = 5}, - [1660] = {.lex_state = 127, .external_lex_state = 3}, - [1661] = {.lex_state = 127, .external_lex_state = 3}, + [1659] = {.lex_state = 127, .external_lex_state = 3}, + [1660] = {.lex_state = 127, .external_lex_state = 4}, + [1661] = {.lex_state = 127, .external_lex_state = 4}, [1662] = {.lex_state = 127, .external_lex_state = 3}, [1663] = {.lex_state = 127, .external_lex_state = 3}, [1664] = {.lex_state = 127, .external_lex_state = 3}, @@ -15357,8 +15387,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1666] = {.lex_state = 127, .external_lex_state = 3}, [1667] = {.lex_state = 127, .external_lex_state = 3}, [1668] = {.lex_state = 127, .external_lex_state = 3}, - [1669] = {.lex_state = 127, .external_lex_state = 3}, - [1670] = {.lex_state = 128, .external_lex_state = 5}, + [1669] = {.lex_state = 128, .external_lex_state = 5}, + [1670] = {.lex_state = 127, .external_lex_state = 3}, [1671] = {.lex_state = 127, .external_lex_state = 3}, [1672] = {.lex_state = 127, .external_lex_state = 3}, [1673] = {.lex_state = 127, .external_lex_state = 3}, @@ -15369,13 +15399,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1678] = {.lex_state = 127, .external_lex_state = 3}, [1679] = {.lex_state = 127, .external_lex_state = 3}, [1680] = {.lex_state = 127, .external_lex_state = 3}, - [1681] = {.lex_state = 127, .external_lex_state = 3}, + [1681] = {.lex_state = 128, .external_lex_state = 5}, [1682] = {.lex_state = 127, .external_lex_state = 3}, [1683] = {.lex_state = 127, .external_lex_state = 3}, [1684] = {.lex_state = 127, .external_lex_state = 3}, [1685] = {.lex_state = 127, .external_lex_state = 3}, [1686] = {.lex_state = 127, .external_lex_state = 3}, - [1687] = {.lex_state = 127, .external_lex_state = 3}, + [1687] = {.lex_state = 127, .external_lex_state = 4}, [1688] = {.lex_state = 127, .external_lex_state = 3}, [1689] = {.lex_state = 127, .external_lex_state = 3}, [1690] = {.lex_state = 127, .external_lex_state = 3}, @@ -15386,9 +15416,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1695] = {.lex_state = 127, .external_lex_state = 3}, [1696] = {.lex_state = 127, .external_lex_state = 3}, [1697] = {.lex_state = 127, .external_lex_state = 3}, - [1698] = {.lex_state = 127, .external_lex_state = 4}, + [1698] = {.lex_state = 128, .external_lex_state = 5}, [1699] = {.lex_state = 127, .external_lex_state = 3}, - [1700] = {.lex_state = 127, .external_lex_state = 4}, + [1700] = {.lex_state = 127, .external_lex_state = 3}, [1701] = {.lex_state = 127, .external_lex_state = 3}, [1702] = {.lex_state = 127, .external_lex_state = 3}, [1703] = {.lex_state = 127, .external_lex_state = 3}, @@ -15400,11 +15430,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1709] = {.lex_state = 127, .external_lex_state = 3}, [1710] = {.lex_state = 127, .external_lex_state = 3}, [1711] = {.lex_state = 127, .external_lex_state = 3}, - [1712] = {.lex_state = 128, .external_lex_state = 5}, + [1712] = {.lex_state = 127, .external_lex_state = 3}, [1713] = {.lex_state = 127, .external_lex_state = 3}, [1714] = {.lex_state = 127, .external_lex_state = 3}, [1715] = {.lex_state = 127, .external_lex_state = 3}, - [1716] = {.lex_state = 128, .external_lex_state = 5}, + [1716] = {.lex_state = 127, .external_lex_state = 3}, [1717] = {.lex_state = 127, .external_lex_state = 3}, [1718] = {.lex_state = 127, .external_lex_state = 3}, [1719] = {.lex_state = 127, .external_lex_state = 3}, @@ -15414,107 +15444,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1723] = {.lex_state = 127, .external_lex_state = 3}, [1724] = {.lex_state = 127, .external_lex_state = 3}, [1725] = {.lex_state = 127, .external_lex_state = 3}, - [1726] = {.lex_state = 128, .external_lex_state = 5}, - [1727] = {.lex_state = 127, .external_lex_state = 4}, - [1728] = {.lex_state = 128, .external_lex_state = 5}, - [1729] = {.lex_state = 127, .external_lex_state = 4}, - [1730] = {.lex_state = 128, .external_lex_state = 5}, + [1726] = {.lex_state = 127, .external_lex_state = 3}, + [1727] = {.lex_state = 127, .external_lex_state = 3}, + [1728] = {.lex_state = 127, .external_lex_state = 3}, + [1729] = {.lex_state = 127, .external_lex_state = 3}, + [1730] = {.lex_state = 127, .external_lex_state = 3}, [1731] = {.lex_state = 127, .external_lex_state = 3}, - [1732] = {.lex_state = 128, .external_lex_state = 5}, - [1733] = {.lex_state = 127, .external_lex_state = 4}, - [1734] = {.lex_state = 128, .external_lex_state = 5}, - [1735] = {.lex_state = 127, .external_lex_state = 3}, + [1732] = {.lex_state = 127, .external_lex_state = 3}, + [1733] = {.lex_state = 128, .external_lex_state = 5}, + [1734] = {.lex_state = 127, .external_lex_state = 3}, + [1735] = {.lex_state = 128, .external_lex_state = 5}, [1736] = {.lex_state = 127, .external_lex_state = 4}, - [1737] = {.lex_state = 128, .external_lex_state = 5}, - [1738] = {.lex_state = 127, .external_lex_state = 3}, - [1739] = {.lex_state = 128, .external_lex_state = 5}, + [1737] = {.lex_state = 127, .external_lex_state = 4}, + [1738] = {.lex_state = 127, .external_lex_state = 4}, + [1739] = {.lex_state = 127, .external_lex_state = 4}, [1740] = {.lex_state = 127, .external_lex_state = 4}, - [1741] = {.lex_state = 128, .external_lex_state = 5}, - [1742] = {.lex_state = 127, .external_lex_state = 4}, - [1743] = {.lex_state = 127, .external_lex_state = 4}, + [1741] = {.lex_state = 127, .external_lex_state = 4}, + [1742] = {.lex_state = 128, .external_lex_state = 5}, + [1743] = {.lex_state = 128, .external_lex_state = 5}, [1744] = {.lex_state = 128, .external_lex_state = 5}, - [1745] = {.lex_state = 127, .external_lex_state = 4}, + [1745] = {.lex_state = 128, .external_lex_state = 5}, [1746] = {.lex_state = 127, .external_lex_state = 4}, - [1747] = {.lex_state = 127, .external_lex_state = 4}, + [1747] = {.lex_state = 128, .external_lex_state = 5}, [1748] = {.lex_state = 128, .external_lex_state = 5}, [1749] = {.lex_state = 127, .external_lex_state = 4}, - [1750] = {.lex_state = 127, .external_lex_state = 4}, - [1751] = {.lex_state = 128, .external_lex_state = 5}, - [1752] = {.lex_state = 128, .external_lex_state = 5}, + [1750] = {.lex_state = 128, .external_lex_state = 5}, + [1751] = {.lex_state = 127, .external_lex_state = 4}, + [1752] = {.lex_state = 127, .external_lex_state = 4}, [1753] = {.lex_state = 128, .external_lex_state = 5}, - [1754] = {.lex_state = 127, .external_lex_state = 3}, + [1754] = {.lex_state = 127, .external_lex_state = 4}, [1755] = {.lex_state = 127, .external_lex_state = 3}, - [1756] = {.lex_state = 127, .external_lex_state = 4}, - [1757] = {.lex_state = 127, .external_lex_state = 4}, - [1758] = {.lex_state = 127, .external_lex_state = 4}, + [1756] = {.lex_state = 128, .external_lex_state = 5}, + [1757] = {.lex_state = 128, .external_lex_state = 5}, + [1758] = {.lex_state = 128, .external_lex_state = 5}, [1759] = {.lex_state = 127, .external_lex_state = 3}, - [1760] = {.lex_state = 127, .external_lex_state = 4}, + [1760] = {.lex_state = 127, .external_lex_state = 3}, [1761] = {.lex_state = 127, .external_lex_state = 4}, [1762] = {.lex_state = 127, .external_lex_state = 4}, - [1763] = {.lex_state = 127, .external_lex_state = 3}, - [1764] = {.lex_state = 127, .external_lex_state = 4}, - [1765] = {.lex_state = 127, .external_lex_state = 4}, - [1766] = {.lex_state = 127, .external_lex_state = 3}, - [1767] = {.lex_state = 127, .external_lex_state = 4}, + [1763] = {.lex_state = 127, .external_lex_state = 4}, + [1764] = {.lex_state = 128, .external_lex_state = 5}, + [1765] = {.lex_state = 127, .external_lex_state = 3}, + [1766] = {.lex_state = 127, .external_lex_state = 4}, + [1767] = {.lex_state = 127, .external_lex_state = 3}, [1768] = {.lex_state = 127, .external_lex_state = 4}, [1769] = {.lex_state = 127, .external_lex_state = 4}, - [1770] = {.lex_state = 128, .external_lex_state = 5}, - [1771] = {.lex_state = 127, .external_lex_state = 4}, - [1772] = {.lex_state = 128, .external_lex_state = 5}, - [1773] = {.lex_state = 127, .external_lex_state = 4}, + [1770] = {.lex_state = 127, .external_lex_state = 4}, + [1771] = {.lex_state = 127, .external_lex_state = 3}, + [1772] = {.lex_state = 127, .external_lex_state = 4}, + [1773] = {.lex_state = 127, .external_lex_state = 3}, [1774] = {.lex_state = 127, .external_lex_state = 4}, [1775] = {.lex_state = 127, .external_lex_state = 4}, - [1776] = {.lex_state = 127, .external_lex_state = 3}, + [1776] = {.lex_state = 127, .external_lex_state = 4}, [1777] = {.lex_state = 127, .external_lex_state = 4}, [1778] = {.lex_state = 127, .external_lex_state = 4}, [1779] = {.lex_state = 127, .external_lex_state = 4}, - [1780] = {.lex_state = 127, .external_lex_state = 4}, - [1781] = {.lex_state = 127, .external_lex_state = 4}, + [1780] = {.lex_state = 127, .external_lex_state = 3}, + [1781] = {.lex_state = 128, .external_lex_state = 5}, [1782] = {.lex_state = 127, .external_lex_state = 4}, [1783] = {.lex_state = 127, .external_lex_state = 4}, - [1784] = {.lex_state = 127, .external_lex_state = 4}, - [1785] = {.lex_state = 128, .external_lex_state = 5}, + [1784] = {.lex_state = 128, .external_lex_state = 5}, + [1785] = {.lex_state = 127, .external_lex_state = 4}, [1786] = {.lex_state = 127, .external_lex_state = 4}, - [1787] = {.lex_state = 127, .external_lex_state = 4}, + [1787] = {.lex_state = 128, .external_lex_state = 5}, [1788] = {.lex_state = 127, .external_lex_state = 4}, - [1789] = {.lex_state = 128, .external_lex_state = 5}, + [1789] = {.lex_state = 127, .external_lex_state = 4}, [1790] = {.lex_state = 127, .external_lex_state = 4}, [1791] = {.lex_state = 127, .external_lex_state = 3}, [1792] = {.lex_state = 127, .external_lex_state = 4}, - [1793] = {.lex_state = 127, .external_lex_state = 3}, + [1793] = {.lex_state = 127, .external_lex_state = 4}, [1794] = {.lex_state = 127, .external_lex_state = 4}, [1795] = {.lex_state = 127, .external_lex_state = 4}, [1796] = {.lex_state = 127, .external_lex_state = 4}, [1797] = {.lex_state = 127, .external_lex_state = 4}, - [1798] = {.lex_state = 128, .external_lex_state = 5}, + [1798] = {.lex_state = 127, .external_lex_state = 3}, [1799] = {.lex_state = 127, .external_lex_state = 4}, - [1800] = {.lex_state = 127, .external_lex_state = 3}, + [1800] = {.lex_state = 127, .external_lex_state = 4}, [1801] = {.lex_state = 127, .external_lex_state = 4}, [1802] = {.lex_state = 127, .external_lex_state = 4}, [1803] = {.lex_state = 127, .external_lex_state = 4}, [1804] = {.lex_state = 127, .external_lex_state = 4}, - [1805] = {.lex_state = 127, .external_lex_state = 4}, - [1806] = {.lex_state = 127, .external_lex_state = 3}, + [1805] = {.lex_state = 128, .external_lex_state = 5}, + [1806] = {.lex_state = 127, .external_lex_state = 4}, [1807] = {.lex_state = 127, .external_lex_state = 4}, [1808] = {.lex_state = 127, .external_lex_state = 4}, - [1809] = {.lex_state = 127, .external_lex_state = 4}, + [1809] = {.lex_state = 127, .external_lex_state = 3}, [1810] = {.lex_state = 127, .external_lex_state = 4}, [1811] = {.lex_state = 127, .external_lex_state = 4}, - [1812] = {.lex_state = 127, .external_lex_state = 4}, - [1813] = {.lex_state = 4, .external_lex_state = 3}, - [1814] = {.lex_state = 127, .external_lex_state = 4}, - [1815] = {.lex_state = 127, .external_lex_state = 3}, + [1812] = {.lex_state = 127, .external_lex_state = 3}, + [1813] = {.lex_state = 127, .external_lex_state = 4}, + [1814] = {.lex_state = 127, .external_lex_state = 3}, + [1815] = {.lex_state = 127, .external_lex_state = 4}, [1816] = {.lex_state = 127, .external_lex_state = 4}, - [1817] = {.lex_state = 127, .external_lex_state = 4}, + [1817] = {.lex_state = 127, .external_lex_state = 3}, [1818] = {.lex_state = 127, .external_lex_state = 4}, - [1819] = {.lex_state = 127, .external_lex_state = 4}, + [1819] = {.lex_state = 4, .external_lex_state = 3}, [1820] = {.lex_state = 127, .external_lex_state = 4}, - [1821] = {.lex_state = 127, .external_lex_state = 3}, + [1821] = {.lex_state = 128, .external_lex_state = 5}, [1822] = {.lex_state = 127, .external_lex_state = 4}, [1823] = {.lex_state = 127, .external_lex_state = 4}, [1824] = {.lex_state = 127, .external_lex_state = 4}, [1825] = {.lex_state = 127, .external_lex_state = 4}, - [1826] = {.lex_state = 127, .external_lex_state = 3}, + [1826] = {.lex_state = 127, .external_lex_state = 4}, [1827] = {.lex_state = 127, .external_lex_state = 4}, [1828] = {.lex_state = 127, .external_lex_state = 4}, [1829] = {.lex_state = 127, .external_lex_state = 4}, @@ -15522,33 +15552,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1831] = {.lex_state = 127, .external_lex_state = 4}, [1832] = {.lex_state = 127, .external_lex_state = 4}, [1833] = {.lex_state = 127, .external_lex_state = 4}, - [1834] = {.lex_state = 127, .external_lex_state = 3}, + [1834] = {.lex_state = 127, .external_lex_state = 4}, [1835] = {.lex_state = 127, .external_lex_state = 3}, [1836] = {.lex_state = 127, .external_lex_state = 4}, [1837] = {.lex_state = 127, .external_lex_state = 4}, [1838] = {.lex_state = 127, .external_lex_state = 4}, - [1839] = {.lex_state = 128, .external_lex_state = 5}, + [1839] = {.lex_state = 127, .external_lex_state = 4}, [1840] = {.lex_state = 127, .external_lex_state = 4}, - [1841] = {.lex_state = 127, .external_lex_state = 4}, - [1842] = {.lex_state = 128, .external_lex_state = 5}, + [1841] = {.lex_state = 127, .external_lex_state = 3}, + [1842] = {.lex_state = 127, .external_lex_state = 4}, [1843] = {.lex_state = 127, .external_lex_state = 4}, [1844] = {.lex_state = 127, .external_lex_state = 4}, [1845] = {.lex_state = 128, .external_lex_state = 5}, [1846] = {.lex_state = 127, .external_lex_state = 4}, [1847] = {.lex_state = 127, .external_lex_state = 4}, [1848] = {.lex_state = 127, .external_lex_state = 4}, - [1849] = {.lex_state = 127, .external_lex_state = 4}, + [1849] = {.lex_state = 127, .external_lex_state = 3}, [1850] = {.lex_state = 127, .external_lex_state = 4}, - [1851] = {.lex_state = 127, .external_lex_state = 3}, + [1851] = {.lex_state = 127, .external_lex_state = 4}, [1852] = {.lex_state = 127, .external_lex_state = 4}, [1853] = {.lex_state = 127, .external_lex_state = 4}, - [1854] = {.lex_state = 127, .external_lex_state = 3}, - [1855] = {.lex_state = 127, .external_lex_state = 3}, - [1856] = {.lex_state = 128, .external_lex_state = 5}, - [1857] = {.lex_state = 128, .external_lex_state = 5}, - [1858] = {.lex_state = 127, .external_lex_state = 4}, - [1859] = {.lex_state = 127, .external_lex_state = 4}, - [1860] = {.lex_state = 128, .external_lex_state = 2}, + [1854] = {.lex_state = 127, .external_lex_state = 4}, + [1855] = {.lex_state = 127, .external_lex_state = 4}, + [1856] = {.lex_state = 127, .external_lex_state = 4}, + [1857] = {.lex_state = 127, .external_lex_state = 4}, + [1858] = {.lex_state = 127, .external_lex_state = 3}, + [1859] = {.lex_state = 128, .external_lex_state = 5}, + [1860] = {.lex_state = 127, .external_lex_state = 4}, [1861] = {.lex_state = 127, .external_lex_state = 4}, [1862] = {.lex_state = 127, .external_lex_state = 4}, [1863] = {.lex_state = 127, .external_lex_state = 4}, @@ -15556,11 +15586,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1865] = {.lex_state = 127, .external_lex_state = 4}, [1866] = {.lex_state = 127, .external_lex_state = 4}, [1867] = {.lex_state = 127, .external_lex_state = 4}, - [1868] = {.lex_state = 127, .external_lex_state = 4}, - [1869] = {.lex_state = 127, .external_lex_state = 4}, + [1868] = {.lex_state = 128, .external_lex_state = 5}, + [1869] = {.lex_state = 128, .external_lex_state = 5}, [1870] = {.lex_state = 127, .external_lex_state = 4}, [1871] = {.lex_state = 127, .external_lex_state = 4}, - [1872] = {.lex_state = 127, .external_lex_state = 4}, + [1872] = {.lex_state = 128, .external_lex_state = 2}, [1873] = {.lex_state = 127, .external_lex_state = 4}, [1874] = {.lex_state = 127, .external_lex_state = 4}, [1875] = {.lex_state = 127, .external_lex_state = 4}, @@ -15569,8 +15599,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1878] = {.lex_state = 127, .external_lex_state = 4}, [1879] = {.lex_state = 127, .external_lex_state = 4}, [1880] = {.lex_state = 127, .external_lex_state = 4}, - [1881] = {.lex_state = 127, .external_lex_state = 3}, - [1882] = {.lex_state = 127, .external_lex_state = 3}, + [1881] = {.lex_state = 127, .external_lex_state = 4}, + [1882] = {.lex_state = 127, .external_lex_state = 4}, [1883] = {.lex_state = 127, .external_lex_state = 4}, [1884] = {.lex_state = 127, .external_lex_state = 4}, [1885] = {.lex_state = 127, .external_lex_state = 4}, @@ -15581,8 +15611,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1890] = {.lex_state = 127, .external_lex_state = 4}, [1891] = {.lex_state = 127, .external_lex_state = 4}, [1892] = {.lex_state = 127, .external_lex_state = 4}, - [1893] = {.lex_state = 127, .external_lex_state = 4}, - [1894] = {.lex_state = 127, .external_lex_state = 4}, + [1893] = {.lex_state = 127, .external_lex_state = 3}, + [1894] = {.lex_state = 127, .external_lex_state = 3}, [1895] = {.lex_state = 127, .external_lex_state = 4}, [1896] = {.lex_state = 127, .external_lex_state = 4}, [1897] = {.lex_state = 127, .external_lex_state = 4}, @@ -15655,7 +15685,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1964] = {.lex_state = 127, .external_lex_state = 4}, [1965] = {.lex_state = 127, .external_lex_state = 4}, [1966] = {.lex_state = 127, .external_lex_state = 4}, - [1967] = {.lex_state = 127, .external_lex_state = 3}, + [1967] = {.lex_state = 127, .external_lex_state = 4}, [1968] = {.lex_state = 127, .external_lex_state = 4}, [1969] = {.lex_state = 127, .external_lex_state = 4}, [1970] = {.lex_state = 127, .external_lex_state = 4}, @@ -15663,72 +15693,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1972] = {.lex_state = 127, .external_lex_state = 4}, [1973] = {.lex_state = 127, .external_lex_state = 4}, [1974] = {.lex_state = 127, .external_lex_state = 4}, - [1975] = {.lex_state = 128, .external_lex_state = 2}, + [1975] = {.lex_state = 127, .external_lex_state = 4}, [1976] = {.lex_state = 127, .external_lex_state = 4}, - [1977] = {.lex_state = 127, .external_lex_state = 3}, + [1977] = {.lex_state = 127, .external_lex_state = 4}, [1978] = {.lex_state = 127, .external_lex_state = 4}, [1979] = {.lex_state = 127, .external_lex_state = 3}, - [1980] = {.lex_state = 127, .external_lex_state = 3}, + [1980] = {.lex_state = 127, .external_lex_state = 4}, [1981] = {.lex_state = 127, .external_lex_state = 4}, [1982] = {.lex_state = 127, .external_lex_state = 4}, [1983] = {.lex_state = 127, .external_lex_state = 4}, - [1984] = {.lex_state = 128, .external_lex_state = 2}, - [1985] = {.lex_state = 128, .external_lex_state = 2}, - [1986] = {.lex_state = 127, .external_lex_state = 3}, - [1987] = {.lex_state = 128, .external_lex_state = 5}, - [1988] = {.lex_state = 128, .external_lex_state = 5}, - [1989] = {.lex_state = 128, .external_lex_state = 5}, - [1990] = {.lex_state = 128, .external_lex_state = 5}, - [1991] = {.lex_state = 127, .external_lex_state = 4}, + [1984] = {.lex_state = 127, .external_lex_state = 4}, + [1985] = {.lex_state = 127, .external_lex_state = 4}, + [1986] = {.lex_state = 128, .external_lex_state = 2}, + [1987] = {.lex_state = 127, .external_lex_state = 4}, + [1988] = {.lex_state = 127, .external_lex_state = 3}, + [1989] = {.lex_state = 127, .external_lex_state = 4}, + [1990] = {.lex_state = 127, .external_lex_state = 3}, + [1991] = {.lex_state = 127, .external_lex_state = 3}, [1992] = {.lex_state = 127, .external_lex_state = 4}, - [1993] = {.lex_state = 127, .external_lex_state = 3}, - [1994] = {.lex_state = 128, .external_lex_state = 5}, - [1995] = {.lex_state = 127, .external_lex_state = 3}, - [1996] = {.lex_state = 127, .external_lex_state = 3}, - [1997] = {.lex_state = 128, .external_lex_state = 2}, - [1998] = {.lex_state = 127, .external_lex_state = 4}, - [1999] = {.lex_state = 127, .external_lex_state = 3}, - [2000] = {.lex_state = 127, .external_lex_state = 3}, - [2001] = {.lex_state = 127, .external_lex_state = 4}, + [1993] = {.lex_state = 127, .external_lex_state = 4}, + [1994] = {.lex_state = 127, .external_lex_state = 4}, + [1995] = {.lex_state = 128, .external_lex_state = 2}, + [1996] = {.lex_state = 128, .external_lex_state = 2}, + [1997] = {.lex_state = 127, .external_lex_state = 3}, + [1998] = {.lex_state = 128, .external_lex_state = 5}, + [1999] = {.lex_state = 128, .external_lex_state = 5}, + [2000] = {.lex_state = 128, .external_lex_state = 5}, + [2001] = {.lex_state = 128, .external_lex_state = 5}, [2002] = {.lex_state = 127, .external_lex_state = 4}, - [2003] = {.lex_state = 128, .external_lex_state = 2}, + [2003] = {.lex_state = 127, .external_lex_state = 4}, [2004] = {.lex_state = 127, .external_lex_state = 3}, - [2005] = {.lex_state = 127, .external_lex_state = 3}, - [2006] = {.lex_state = 127, .external_lex_state = 4}, - [2007] = {.lex_state = 127, .external_lex_state = 4}, + [2005] = {.lex_state = 128, .external_lex_state = 5}, + [2006] = {.lex_state = 127, .external_lex_state = 3}, + [2007] = {.lex_state = 127, .external_lex_state = 3}, [2008] = {.lex_state = 127, .external_lex_state = 4}, - [2009] = {.lex_state = 127, .external_lex_state = 4}, - [2010] = {.lex_state = 128, .external_lex_state = 2}, - [2011] = {.lex_state = 127, .external_lex_state = 4}, + [2009] = {.lex_state = 128, .external_lex_state = 2}, + [2010] = {.lex_state = 127, .external_lex_state = 3}, + [2011] = {.lex_state = 127, .external_lex_state = 3}, [2012] = {.lex_state = 127, .external_lex_state = 4}, [2013] = {.lex_state = 127, .external_lex_state = 4}, - [2014] = {.lex_state = 127, .external_lex_state = 4}, + [2014] = {.lex_state = 128, .external_lex_state = 2}, [2015] = {.lex_state = 127, .external_lex_state = 3}, - [2016] = {.lex_state = 127, .external_lex_state = 4}, - [2017] = {.lex_state = 128, .external_lex_state = 2}, - [2018] = {.lex_state = 128, .external_lex_state = 5}, - [2019] = {.lex_state = 128, .external_lex_state = 5}, - [2020] = {.lex_state = 128, .external_lex_state = 5}, - [2021] = {.lex_state = 127, .external_lex_state = 3}, - [2022] = {.lex_state = 127, .external_lex_state = 4}, - [2023] = {.lex_state = 128, .external_lex_state = 5}, - [2024] = {.lex_state = 128, .external_lex_state = 5}, - [2025] = {.lex_state = 128, .external_lex_state = 5}, - [2026] = {.lex_state = 127, .external_lex_state = 4}, + [2016] = {.lex_state = 127, .external_lex_state = 3}, + [2017] = {.lex_state = 127, .external_lex_state = 4}, + [2018] = {.lex_state = 127, .external_lex_state = 4}, + [2019] = {.lex_state = 127, .external_lex_state = 4}, + [2020] = {.lex_state = 127, .external_lex_state = 4}, + [2021] = {.lex_state = 127, .external_lex_state = 4}, + [2022] = {.lex_state = 128, .external_lex_state = 2}, + [2023] = {.lex_state = 127, .external_lex_state = 4}, + [2024] = {.lex_state = 127, .external_lex_state = 4}, + [2025] = {.lex_state = 127, .external_lex_state = 4}, + [2026] = {.lex_state = 127, .external_lex_state = 3}, [2027] = {.lex_state = 127, .external_lex_state = 4}, - [2028] = {.lex_state = 127, .external_lex_state = 4}, - [2029] = {.lex_state = 127, .external_lex_state = 4}, - [2030] = {.lex_state = 127, .external_lex_state = 3}, - [2031] = {.lex_state = 127, .external_lex_state = 3}, + [2028] = {.lex_state = 128, .external_lex_state = 2}, + [2029] = {.lex_state = 128, .external_lex_state = 5}, + [2030] = {.lex_state = 128, .external_lex_state = 5}, + [2031] = {.lex_state = 128, .external_lex_state = 5}, [2032] = {.lex_state = 127, .external_lex_state = 3}, - [2033] = {.lex_state = 127, .external_lex_state = 3}, - [2034] = {.lex_state = 127, .external_lex_state = 3}, - [2035] = {.lex_state = 127, .external_lex_state = 3}, - [2036] = {.lex_state = 127, .external_lex_state = 3}, - [2037] = {.lex_state = 127, .external_lex_state = 3}, - [2038] = {.lex_state = 127, .external_lex_state = 3}, - [2039] = {.lex_state = 127, .external_lex_state = 3}, - [2040] = {.lex_state = 127, .external_lex_state = 3}, + [2033] = {.lex_state = 127, .external_lex_state = 4}, + [2034] = {.lex_state = 128, .external_lex_state = 5}, + [2035] = {.lex_state = 128, .external_lex_state = 5}, + [2036] = {.lex_state = 128, .external_lex_state = 5}, + [2037] = {.lex_state = 127, .external_lex_state = 4}, + [2038] = {.lex_state = 127, .external_lex_state = 4}, + [2039] = {.lex_state = 127, .external_lex_state = 4}, + [2040] = {.lex_state = 127, .external_lex_state = 4}, [2041] = {.lex_state = 127, .external_lex_state = 3}, [2042] = {.lex_state = 127, .external_lex_state = 3}, [2043] = {.lex_state = 127, .external_lex_state = 3}, @@ -15743,397 +15773,397 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2052] = {.lex_state = 127, .external_lex_state = 3}, [2053] = {.lex_state = 127, .external_lex_state = 3}, [2054] = {.lex_state = 127, .external_lex_state = 3}, - [2055] = {.lex_state = 127, .external_lex_state = 4}, + [2055] = {.lex_state = 127, .external_lex_state = 3}, [2056] = {.lex_state = 127, .external_lex_state = 3}, [2057] = {.lex_state = 127, .external_lex_state = 3}, - [2058] = {.lex_state = 127, .external_lex_state = 4}, + [2058] = {.lex_state = 127, .external_lex_state = 3}, [2059] = {.lex_state = 127, .external_lex_state = 3}, - [2060] = {.lex_state = 127, .external_lex_state = 4}, - [2061] = {.lex_state = 127, .external_lex_state = 4}, + [2060] = {.lex_state = 127, .external_lex_state = 3}, + [2061] = {.lex_state = 127, .external_lex_state = 3}, [2062] = {.lex_state = 127, .external_lex_state = 3}, - [2063] = {.lex_state = 128, .external_lex_state = 5}, - [2064] = {.lex_state = 127, .external_lex_state = 4}, - [2065] = {.lex_state = 127, .external_lex_state = 4}, + [2063] = {.lex_state = 127, .external_lex_state = 3}, + [2064] = {.lex_state = 127, .external_lex_state = 3}, + [2065] = {.lex_state = 127, .external_lex_state = 3}, [2066] = {.lex_state = 127, .external_lex_state = 4}, [2067] = {.lex_state = 127, .external_lex_state = 3}, - [2068] = {.lex_state = 127, .external_lex_state = 4}, + [2068] = {.lex_state = 127, .external_lex_state = 3}, [2069] = {.lex_state = 127, .external_lex_state = 3}, - [2070] = {.lex_state = 127, .external_lex_state = 3}, + [2070] = {.lex_state = 127, .external_lex_state = 4}, [2071] = {.lex_state = 127, .external_lex_state = 4}, - [2072] = {.lex_state = 128, .external_lex_state = 2}, - [2073] = {.lex_state = 128, .external_lex_state = 5}, - [2074] = {.lex_state = 128, .external_lex_state = 2}, + [2072] = {.lex_state = 127, .external_lex_state = 4}, + [2073] = {.lex_state = 127, .external_lex_state = 4}, + [2074] = {.lex_state = 127, .external_lex_state = 3}, [2075] = {.lex_state = 127, .external_lex_state = 3}, - [2076] = {.lex_state = 127, .external_lex_state = 3}, - [2077] = {.lex_state = 128, .external_lex_state = 5}, - [2078] = {.lex_state = 128, .external_lex_state = 5}, - [2079] = {.lex_state = 4, .external_lex_state = 4}, + [2076] = {.lex_state = 127, .external_lex_state = 4}, + [2077] = {.lex_state = 127, .external_lex_state = 4}, + [2078] = {.lex_state = 127, .external_lex_state = 3}, + [2079] = {.lex_state = 127, .external_lex_state = 4}, [2080] = {.lex_state = 127, .external_lex_state = 4}, - [2081] = {.lex_state = 127, .external_lex_state = 4}, - [2082] = {.lex_state = 127, .external_lex_state = 3}, + [2081] = {.lex_state = 127, .external_lex_state = 3}, + [2082] = {.lex_state = 127, .external_lex_state = 4}, [2083] = {.lex_state = 127, .external_lex_state = 4}, - [2084] = {.lex_state = 128, .external_lex_state = 5}, - [2085] = {.lex_state = 127, .external_lex_state = 4}, + [2084] = {.lex_state = 127, .external_lex_state = 3}, + [2085] = {.lex_state = 127, .external_lex_state = 3}, [2086] = {.lex_state = 127, .external_lex_state = 4}, - [2087] = {.lex_state = 127, .external_lex_state = 4}, - [2088] = {.lex_state = 127, .external_lex_state = 4}, + [2087] = {.lex_state = 127, .external_lex_state = 3}, + [2088] = {.lex_state = 127, .external_lex_state = 3}, [2089] = {.lex_state = 127, .external_lex_state = 4}, [2090] = {.lex_state = 127, .external_lex_state = 4}, - [2091] = {.lex_state = 128, .external_lex_state = 5}, - [2092] = {.lex_state = 128, .external_lex_state = 5}, - [2093] = {.lex_state = 128, .external_lex_state = 5}, - [2094] = {.lex_state = 127, .external_lex_state = 4}, - [2095] = {.lex_state = 127, .external_lex_state = 4}, - [2096] = {.lex_state = 127, .external_lex_state = 4}, + [2091] = {.lex_state = 127, .external_lex_state = 4}, + [2092] = {.lex_state = 127, .external_lex_state = 4}, + [2093] = {.lex_state = 127, .external_lex_state = 4}, + [2094] = {.lex_state = 127, .external_lex_state = 3}, + [2095] = {.lex_state = 127, .external_lex_state = 3}, + [2096] = {.lex_state = 127, .external_lex_state = 3}, [2097] = {.lex_state = 127, .external_lex_state = 4}, [2098] = {.lex_state = 127, .external_lex_state = 4}, [2099] = {.lex_state = 127, .external_lex_state = 4}, - [2100] = {.lex_state = 127, .external_lex_state = 4}, - [2101] = {.lex_state = 128, .external_lex_state = 2}, + [2100] = {.lex_state = 127, .external_lex_state = 3}, + [2101] = {.lex_state = 127, .external_lex_state = 4}, [2102] = {.lex_state = 127, .external_lex_state = 4}, - [2103] = {.lex_state = 128, .external_lex_state = 2}, - [2104] = {.lex_state = 127, .external_lex_state = 4}, + [2103] = {.lex_state = 127, .external_lex_state = 4}, + [2104] = {.lex_state = 127, .external_lex_state = 3}, [2105] = {.lex_state = 127, .external_lex_state = 4}, - [2106] = {.lex_state = 127, .external_lex_state = 3}, - [2107] = {.lex_state = 127, .external_lex_state = 3}, - [2108] = {.lex_state = 127, .external_lex_state = 4}, - [2109] = {.lex_state = 127, .external_lex_state = 4}, - [2110] = {.lex_state = 127, .external_lex_state = 4}, - [2111] = {.lex_state = 127, .external_lex_state = 4}, - [2112] = {.lex_state = 128, .external_lex_state = 5}, - [2113] = {.lex_state = 127, .external_lex_state = 3}, - [2114] = {.lex_state = 127, .external_lex_state = 4}, + [2106] = {.lex_state = 128, .external_lex_state = 2}, + [2107] = {.lex_state = 127, .external_lex_state = 4}, + [2108] = {.lex_state = 128, .external_lex_state = 2}, + [2109] = {.lex_state = 128, .external_lex_state = 5}, + [2110] = {.lex_state = 128, .external_lex_state = 5}, + [2111] = {.lex_state = 4, .external_lex_state = 4}, + [2112] = {.lex_state = 127, .external_lex_state = 4}, + [2113] = {.lex_state = 128, .external_lex_state = 5}, + [2114] = {.lex_state = 128, .external_lex_state = 5}, [2115] = {.lex_state = 127, .external_lex_state = 4}, - [2116] = {.lex_state = 127, .external_lex_state = 4}, - [2117] = {.lex_state = 127, .external_lex_state = 4}, - [2118] = {.lex_state = 127, .external_lex_state = 4}, - [2119] = {.lex_state = 128, .external_lex_state = 2}, - [2120] = {.lex_state = 127, .external_lex_state = 4}, - [2121] = {.lex_state = 128, .external_lex_state = 2}, - [2122] = {.lex_state = 128, .external_lex_state = 5}, - [2123] = {.lex_state = 128, .external_lex_state = 5}, + [2116] = {.lex_state = 128, .external_lex_state = 5}, + [2117] = {.lex_state = 127, .external_lex_state = 3}, + [2118] = {.lex_state = 128, .external_lex_state = 5}, + [2119] = {.lex_state = 127, .external_lex_state = 4}, + [2120] = {.lex_state = 128, .external_lex_state = 5}, + [2121] = {.lex_state = 127, .external_lex_state = 4}, + [2122] = {.lex_state = 127, .external_lex_state = 4}, + [2123] = {.lex_state = 127, .external_lex_state = 4}, [2124] = {.lex_state = 127, .external_lex_state = 4}, [2125] = {.lex_state = 127, .external_lex_state = 4}, [2126] = {.lex_state = 127, .external_lex_state = 4}, [2127] = {.lex_state = 127, .external_lex_state = 4}, - [2128] = {.lex_state = 4, .external_lex_state = 4}, + [2128] = {.lex_state = 127, .external_lex_state = 4}, [2129] = {.lex_state = 127, .external_lex_state = 4}, [2130] = {.lex_state = 127, .external_lex_state = 4}, [2131] = {.lex_state = 127, .external_lex_state = 4}, - [2132] = {.lex_state = 128, .external_lex_state = 5}, - [2133] = {.lex_state = 128, .external_lex_state = 5}, + [2132] = {.lex_state = 127, .external_lex_state = 4}, + [2133] = {.lex_state = 128, .external_lex_state = 2}, [2134] = {.lex_state = 127, .external_lex_state = 4}, - [2135] = {.lex_state = 127, .external_lex_state = 3}, - [2136] = {.lex_state = 127, .external_lex_state = 3}, - [2137] = {.lex_state = 128, .external_lex_state = 5}, - [2138] = {.lex_state = 128, .external_lex_state = 5}, - [2139] = {.lex_state = 128, .external_lex_state = 5}, - [2140] = {.lex_state = 128, .external_lex_state = 5}, - [2141] = {.lex_state = 128, .external_lex_state = 5}, - [2142] = {.lex_state = 128, .external_lex_state = 5}, - [2143] = {.lex_state = 127, .external_lex_state = 4}, - [2144] = {.lex_state = 127, .external_lex_state = 3}, - [2145] = {.lex_state = 127, .external_lex_state = 3}, - [2146] = {.lex_state = 127, .external_lex_state = 3}, - [2147] = {.lex_state = 127, .external_lex_state = 4}, - [2148] = {.lex_state = 127, .external_lex_state = 3}, + [2135] = {.lex_state = 128, .external_lex_state = 2}, + [2136] = {.lex_state = 127, .external_lex_state = 4}, + [2137] = {.lex_state = 127, .external_lex_state = 3}, + [2138] = {.lex_state = 127, .external_lex_state = 4}, + [2139] = {.lex_state = 127, .external_lex_state = 4}, + [2140] = {.lex_state = 127, .external_lex_state = 4}, + [2141] = {.lex_state = 127, .external_lex_state = 3}, + [2142] = {.lex_state = 127, .external_lex_state = 4}, + [2143] = {.lex_state = 127, .external_lex_state = 3}, + [2144] = {.lex_state = 127, .external_lex_state = 4}, + [2145] = {.lex_state = 127, .external_lex_state = 4}, + [2146] = {.lex_state = 127, .external_lex_state = 4}, + [2147] = {.lex_state = 128, .external_lex_state = 5}, + [2148] = {.lex_state = 128, .external_lex_state = 2}, [2149] = {.lex_state = 127, .external_lex_state = 4}, - [2150] = {.lex_state = 127, .external_lex_state = 4}, - [2151] = {.lex_state = 127, .external_lex_state = 4}, - [2152] = {.lex_state = 127, .external_lex_state = 3}, - [2153] = {.lex_state = 127, .external_lex_state = 3}, + [2150] = {.lex_state = 128, .external_lex_state = 2}, + [2151] = {.lex_state = 128, .external_lex_state = 5}, + [2152] = {.lex_state = 128, .external_lex_state = 5}, + [2153] = {.lex_state = 128, .external_lex_state = 2}, [2154] = {.lex_state = 127, .external_lex_state = 4}, [2155] = {.lex_state = 127, .external_lex_state = 4}, - [2156] = {.lex_state = 127, .external_lex_state = 4}, - [2157] = {.lex_state = 127, .external_lex_state = 4}, - [2158] = {.lex_state = 127, .external_lex_state = 4}, - [2159] = {.lex_state = 127, .external_lex_state = 4}, - [2160] = {.lex_state = 127, .external_lex_state = 4}, - [2161] = {.lex_state = 127, .external_lex_state = 3}, - [2162] = {.lex_state = 127, .external_lex_state = 4}, - [2163] = {.lex_state = 127, .external_lex_state = 3}, - [2164] = {.lex_state = 127, .external_lex_state = 4}, - [2165] = {.lex_state = 127, .external_lex_state = 4}, - [2166] = {.lex_state = 127, .external_lex_state = 4}, - [2167] = {.lex_state = 127, .external_lex_state = 4}, - [2168] = {.lex_state = 127, .external_lex_state = 4}, + [2156] = {.lex_state = 128, .external_lex_state = 5}, + [2157] = {.lex_state = 128, .external_lex_state = 5}, + [2158] = {.lex_state = 128, .external_lex_state = 2}, + [2159] = {.lex_state = 127, .external_lex_state = 3}, + [2160] = {.lex_state = 127, .external_lex_state = 3}, + [2161] = {.lex_state = 128, .external_lex_state = 5}, + [2162] = {.lex_state = 128, .external_lex_state = 5}, + [2163] = {.lex_state = 128, .external_lex_state = 5}, + [2164] = {.lex_state = 128, .external_lex_state = 5}, + [2165] = {.lex_state = 128, .external_lex_state = 5}, + [2166] = {.lex_state = 128, .external_lex_state = 5}, + [2167] = {.lex_state = 127, .external_lex_state = 3}, + [2168] = {.lex_state = 128, .external_lex_state = 5}, [2169] = {.lex_state = 127, .external_lex_state = 4}, - [2170] = {.lex_state = 127, .external_lex_state = 4}, - [2171] = {.lex_state = 127, .external_lex_state = 4}, + [2170] = {.lex_state = 127, .external_lex_state = 3}, + [2171] = {.lex_state = 128, .external_lex_state = 5}, [2172] = {.lex_state = 127, .external_lex_state = 4}, [2173] = {.lex_state = 127, .external_lex_state = 3}, [2174] = {.lex_state = 127, .external_lex_state = 4}, [2175] = {.lex_state = 127, .external_lex_state = 4}, - [2176] = {.lex_state = 127, .external_lex_state = 3}, + [2176] = {.lex_state = 127, .external_lex_state = 4}, [2177] = {.lex_state = 127, .external_lex_state = 4}, [2178] = {.lex_state = 127, .external_lex_state = 4}, - [2179] = {.lex_state = 127, .external_lex_state = 4}, - [2180] = {.lex_state = 127, .external_lex_state = 4}, + [2179] = {.lex_state = 127, .external_lex_state = 3}, + [2180] = {.lex_state = 127, .external_lex_state = 3}, [2181] = {.lex_state = 127, .external_lex_state = 4}, [2182] = {.lex_state = 127, .external_lex_state = 4}, [2183] = {.lex_state = 127, .external_lex_state = 4}, [2184] = {.lex_state = 127, .external_lex_state = 4}, [2185] = {.lex_state = 127, .external_lex_state = 4}, - [2186] = {.lex_state = 127, .external_lex_state = 3}, - [2187] = {.lex_state = 127, .external_lex_state = 4}, - [2188] = {.lex_state = 128, .external_lex_state = 2}, - [2189] = {.lex_state = 127, .external_lex_state = 4}, + [2186] = {.lex_state = 127, .external_lex_state = 4}, + [2187] = {.lex_state = 127, .external_lex_state = 3}, + [2188] = {.lex_state = 127, .external_lex_state = 4}, + [2189] = {.lex_state = 127, .external_lex_state = 3}, [2190] = {.lex_state = 127, .external_lex_state = 4}, [2191] = {.lex_state = 127, .external_lex_state = 4}, [2192] = {.lex_state = 127, .external_lex_state = 4}, [2193] = {.lex_state = 127, .external_lex_state = 4}, - [2194] = {.lex_state = 127, .external_lex_state = 3}, - [2195] = {.lex_state = 127, .external_lex_state = 3}, - [2196] = {.lex_state = 127, .external_lex_state = 3}, - [2197] = {.lex_state = 127, .external_lex_state = 3}, - [2198] = {.lex_state = 127, .external_lex_state = 3}, + [2194] = {.lex_state = 127, .external_lex_state = 4}, + [2195] = {.lex_state = 127, .external_lex_state = 4}, + [2196] = {.lex_state = 127, .external_lex_state = 4}, + [2197] = {.lex_state = 127, .external_lex_state = 4}, + [2198] = {.lex_state = 127, .external_lex_state = 4}, [2199] = {.lex_state = 127, .external_lex_state = 4}, - [2200] = {.lex_state = 128, .external_lex_state = 2}, - [2201] = {.lex_state = 127, .external_lex_state = 3}, - [2202] = {.lex_state = 128, .external_lex_state = 5}, - [2203] = {.lex_state = 127, .external_lex_state = 3}, - [2204] = {.lex_state = 127, .external_lex_state = 3}, - [2205] = {.lex_state = 127, .external_lex_state = 3}, - [2206] = {.lex_state = 127, .external_lex_state = 3}, - [2207] = {.lex_state = 128, .external_lex_state = 2}, + [2200] = {.lex_state = 127, .external_lex_state = 3}, + [2201] = {.lex_state = 127, .external_lex_state = 4}, + [2202] = {.lex_state = 127, .external_lex_state = 4}, + [2203] = {.lex_state = 127, .external_lex_state = 4}, + [2204] = {.lex_state = 127, .external_lex_state = 4}, + [2205] = {.lex_state = 127, .external_lex_state = 4}, + [2206] = {.lex_state = 127, .external_lex_state = 4}, + [2207] = {.lex_state = 127, .external_lex_state = 4}, [2208] = {.lex_state = 127, .external_lex_state = 3}, - [2209] = {.lex_state = 127, .external_lex_state = 3}, - [2210] = {.lex_state = 128, .external_lex_state = 5}, - [2211] = {.lex_state = 128, .external_lex_state = 5}, - [2212] = {.lex_state = 127, .external_lex_state = 3}, - [2213] = {.lex_state = 127, .external_lex_state = 3}, - [2214] = {.lex_state = 128, .external_lex_state = 5}, + [2209] = {.lex_state = 128, .external_lex_state = 2}, + [2210] = {.lex_state = 127, .external_lex_state = 4}, + [2211] = {.lex_state = 127, .external_lex_state = 4}, + [2212] = {.lex_state = 127, .external_lex_state = 4}, + [2213] = {.lex_state = 127, .external_lex_state = 4}, + [2214] = {.lex_state = 127, .external_lex_state = 4}, [2215] = {.lex_state = 127, .external_lex_state = 4}, [2216] = {.lex_state = 127, .external_lex_state = 3}, - [2217] = {.lex_state = 127, .external_lex_state = 4}, - [2218] = {.lex_state = 127, .external_lex_state = 4}, - [2219] = {.lex_state = 128, .external_lex_state = 5}, - [2220] = {.lex_state = 127, .external_lex_state = 4}, - [2221] = {.lex_state = 128, .external_lex_state = 5}, - [2222] = {.lex_state = 128, .external_lex_state = 5}, - [2223] = {.lex_state = 128, .external_lex_state = 5}, + [2217] = {.lex_state = 127, .external_lex_state = 3}, + [2218] = {.lex_state = 127, .external_lex_state = 3}, + [2219] = {.lex_state = 127, .external_lex_state = 3}, + [2220] = {.lex_state = 127, .external_lex_state = 3}, + [2221] = {.lex_state = 127, .external_lex_state = 4}, + [2222] = {.lex_state = 128, .external_lex_state = 2}, + [2223] = {.lex_state = 127, .external_lex_state = 3}, [2224] = {.lex_state = 127, .external_lex_state = 4}, - [2225] = {.lex_state = 127, .external_lex_state = 4}, - [2226] = {.lex_state = 127, .external_lex_state = 4}, + [2225] = {.lex_state = 127, .external_lex_state = 3}, + [2226] = {.lex_state = 127, .external_lex_state = 3}, [2227] = {.lex_state = 127, .external_lex_state = 3}, - [2228] = {.lex_state = 128, .external_lex_state = 5}, - [2229] = {.lex_state = 127, .external_lex_state = 4}, + [2228] = {.lex_state = 128, .external_lex_state = 2}, + [2229] = {.lex_state = 127, .external_lex_state = 3}, [2230] = {.lex_state = 127, .external_lex_state = 3}, [2231] = {.lex_state = 128, .external_lex_state = 5}, - [2232] = {.lex_state = 127, .external_lex_state = 3}, + [2232] = {.lex_state = 128, .external_lex_state = 5}, [2233] = {.lex_state = 127, .external_lex_state = 3}, - [2234] = {.lex_state = 128, .external_lex_state = 5}, - [2235] = {.lex_state = 127, .external_lex_state = 3}, - [2236] = {.lex_state = 128, .external_lex_state = 5}, - [2237] = {.lex_state = 127, .external_lex_state = 4}, + [2234] = {.lex_state = 127, .external_lex_state = 3}, + [2235] = {.lex_state = 128, .external_lex_state = 5}, + [2236] = {.lex_state = 127, .external_lex_state = 3}, + [2237] = {.lex_state = 127, .external_lex_state = 3}, [2238] = {.lex_state = 127, .external_lex_state = 4}, - [2239] = {.lex_state = 127, .external_lex_state = 4}, + [2239] = {.lex_state = 128, .external_lex_state = 5}, [2240] = {.lex_state = 127, .external_lex_state = 4}, - [2241] = {.lex_state = 128, .external_lex_state = 5}, - [2242] = {.lex_state = 128, .external_lex_state = 5}, - [2243] = {.lex_state = 128, .external_lex_state = 5}, - [2244] = {.lex_state = 127, .external_lex_state = 3}, - [2245] = {.lex_state = 127, .external_lex_state = 3}, - [2246] = {.lex_state = 127, .external_lex_state = 3}, + [2241] = {.lex_state = 127, .external_lex_state = 4}, + [2242] = {.lex_state = 127, .external_lex_state = 4}, + [2243] = {.lex_state = 127, .external_lex_state = 4}, + [2244] = {.lex_state = 128, .external_lex_state = 5}, + [2245] = {.lex_state = 128, .external_lex_state = 5}, + [2246] = {.lex_state = 127, .external_lex_state = 4}, [2247] = {.lex_state = 127, .external_lex_state = 3}, - [2248] = {.lex_state = 127, .external_lex_state = 3}, - [2249] = {.lex_state = 127, .external_lex_state = 3}, + [2248] = {.lex_state = 127, .external_lex_state = 4}, + [2249] = {.lex_state = 128, .external_lex_state = 5}, [2250] = {.lex_state = 127, .external_lex_state = 3}, - [2251] = {.lex_state = 127, .external_lex_state = 3}, - [2252] = {.lex_state = 127, .external_lex_state = 3}, + [2251] = {.lex_state = 127, .external_lex_state = 4}, + [2252] = {.lex_state = 128, .external_lex_state = 5}, [2253] = {.lex_state = 127, .external_lex_state = 3}, [2254] = {.lex_state = 127, .external_lex_state = 3}, - [2255] = {.lex_state = 127, .external_lex_state = 3}, + [2255] = {.lex_state = 128, .external_lex_state = 5}, [2256] = {.lex_state = 127, .external_lex_state = 3}, - [2257] = {.lex_state = 127, .external_lex_state = 3}, - [2258] = {.lex_state = 127, .external_lex_state = 3}, - [2259] = {.lex_state = 127, .external_lex_state = 3}, - [2260] = {.lex_state = 127, .external_lex_state = 3}, - [2261] = {.lex_state = 127, .external_lex_state = 3}, - [2262] = {.lex_state = 127, .external_lex_state = 3}, - [2263] = {.lex_state = 127, .external_lex_state = 3}, - [2264] = {.lex_state = 127, .external_lex_state = 3}, + [2257] = {.lex_state = 128, .external_lex_state = 5}, + [2258] = {.lex_state = 127, .external_lex_state = 4}, + [2259] = {.lex_state = 127, .external_lex_state = 4}, + [2260] = {.lex_state = 127, .external_lex_state = 4}, + [2261] = {.lex_state = 128, .external_lex_state = 5}, + [2262] = {.lex_state = 128, .external_lex_state = 5}, + [2263] = {.lex_state = 128, .external_lex_state = 5}, + [2264] = {.lex_state = 127, .external_lex_state = 4}, [2265] = {.lex_state = 127, .external_lex_state = 3}, [2266] = {.lex_state = 127, .external_lex_state = 3}, [2267] = {.lex_state = 127, .external_lex_state = 3}, [2268] = {.lex_state = 127, .external_lex_state = 3}, - [2269] = {.lex_state = 128, .external_lex_state = 2}, - [2270] = {.lex_state = 128, .external_lex_state = 5}, - [2271] = {.lex_state = 127, .external_lex_state = 4}, - [2272] = {.lex_state = 127, .external_lex_state = 4}, - [2273] = {.lex_state = 127, .external_lex_state = 4}, - [2274] = {.lex_state = 127, .external_lex_state = 4}, - [2275] = {.lex_state = 127, .external_lex_state = 4}, - [2276] = {.lex_state = 127, .external_lex_state = 4}, - [2277] = {.lex_state = 127, .external_lex_state = 4}, + [2269] = {.lex_state = 127, .external_lex_state = 3}, + [2270] = {.lex_state = 127, .external_lex_state = 3}, + [2271] = {.lex_state = 127, .external_lex_state = 3}, + [2272] = {.lex_state = 127, .external_lex_state = 3}, + [2273] = {.lex_state = 127, .external_lex_state = 3}, + [2274] = {.lex_state = 127, .external_lex_state = 3}, + [2275] = {.lex_state = 127, .external_lex_state = 3}, + [2276] = {.lex_state = 127, .external_lex_state = 3}, + [2277] = {.lex_state = 127, .external_lex_state = 3}, [2278] = {.lex_state = 127, .external_lex_state = 3}, [2279] = {.lex_state = 127, .external_lex_state = 3}, [2280] = {.lex_state = 127, .external_lex_state = 3}, [2281] = {.lex_state = 127, .external_lex_state = 3}, [2282] = {.lex_state = 127, .external_lex_state = 3}, [2283] = {.lex_state = 127, .external_lex_state = 3}, - [2284] = {.lex_state = 127, .external_lex_state = 4}, + [2284] = {.lex_state = 127, .external_lex_state = 3}, [2285] = {.lex_state = 127, .external_lex_state = 3}, - [2286] = {.lex_state = 128, .external_lex_state = 2}, + [2286] = {.lex_state = 127, .external_lex_state = 3}, [2287] = {.lex_state = 127, .external_lex_state = 3}, - [2288] = {.lex_state = 127, .external_lex_state = 4}, + [2288] = {.lex_state = 127, .external_lex_state = 3}, [2289] = {.lex_state = 127, .external_lex_state = 3}, - [2290] = {.lex_state = 127, .external_lex_state = 3}, - [2291] = {.lex_state = 128, .external_lex_state = 5}, - [2292] = {.lex_state = 127, .external_lex_state = 3}, - [2293] = {.lex_state = 128, .external_lex_state = 5}, - [2294] = {.lex_state = 128, .external_lex_state = 5}, - [2295] = {.lex_state = 128, .external_lex_state = 5}, - [2296] = {.lex_state = 128, .external_lex_state = 5}, - [2297] = {.lex_state = 128, .external_lex_state = 5}, - [2298] = {.lex_state = 128, .external_lex_state = 5}, - [2299] = {.lex_state = 127, .external_lex_state = 3}, + [2290] = {.lex_state = 127, .external_lex_state = 4}, + [2291] = {.lex_state = 127, .external_lex_state = 4}, + [2292] = {.lex_state = 127, .external_lex_state = 4}, + [2293] = {.lex_state = 127, .external_lex_state = 4}, + [2294] = {.lex_state = 127, .external_lex_state = 4}, + [2295] = {.lex_state = 127, .external_lex_state = 4}, + [2296] = {.lex_state = 127, .external_lex_state = 4}, + [2297] = {.lex_state = 127, .external_lex_state = 3}, + [2298] = {.lex_state = 127, .external_lex_state = 3}, + [2299] = {.lex_state = 127, .external_lex_state = 4}, [2300] = {.lex_state = 127, .external_lex_state = 3}, - [2301] = {.lex_state = 127, .external_lex_state = 4}, + [2301] = {.lex_state = 127, .external_lex_state = 3}, [2302] = {.lex_state = 127, .external_lex_state = 3}, - [2303] = {.lex_state = 127, .external_lex_state = 4}, - [2304] = {.lex_state = 128, .external_lex_state = 5}, + [2303] = {.lex_state = 127, .external_lex_state = 3}, + [2304] = {.lex_state = 127, .external_lex_state = 3}, [2305] = {.lex_state = 127, .external_lex_state = 4}, - [2306] = {.lex_state = 128, .external_lex_state = 2}, - [2307] = {.lex_state = 128, .external_lex_state = 2}, - [2308] = {.lex_state = 127, .external_lex_state = 4}, - [2309] = {.lex_state = 128, .external_lex_state = 2}, - [2310] = {.lex_state = 127, .external_lex_state = 4}, - [2311] = {.lex_state = 127, .external_lex_state = 4}, - [2312] = {.lex_state = 127, .external_lex_state = 4}, - [2313] = {.lex_state = 127, .external_lex_state = 3}, - [2314] = {.lex_state = 127, .external_lex_state = 4}, - [2315] = {.lex_state = 127, .external_lex_state = 4}, + [2306] = {.lex_state = 127, .external_lex_state = 3}, + [2307] = {.lex_state = 127, .external_lex_state = 3}, + [2308] = {.lex_state = 127, .external_lex_state = 3}, + [2309] = {.lex_state = 128, .external_lex_state = 5}, + [2310] = {.lex_state = 127, .external_lex_state = 3}, + [2311] = {.lex_state = 128, .external_lex_state = 5}, + [2312] = {.lex_state = 128, .external_lex_state = 5}, + [2313] = {.lex_state = 128, .external_lex_state = 5}, + [2314] = {.lex_state = 128, .external_lex_state = 5}, + [2315] = {.lex_state = 128, .external_lex_state = 5}, [2316] = {.lex_state = 128, .external_lex_state = 5}, - [2317] = {.lex_state = 127, .external_lex_state = 4}, + [2317] = {.lex_state = 127, .external_lex_state = 3}, [2318] = {.lex_state = 127, .external_lex_state = 3}, - [2319] = {.lex_state = 127, .external_lex_state = 4}, - [2320] = {.lex_state = 127, .external_lex_state = 4}, - [2321] = {.lex_state = 127, .external_lex_state = 3}, + [2319] = {.lex_state = 128, .external_lex_state = 5}, + [2320] = {.lex_state = 127, .external_lex_state = 3}, + [2321] = {.lex_state = 128, .external_lex_state = 5}, [2322] = {.lex_state = 127, .external_lex_state = 4}, [2323] = {.lex_state = 127, .external_lex_state = 3}, [2324] = {.lex_state = 127, .external_lex_state = 4}, - [2325] = {.lex_state = 127, .external_lex_state = 3}, + [2325] = {.lex_state = 127, .external_lex_state = 4}, [2326] = {.lex_state = 127, .external_lex_state = 4}, - [2327] = {.lex_state = 127, .external_lex_state = 3}, + [2327] = {.lex_state = 127, .external_lex_state = 4}, [2328] = {.lex_state = 127, .external_lex_state = 3}, - [2329] = {.lex_state = 127, .external_lex_state = 3}, + [2329] = {.lex_state = 127, .external_lex_state = 4}, [2330] = {.lex_state = 127, .external_lex_state = 4}, - [2331] = {.lex_state = 128, .external_lex_state = 5}, + [2331] = {.lex_state = 127, .external_lex_state = 4}, [2332] = {.lex_state = 127, .external_lex_state = 3}, - [2333] = {.lex_state = 127, .external_lex_state = 4}, + [2333] = {.lex_state = 127, .external_lex_state = 3}, [2334] = {.lex_state = 127, .external_lex_state = 4}, - [2335] = {.lex_state = 127, .external_lex_state = 4}, - [2336] = {.lex_state = 127, .external_lex_state = 3}, - [2337] = {.lex_state = 127, .external_lex_state = 3}, - [2338] = {.lex_state = 127, .external_lex_state = 3}, - [2339] = {.lex_state = 127, .external_lex_state = 3}, - [2340] = {.lex_state = 127, .external_lex_state = 3}, - [2341] = {.lex_state = 127, .external_lex_state = 3}, - [2342] = {.lex_state = 127, .external_lex_state = 3}, + [2335] = {.lex_state = 128, .external_lex_state = 5}, + [2336] = {.lex_state = 4, .external_lex_state = 4}, + [2337] = {.lex_state = 127, .external_lex_state = 4}, + [2338] = {.lex_state = 127, .external_lex_state = 4}, + [2339] = {.lex_state = 127, .external_lex_state = 4}, + [2340] = {.lex_state = 128, .external_lex_state = 2}, + [2341] = {.lex_state = 127, .external_lex_state = 4}, + [2342] = {.lex_state = 128, .external_lex_state = 2}, [2343] = {.lex_state = 127, .external_lex_state = 3}, - [2344] = {.lex_state = 127, .external_lex_state = 3}, + [2344] = {.lex_state = 128, .external_lex_state = 5}, [2345] = {.lex_state = 127, .external_lex_state = 3}, [2346] = {.lex_state = 127, .external_lex_state = 4}, - [2347] = {.lex_state = 127, .external_lex_state = 3}, - [2348] = {.lex_state = 127, .external_lex_state = 3}, + [2347] = {.lex_state = 127, .external_lex_state = 4}, + [2348] = {.lex_state = 127, .external_lex_state = 4}, [2349] = {.lex_state = 127, .external_lex_state = 3}, - [2350] = {.lex_state = 127, .external_lex_state = 4}, - [2351] = {.lex_state = 127, .external_lex_state = 4}, + [2350] = {.lex_state = 127, .external_lex_state = 3}, + [2351] = {.lex_state = 127, .external_lex_state = 3}, [2352] = {.lex_state = 127, .external_lex_state = 3}, - [2353] = {.lex_state = 128, .external_lex_state = 5}, - [2354] = {.lex_state = 127, .external_lex_state = 4}, + [2353] = {.lex_state = 127, .external_lex_state = 3}, + [2354] = {.lex_state = 127, .external_lex_state = 3}, [2355] = {.lex_state = 127, .external_lex_state = 3}, - [2356] = {.lex_state = 128, .external_lex_state = 5}, - [2357] = {.lex_state = 128, .external_lex_state = 2}, - [2358] = {.lex_state = 128, .external_lex_state = 2}, - [2359] = {.lex_state = 127, .external_lex_state = 3}, - [2360] = {.lex_state = 128, .external_lex_state = 5}, - [2361] = {.lex_state = 128, .external_lex_state = 5}, - [2362] = {.lex_state = 128, .external_lex_state = 5}, + [2356] = {.lex_state = 127, .external_lex_state = 3}, + [2357] = {.lex_state = 127, .external_lex_state = 3}, + [2358] = {.lex_state = 127, .external_lex_state = 3}, + [2359] = {.lex_state = 127, .external_lex_state = 4}, + [2360] = {.lex_state = 127, .external_lex_state = 3}, + [2361] = {.lex_state = 127, .external_lex_state = 3}, + [2362] = {.lex_state = 127, .external_lex_state = 3}, [2363] = {.lex_state = 128, .external_lex_state = 5}, [2364] = {.lex_state = 127, .external_lex_state = 4}, - [2365] = {.lex_state = 128, .external_lex_state = 5}, - [2366] = {.lex_state = 127, .external_lex_state = 4}, - [2367] = {.lex_state = 127, .external_lex_state = 3}, + [2365] = {.lex_state = 128, .external_lex_state = 2}, + [2366] = {.lex_state = 128, .external_lex_state = 5}, + [2367] = {.lex_state = 127, .external_lex_state = 4}, [2368] = {.lex_state = 127, .external_lex_state = 3}, [2369] = {.lex_state = 127, .external_lex_state = 3}, - [2370] = {.lex_state = 128, .external_lex_state = 2}, - [2371] = {.lex_state = 128, .external_lex_state = 5}, - [2372] = {.lex_state = 127, .external_lex_state = 4}, + [2370] = {.lex_state = 127, .external_lex_state = 3}, + [2371] = {.lex_state = 127, .external_lex_state = 3}, + [2372] = {.lex_state = 127, .external_lex_state = 3}, [2373] = {.lex_state = 127, .external_lex_state = 3}, [2374] = {.lex_state = 127, .external_lex_state = 3}, - [2375] = {.lex_state = 128, .external_lex_state = 5}, + [2375] = {.lex_state = 127, .external_lex_state = 3}, [2376] = {.lex_state = 127, .external_lex_state = 3}, - [2377] = {.lex_state = 128, .external_lex_state = 5}, - [2378] = {.lex_state = 128, .external_lex_state = 2}, - [2379] = {.lex_state = 127, .external_lex_state = 4}, - [2380] = {.lex_state = 127, .external_lex_state = 4}, + [2377] = {.lex_state = 127, .external_lex_state = 3}, + [2378] = {.lex_state = 127, .external_lex_state = 3}, + [2379] = {.lex_state = 127, .external_lex_state = 3}, + [2380] = {.lex_state = 127, .external_lex_state = 3}, [2381] = {.lex_state = 127, .external_lex_state = 3}, - [2382] = {.lex_state = 128, .external_lex_state = 2}, + [2382] = {.lex_state = 127, .external_lex_state = 3}, [2383] = {.lex_state = 127, .external_lex_state = 3}, [2384] = {.lex_state = 127, .external_lex_state = 3}, - [2385] = {.lex_state = 128, .external_lex_state = 2}, - [2386] = {.lex_state = 127, .external_lex_state = 4}, + [2385] = {.lex_state = 127, .external_lex_state = 3}, + [2386] = {.lex_state = 127, .external_lex_state = 3}, [2387] = {.lex_state = 127, .external_lex_state = 3}, [2388] = {.lex_state = 128, .external_lex_state = 5}, - [2389] = {.lex_state = 128, .external_lex_state = 5}, - [2390] = {.lex_state = 128, .external_lex_state = 5}, + [2389] = {.lex_state = 127, .external_lex_state = 3}, + [2390] = {.lex_state = 127, .external_lex_state = 3}, [2391] = {.lex_state = 128, .external_lex_state = 5}, - [2392] = {.lex_state = 127, .external_lex_state = 4}, - [2393] = {.lex_state = 127, .external_lex_state = 4}, - [2394] = {.lex_state = 127, .external_lex_state = 3}, - [2395] = {.lex_state = 127, .external_lex_state = 3}, - [2396] = {.lex_state = 128, .external_lex_state = 5}, + [2392] = {.lex_state = 127, .external_lex_state = 3}, + [2393] = {.lex_state = 127, .external_lex_state = 3}, + [2394] = {.lex_state = 128, .external_lex_state = 5}, + [2395] = {.lex_state = 128, .external_lex_state = 5}, + [2396] = {.lex_state = 128, .external_lex_state = 2}, [2397] = {.lex_state = 128, .external_lex_state = 5}, - [2398] = {.lex_state = 128, .external_lex_state = 5}, - [2399] = {.lex_state = 128, .external_lex_state = 5}, - [2400] = {.lex_state = 128, .external_lex_state = 2}, - [2401] = {.lex_state = 128, .external_lex_state = 2}, + [2398] = {.lex_state = 127, .external_lex_state = 4}, + [2399] = {.lex_state = 127, .external_lex_state = 4}, + [2400] = {.lex_state = 127, .external_lex_state = 4}, + [2401] = {.lex_state = 127, .external_lex_state = 4}, [2402] = {.lex_state = 127, .external_lex_state = 3}, - [2403] = {.lex_state = 128, .external_lex_state = 2}, - [2404] = {.lex_state = 128, .external_lex_state = 5}, + [2403] = {.lex_state = 127, .external_lex_state = 4}, + [2404] = {.lex_state = 128, .external_lex_state = 2}, [2405] = {.lex_state = 128, .external_lex_state = 5}, [2406] = {.lex_state = 128, .external_lex_state = 5}, [2407] = {.lex_state = 128, .external_lex_state = 5}, [2408] = {.lex_state = 128, .external_lex_state = 5}, [2409] = {.lex_state = 128, .external_lex_state = 5}, [2410] = {.lex_state = 127, .external_lex_state = 4}, - [2411] = {.lex_state = 128, .external_lex_state = 5}, - [2412] = {.lex_state = 127, .external_lex_state = 3}, - [2413] = {.lex_state = 127, .external_lex_state = 4}, - [2414] = {.lex_state = 127, .external_lex_state = 3}, - [2415] = {.lex_state = 127, .external_lex_state = 3}, - [2416] = {.lex_state = 127, .external_lex_state = 3}, - [2417] = {.lex_state = 127, .external_lex_state = 3}, - [2418] = {.lex_state = 127, .external_lex_state = 3}, + [2411] = {.lex_state = 127, .external_lex_state = 4}, + [2412] = {.lex_state = 128, .external_lex_state = 5}, + [2413] = {.lex_state = 127, .external_lex_state = 3}, + [2414] = {.lex_state = 128, .external_lex_state = 5}, + [2415] = {.lex_state = 128, .external_lex_state = 5}, + [2416] = {.lex_state = 128, .external_lex_state = 5}, + [2417] = {.lex_state = 4, .external_lex_state = 3}, + [2418] = {.lex_state = 128, .external_lex_state = 2}, [2419] = {.lex_state = 127, .external_lex_state = 3}, [2420] = {.lex_state = 127, .external_lex_state = 3}, [2421] = {.lex_state = 127, .external_lex_state = 3}, - [2422] = {.lex_state = 127, .external_lex_state = 3}, - [2423] = {.lex_state = 127, .external_lex_state = 3}, + [2422] = {.lex_state = 128, .external_lex_state = 5}, + [2423] = {.lex_state = 128, .external_lex_state = 5}, [2424] = {.lex_state = 127, .external_lex_state = 3}, [2425] = {.lex_state = 127, .external_lex_state = 3}, - [2426] = {.lex_state = 127, .external_lex_state = 3}, - [2427] = {.lex_state = 127, .external_lex_state = 3}, - [2428] = {.lex_state = 127, .external_lex_state = 3}, - [2429] = {.lex_state = 127, .external_lex_state = 3}, + [2426] = {.lex_state = 127, .external_lex_state = 4}, + [2427] = {.lex_state = 128, .external_lex_state = 2}, + [2428] = {.lex_state = 128, .external_lex_state = 2}, + [2429] = {.lex_state = 128, .external_lex_state = 5}, [2430] = {.lex_state = 127, .external_lex_state = 3}, [2431] = {.lex_state = 127, .external_lex_state = 3}, - [2432] = {.lex_state = 127, .external_lex_state = 3}, + [2432] = {.lex_state = 128, .external_lex_state = 5}, [2433] = {.lex_state = 127, .external_lex_state = 3}, [2434] = {.lex_state = 127, .external_lex_state = 3}, - [2435] = {.lex_state = 127, .external_lex_state = 3}, + [2435] = {.lex_state = 128, .external_lex_state = 2}, [2436] = {.lex_state = 127, .external_lex_state = 3}, - [2437] = {.lex_state = 127, .external_lex_state = 3}, + [2437] = {.lex_state = 128, .external_lex_state = 5}, [2438] = {.lex_state = 127, .external_lex_state = 3}, - [2439] = {.lex_state = 127, .external_lex_state = 3}, + [2439] = {.lex_state = 127, .external_lex_state = 4}, [2440] = {.lex_state = 127, .external_lex_state = 3}, [2441] = {.lex_state = 127, .external_lex_state = 3}, [2442] = {.lex_state = 127, .external_lex_state = 3}, - [2443] = {.lex_state = 127, .external_lex_state = 4}, - [2444] = {.lex_state = 128, .external_lex_state = 2}, - [2445] = {.lex_state = 4, .external_lex_state = 3}, + [2443] = {.lex_state = 127, .external_lex_state = 3}, + [2444] = {.lex_state = 127, .external_lex_state = 3}, + [2445] = {.lex_state = 127, .external_lex_state = 3}, [2446] = {.lex_state = 127, .external_lex_state = 3}, [2447] = {.lex_state = 127, .external_lex_state = 3}, [2448] = {.lex_state = 127, .external_lex_state = 3}, @@ -16153,154 +16183,154 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2462] = {.lex_state = 127, .external_lex_state = 3}, [2463] = {.lex_state = 127, .external_lex_state = 3}, [2464] = {.lex_state = 127, .external_lex_state = 3}, - [2465] = {.lex_state = 127, .external_lex_state = 3}, - [2466] = {.lex_state = 127, .external_lex_state = 3}, - [2467] = {.lex_state = 127, .external_lex_state = 3}, + [2465] = {.lex_state = 128, .external_lex_state = 5}, + [2466] = {.lex_state = 128, .external_lex_state = 2}, + [2467] = {.lex_state = 128, .external_lex_state = 5}, [2468] = {.lex_state = 127, .external_lex_state = 3}, [2469] = {.lex_state = 127, .external_lex_state = 3}, - [2470] = {.lex_state = 127, .external_lex_state = 3}, + [2470] = {.lex_state = 128, .external_lex_state = 5}, [2471] = {.lex_state = 127, .external_lex_state = 3}, - [2472] = {.lex_state = 127, .external_lex_state = 3}, + [2472] = {.lex_state = 127, .external_lex_state = 4}, [2473] = {.lex_state = 127, .external_lex_state = 3}, [2474] = {.lex_state = 127, .external_lex_state = 3}, [2475] = {.lex_state = 127, .external_lex_state = 3}, [2476] = {.lex_state = 127, .external_lex_state = 3}, - [2477] = {.lex_state = 127, .external_lex_state = 4}, - [2478] = {.lex_state = 127, .external_lex_state = 3}, - [2479] = {.lex_state = 127, .external_lex_state = 3}, + [2477] = {.lex_state = 128, .external_lex_state = 5}, + [2478] = {.lex_state = 128, .external_lex_state = 5}, + [2479] = {.lex_state = 127, .external_lex_state = 4}, [2480] = {.lex_state = 127, .external_lex_state = 3}, [2481] = {.lex_state = 127, .external_lex_state = 3}, - [2482] = {.lex_state = 127, .external_lex_state = 3}, + [2482] = {.lex_state = 128, .external_lex_state = 2}, [2483] = {.lex_state = 127, .external_lex_state = 3}, [2484] = {.lex_state = 127, .external_lex_state = 3}, - [2485] = {.lex_state = 128, .external_lex_state = 2}, + [2485] = {.lex_state = 127, .external_lex_state = 3}, [2486] = {.lex_state = 127, .external_lex_state = 3}, - [2487] = {.lex_state = 127, .external_lex_state = 3}, - [2488] = {.lex_state = 128, .external_lex_state = 2}, - [2489] = {.lex_state = 127, .external_lex_state = 3}, + [2487] = {.lex_state = 128, .external_lex_state = 2}, + [2488] = {.lex_state = 127, .external_lex_state = 3}, + [2489] = {.lex_state = 128, .external_lex_state = 2}, [2490] = {.lex_state = 127, .external_lex_state = 3}, - [2491] = {.lex_state = 127, .external_lex_state = 3}, + [2491] = {.lex_state = 128, .external_lex_state = 5}, [2492] = {.lex_state = 127, .external_lex_state = 3}, [2493] = {.lex_state = 127, .external_lex_state = 3}, [2494] = {.lex_state = 127, .external_lex_state = 3}, [2495] = {.lex_state = 127, .external_lex_state = 3}, [2496] = {.lex_state = 127, .external_lex_state = 3}, [2497] = {.lex_state = 127, .external_lex_state = 3}, - [2498] = {.lex_state = 127, .external_lex_state = 3}, + [2498] = {.lex_state = 128, .external_lex_state = 2}, [2499] = {.lex_state = 127, .external_lex_state = 3}, - [2500] = {.lex_state = 127, .external_lex_state = 3}, + [2500] = {.lex_state = 128, .external_lex_state = 2}, [2501] = {.lex_state = 127, .external_lex_state = 3}, - [2502] = {.lex_state = 127, .external_lex_state = 3}, + [2502] = {.lex_state = 128, .external_lex_state = 2}, [2503] = {.lex_state = 127, .external_lex_state = 3}, [2504] = {.lex_state = 127, .external_lex_state = 3}, [2505] = {.lex_state = 127, .external_lex_state = 3}, [2506] = {.lex_state = 127, .external_lex_state = 3}, - [2507] = {.lex_state = 127, .external_lex_state = 3}, - [2508] = {.lex_state = 127, .external_lex_state = 3}, - [2509] = {.lex_state = 127, .external_lex_state = 3}, + [2507] = {.lex_state = 128, .external_lex_state = 2}, + [2508] = {.lex_state = 128, .external_lex_state = 2}, + [2509] = {.lex_state = 128, .external_lex_state = 2}, [2510] = {.lex_state = 127, .external_lex_state = 3}, [2511] = {.lex_state = 127, .external_lex_state = 3}, [2512] = {.lex_state = 127, .external_lex_state = 3}, - [2513] = {.lex_state = 128, .external_lex_state = 5}, - [2514] = {.lex_state = 128, .external_lex_state = 5}, - [2515] = {.lex_state = 128, .external_lex_state = 5}, - [2516] = {.lex_state = 128, .external_lex_state = 5}, + [2513] = {.lex_state = 127, .external_lex_state = 3}, + [2514] = {.lex_state = 127, .external_lex_state = 3}, + [2515] = {.lex_state = 127, .external_lex_state = 3}, + [2516] = {.lex_state = 127, .external_lex_state = 3}, [2517] = {.lex_state = 127, .external_lex_state = 3}, [2518] = {.lex_state = 127, .external_lex_state = 3}, - [2519] = {.lex_state = 127, .external_lex_state = 4}, + [2519] = {.lex_state = 127, .external_lex_state = 3}, [2520] = {.lex_state = 127, .external_lex_state = 3}, - [2521] = {.lex_state = 128, .external_lex_state = 2}, + [2521] = {.lex_state = 127, .external_lex_state = 3}, [2522] = {.lex_state = 127, .external_lex_state = 3}, - [2523] = {.lex_state = 128, .external_lex_state = 5}, + [2523] = {.lex_state = 127, .external_lex_state = 3}, [2524] = {.lex_state = 127, .external_lex_state = 3}, - [2525] = {.lex_state = 128, .external_lex_state = 5}, + [2525] = {.lex_state = 127, .external_lex_state = 3}, [2526] = {.lex_state = 127, .external_lex_state = 3}, [2527] = {.lex_state = 127, .external_lex_state = 3}, [2528] = {.lex_state = 127, .external_lex_state = 3}, [2529] = {.lex_state = 127, .external_lex_state = 3}, [2530] = {.lex_state = 127, .external_lex_state = 3}, - [2531] = {.lex_state = 128, .external_lex_state = 2}, + [2531] = {.lex_state = 127, .external_lex_state = 3}, [2532] = {.lex_state = 127, .external_lex_state = 3}, - [2533] = {.lex_state = 128, .external_lex_state = 2}, - [2534] = {.lex_state = 127, .external_lex_state = 3}, + [2533] = {.lex_state = 127, .external_lex_state = 3}, + [2534] = {.lex_state = 128, .external_lex_state = 5}, [2535] = {.lex_state = 127, .external_lex_state = 3}, [2536] = {.lex_state = 127, .external_lex_state = 3}, - [2537] = {.lex_state = 127, .external_lex_state = 3}, + [2537] = {.lex_state = 128, .external_lex_state = 2}, [2538] = {.lex_state = 128, .external_lex_state = 2}, [2539] = {.lex_state = 127, .external_lex_state = 3}, - [2540] = {.lex_state = 128, .external_lex_state = 5}, - [2541] = {.lex_state = 128, .external_lex_state = 5}, + [2540] = {.lex_state = 127, .external_lex_state = 3}, + [2541] = {.lex_state = 127, .external_lex_state = 3}, [2542] = {.lex_state = 128, .external_lex_state = 5}, [2543] = {.lex_state = 128, .external_lex_state = 5}, - [2544] = {.lex_state = 128, .external_lex_state = 2}, - [2545] = {.lex_state = 127, .external_lex_state = 3}, - [2546] = {.lex_state = 127, .external_lex_state = 3}, - [2547] = {.lex_state = 127, .external_lex_state = 3}, + [2544] = {.lex_state = 128, .external_lex_state = 5}, + [2545] = {.lex_state = 128, .external_lex_state = 5}, + [2546] = {.lex_state = 128, .external_lex_state = 5}, + [2547] = {.lex_state = 128, .external_lex_state = 5}, [2548] = {.lex_state = 127, .external_lex_state = 3}, [2549] = {.lex_state = 127, .external_lex_state = 3}, [2550] = {.lex_state = 127, .external_lex_state = 3}, [2551] = {.lex_state = 127, .external_lex_state = 3}, [2552] = {.lex_state = 127, .external_lex_state = 3}, - [2553] = {.lex_state = 128, .external_lex_state = 5}, + [2553] = {.lex_state = 127, .external_lex_state = 3}, [2554] = {.lex_state = 127, .external_lex_state = 3}, - [2555] = {.lex_state = 128, .external_lex_state = 2}, + [2555] = {.lex_state = 127, .external_lex_state = 3}, [2556] = {.lex_state = 127, .external_lex_state = 3}, [2557] = {.lex_state = 127, .external_lex_state = 3}, [2558] = {.lex_state = 127, .external_lex_state = 3}, - [2559] = {.lex_state = 128, .external_lex_state = 5}, + [2559] = {.lex_state = 127, .external_lex_state = 3}, [2560] = {.lex_state = 127, .external_lex_state = 3}, [2561] = {.lex_state = 127, .external_lex_state = 3}, - [2562] = {.lex_state = 128, .external_lex_state = 5}, - [2563] = {.lex_state = 128, .external_lex_state = 2}, + [2562] = {.lex_state = 127, .external_lex_state = 3}, + [2563] = {.lex_state = 128, .external_lex_state = 5}, [2564] = {.lex_state = 128, .external_lex_state = 5}, - [2565] = {.lex_state = 4, .external_lex_state = 3}, + [2565] = {.lex_state = 128, .external_lex_state = 5}, [2566] = {.lex_state = 128, .external_lex_state = 5}, [2567] = {.lex_state = 127, .external_lex_state = 3}, - [2568] = {.lex_state = 128, .external_lex_state = 2}, - [2569] = {.lex_state = 128, .external_lex_state = 2}, - [2570] = {.lex_state = 128, .external_lex_state = 2}, - [2571] = {.lex_state = 128, .external_lex_state = 2}, - [2572] = {.lex_state = 128, .external_lex_state = 5}, - [2573] = {.lex_state = 128, .external_lex_state = 2}, - [2574] = {.lex_state = 127, .external_lex_state = 3}, + [2568] = {.lex_state = 127, .external_lex_state = 4}, + [2569] = {.lex_state = 127, .external_lex_state = 3}, + [2570] = {.lex_state = 127, .external_lex_state = 3}, + [2571] = {.lex_state = 127, .external_lex_state = 3}, + [2572] = {.lex_state = 127, .external_lex_state = 3}, + [2573] = {.lex_state = 127, .external_lex_state = 3}, + [2574] = {.lex_state = 128, .external_lex_state = 2}, [2575] = {.lex_state = 128, .external_lex_state = 5}, - [2576] = {.lex_state = 128, .external_lex_state = 5}, - [2577] = {.lex_state = 128, .external_lex_state = 5}, - [2578] = {.lex_state = 127, .external_lex_state = 3}, + [2576] = {.lex_state = 128, .external_lex_state = 2}, + [2577] = {.lex_state = 128, .external_lex_state = 2}, + [2578] = {.lex_state = 4, .external_lex_state = 3}, [2579] = {.lex_state = 128, .external_lex_state = 5}, [2580] = {.lex_state = 128, .external_lex_state = 5}, - [2581] = {.lex_state = 128, .external_lex_state = 5}, - [2582] = {.lex_state = 128, .external_lex_state = 5}, + [2581] = {.lex_state = 128, .external_lex_state = 2}, + [2582] = {.lex_state = 128, .external_lex_state = 2}, [2583] = {.lex_state = 128, .external_lex_state = 2}, - [2584] = {.lex_state = 128, .external_lex_state = 5}, - [2585] = {.lex_state = 128, .external_lex_state = 2}, - [2586] = {.lex_state = 128, .external_lex_state = 5}, - [2587] = {.lex_state = 127, .external_lex_state = 3}, - [2588] = {.lex_state = 128, .external_lex_state = 2}, - [2589] = {.lex_state = 128, .external_lex_state = 2}, - [2590] = {.lex_state = 128, .external_lex_state = 5}, + [2584] = {.lex_state = 127, .external_lex_state = 3}, + [2585] = {.lex_state = 128, .external_lex_state = 5}, + [2586] = {.lex_state = 128, .external_lex_state = 2}, + [2587] = {.lex_state = 128, .external_lex_state = 5}, + [2588] = {.lex_state = 128, .external_lex_state = 5}, + [2589] = {.lex_state = 128, .external_lex_state = 5}, + [2590] = {.lex_state = 128, .external_lex_state = 2}, [2591] = {.lex_state = 128, .external_lex_state = 2}, [2592] = {.lex_state = 128, .external_lex_state = 2}, - [2593] = {.lex_state = 128, .external_lex_state = 5}, - [2594] = {.lex_state = 128, .external_lex_state = 5}, + [2593] = {.lex_state = 128, .external_lex_state = 2}, + [2594] = {.lex_state = 128, .external_lex_state = 2}, [2595] = {.lex_state = 128, .external_lex_state = 2}, [2596] = {.lex_state = 128, .external_lex_state = 2}, - [2597] = {.lex_state = 128, .external_lex_state = 2}, - [2598] = {.lex_state = 127, .external_lex_state = 3}, - [2599] = {.lex_state = 128, .external_lex_state = 2}, - [2600] = {.lex_state = 127, .external_lex_state = 3}, - [2601] = {.lex_state = 9, .external_lex_state = 5}, - [2602] = {.lex_state = 9, .external_lex_state = 5}, - [2603] = {.lex_state = 127, .external_lex_state = 3}, - [2604] = {.lex_state = 9, .external_lex_state = 5}, - [2605] = {.lex_state = 9, .external_lex_state = 5}, - [2606] = {.lex_state = 128, .external_lex_state = 2}, - [2607] = {.lex_state = 9, .external_lex_state = 5}, - [2608] = {.lex_state = 9, .external_lex_state = 5}, - [2609] = {.lex_state = 9, .external_lex_state = 5}, - [2610] = {.lex_state = 9, .external_lex_state = 5}, - [2611] = {.lex_state = 9, .external_lex_state = 5}, - [2612] = {.lex_state = 9, .external_lex_state = 5}, + [2597] = {.lex_state = 128, .external_lex_state = 5}, + [2598] = {.lex_state = 128, .external_lex_state = 2}, + [2599] = {.lex_state = 128, .external_lex_state = 5}, + [2600] = {.lex_state = 128, .external_lex_state = 5}, + [2601] = {.lex_state = 128, .external_lex_state = 5}, + [2602] = {.lex_state = 127, .external_lex_state = 3}, + [2603] = {.lex_state = 128, .external_lex_state = 5}, + [2604] = {.lex_state = 128, .external_lex_state = 5}, + [2605] = {.lex_state = 127, .external_lex_state = 3}, + [2606] = {.lex_state = 128, .external_lex_state = 5}, + [2607] = {.lex_state = 127, .external_lex_state = 3}, + [2608] = {.lex_state = 127, .external_lex_state = 3}, + [2609] = {.lex_state = 128, .external_lex_state = 5}, + [2610] = {.lex_state = 128, .external_lex_state = 2}, + [2611] = {.lex_state = 128, .external_lex_state = 5}, + [2612] = {.lex_state = 127, .external_lex_state = 3}, [2613] = {.lex_state = 9, .external_lex_state = 5}, [2614] = {.lex_state = 9, .external_lex_state = 5}, [2615] = {.lex_state = 9, .external_lex_state = 5}, @@ -16310,18 +16340,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2619] = {.lex_state = 9, .external_lex_state = 5}, [2620] = {.lex_state = 9, .external_lex_state = 5}, [2621] = {.lex_state = 9, .external_lex_state = 5}, - [2622] = {.lex_state = 127, .external_lex_state = 3}, + [2622] = {.lex_state = 9, .external_lex_state = 5}, [2623] = {.lex_state = 9, .external_lex_state = 5}, [2624] = {.lex_state = 9, .external_lex_state = 5}, [2625] = {.lex_state = 128, .external_lex_state = 2}, - [2626] = {.lex_state = 127, .external_lex_state = 3}, - [2627] = {.lex_state = 127, .external_lex_state = 3}, + [2626] = {.lex_state = 9, .external_lex_state = 5}, + [2627] = {.lex_state = 9, .external_lex_state = 5}, [2628] = {.lex_state = 9, .external_lex_state = 5}, [2629] = {.lex_state = 9, .external_lex_state = 5}, [2630] = {.lex_state = 9, .external_lex_state = 5}, [2631] = {.lex_state = 9, .external_lex_state = 5}, - [2632] = {.lex_state = 127, .external_lex_state = 3}, - [2633] = {.lex_state = 127, .external_lex_state = 3}, + [2632] = {.lex_state = 9, .external_lex_state = 5}, + [2633] = {.lex_state = 9, .external_lex_state = 5}, [2634] = {.lex_state = 9, .external_lex_state = 5}, [2635] = {.lex_state = 9, .external_lex_state = 5}, [2636] = {.lex_state = 9, .external_lex_state = 5}, @@ -16336,47 +16366,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2645] = {.lex_state = 9, .external_lex_state = 5}, [2646] = {.lex_state = 9, .external_lex_state = 5}, [2647] = {.lex_state = 9, .external_lex_state = 5}, - [2648] = {.lex_state = 9, .external_lex_state = 5}, - [2649] = {.lex_state = 9, .external_lex_state = 5}, + [2648] = {.lex_state = 127, .external_lex_state = 3}, + [2649] = {.lex_state = 128, .external_lex_state = 2}, [2650] = {.lex_state = 9, .external_lex_state = 5}, [2651] = {.lex_state = 9, .external_lex_state = 5}, - [2652] = {.lex_state = 9, .external_lex_state = 5}, - [2653] = {.lex_state = 9, .external_lex_state = 5}, + [2652] = {.lex_state = 127, .external_lex_state = 3}, + [2653] = {.lex_state = 127, .external_lex_state = 3}, [2654] = {.lex_state = 9, .external_lex_state = 5}, - [2655] = {.lex_state = 127, .external_lex_state = 3}, + [2655] = {.lex_state = 9, .external_lex_state = 5}, [2656] = {.lex_state = 9, .external_lex_state = 5}, - [2657] = {.lex_state = 9, .external_lex_state = 5}, - [2658] = {.lex_state = 127, .external_lex_state = 3}, + [2657] = {.lex_state = 127, .external_lex_state = 3}, + [2658] = {.lex_state = 9, .external_lex_state = 5}, [2659] = {.lex_state = 9, .external_lex_state = 5}, - [2660] = {.lex_state = 9, .external_lex_state = 5}, + [2660] = {.lex_state = 127, .external_lex_state = 3}, [2661] = {.lex_state = 127, .external_lex_state = 3}, [2662] = {.lex_state = 9, .external_lex_state = 5}, [2663] = {.lex_state = 9, .external_lex_state = 5}, - [2664] = {.lex_state = 128, .external_lex_state = 2}, - [2665] = {.lex_state = 9, .external_lex_state = 2}, - [2666] = {.lex_state = 128, .external_lex_state = 2}, - [2667] = {.lex_state = 128, .external_lex_state = 2}, - [2668] = {.lex_state = 9, .external_lex_state = 2}, - [2669] = {.lex_state = 128, .external_lex_state = 2}, - [2670] = {.lex_state = 127, .external_lex_state = 3}, - [2671] = {.lex_state = 128, .external_lex_state = 2}, - [2672] = {.lex_state = 9, .external_lex_state = 2}, - [2673] = {.lex_state = 9, .external_lex_state = 2}, - [2674] = {.lex_state = 9, .external_lex_state = 2}, - [2675] = {.lex_state = 9, .external_lex_state = 2}, + [2664] = {.lex_state = 127, .external_lex_state = 3}, + [2665] = {.lex_state = 9, .external_lex_state = 5}, + [2666] = {.lex_state = 127, .external_lex_state = 3}, + [2667] = {.lex_state = 9, .external_lex_state = 5}, + [2668] = {.lex_state = 9, .external_lex_state = 5}, + [2669] = {.lex_state = 127, .external_lex_state = 3}, + [2670] = {.lex_state = 9, .external_lex_state = 5}, + [2671] = {.lex_state = 9, .external_lex_state = 5}, + [2672] = {.lex_state = 9, .external_lex_state = 5}, + [2673] = {.lex_state = 9, .external_lex_state = 5}, + [2674] = {.lex_state = 9, .external_lex_state = 5}, + [2675] = {.lex_state = 9, .external_lex_state = 5}, [2676] = {.lex_state = 9, .external_lex_state = 2}, [2677] = {.lex_state = 128, .external_lex_state = 2}, [2678] = {.lex_state = 128, .external_lex_state = 2}, [2679] = {.lex_state = 128, .external_lex_state = 2}, [2680] = {.lex_state = 128, .external_lex_state = 2}, - [2681] = {.lex_state = 128, .external_lex_state = 2}, - [2682] = {.lex_state = 128, .external_lex_state = 2}, - [2683] = {.lex_state = 128, .external_lex_state = 2}, - [2684] = {.lex_state = 128, .external_lex_state = 2}, - [2685] = {.lex_state = 128, .external_lex_state = 2}, - [2686] = {.lex_state = 128, .external_lex_state = 2}, + [2681] = {.lex_state = 9, .external_lex_state = 2}, + [2682] = {.lex_state = 9, .external_lex_state = 2}, + [2683] = {.lex_state = 9, .external_lex_state = 2}, + [2684] = {.lex_state = 9, .external_lex_state = 2}, + [2685] = {.lex_state = 9, .external_lex_state = 2}, + [2686] = {.lex_state = 127, .external_lex_state = 3}, [2687] = {.lex_state = 128, .external_lex_state = 2}, - [2688] = {.lex_state = 128, .external_lex_state = 2}, + [2688] = {.lex_state = 9, .external_lex_state = 2}, [2689] = {.lex_state = 128, .external_lex_state = 2}, [2690] = {.lex_state = 128, .external_lex_state = 2}, [2691] = {.lex_state = 128, .external_lex_state = 2}, @@ -16517,28 +16547,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2826] = {.lex_state = 128, .external_lex_state = 2}, [2827] = {.lex_state = 128, .external_lex_state = 2}, [2828] = {.lex_state = 128, .external_lex_state = 2}, - [2829] = {.lex_state = 7, .external_lex_state = 2}, - [2830] = {.lex_state = 7, .external_lex_state = 2}, - [2831] = {.lex_state = 7, .external_lex_state = 2}, - [2832] = {.lex_state = 7, .external_lex_state = 2}, - [2833] = {.lex_state = 7, .external_lex_state = 2}, - [2834] = {.lex_state = 7, .external_lex_state = 2}, - [2835] = {.lex_state = 7, .external_lex_state = 2}, - [2836] = {.lex_state = 7, .external_lex_state = 2}, - [2837] = {.lex_state = 7, .external_lex_state = 2}, - [2838] = {.lex_state = 7, .external_lex_state = 2}, - [2839] = {.lex_state = 7, .external_lex_state = 2}, - [2840] = {.lex_state = 7, .external_lex_state = 2}, + [2829] = {.lex_state = 128, .external_lex_state = 2}, + [2830] = {.lex_state = 128, .external_lex_state = 2}, + [2831] = {.lex_state = 128, .external_lex_state = 2}, + [2832] = {.lex_state = 128, .external_lex_state = 2}, + [2833] = {.lex_state = 128, .external_lex_state = 2}, + [2834] = {.lex_state = 128, .external_lex_state = 2}, + [2835] = {.lex_state = 128, .external_lex_state = 2}, + [2836] = {.lex_state = 128, .external_lex_state = 2}, + [2837] = {.lex_state = 128, .external_lex_state = 2}, + [2838] = {.lex_state = 128, .external_lex_state = 2}, + [2839] = {.lex_state = 128, .external_lex_state = 2}, + [2840] = {.lex_state = 128, .external_lex_state = 2}, [2841] = {.lex_state = 7, .external_lex_state = 2}, [2842] = {.lex_state = 7, .external_lex_state = 2}, [2843] = {.lex_state = 7, .external_lex_state = 2}, - [2844] = {.lex_state = 7, .external_lex_state = 2}, + [2844] = {.lex_state = 128, .external_lex_state = 2}, [2845] = {.lex_state = 7, .external_lex_state = 2}, - [2846] = {.lex_state = 7, .external_lex_state = 2}, - [2847] = {.lex_state = 7, .external_lex_state = 2}, - [2848] = {.lex_state = 7, .external_lex_state = 2}, - [2849] = {.lex_state = 7, .external_lex_state = 2}, - [2850] = {.lex_state = 7, .external_lex_state = 2}, + [2846] = {.lex_state = 128, .external_lex_state = 2}, + [2847] = {.lex_state = 128, .external_lex_state = 2}, + [2848] = {.lex_state = 128, .external_lex_state = 2}, + [2849] = {.lex_state = 128, .external_lex_state = 2}, + [2850] = {.lex_state = 128, .external_lex_state = 2}, [2851] = {.lex_state = 7, .external_lex_state = 2}, [2852] = {.lex_state = 7, .external_lex_state = 2}, [2853] = {.lex_state = 7, .external_lex_state = 2}, @@ -16554,808 +16584,808 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2863] = {.lex_state = 7, .external_lex_state = 2}, [2864] = {.lex_state = 7, .external_lex_state = 2}, [2865] = {.lex_state = 7, .external_lex_state = 2}, - [2866] = {.lex_state = 128, .external_lex_state = 5}, - [2867] = {.lex_state = 20, .external_lex_state = 2}, - [2868] = {.lex_state = 20, .external_lex_state = 2}, - [2869] = {.lex_state = 128, .external_lex_state = 2}, - [2870] = {.lex_state = 128, .external_lex_state = 5}, - [2871] = {.lex_state = 128, .external_lex_state = 2}, + [2866] = {.lex_state = 7, .external_lex_state = 2}, + [2867] = {.lex_state = 7, .external_lex_state = 2}, + [2868] = {.lex_state = 7, .external_lex_state = 2}, + [2869] = {.lex_state = 7, .external_lex_state = 2}, + [2870] = {.lex_state = 7, .external_lex_state = 2}, + [2871] = {.lex_state = 7, .external_lex_state = 2}, [2872] = {.lex_state = 7, .external_lex_state = 2}, [2873] = {.lex_state = 7, .external_lex_state = 2}, - [2874] = {.lex_state = 128, .external_lex_state = 2}, - [2875] = {.lex_state = 128, .external_lex_state = 2}, + [2874] = {.lex_state = 7, .external_lex_state = 2}, + [2875] = {.lex_state = 7, .external_lex_state = 2}, [2876] = {.lex_state = 7, .external_lex_state = 2}, - [2877] = {.lex_state = 128, .external_lex_state = 2}, - [2878] = {.lex_state = 128, .external_lex_state = 2}, + [2877] = {.lex_state = 7, .external_lex_state = 2}, + [2878] = {.lex_state = 7, .external_lex_state = 2}, [2879] = {.lex_state = 7, .external_lex_state = 2}, [2880] = {.lex_state = 7, .external_lex_state = 2}, - [2881] = {.lex_state = 128, .external_lex_state = 2}, - [2882] = {.lex_state = 128, .external_lex_state = 2}, - [2883] = {.lex_state = 7, .external_lex_state = 5}, - [2884] = {.lex_state = 7, .external_lex_state = 5}, - [2885] = {.lex_state = 128, .external_lex_state = 2}, - [2886] = {.lex_state = 128, .external_lex_state = 2}, - [2887] = {.lex_state = 7, .external_lex_state = 5}, + [2881] = {.lex_state = 7, .external_lex_state = 2}, + [2882] = {.lex_state = 7, .external_lex_state = 2}, + [2883] = {.lex_state = 7, .external_lex_state = 2}, + [2884] = {.lex_state = 20, .external_lex_state = 2}, + [2885] = {.lex_state = 128, .external_lex_state = 5}, + [2886] = {.lex_state = 128, .external_lex_state = 5}, + [2887] = {.lex_state = 20, .external_lex_state = 2}, [2888] = {.lex_state = 128, .external_lex_state = 2}, - [2889] = {.lex_state = 7, .external_lex_state = 2}, + [2889] = {.lex_state = 128, .external_lex_state = 2}, [2890] = {.lex_state = 128, .external_lex_state = 2}, [2891] = {.lex_state = 128, .external_lex_state = 2}, - [2892] = {.lex_state = 128, .external_lex_state = 2}, - [2893] = {.lex_state = 128, .external_lex_state = 2}, - [2894] = {.lex_state = 128, .external_lex_state = 2}, + [2892] = {.lex_state = 7, .external_lex_state = 5}, + [2893] = {.lex_state = 7, .external_lex_state = 5}, + [2894] = {.lex_state = 7, .external_lex_state = 5}, [2895] = {.lex_state = 128, .external_lex_state = 2}, [2896] = {.lex_state = 128, .external_lex_state = 2}, - [2897] = {.lex_state = 128, .external_lex_state = 2}, - [2898] = {.lex_state = 128, .external_lex_state = 2}, - [2899] = {.lex_state = 7, .external_lex_state = 5}, + [2897] = {.lex_state = 7, .external_lex_state = 2}, + [2898] = {.lex_state = 7, .external_lex_state = 2}, + [2899] = {.lex_state = 7, .external_lex_state = 2}, [2900] = {.lex_state = 128, .external_lex_state = 2}, - [2901] = {.lex_state = 7, .external_lex_state = 5}, - [2902] = {.lex_state = 2, .external_lex_state = 2}, + [2901] = {.lex_state = 128, .external_lex_state = 2}, + [2902] = {.lex_state = 128, .external_lex_state = 2}, [2903] = {.lex_state = 128, .external_lex_state = 2}, - [2904] = {.lex_state = 7, .external_lex_state = 5}, - [2905] = {.lex_state = 7, .external_lex_state = 5}, - [2906] = {.lex_state = 7, .external_lex_state = 5}, - [2907] = {.lex_state = 7, .external_lex_state = 5}, - [2908] = {.lex_state = 128, .external_lex_state = 2}, + [2904] = {.lex_state = 128, .external_lex_state = 2}, + [2905] = {.lex_state = 7, .external_lex_state = 2}, + [2906] = {.lex_state = 128, .external_lex_state = 2}, + [2907] = {.lex_state = 128, .external_lex_state = 2}, + [2908] = {.lex_state = 7, .external_lex_state = 2}, [2909] = {.lex_state = 128, .external_lex_state = 2}, - [2910] = {.lex_state = 2, .external_lex_state = 2}, + [2910] = {.lex_state = 7, .external_lex_state = 2}, [2911] = {.lex_state = 128, .external_lex_state = 2}, [2912] = {.lex_state = 128, .external_lex_state = 2}, [2913] = {.lex_state = 128, .external_lex_state = 2}, [2914] = {.lex_state = 128, .external_lex_state = 2}, [2915] = {.lex_state = 128, .external_lex_state = 2}, - [2916] = {.lex_state = 7, .external_lex_state = 5}, + [2916] = {.lex_state = 128, .external_lex_state = 2}, [2917] = {.lex_state = 128, .external_lex_state = 2}, - [2918] = {.lex_state = 7, .external_lex_state = 5}, + [2918] = {.lex_state = 128, .external_lex_state = 2}, [2919] = {.lex_state = 128, .external_lex_state = 2}, - [2920] = {.lex_state = 7, .external_lex_state = 5}, - [2921] = {.lex_state = 7, .external_lex_state = 5}, + [2920] = {.lex_state = 128, .external_lex_state = 2}, + [2921] = {.lex_state = 128, .external_lex_state = 2}, [2922] = {.lex_state = 128, .external_lex_state = 2}, - [2923] = {.lex_state = 2, .external_lex_state = 2}, - [2924] = {.lex_state = 7, .external_lex_state = 5}, - [2925] = {.lex_state = 7, .external_lex_state = 5}, + [2923] = {.lex_state = 128, .external_lex_state = 2}, + [2924] = {.lex_state = 128, .external_lex_state = 2}, + [2925] = {.lex_state = 128, .external_lex_state = 2}, [2926] = {.lex_state = 128, .external_lex_state = 2}, [2927] = {.lex_state = 128, .external_lex_state = 2}, - [2928] = {.lex_state = 7, .external_lex_state = 5}, - [2929] = {.lex_state = 7, .external_lex_state = 5}, - [2930] = {.lex_state = 7, .external_lex_state = 5}, + [2928] = {.lex_state = 128, .external_lex_state = 2}, + [2929] = {.lex_state = 128, .external_lex_state = 2}, + [2930] = {.lex_state = 128, .external_lex_state = 2}, [2931] = {.lex_state = 128, .external_lex_state = 2}, [2932] = {.lex_state = 128, .external_lex_state = 2}, - [2933] = {.lex_state = 128, .external_lex_state = 2}, - [2934] = {.lex_state = 7, .external_lex_state = 5}, - [2935] = {.lex_state = 128, .external_lex_state = 2}, + [2933] = {.lex_state = 128, .external_lex_state = 5}, + [2934] = {.lex_state = 128, .external_lex_state = 2}, + [2935] = {.lex_state = 2, .external_lex_state = 2}, [2936] = {.lex_state = 128, .external_lex_state = 2}, - [2937] = {.lex_state = 128, .external_lex_state = 2}, - [2938] = {.lex_state = 128, .external_lex_state = 2}, - [2939] = {.lex_state = 128, .external_lex_state = 2}, + [2937] = {.lex_state = 7, .external_lex_state = 6}, + [2938] = {.lex_state = 7, .external_lex_state = 6}, + [2939] = {.lex_state = 7, .external_lex_state = 6}, [2940] = {.lex_state = 128, .external_lex_state = 2}, - [2941] = {.lex_state = 7, .external_lex_state = 5}, - [2942] = {.lex_state = 7, .external_lex_state = 5}, - [2943] = {.lex_state = 2, .external_lex_state = 2}, - [2944] = {.lex_state = 7, .external_lex_state = 5}, - [2945] = {.lex_state = 7, .external_lex_state = 5}, - [2946] = {.lex_state = 7, .external_lex_state = 6}, - [2947] = {.lex_state = 7, .external_lex_state = 6}, - [2948] = {.lex_state = 7, .external_lex_state = 6}, + [2941] = {.lex_state = 128, .external_lex_state = 2}, + [2942] = {.lex_state = 128, .external_lex_state = 2}, + [2943] = {.lex_state = 128, .external_lex_state = 2}, + [2944] = {.lex_state = 128, .external_lex_state = 2}, + [2945] = {.lex_state = 2, .external_lex_state = 2}, + [2946] = {.lex_state = 128, .external_lex_state = 2}, + [2947] = {.lex_state = 128, .external_lex_state = 2}, + [2948] = {.lex_state = 128, .external_lex_state = 2}, [2949] = {.lex_state = 128, .external_lex_state = 2}, [2950] = {.lex_state = 128, .external_lex_state = 2}, - [2951] = {.lex_state = 7, .external_lex_state = 5}, + [2951] = {.lex_state = 128, .external_lex_state = 2}, [2952] = {.lex_state = 128, .external_lex_state = 2}, - [2953] = {.lex_state = 7, .external_lex_state = 5}, - [2954] = {.lex_state = 2, .external_lex_state = 2}, - [2955] = {.lex_state = 128, .external_lex_state = 2}, + [2953] = {.lex_state = 128, .external_lex_state = 5}, + [2954] = {.lex_state = 128, .external_lex_state = 2}, + [2955] = {.lex_state = 128, .external_lex_state = 5}, [2956] = {.lex_state = 128, .external_lex_state = 2}, - [2957] = {.lex_state = 128, .external_lex_state = 2}, + [2957] = {.lex_state = 2, .external_lex_state = 2}, [2958] = {.lex_state = 128, .external_lex_state = 2}, [2959] = {.lex_state = 128, .external_lex_state = 2}, - [2960] = {.lex_state = 7, .external_lex_state = 5}, - [2961] = {.lex_state = 7, .external_lex_state = 5}, - [2962] = {.lex_state = 7, .external_lex_state = 5}, + [2960] = {.lex_state = 128, .external_lex_state = 2}, + [2961] = {.lex_state = 128, .external_lex_state = 2}, + [2962] = {.lex_state = 128, .external_lex_state = 2}, [2963] = {.lex_state = 128, .external_lex_state = 2}, - [2964] = {.lex_state = 2, .external_lex_state = 2}, - [2965] = {.lex_state = 7, .external_lex_state = 5}, - [2966] = {.lex_state = 7, .external_lex_state = 5}, - [2967] = {.lex_state = 7, .external_lex_state = 5}, - [2968] = {.lex_state = 7, .external_lex_state = 5}, + [2964] = {.lex_state = 128, .external_lex_state = 2}, + [2965] = {.lex_state = 128, .external_lex_state = 2}, + [2966] = {.lex_state = 2, .external_lex_state = 2}, + [2967] = {.lex_state = 128, .external_lex_state = 5}, + [2968] = {.lex_state = 128, .external_lex_state = 5}, [2969] = {.lex_state = 2, .external_lex_state = 2}, - [2970] = {.lex_state = 128, .external_lex_state = 2}, - [2971] = {.lex_state = 7, .external_lex_state = 5}, + [2970] = {.lex_state = 2, .external_lex_state = 2}, + [2971] = {.lex_state = 128, .external_lex_state = 2}, [2972] = {.lex_state = 128, .external_lex_state = 2}, [2973] = {.lex_state = 128, .external_lex_state = 2}, - [2974] = {.lex_state = 7, .external_lex_state = 5}, - [2975] = {.lex_state = 7, .external_lex_state = 5}, - [2976] = {.lex_state = 128, .external_lex_state = 2}, + [2974] = {.lex_state = 128, .external_lex_state = 2}, + [2975] = {.lex_state = 128, .external_lex_state = 5}, + [2976] = {.lex_state = 128, .external_lex_state = 5}, [2977] = {.lex_state = 128, .external_lex_state = 2}, - [2978] = {.lex_state = 128, .external_lex_state = 5}, - [2979] = {.lex_state = 7, .external_lex_state = 5}, + [2978] = {.lex_state = 128, .external_lex_state = 2}, + [2979] = {.lex_state = 128, .external_lex_state = 2}, [2980] = {.lex_state = 128, .external_lex_state = 2}, - [2981] = {.lex_state = 128, .external_lex_state = 2}, - [2982] = {.lex_state = 128, .external_lex_state = 2}, - [2983] = {.lex_state = 128, .external_lex_state = 2}, - [2984] = {.lex_state = 128, .external_lex_state = 2}, - [2985] = {.lex_state = 128, .external_lex_state = 2}, - [2986] = {.lex_state = 128, .external_lex_state = 2}, - [2987] = {.lex_state = 128, .external_lex_state = 2}, - [2988] = {.lex_state = 128, .external_lex_state = 2}, - [2989] = {.lex_state = 128, .external_lex_state = 2}, - [2990] = {.lex_state = 2, .external_lex_state = 2}, + [2981] = {.lex_state = 2, .external_lex_state = 2}, + [2982] = {.lex_state = 7, .external_lex_state = 5}, + [2983] = {.lex_state = 7, .external_lex_state = 5}, + [2984] = {.lex_state = 7, .external_lex_state = 5}, + [2985] = {.lex_state = 7, .external_lex_state = 5}, + [2986] = {.lex_state = 7, .external_lex_state = 5}, + [2987] = {.lex_state = 7, .external_lex_state = 5}, + [2988] = {.lex_state = 7, .external_lex_state = 5}, + [2989] = {.lex_state = 7, .external_lex_state = 5}, + [2990] = {.lex_state = 7, .external_lex_state = 5}, [2991] = {.lex_state = 7, .external_lex_state = 5}, - [2992] = {.lex_state = 128, .external_lex_state = 2}, - [2993] = {.lex_state = 128, .external_lex_state = 2}, - [2994] = {.lex_state = 128, .external_lex_state = 2}, - [2995] = {.lex_state = 128, .external_lex_state = 2}, + [2992] = {.lex_state = 7, .external_lex_state = 5}, + [2993] = {.lex_state = 7, .external_lex_state = 5}, + [2994] = {.lex_state = 7, .external_lex_state = 5}, + [2995] = {.lex_state = 7, .external_lex_state = 5}, [2996] = {.lex_state = 2, .external_lex_state = 2}, [2997] = {.lex_state = 128, .external_lex_state = 2}, - [2998] = {.lex_state = 128, .external_lex_state = 2}, - [2999] = {.lex_state = 128, .external_lex_state = 2}, - [3000] = {.lex_state = 128, .external_lex_state = 5}, - [3001] = {.lex_state = 128, .external_lex_state = 2}, - [3002] = {.lex_state = 128, .external_lex_state = 2}, - [3003] = {.lex_state = 128, .external_lex_state = 5}, - [3004] = {.lex_state = 128, .external_lex_state = 5}, - [3005] = {.lex_state = 128, .external_lex_state = 5}, - [3006] = {.lex_state = 128, .external_lex_state = 5}, - [3007] = {.lex_state = 128, .external_lex_state = 5}, - [3008] = {.lex_state = 128, .external_lex_state = 5}, - [3009] = {.lex_state = 128, .external_lex_state = 5}, - [3010] = {.lex_state = 128, .external_lex_state = 5}, - [3011] = {.lex_state = 128, .external_lex_state = 5}, - [3012] = {.lex_state = 128, .external_lex_state = 5}, - [3013] = {.lex_state = 128, .external_lex_state = 2}, - [3014] = {.lex_state = 128, .external_lex_state = 5}, - [3015] = {.lex_state = 128, .external_lex_state = 5}, - [3016] = {.lex_state = 128, .external_lex_state = 5}, - [3017] = {.lex_state = 128, .external_lex_state = 5}, + [2998] = {.lex_state = 7, .external_lex_state = 5}, + [2999] = {.lex_state = 7, .external_lex_state = 5}, + [3000] = {.lex_state = 7, .external_lex_state = 5}, + [3001] = {.lex_state = 7, .external_lex_state = 5}, + [3002] = {.lex_state = 7, .external_lex_state = 5}, + [3003] = {.lex_state = 7, .external_lex_state = 5}, + [3004] = {.lex_state = 7, .external_lex_state = 5}, + [3005] = {.lex_state = 7, .external_lex_state = 5}, + [3006] = {.lex_state = 7, .external_lex_state = 5}, + [3007] = {.lex_state = 7, .external_lex_state = 5}, + [3008] = {.lex_state = 7, .external_lex_state = 5}, + [3009] = {.lex_state = 7, .external_lex_state = 5}, + [3010] = {.lex_state = 7, .external_lex_state = 5}, + [3011] = {.lex_state = 7, .external_lex_state = 5}, + [3012] = {.lex_state = 7, .external_lex_state = 5}, + [3013] = {.lex_state = 7, .external_lex_state = 5}, + [3014] = {.lex_state = 7, .external_lex_state = 5}, + [3015] = {.lex_state = 7, .external_lex_state = 5}, + [3016] = {.lex_state = 7, .external_lex_state = 5}, + [3017] = {.lex_state = 7, .external_lex_state = 5}, [3018] = {.lex_state = 128, .external_lex_state = 2}, [3019] = {.lex_state = 128, .external_lex_state = 2}, - [3020] = {.lex_state = 128, .external_lex_state = 5}, - [3021] = {.lex_state = 128, .external_lex_state = 5}, - [3022] = {.lex_state = 128, .external_lex_state = 5}, - [3023] = {.lex_state = 128, .external_lex_state = 5}, + [3020] = {.lex_state = 2, .external_lex_state = 2}, + [3021] = {.lex_state = 128, .external_lex_state = 2}, + [3022] = {.lex_state = 128, .external_lex_state = 2}, + [3023] = {.lex_state = 128, .external_lex_state = 2}, [3024] = {.lex_state = 128, .external_lex_state = 5}, - [3025] = {.lex_state = 20, .external_lex_state = 2}, + [3025] = {.lex_state = 128, .external_lex_state = 5}, [3026] = {.lex_state = 128, .external_lex_state = 5}, [3027] = {.lex_state = 128, .external_lex_state = 5}, - [3028] = {.lex_state = 128, .external_lex_state = 5}, + [3028] = {.lex_state = 128, .external_lex_state = 2}, [3029] = {.lex_state = 128, .external_lex_state = 5}, - [3030] = {.lex_state = 128, .external_lex_state = 2}, - [3031] = {.lex_state = 128, .external_lex_state = 5}, + [3030] = {.lex_state = 128, .external_lex_state = 5}, + [3031] = {.lex_state = 128, .external_lex_state = 2}, [3032] = {.lex_state = 128, .external_lex_state = 5}, [3033] = {.lex_state = 128, .external_lex_state = 5}, [3034] = {.lex_state = 128, .external_lex_state = 5}, - [3035] = {.lex_state = 128, .external_lex_state = 2}, - [3036] = {.lex_state = 128, .external_lex_state = 2}, - [3037] = {.lex_state = 128, .external_lex_state = 2}, + [3035] = {.lex_state = 128, .external_lex_state = 5}, + [3036] = {.lex_state = 128, .external_lex_state = 5}, + [3037] = {.lex_state = 128, .external_lex_state = 5}, [3038] = {.lex_state = 128, .external_lex_state = 2}, [3039] = {.lex_state = 128, .external_lex_state = 5}, - [3040] = {.lex_state = 128, .external_lex_state = 5}, + [3040] = {.lex_state = 128, .external_lex_state = 2}, [3041] = {.lex_state = 128, .external_lex_state = 2}, - [3042] = {.lex_state = 7, .external_lex_state = 6}, - [3043] = {.lex_state = 7, .external_lex_state = 5}, + [3042] = {.lex_state = 128, .external_lex_state = 5}, + [3043] = {.lex_state = 128, .external_lex_state = 5}, [3044] = {.lex_state = 128, .external_lex_state = 5}, - [3045] = {.lex_state = 7, .external_lex_state = 6}, - [3046] = {.lex_state = 7, .external_lex_state = 5}, - [3047] = {.lex_state = 7, .external_lex_state = 5}, + [3045] = {.lex_state = 128, .external_lex_state = 2}, + [3046] = {.lex_state = 128, .external_lex_state = 2}, + [3047] = {.lex_state = 128, .external_lex_state = 5}, [3048] = {.lex_state = 128, .external_lex_state = 5}, - [3049] = {.lex_state = 7, .external_lex_state = 6}, - [3050] = {.lex_state = 7, .external_lex_state = 6}, - [3051] = {.lex_state = 7, .external_lex_state = 6}, - [3052] = {.lex_state = 20, .external_lex_state = 2}, + [3049] = {.lex_state = 128, .external_lex_state = 5}, + [3050] = {.lex_state = 128, .external_lex_state = 2}, + [3051] = {.lex_state = 128, .external_lex_state = 5}, + [3052] = {.lex_state = 128, .external_lex_state = 2}, [3053] = {.lex_state = 128, .external_lex_state = 5}, [3054] = {.lex_state = 128, .external_lex_state = 5}, [3055] = {.lex_state = 128, .external_lex_state = 5}, - [3056] = {.lex_state = 7, .external_lex_state = 6}, - [3057] = {.lex_state = 7, .external_lex_state = 6}, - [3058] = {.lex_state = 128, .external_lex_state = 2}, - [3059] = {.lex_state = 7, .external_lex_state = 6}, - [3060] = {.lex_state = 128, .external_lex_state = 5}, - [3061] = {.lex_state = 128, .external_lex_state = 2}, + [3056] = {.lex_state = 20, .external_lex_state = 2}, + [3057] = {.lex_state = 128, .external_lex_state = 5}, + [3058] = {.lex_state = 128, .external_lex_state = 5}, + [3059] = {.lex_state = 128, .external_lex_state = 5}, + [3060] = {.lex_state = 128, .external_lex_state = 2}, + [3061] = {.lex_state = 128, .external_lex_state = 5}, [3062] = {.lex_state = 128, .external_lex_state = 5}, - [3063] = {.lex_state = 128, .external_lex_state = 2}, - [3064] = {.lex_state = 128, .external_lex_state = 2}, - [3065] = {.lex_state = 128, .external_lex_state = 5}, - [3066] = {.lex_state = 128, .external_lex_state = 2}, - [3067] = {.lex_state = 128, .external_lex_state = 2}, - [3068] = {.lex_state = 128, .external_lex_state = 2}, - [3069] = {.lex_state = 128, .external_lex_state = 5}, - [3070] = {.lex_state = 128, .external_lex_state = 5}, - [3071] = {.lex_state = 7, .external_lex_state = 5}, - [3072] = {.lex_state = 7, .external_lex_state = 6}, + [3063] = {.lex_state = 128, .external_lex_state = 5}, + [3064] = {.lex_state = 128, .external_lex_state = 5}, + [3065] = {.lex_state = 128, .external_lex_state = 2}, + [3066] = {.lex_state = 7, .external_lex_state = 6}, + [3067] = {.lex_state = 128, .external_lex_state = 6}, + [3068] = {.lex_state = 7, .external_lex_state = 6}, + [3069] = {.lex_state = 7, .external_lex_state = 6}, + [3070] = {.lex_state = 128, .external_lex_state = 6}, + [3071] = {.lex_state = 128, .external_lex_state = 5}, + [3072] = {.lex_state = 128, .external_lex_state = 5}, [3073] = {.lex_state = 128, .external_lex_state = 5}, - [3074] = {.lex_state = 20, .external_lex_state = 2}, - [3075] = {.lex_state = 128, .external_lex_state = 5}, - [3076] = {.lex_state = 7, .external_lex_state = 6}, - [3077] = {.lex_state = 7, .external_lex_state = 6}, - [3078] = {.lex_state = 7, .external_lex_state = 5}, - [3079] = {.lex_state = 7, .external_lex_state = 5}, - [3080] = {.lex_state = 128, .external_lex_state = 5}, - [3081] = {.lex_state = 128, .external_lex_state = 5}, - [3082] = {.lex_state = 128, .external_lex_state = 2}, - [3083] = {.lex_state = 128, .external_lex_state = 5}, - [3084] = {.lex_state = 128, .external_lex_state = 6}, + [3074] = {.lex_state = 7, .external_lex_state = 5}, + [3075] = {.lex_state = 128, .external_lex_state = 6}, + [3076] = {.lex_state = 128, .external_lex_state = 6}, + [3077] = {.lex_state = 128, .external_lex_state = 5}, + [3078] = {.lex_state = 128, .external_lex_state = 6}, + [3079] = {.lex_state = 128, .external_lex_state = 6}, + [3080] = {.lex_state = 7, .external_lex_state = 5}, + [3081] = {.lex_state = 128, .external_lex_state = 2}, + [3082] = {.lex_state = 128, .external_lex_state = 5}, + [3083] = {.lex_state = 7, .external_lex_state = 6}, + [3084] = {.lex_state = 128, .external_lex_state = 2}, [3085] = {.lex_state = 7, .external_lex_state = 6}, - [3086] = {.lex_state = 7, .external_lex_state = 6}, + [3086] = {.lex_state = 128, .external_lex_state = 5}, [3087] = {.lex_state = 7, .external_lex_state = 6}, - [3088] = {.lex_state = 7, .external_lex_state = 6}, + [3088] = {.lex_state = 7, .external_lex_state = 5}, [3089] = {.lex_state = 7, .external_lex_state = 6}, - [3090] = {.lex_state = 7, .external_lex_state = 6}, - [3091] = {.lex_state = 7, .external_lex_state = 6}, - [3092] = {.lex_state = 7, .external_lex_state = 6}, + [3090] = {.lex_state = 7, .external_lex_state = 5}, + [3091] = {.lex_state = 128, .external_lex_state = 5}, + [3092] = {.lex_state = 128, .external_lex_state = 2}, [3093] = {.lex_state = 7, .external_lex_state = 6}, [3094] = {.lex_state = 7, .external_lex_state = 6}, [3095] = {.lex_state = 7, .external_lex_state = 6}, [3096] = {.lex_state = 7, .external_lex_state = 6}, [3097] = {.lex_state = 7, .external_lex_state = 6}, [3098] = {.lex_state = 7, .external_lex_state = 6}, - [3099] = {.lex_state = 7, .external_lex_state = 5}, - [3100] = {.lex_state = 128, .external_lex_state = 5}, + [3099] = {.lex_state = 128, .external_lex_state = 2}, + [3100] = {.lex_state = 128, .external_lex_state = 2}, [3101] = {.lex_state = 7, .external_lex_state = 6}, - [3102] = {.lex_state = 128, .external_lex_state = 5}, + [3102] = {.lex_state = 7, .external_lex_state = 6}, [3103] = {.lex_state = 7, .external_lex_state = 6}, [3104] = {.lex_state = 7, .external_lex_state = 6}, - [3105] = {.lex_state = 7, .external_lex_state = 6}, - [3106] = {.lex_state = 7, .external_lex_state = 6}, + [3105] = {.lex_state = 128, .external_lex_state = 5}, + [3106] = {.lex_state = 20, .external_lex_state = 2}, [3107] = {.lex_state = 7, .external_lex_state = 6}, [3108] = {.lex_state = 7, .external_lex_state = 6}, [3109] = {.lex_state = 7, .external_lex_state = 6}, [3110] = {.lex_state = 128, .external_lex_state = 5}, - [3111] = {.lex_state = 128, .external_lex_state = 5}, - [3112] = {.lex_state = 128, .external_lex_state = 2}, - [3113] = {.lex_state = 7, .external_lex_state = 6}, - [3114] = {.lex_state = 7, .external_lex_state = 5}, - [3115] = {.lex_state = 128, .external_lex_state = 2}, + [3111] = {.lex_state = 7, .external_lex_state = 5}, + [3112] = {.lex_state = 7, .external_lex_state = 5}, + [3113] = {.lex_state = 7, .external_lex_state = 5}, + [3114] = {.lex_state = 128, .external_lex_state = 5}, + [3115] = {.lex_state = 7, .external_lex_state = 6}, [3116] = {.lex_state = 128, .external_lex_state = 5}, - [3117] = {.lex_state = 20, .external_lex_state = 2}, + [3117] = {.lex_state = 7, .external_lex_state = 6}, [3118] = {.lex_state = 128, .external_lex_state = 5}, - [3119] = {.lex_state = 128, .external_lex_state = 5}, - [3120] = {.lex_state = 128, .external_lex_state = 5}, - [3121] = {.lex_state = 128, .external_lex_state = 5}, + [3119] = {.lex_state = 7, .external_lex_state = 6}, + [3120] = {.lex_state = 7, .external_lex_state = 6}, + [3121] = {.lex_state = 7, .external_lex_state = 6}, [3122] = {.lex_state = 128, .external_lex_state = 5}, [3123] = {.lex_state = 128, .external_lex_state = 5}, [3124] = {.lex_state = 128, .external_lex_state = 5}, - [3125] = {.lex_state = 20, .external_lex_state = 2}, - [3126] = {.lex_state = 128, .external_lex_state = 5}, - [3127] = {.lex_state = 128, .external_lex_state = 6}, - [3128] = {.lex_state = 128, .external_lex_state = 6}, - [3129] = {.lex_state = 128, .external_lex_state = 5}, - [3130] = {.lex_state = 128, .external_lex_state = 5}, - [3131] = {.lex_state = 128, .external_lex_state = 5}, - [3132] = {.lex_state = 128, .external_lex_state = 5}, - [3133] = {.lex_state = 128, .external_lex_state = 5}, + [3125] = {.lex_state = 128, .external_lex_state = 5}, + [3126] = {.lex_state = 7, .external_lex_state = 6}, + [3127] = {.lex_state = 7, .external_lex_state = 6}, + [3128] = {.lex_state = 128, .external_lex_state = 5}, + [3129] = {.lex_state = 7, .external_lex_state = 6}, + [3130] = {.lex_state = 128, .external_lex_state = 2}, + [3131] = {.lex_state = 7, .external_lex_state = 6}, + [3132] = {.lex_state = 7, .external_lex_state = 6}, + [3133] = {.lex_state = 7, .external_lex_state = 6}, [3134] = {.lex_state = 128, .external_lex_state = 5}, - [3135] = {.lex_state = 128, .external_lex_state = 5}, - [3136] = {.lex_state = 128, .external_lex_state = 5}, + [3135] = {.lex_state = 7, .external_lex_state = 5}, + [3136] = {.lex_state = 128, .external_lex_state = 2}, [3137] = {.lex_state = 128, .external_lex_state = 5}, [3138] = {.lex_state = 128, .external_lex_state = 5}, - [3139] = {.lex_state = 20, .external_lex_state = 2}, - [3140] = {.lex_state = 128, .external_lex_state = 5}, - [3141] = {.lex_state = 128, .external_lex_state = 5}, + [3139] = {.lex_state = 128, .external_lex_state = 2}, + [3140] = {.lex_state = 7, .external_lex_state = 6}, + [3141] = {.lex_state = 20, .external_lex_state = 2}, [3142] = {.lex_state = 128, .external_lex_state = 5}, - [3143] = {.lex_state = 128, .external_lex_state = 5}, - [3144] = {.lex_state = 128, .external_lex_state = 5}, + [3143] = {.lex_state = 7, .external_lex_state = 6}, + [3144] = {.lex_state = 128, .external_lex_state = 6}, [3145] = {.lex_state = 128, .external_lex_state = 5}, - [3146] = {.lex_state = 128, .external_lex_state = 5}, - [3147] = {.lex_state = 128, .external_lex_state = 5}, - [3148] = {.lex_state = 128, .external_lex_state = 5}, + [3146] = {.lex_state = 128, .external_lex_state = 2}, + [3147] = {.lex_state = 128, .external_lex_state = 2}, + [3148] = {.lex_state = 7, .external_lex_state = 6}, [3149] = {.lex_state = 128, .external_lex_state = 5}, [3150] = {.lex_state = 128, .external_lex_state = 5}, [3151] = {.lex_state = 128, .external_lex_state = 5}, - [3152] = {.lex_state = 128, .external_lex_state = 5}, - [3153] = {.lex_state = 128, .external_lex_state = 2}, + [3152] = {.lex_state = 128, .external_lex_state = 2}, + [3153] = {.lex_state = 128, .external_lex_state = 5}, [3154] = {.lex_state = 128, .external_lex_state = 5}, - [3155] = {.lex_state = 128, .external_lex_state = 2}, + [3155] = {.lex_state = 128, .external_lex_state = 5}, [3156] = {.lex_state = 128, .external_lex_state = 5}, - [3157] = {.lex_state = 128, .external_lex_state = 2}, + [3157] = {.lex_state = 128, .external_lex_state = 5}, [3158] = {.lex_state = 128, .external_lex_state = 5}, [3159] = {.lex_state = 128, .external_lex_state = 5}, [3160] = {.lex_state = 128, .external_lex_state = 5}, - [3161] = {.lex_state = 128, .external_lex_state = 5}, + [3161] = {.lex_state = 7, .external_lex_state = 2}, [3162] = {.lex_state = 128, .external_lex_state = 5}, [3163] = {.lex_state = 128, .external_lex_state = 5}, - [3164] = {.lex_state = 7, .external_lex_state = 2}, - [3165] = {.lex_state = 7, .external_lex_state = 2}, - [3166] = {.lex_state = 7, .external_lex_state = 2}, - [3167] = {.lex_state = 128, .external_lex_state = 5}, + [3164] = {.lex_state = 128, .external_lex_state = 5}, + [3165] = {.lex_state = 128, .external_lex_state = 5}, + [3166] = {.lex_state = 128, .external_lex_state = 5}, + [3167] = {.lex_state = 7, .external_lex_state = 2}, [3168] = {.lex_state = 128, .external_lex_state = 5}, [3169] = {.lex_state = 128, .external_lex_state = 5}, - [3170] = {.lex_state = 20, .external_lex_state = 2}, + [3170] = {.lex_state = 128, .external_lex_state = 5}, [3171] = {.lex_state = 128, .external_lex_state = 5}, [3172] = {.lex_state = 128, .external_lex_state = 5}, - [3173] = {.lex_state = 128, .external_lex_state = 5}, + [3173] = {.lex_state = 128, .external_lex_state = 2}, [3174] = {.lex_state = 128, .external_lex_state = 5}, [3175] = {.lex_state = 128, .external_lex_state = 5}, [3176] = {.lex_state = 128, .external_lex_state = 5}, [3177] = {.lex_state = 128, .external_lex_state = 5}, [3178] = {.lex_state = 128, .external_lex_state = 5}, [3179] = {.lex_state = 128, .external_lex_state = 5}, - [3180] = {.lex_state = 128, .external_lex_state = 5}, - [3181] = {.lex_state = 128, .external_lex_state = 6}, - [3182] = {.lex_state = 18, .external_lex_state = 7}, - [3183] = {.lex_state = 128, .external_lex_state = 6}, + [3180] = {.lex_state = 128, .external_lex_state = 2}, + [3181] = {.lex_state = 128, .external_lex_state = 5}, + [3182] = {.lex_state = 128, .external_lex_state = 5}, + [3183] = {.lex_state = 128, .external_lex_state = 5}, [3184] = {.lex_state = 128, .external_lex_state = 5}, - [3185] = {.lex_state = 18, .external_lex_state = 7}, - [3186] = {.lex_state = 7, .external_lex_state = 6}, - [3187] = {.lex_state = 7, .external_lex_state = 6}, - [3188] = {.lex_state = 128, .external_lex_state = 5}, - [3189] = {.lex_state = 128, .external_lex_state = 5}, - [3190] = {.lex_state = 7, .external_lex_state = 6}, - [3191] = {.lex_state = 128, .external_lex_state = 6}, + [3185] = {.lex_state = 128, .external_lex_state = 5}, + [3186] = {.lex_state = 128, .external_lex_state = 6}, + [3187] = {.lex_state = 128, .external_lex_state = 5}, + [3188] = {.lex_state = 128, .external_lex_state = 6}, + [3189] = {.lex_state = 20, .external_lex_state = 2}, + [3190] = {.lex_state = 128, .external_lex_state = 5}, + [3191] = {.lex_state = 128, .external_lex_state = 5}, [3192] = {.lex_state = 128, .external_lex_state = 5}, [3193] = {.lex_state = 128, .external_lex_state = 5}, - [3194] = {.lex_state = 128, .external_lex_state = 5}, + [3194] = {.lex_state = 20, .external_lex_state = 2}, [3195] = {.lex_state = 128, .external_lex_state = 5}, - [3196] = {.lex_state = 128, .external_lex_state = 2}, + [3196] = {.lex_state = 128, .external_lex_state = 5}, [3197] = {.lex_state = 128, .external_lex_state = 5}, [3198] = {.lex_state = 128, .external_lex_state = 5}, - [3199] = {.lex_state = 18, .external_lex_state = 7}, + [3199] = {.lex_state = 20, .external_lex_state = 2}, [3200] = {.lex_state = 128, .external_lex_state = 5}, [3201] = {.lex_state = 128, .external_lex_state = 5}, [3202] = {.lex_state = 128, .external_lex_state = 5}, - [3203] = {.lex_state = 128, .external_lex_state = 5}, + [3203] = {.lex_state = 7, .external_lex_state = 2}, [3204] = {.lex_state = 128, .external_lex_state = 5}, - [3205] = {.lex_state = 7, .external_lex_state = 6}, + [3205] = {.lex_state = 128, .external_lex_state = 5}, [3206] = {.lex_state = 128, .external_lex_state = 5}, - [3207] = {.lex_state = 128, .external_lex_state = 5}, - [3208] = {.lex_state = 7, .external_lex_state = 6}, + [3207] = {.lex_state = 20, .external_lex_state = 2}, + [3208] = {.lex_state = 128, .external_lex_state = 5}, [3209] = {.lex_state = 128, .external_lex_state = 5}, - [3210] = {.lex_state = 128, .external_lex_state = 5}, + [3210] = {.lex_state = 128, .external_lex_state = 6}, [3211] = {.lex_state = 128, .external_lex_state = 5}, [3212] = {.lex_state = 7, .external_lex_state = 6}, [3213] = {.lex_state = 128, .external_lex_state = 5}, [3214] = {.lex_state = 128, .external_lex_state = 5}, [3215] = {.lex_state = 128, .external_lex_state = 5}, - [3216] = {.lex_state = 18, .external_lex_state = 7}, + [3216] = {.lex_state = 128, .external_lex_state = 5}, [3217] = {.lex_state = 128, .external_lex_state = 5}, - [3218] = {.lex_state = 128, .external_lex_state = 5}, + [3218] = {.lex_state = 128, .external_lex_state = 6}, [3219] = {.lex_state = 128, .external_lex_state = 5}, - [3220] = {.lex_state = 128, .external_lex_state = 6}, + [3220] = {.lex_state = 128, .external_lex_state = 5}, [3221] = {.lex_state = 128, .external_lex_state = 5}, - [3222] = {.lex_state = 128, .external_lex_state = 6}, + [3222] = {.lex_state = 128, .external_lex_state = 5}, [3223] = {.lex_state = 128, .external_lex_state = 5}, - [3224] = {.lex_state = 128, .external_lex_state = 6}, - [3225] = {.lex_state = 128, .external_lex_state = 6}, + [3224] = {.lex_state = 128, .external_lex_state = 5}, + [3225] = {.lex_state = 128, .external_lex_state = 5}, [3226] = {.lex_state = 128, .external_lex_state = 5}, [3227] = {.lex_state = 128, .external_lex_state = 5}, [3228] = {.lex_state = 128, .external_lex_state = 5}, - [3229] = {.lex_state = 128, .external_lex_state = 6}, - [3230] = {.lex_state = 128, .external_lex_state = 6}, + [3229] = {.lex_state = 128, .external_lex_state = 5}, + [3230] = {.lex_state = 128, .external_lex_state = 5}, [3231] = {.lex_state = 128, .external_lex_state = 5}, [3232] = {.lex_state = 128, .external_lex_state = 5}, - [3233] = {.lex_state = 128, .external_lex_state = 5}, - [3234] = {.lex_state = 7, .external_lex_state = 6}, - [3235] = {.lex_state = 128, .external_lex_state = 5}, - [3236] = {.lex_state = 128, .external_lex_state = 5}, - [3237] = {.lex_state = 7, .external_lex_state = 6}, - [3238] = {.lex_state = 18, .external_lex_state = 7}, - [3239] = {.lex_state = 128, .external_lex_state = 5}, - [3240] = {.lex_state = 128, .external_lex_state = 5}, - [3241] = {.lex_state = 128, .external_lex_state = 5}, - [3242] = {.lex_state = 128, .external_lex_state = 5}, + [3233] = {.lex_state = 7, .external_lex_state = 6}, + [3234] = {.lex_state = 128, .external_lex_state = 5}, + [3235] = {.lex_state = 7, .external_lex_state = 6}, + [3236] = {.lex_state = 128, .external_lex_state = 6}, + [3237] = {.lex_state = 128, .external_lex_state = 6}, + [3238] = {.lex_state = 128, .external_lex_state = 6}, + [3239] = {.lex_state = 128, .external_lex_state = 6}, + [3240] = {.lex_state = 128, .external_lex_state = 6}, + [3241] = {.lex_state = 128, .external_lex_state = 6}, + [3242] = {.lex_state = 128, .external_lex_state = 6}, [3243] = {.lex_state = 128, .external_lex_state = 5}, [3244] = {.lex_state = 128, .external_lex_state = 5}, - [3245] = {.lex_state = 128, .external_lex_state = 5}, - [3246] = {.lex_state = 128, .external_lex_state = 5}, - [3247] = {.lex_state = 18, .external_lex_state = 7}, - [3248] = {.lex_state = 128, .external_lex_state = 5}, - [3249] = {.lex_state = 128, .external_lex_state = 5}, - [3250] = {.lex_state = 128, .external_lex_state = 5}, - [3251] = {.lex_state = 18, .external_lex_state = 7}, + [3245] = {.lex_state = 7, .external_lex_state = 6}, + [3246] = {.lex_state = 128, .external_lex_state = 6}, + [3247] = {.lex_state = 128, .external_lex_state = 6}, + [3248] = {.lex_state = 18, .external_lex_state = 7}, + [3249] = {.lex_state = 7, .external_lex_state = 6}, + [3250] = {.lex_state = 7, .external_lex_state = 6}, + [3251] = {.lex_state = 128, .external_lex_state = 2}, [3252] = {.lex_state = 18, .external_lex_state = 7}, - [3253] = {.lex_state = 128, .external_lex_state = 5}, + [3253] = {.lex_state = 7, .external_lex_state = 6}, [3254] = {.lex_state = 128, .external_lex_state = 2}, [3255] = {.lex_state = 128, .external_lex_state = 5}, [3256] = {.lex_state = 128, .external_lex_state = 5}, - [3257] = {.lex_state = 128, .external_lex_state = 5}, - [3258] = {.lex_state = 128, .external_lex_state = 2}, - [3259] = {.lex_state = 128, .external_lex_state = 2}, - [3260] = {.lex_state = 128, .external_lex_state = 2}, - [3261] = {.lex_state = 128, .external_lex_state = 6}, - [3262] = {.lex_state = 128, .external_lex_state = 2}, - [3263] = {.lex_state = 128, .external_lex_state = 2}, - [3264] = {.lex_state = 20, .external_lex_state = 2}, - [3265] = {.lex_state = 20, .external_lex_state = 2}, + [3257] = {.lex_state = 18, .external_lex_state = 7}, + [3258] = {.lex_state = 128, .external_lex_state = 5}, + [3259] = {.lex_state = 18, .external_lex_state = 7}, + [3260] = {.lex_state = 128, .external_lex_state = 5}, + [3261] = {.lex_state = 128, .external_lex_state = 5}, + [3262] = {.lex_state = 128, .external_lex_state = 5}, + [3263] = {.lex_state = 128, .external_lex_state = 5}, + [3264] = {.lex_state = 128, .external_lex_state = 5}, + [3265] = {.lex_state = 7, .external_lex_state = 6}, [3266] = {.lex_state = 128, .external_lex_state = 5}, [3267] = {.lex_state = 128, .external_lex_state = 5}, [3268] = {.lex_state = 128, .external_lex_state = 5}, - [3269] = {.lex_state = 128, .external_lex_state = 2}, - [3270] = {.lex_state = 128, .external_lex_state = 2}, + [3269] = {.lex_state = 128, .external_lex_state = 5}, + [3270] = {.lex_state = 128, .external_lex_state = 5}, [3271] = {.lex_state = 128, .external_lex_state = 5}, - [3272] = {.lex_state = 20, .external_lex_state = 2}, - [3273] = {.lex_state = 18, .external_lex_state = 7}, - [3274] = {.lex_state = 128, .external_lex_state = 2}, - [3275] = {.lex_state = 128, .external_lex_state = 6}, - [3276] = {.lex_state = 128, .external_lex_state = 2}, - [3277] = {.lex_state = 128, .external_lex_state = 2}, - [3278] = {.lex_state = 128, .external_lex_state = 2}, + [3272] = {.lex_state = 128, .external_lex_state = 5}, + [3273] = {.lex_state = 128, .external_lex_state = 5}, + [3274] = {.lex_state = 18, .external_lex_state = 7}, + [3275] = {.lex_state = 128, .external_lex_state = 5}, + [3276] = {.lex_state = 128, .external_lex_state = 5}, + [3277] = {.lex_state = 128, .external_lex_state = 5}, + [3278] = {.lex_state = 128, .external_lex_state = 5}, [3279] = {.lex_state = 128, .external_lex_state = 5}, - [3280] = {.lex_state = 128, .external_lex_state = 6}, - [3281] = {.lex_state = 128, .external_lex_state = 2}, - [3282] = {.lex_state = 128, .external_lex_state = 2}, - [3283] = {.lex_state = 128, .external_lex_state = 2}, - [3284] = {.lex_state = 128, .external_lex_state = 6}, - [3285] = {.lex_state = 128, .external_lex_state = 6}, + [3280] = {.lex_state = 128, .external_lex_state = 5}, + [3281] = {.lex_state = 128, .external_lex_state = 5}, + [3282] = {.lex_state = 128, .external_lex_state = 5}, + [3283] = {.lex_state = 128, .external_lex_state = 5}, + [3284] = {.lex_state = 18, .external_lex_state = 7}, + [3285] = {.lex_state = 18, .external_lex_state = 7}, [3286] = {.lex_state = 128, .external_lex_state = 6}, - [3287] = {.lex_state = 128, .external_lex_state = 6}, - [3288] = {.lex_state = 128, .external_lex_state = 2}, - [3289] = {.lex_state = 128, .external_lex_state = 2}, + [3287] = {.lex_state = 18, .external_lex_state = 7}, + [3288] = {.lex_state = 128, .external_lex_state = 5}, + [3289] = {.lex_state = 128, .external_lex_state = 5}, [3290] = {.lex_state = 128, .external_lex_state = 5}, [3291] = {.lex_state = 128, .external_lex_state = 2}, [3292] = {.lex_state = 128, .external_lex_state = 6}, - [3293] = {.lex_state = 20, .external_lex_state = 2}, + [3293] = {.lex_state = 128, .external_lex_state = 6}, [3294] = {.lex_state = 128, .external_lex_state = 2}, - [3295] = {.lex_state = 128, .external_lex_state = 5}, - [3296] = {.lex_state = 128, .external_lex_state = 6}, - [3297] = {.lex_state = 128, .external_lex_state = 5}, - [3298] = {.lex_state = 128, .external_lex_state = 5}, - [3299] = {.lex_state = 20, .external_lex_state = 2}, + [3295] = {.lex_state = 128, .external_lex_state = 6}, + [3296] = {.lex_state = 128, .external_lex_state = 2}, + [3297] = {.lex_state = 128, .external_lex_state = 2}, + [3298] = {.lex_state = 128, .external_lex_state = 2}, + [3299] = {.lex_state = 128, .external_lex_state = 2}, [3300] = {.lex_state = 128, .external_lex_state = 2}, - [3301] = {.lex_state = 128, .external_lex_state = 5}, - [3302] = {.lex_state = 128, .external_lex_state = 5}, - [3303] = {.lex_state = 128, .external_lex_state = 5}, - [3304] = {.lex_state = 20, .external_lex_state = 2}, - [3305] = {.lex_state = 128, .external_lex_state = 5}, - [3306] = {.lex_state = 128, .external_lex_state = 6}, - [3307] = {.lex_state = 20, .external_lex_state = 2}, + [3301] = {.lex_state = 128, .external_lex_state = 2}, + [3302] = {.lex_state = 20, .external_lex_state = 2}, + [3303] = {.lex_state = 128, .external_lex_state = 2}, + [3304] = {.lex_state = 128, .external_lex_state = 5}, + [3305] = {.lex_state = 128, .external_lex_state = 6}, + [3306] = {.lex_state = 20, .external_lex_state = 2}, + [3307] = {.lex_state = 128, .external_lex_state = 2}, [3308] = {.lex_state = 20, .external_lex_state = 2}, - [3309] = {.lex_state = 20, .external_lex_state = 2}, - [3310] = {.lex_state = 20, .external_lex_state = 2}, - [3311] = {.lex_state = 20, .external_lex_state = 2}, - [3312] = {.lex_state = 128, .external_lex_state = 5}, - [3313] = {.lex_state = 20, .external_lex_state = 2}, - [3314] = {.lex_state = 20, .external_lex_state = 2}, - [3315] = {.lex_state = 128, .external_lex_state = 5}, - [3316] = {.lex_state = 20, .external_lex_state = 2}, - [3317] = {.lex_state = 128, .external_lex_state = 2}, - [3318] = {.lex_state = 20, .external_lex_state = 2}, - [3319] = {.lex_state = 128, .external_lex_state = 5}, - [3320] = {.lex_state = 128, .external_lex_state = 5}, - [3321] = {.lex_state = 128, .external_lex_state = 6}, + [3309] = {.lex_state = 128, .external_lex_state = 5}, + [3310] = {.lex_state = 128, .external_lex_state = 5}, + [3311] = {.lex_state = 128, .external_lex_state = 5}, + [3312] = {.lex_state = 128, .external_lex_state = 2}, + [3313] = {.lex_state = 128, .external_lex_state = 2}, + [3314] = {.lex_state = 128, .external_lex_state = 6}, + [3315] = {.lex_state = 20, .external_lex_state = 2}, + [3316] = {.lex_state = 128, .external_lex_state = 2}, + [3317] = {.lex_state = 128, .external_lex_state = 6}, + [3318] = {.lex_state = 128, .external_lex_state = 5}, + [3319] = {.lex_state = 18, .external_lex_state = 7}, + [3320] = {.lex_state = 128, .external_lex_state = 6}, + [3321] = {.lex_state = 128, .external_lex_state = 2}, [3322] = {.lex_state = 128, .external_lex_state = 2}, - [3323] = {.lex_state = 128, .external_lex_state = 6}, - [3324] = {.lex_state = 128, .external_lex_state = 2}, - [3325] = {.lex_state = 128, .external_lex_state = 6}, - [3326] = {.lex_state = 128, .external_lex_state = 6}, - [3327] = {.lex_state = 20, .external_lex_state = 2}, + [3323] = {.lex_state = 128, .external_lex_state = 2}, + [3324] = {.lex_state = 128, .external_lex_state = 6}, + [3325] = {.lex_state = 128, .external_lex_state = 5}, + [3326] = {.lex_state = 128, .external_lex_state = 2}, + [3327] = {.lex_state = 128, .external_lex_state = 2}, [3328] = {.lex_state = 128, .external_lex_state = 2}, - [3329] = {.lex_state = 128, .external_lex_state = 6}, + [3329] = {.lex_state = 128, .external_lex_state = 5}, [3330] = {.lex_state = 128, .external_lex_state = 6}, - [3331] = {.lex_state = 20, .external_lex_state = 2}, - [3332] = {.lex_state = 128, .external_lex_state = 2}, - [3333] = {.lex_state = 128, .external_lex_state = 5}, - [3334] = {.lex_state = 128, .external_lex_state = 6}, - [3335] = {.lex_state = 128, .external_lex_state = 2}, - [3336] = {.lex_state = 128, .external_lex_state = 5}, - [3337] = {.lex_state = 20, .external_lex_state = 2}, - [3338] = {.lex_state = 128, .external_lex_state = 6}, + [3331] = {.lex_state = 128, .external_lex_state = 5}, + [3332] = {.lex_state = 128, .external_lex_state = 6}, + [3333] = {.lex_state = 128, .external_lex_state = 2}, + [3334] = {.lex_state = 20, .external_lex_state = 2}, + [3335] = {.lex_state = 20, .external_lex_state = 2}, + [3336] = {.lex_state = 128, .external_lex_state = 6}, + [3337] = {.lex_state = 128, .external_lex_state = 6}, + [3338] = {.lex_state = 128, .external_lex_state = 2}, [3339] = {.lex_state = 20, .external_lex_state = 2}, - [3340] = {.lex_state = 20, .external_lex_state = 2}, - [3341] = {.lex_state = 20, .external_lex_state = 2}, + [3340] = {.lex_state = 128, .external_lex_state = 6}, + [3341] = {.lex_state = 128, .external_lex_state = 6}, [3342] = {.lex_state = 128, .external_lex_state = 5}, [3343] = {.lex_state = 128, .external_lex_state = 6}, - [3344] = {.lex_state = 128, .external_lex_state = 2}, + [3344] = {.lex_state = 20, .external_lex_state = 2}, [3345] = {.lex_state = 20, .external_lex_state = 2}, - [3346] = {.lex_state = 128, .external_lex_state = 6}, - [3347] = {.lex_state = 128, .external_lex_state = 2}, - [3348] = {.lex_state = 20, .external_lex_state = 2}, - [3349] = {.lex_state = 20, .external_lex_state = 2}, - [3350] = {.lex_state = 20, .external_lex_state = 2}, + [3346] = {.lex_state = 128, .external_lex_state = 2}, + [3347] = {.lex_state = 128, .external_lex_state = 5}, + [3348] = {.lex_state = 128, .external_lex_state = 6}, + [3349] = {.lex_state = 128, .external_lex_state = 2}, + [3350] = {.lex_state = 128, .external_lex_state = 6}, [3351] = {.lex_state = 128, .external_lex_state = 6}, - [3352] = {.lex_state = 128, .external_lex_state = 6}, - [3353] = {.lex_state = 128, .external_lex_state = 6}, - [3354] = {.lex_state = 128, .external_lex_state = 6}, - [3355] = {.lex_state = 128, .external_lex_state = 6}, - [3356] = {.lex_state = 128, .external_lex_state = 6}, + [3352] = {.lex_state = 20, .external_lex_state = 2}, + [3353] = {.lex_state = 20, .external_lex_state = 2}, + [3354] = {.lex_state = 20, .external_lex_state = 2}, + [3355] = {.lex_state = 128, .external_lex_state = 5}, + [3356] = {.lex_state = 128, .external_lex_state = 2}, [3357] = {.lex_state = 128, .external_lex_state = 6}, [3358] = {.lex_state = 128, .external_lex_state = 6}, [3359] = {.lex_state = 128, .external_lex_state = 6}, - [3360] = {.lex_state = 128, .external_lex_state = 6}, - [3361] = {.lex_state = 128, .external_lex_state = 2}, - [3362] = {.lex_state = 128, .external_lex_state = 6}, - [3363] = {.lex_state = 20, .external_lex_state = 2}, - [3364] = {.lex_state = 20, .external_lex_state = 2}, - [3365] = {.lex_state = 20, .external_lex_state = 2}, - [3366] = {.lex_state = 128, .external_lex_state = 5}, - [3367] = {.lex_state = 128, .external_lex_state = 5}, - [3368] = {.lex_state = 128, .external_lex_state = 2}, - [3369] = {.lex_state = 20, .external_lex_state = 2}, - [3370] = {.lex_state = 20, .external_lex_state = 2}, + [3360] = {.lex_state = 128, .external_lex_state = 5}, + [3361] = {.lex_state = 128, .external_lex_state = 5}, + [3362] = {.lex_state = 128, .external_lex_state = 5}, + [3363] = {.lex_state = 128, .external_lex_state = 5}, + [3364] = {.lex_state = 128, .external_lex_state = 6}, + [3365] = {.lex_state = 128, .external_lex_state = 5}, + [3366] = {.lex_state = 128, .external_lex_state = 6}, + [3367] = {.lex_state = 128, .external_lex_state = 2}, + [3368] = {.lex_state = 128, .external_lex_state = 5}, + [3369] = {.lex_state = 128, .external_lex_state = 5}, + [3370] = {.lex_state = 128, .external_lex_state = 6}, [3371] = {.lex_state = 128, .external_lex_state = 6}, [3372] = {.lex_state = 128, .external_lex_state = 5}, - [3373] = {.lex_state = 20, .external_lex_state = 2}, - [3374] = {.lex_state = 128, .external_lex_state = 2}, - [3375] = {.lex_state = 128, .external_lex_state = 5}, - [3376] = {.lex_state = 128, .external_lex_state = 2}, + [3373] = {.lex_state = 128, .external_lex_state = 6}, + [3374] = {.lex_state = 128, .external_lex_state = 5}, + [3375] = {.lex_state = 128, .external_lex_state = 6}, + [3376] = {.lex_state = 128, .external_lex_state = 6}, [3377] = {.lex_state = 128, .external_lex_state = 2}, [3378] = {.lex_state = 128, .external_lex_state = 5}, [3379] = {.lex_state = 128, .external_lex_state = 5}, - [3380] = {.lex_state = 128, .external_lex_state = 5}, - [3381] = {.lex_state = 128, .external_lex_state = 6}, - [3382] = {.lex_state = 128, .external_lex_state = 6}, - [3383] = {.lex_state = 128, .external_lex_state = 5}, - [3384] = {.lex_state = 20, .external_lex_state = 2}, - [3385] = {.lex_state = 128, .external_lex_state = 2}, - [3386] = {.lex_state = 128, .external_lex_state = 5}, - [3387] = {.lex_state = 128, .external_lex_state = 2}, + [3380] = {.lex_state = 128, .external_lex_state = 6}, + [3381] = {.lex_state = 20, .external_lex_state = 2}, + [3382] = {.lex_state = 128, .external_lex_state = 2}, + [3383] = {.lex_state = 128, .external_lex_state = 6}, + [3384] = {.lex_state = 128, .external_lex_state = 6}, + [3385] = {.lex_state = 128, .external_lex_state = 6}, + [3386] = {.lex_state = 20, .external_lex_state = 2}, + [3387] = {.lex_state = 128, .external_lex_state = 5}, [3388] = {.lex_state = 128, .external_lex_state = 2}, [3389] = {.lex_state = 128, .external_lex_state = 6}, - [3390] = {.lex_state = 128, .external_lex_state = 2}, - [3391] = {.lex_state = 128, .external_lex_state = 2}, - [3392] = {.lex_state = 128, .external_lex_state = 6}, - [3393] = {.lex_state = 128, .external_lex_state = 2}, - [3394] = {.lex_state = 128, .external_lex_state = 5}, + [3390] = {.lex_state = 128, .external_lex_state = 6}, + [3391] = {.lex_state = 20, .external_lex_state = 2}, + [3392] = {.lex_state = 20, .external_lex_state = 2}, + [3393] = {.lex_state = 128, .external_lex_state = 6}, + [3394] = {.lex_state = 20, .external_lex_state = 2}, [3395] = {.lex_state = 20, .external_lex_state = 2}, - [3396] = {.lex_state = 128, .external_lex_state = 6}, - [3397] = {.lex_state = 20, .external_lex_state = 2}, + [3396] = {.lex_state = 128, .external_lex_state = 5}, + [3397] = {.lex_state = 128, .external_lex_state = 6}, [3398] = {.lex_state = 128, .external_lex_state = 6}, - [3399] = {.lex_state = 128, .external_lex_state = 5}, - [3400] = {.lex_state = 128, .external_lex_state = 2}, - [3401] = {.lex_state = 128, .external_lex_state = 5}, - [3402] = {.lex_state = 128, .external_lex_state = 5}, - [3403] = {.lex_state = 128, .external_lex_state = 6}, - [3404] = {.lex_state = 128, .external_lex_state = 6}, - [3405] = {.lex_state = 128, .external_lex_state = 6}, + [3399] = {.lex_state = 128, .external_lex_state = 2}, + [3400] = {.lex_state = 128, .external_lex_state = 5}, + [3401] = {.lex_state = 128, .external_lex_state = 2}, + [3402] = {.lex_state = 128, .external_lex_state = 2}, + [3403] = {.lex_state = 20, .external_lex_state = 2}, + [3404] = {.lex_state = 20, .external_lex_state = 2}, + [3405] = {.lex_state = 128, .external_lex_state = 5}, [3406] = {.lex_state = 128, .external_lex_state = 5}, - [3407] = {.lex_state = 128, .external_lex_state = 6}, - [3408] = {.lex_state = 128, .external_lex_state = 5}, - [3409] = {.lex_state = 128, .external_lex_state = 2}, - [3410] = {.lex_state = 20, .external_lex_state = 2}, - [3411] = {.lex_state = 128, .external_lex_state = 6}, - [3412] = {.lex_state = 20, .external_lex_state = 2}, - [3413] = {.lex_state = 128, .external_lex_state = 2}, + [3407] = {.lex_state = 20, .external_lex_state = 2}, + [3408] = {.lex_state = 128, .external_lex_state = 6}, + [3409] = {.lex_state = 128, .external_lex_state = 5}, + [3410] = {.lex_state = 128, .external_lex_state = 2}, + [3411] = {.lex_state = 128, .external_lex_state = 5}, + [3412] = {.lex_state = 128, .external_lex_state = 2}, + [3413] = {.lex_state = 128, .external_lex_state = 5}, [3414] = {.lex_state = 128, .external_lex_state = 6}, - [3415] = {.lex_state = 128, .external_lex_state = 6}, - [3416] = {.lex_state = 128, .external_lex_state = 6}, - [3417] = {.lex_state = 128, .external_lex_state = 5}, - [3418] = {.lex_state = 128, .external_lex_state = 6}, - [3419] = {.lex_state = 128, .external_lex_state = 5}, - [3420] = {.lex_state = 128, .external_lex_state = 6}, + [3415] = {.lex_state = 128, .external_lex_state = 2}, + [3416] = {.lex_state = 128, .external_lex_state = 5}, + [3417] = {.lex_state = 128, .external_lex_state = 2}, + [3418] = {.lex_state = 20, .external_lex_state = 2}, + [3419] = {.lex_state = 20, .external_lex_state = 2}, + [3420] = {.lex_state = 128, .external_lex_state = 2}, [3421] = {.lex_state = 128, .external_lex_state = 5}, [3422] = {.lex_state = 128, .external_lex_state = 2}, - [3423] = {.lex_state = 128, .external_lex_state = 5}, - [3424] = {.lex_state = 128, .external_lex_state = 6}, + [3423] = {.lex_state = 20, .external_lex_state = 2}, + [3424] = {.lex_state = 128, .external_lex_state = 2}, [3425] = {.lex_state = 128, .external_lex_state = 6}, [3426] = {.lex_state = 128, .external_lex_state = 6}, - [3427] = {.lex_state = 128, .external_lex_state = 6}, - [3428] = {.lex_state = 20, .external_lex_state = 2}, - [3429] = {.lex_state = 128, .external_lex_state = 2}, - [3430] = {.lex_state = 128, .external_lex_state = 5}, - [3431] = {.lex_state = 128, .external_lex_state = 5}, - [3432] = {.lex_state = 128, .external_lex_state = 5}, - [3433] = {.lex_state = 128, .external_lex_state = 5}, + [3427] = {.lex_state = 128, .external_lex_state = 5}, + [3428] = {.lex_state = 128, .external_lex_state = 2}, + [3429] = {.lex_state = 128, .external_lex_state = 5}, + [3430] = {.lex_state = 128, .external_lex_state = 6}, + [3431] = {.lex_state = 20, .external_lex_state = 2}, + [3432] = {.lex_state = 128, .external_lex_state = 2}, + [3433] = {.lex_state = 128, .external_lex_state = 2}, [3434] = {.lex_state = 20, .external_lex_state = 2}, [3435] = {.lex_state = 128, .external_lex_state = 5}, [3436] = {.lex_state = 128, .external_lex_state = 5}, - [3437] = {.lex_state = 128, .external_lex_state = 5}, - [3438] = {.lex_state = 20, .external_lex_state = 2}, - [3439] = {.lex_state = 128, .external_lex_state = 5}, - [3440] = {.lex_state = 128, .external_lex_state = 6}, - [3441] = {.lex_state = 128, .external_lex_state = 6}, - [3442] = {.lex_state = 128, .external_lex_state = 6}, + [3437] = {.lex_state = 128, .external_lex_state = 2}, + [3438] = {.lex_state = 128, .external_lex_state = 6}, + [3439] = {.lex_state = 128, .external_lex_state = 6}, + [3440] = {.lex_state = 128, .external_lex_state = 5}, + [3441] = {.lex_state = 128, .external_lex_state = 5}, + [3442] = {.lex_state = 128, .external_lex_state = 5}, [3443] = {.lex_state = 128, .external_lex_state = 6}, - [3444] = {.lex_state = 128, .external_lex_state = 5}, + [3444] = {.lex_state = 128, .external_lex_state = 2}, [3445] = {.lex_state = 128, .external_lex_state = 5}, [3446] = {.lex_state = 128, .external_lex_state = 6}, - [3447] = {.lex_state = 128, .external_lex_state = 2}, + [3447] = {.lex_state = 128, .external_lex_state = 5}, [3448] = {.lex_state = 128, .external_lex_state = 6}, - [3449] = {.lex_state = 128, .external_lex_state = 6}, + [3449] = {.lex_state = 20, .external_lex_state = 2}, [3450] = {.lex_state = 128, .external_lex_state = 6}, [3451] = {.lex_state = 128, .external_lex_state = 5}, [3452] = {.lex_state = 128, .external_lex_state = 5}, - [3453] = {.lex_state = 128, .external_lex_state = 2}, - [3454] = {.lex_state = 128, .external_lex_state = 5}, - [3455] = {.lex_state = 128, .external_lex_state = 5}, - [3456] = {.lex_state = 128, .external_lex_state = 6}, - [3457] = {.lex_state = 128, .external_lex_state = 2}, - [3458] = {.lex_state = 20, .external_lex_state = 2}, - [3459] = {.lex_state = 128, .external_lex_state = 2}, - [3460] = {.lex_state = 128, .external_lex_state = 2}, - [3461] = {.lex_state = 128, .external_lex_state = 2}, - [3462] = {.lex_state = 128, .external_lex_state = 2}, - [3463] = {.lex_state = 128, .external_lex_state = 6}, - [3464] = {.lex_state = 128, .external_lex_state = 2}, - [3465] = {.lex_state = 128, .external_lex_state = 2}, + [3453] = {.lex_state = 128, .external_lex_state = 6}, + [3454] = {.lex_state = 128, .external_lex_state = 6}, + [3455] = {.lex_state = 128, .external_lex_state = 6}, + [3456] = {.lex_state = 128, .external_lex_state = 5}, + [3457] = {.lex_state = 20, .external_lex_state = 2}, + [3458] = {.lex_state = 128, .external_lex_state = 6}, + [3459] = {.lex_state = 128, .external_lex_state = 6}, + [3460] = {.lex_state = 20, .external_lex_state = 2}, + [3461] = {.lex_state = 128, .external_lex_state = 5}, + [3462] = {.lex_state = 128, .external_lex_state = 6}, + [3463] = {.lex_state = 128, .external_lex_state = 5}, + [3464] = {.lex_state = 128, .external_lex_state = 6}, + [3465] = {.lex_state = 128, .external_lex_state = 5}, [3466] = {.lex_state = 128, .external_lex_state = 5}, - [3467] = {.lex_state = 128, .external_lex_state = 5}, - [3468] = {.lex_state = 20, .external_lex_state = 2}, - [3469] = {.lex_state = 128, .external_lex_state = 5}, + [3467] = {.lex_state = 128, .external_lex_state = 6}, + [3468] = {.lex_state = 128, .external_lex_state = 5}, + [3469] = {.lex_state = 128, .external_lex_state = 2}, [3470] = {.lex_state = 128, .external_lex_state = 6}, - [3471] = {.lex_state = 128, .external_lex_state = 2}, - [3472] = {.lex_state = 128, .external_lex_state = 6}, - [3473] = {.lex_state = 128, .external_lex_state = 5}, - [3474] = {.lex_state = 128, .external_lex_state = 2}, - [3475] = {.lex_state = 20, .external_lex_state = 2}, + [3471] = {.lex_state = 128, .external_lex_state = 6}, + [3472] = {.lex_state = 128, .external_lex_state = 2}, + [3473] = {.lex_state = 20, .external_lex_state = 2}, + [3474] = {.lex_state = 20, .external_lex_state = 2}, + [3475] = {.lex_state = 128, .external_lex_state = 5}, [3476] = {.lex_state = 128, .external_lex_state = 2}, - [3477] = {.lex_state = 11, .external_lex_state = 2}, - [3478] = {.lex_state = 128, .external_lex_state = 2}, - [3479] = {.lex_state = 128, .external_lex_state = 2}, - [3480] = {.lex_state = 128, .external_lex_state = 5}, - [3481] = {.lex_state = 128, .external_lex_state = 2}, - [3482] = {.lex_state = 128, .external_lex_state = 6}, - [3483] = {.lex_state = 128, .external_lex_state = 2}, + [3477] = {.lex_state = 128, .external_lex_state = 2}, + [3478] = {.lex_state = 128, .external_lex_state = 5}, + [3479] = {.lex_state = 128, .external_lex_state = 5}, + [3480] = {.lex_state = 128, .external_lex_state = 6}, + [3481] = {.lex_state = 128, .external_lex_state = 5}, + [3482] = {.lex_state = 128, .external_lex_state = 2}, + [3483] = {.lex_state = 128, .external_lex_state = 6}, [3484] = {.lex_state = 128, .external_lex_state = 2}, - [3485] = {.lex_state = 18, .external_lex_state = 8}, - [3486] = {.lex_state = 20, .external_lex_state = 2}, - [3487] = {.lex_state = 128, .external_lex_state = 2}, + [3485] = {.lex_state = 128, .external_lex_state = 5}, + [3486] = {.lex_state = 128, .external_lex_state = 5}, + [3487] = {.lex_state = 128, .external_lex_state = 5}, [3488] = {.lex_state = 20, .external_lex_state = 2}, [3489] = {.lex_state = 20, .external_lex_state = 2}, - [3490] = {.lex_state = 7, .external_lex_state = 2}, + [3490] = {.lex_state = 20, .external_lex_state = 2}, [3491] = {.lex_state = 128, .external_lex_state = 2}, - [3492] = {.lex_state = 7, .external_lex_state = 2}, - [3493] = {.lex_state = 7, .external_lex_state = 2}, - [3494] = {.lex_state = 18, .external_lex_state = 8}, - [3495] = {.lex_state = 18, .external_lex_state = 8}, - [3496] = {.lex_state = 20, .external_lex_state = 2}, + [3492] = {.lex_state = 128, .external_lex_state = 5}, + [3493] = {.lex_state = 128, .external_lex_state = 2}, + [3494] = {.lex_state = 20, .external_lex_state = 2}, + [3495] = {.lex_state = 20, .external_lex_state = 2}, + [3496] = {.lex_state = 128, .external_lex_state = 2}, [3497] = {.lex_state = 20, .external_lex_state = 2}, - [3498] = {.lex_state = 128, .external_lex_state = 2}, - [3499] = {.lex_state = 18, .external_lex_state = 8}, - [3500] = {.lex_state = 11, .external_lex_state = 2}, - [3501] = {.lex_state = 128, .external_lex_state = 2}, - [3502] = {.lex_state = 128, .external_lex_state = 5}, - [3503] = {.lex_state = 128, .external_lex_state = 2}, - [3504] = {.lex_state = 128, .external_lex_state = 5}, + [3498] = {.lex_state = 20, .external_lex_state = 2}, + [3499] = {.lex_state = 20, .external_lex_state = 2}, + [3500] = {.lex_state = 128, .external_lex_state = 2}, + [3501] = {.lex_state = 20, .external_lex_state = 2}, + [3502] = {.lex_state = 20, .external_lex_state = 2}, + [3503] = {.lex_state = 128, .external_lex_state = 6}, + [3504] = {.lex_state = 128, .external_lex_state = 2}, [3505] = {.lex_state = 128, .external_lex_state = 2}, [3506] = {.lex_state = 18, .external_lex_state = 8}, - [3507] = {.lex_state = 18, .external_lex_state = 8}, - [3508] = {.lex_state = 18, .external_lex_state = 8}, + [3507] = {.lex_state = 20, .external_lex_state = 2}, + [3508] = {.lex_state = 20, .external_lex_state = 2}, [3509] = {.lex_state = 128, .external_lex_state = 2}, [3510] = {.lex_state = 18, .external_lex_state = 8}, [3511] = {.lex_state = 128, .external_lex_state = 2}, - [3512] = {.lex_state = 20, .external_lex_state = 2}, + [3512] = {.lex_state = 18, .external_lex_state = 8}, [3513] = {.lex_state = 20, .external_lex_state = 2}, [3514] = {.lex_state = 128, .external_lex_state = 2}, - [3515] = {.lex_state = 20, .external_lex_state = 2}, - [3516] = {.lex_state = 128, .external_lex_state = 5}, - [3517] = {.lex_state = 128, .external_lex_state = 5}, + [3515] = {.lex_state = 18, .external_lex_state = 8}, + [3516] = {.lex_state = 18, .external_lex_state = 8}, + [3517] = {.lex_state = 18, .external_lex_state = 8}, [3518] = {.lex_state = 128, .external_lex_state = 5}, - [3519] = {.lex_state = 20, .external_lex_state = 2}, - [3520] = {.lex_state = 20, .external_lex_state = 2}, - [3521] = {.lex_state = 128, .external_lex_state = 5}, - [3522] = {.lex_state = 128, .external_lex_state = 2}, - [3523] = {.lex_state = 128, .external_lex_state = 2}, - [3524] = {.lex_state = 128, .external_lex_state = 5}, - [3525] = {.lex_state = 128, .external_lex_state = 2}, - [3526] = {.lex_state = 128, .external_lex_state = 2}, + [3519] = {.lex_state = 18, .external_lex_state = 8}, + [3520] = {.lex_state = 18, .external_lex_state = 8}, + [3521] = {.lex_state = 128, .external_lex_state = 2}, + [3522] = {.lex_state = 20, .external_lex_state = 2}, + [3523] = {.lex_state = 20, .external_lex_state = 2}, + [3524] = {.lex_state = 128, .external_lex_state = 2}, + [3525] = {.lex_state = 128, .external_lex_state = 6}, + [3526] = {.lex_state = 11, .external_lex_state = 2}, [3527] = {.lex_state = 128, .external_lex_state = 2}, [3528] = {.lex_state = 128, .external_lex_state = 2}, [3529] = {.lex_state = 128, .external_lex_state = 5}, [3530] = {.lex_state = 128, .external_lex_state = 5}, - [3531] = {.lex_state = 128, .external_lex_state = 5}, - [3532] = {.lex_state = 128, .external_lex_state = 5}, - [3533] = {.lex_state = 128, .external_lex_state = 5}, - [3534] = {.lex_state = 128, .external_lex_state = 5}, - [3535] = {.lex_state = 128, .external_lex_state = 5}, + [3531] = {.lex_state = 128, .external_lex_state = 2}, + [3532] = {.lex_state = 20, .external_lex_state = 2}, + [3533] = {.lex_state = 20, .external_lex_state = 2}, + [3534] = {.lex_state = 20, .external_lex_state = 2}, + [3535] = {.lex_state = 128, .external_lex_state = 2}, [3536] = {.lex_state = 128, .external_lex_state = 2}, - [3537] = {.lex_state = 128, .external_lex_state = 5}, - [3538] = {.lex_state = 128, .external_lex_state = 5}, - [3539] = {.lex_state = 128, .external_lex_state = 5}, - [3540] = {.lex_state = 128, .external_lex_state = 5}, - [3541] = {.lex_state = 128, .external_lex_state = 2}, - [3542] = {.lex_state = 128, .external_lex_state = 5}, - [3543] = {.lex_state = 128, .external_lex_state = 5}, - [3544] = {.lex_state = 128, .external_lex_state = 5}, - [3545] = {.lex_state = 128, .external_lex_state = 5}, + [3537] = {.lex_state = 128, .external_lex_state = 2}, + [3538] = {.lex_state = 128, .external_lex_state = 2}, + [3539] = {.lex_state = 128, .external_lex_state = 2}, + [3540] = {.lex_state = 7, .external_lex_state = 2}, + [3541] = {.lex_state = 7, .external_lex_state = 2}, + [3542] = {.lex_state = 7, .external_lex_state = 2}, + [3543] = {.lex_state = 11, .external_lex_state = 2}, + [3544] = {.lex_state = 20, .external_lex_state = 2}, + [3545] = {.lex_state = 20, .external_lex_state = 2}, [3546] = {.lex_state = 128, .external_lex_state = 5}, [3547] = {.lex_state = 128, .external_lex_state = 5}, [3548] = {.lex_state = 128, .external_lex_state = 5}, - [3549] = {.lex_state = 128, .external_lex_state = 5}, - [3550] = {.lex_state = 128, .external_lex_state = 5}, + [3549] = {.lex_state = 20, .external_lex_state = 2}, + [3550] = {.lex_state = 128, .external_lex_state = 2}, [3551] = {.lex_state = 128, .external_lex_state = 2}, - [3552] = {.lex_state = 20, .external_lex_state = 2}, - [3553] = {.lex_state = 128, .external_lex_state = 5}, - [3554] = {.lex_state = 128, .external_lex_state = 5}, - [3555] = {.lex_state = 7, .external_lex_state = 2}, + [3552] = {.lex_state = 128, .external_lex_state = 5}, + [3553] = {.lex_state = 128, .external_lex_state = 2}, + [3554] = {.lex_state = 7, .external_lex_state = 2}, + [3555] = {.lex_state = 128, .external_lex_state = 5}, [3556] = {.lex_state = 128, .external_lex_state = 5}, - [3557] = {.lex_state = 128, .external_lex_state = 5}, + [3557] = {.lex_state = 7, .external_lex_state = 2}, [3558] = {.lex_state = 128, .external_lex_state = 2}, - [3559] = {.lex_state = 128, .external_lex_state = 2}, + [3559] = {.lex_state = 128, .external_lex_state = 5}, [3560] = {.lex_state = 128, .external_lex_state = 5}, - [3561] = {.lex_state = 128, .external_lex_state = 5}, - [3562] = {.lex_state = 128, .external_lex_state = 2}, + [3561] = {.lex_state = 128, .external_lex_state = 2}, + [3562] = {.lex_state = 128, .external_lex_state = 5}, [3563] = {.lex_state = 128, .external_lex_state = 5}, [3564] = {.lex_state = 128, .external_lex_state = 5}, [3565] = {.lex_state = 128, .external_lex_state = 5}, - [3566] = {.lex_state = 128, .external_lex_state = 2}, + [3566] = {.lex_state = 128, .external_lex_state = 5}, [3567] = {.lex_state = 128, .external_lex_state = 2}, - [3568] = {.lex_state = 128, .external_lex_state = 2}, + [3568] = {.lex_state = 128, .external_lex_state = 5}, [3569] = {.lex_state = 128, .external_lex_state = 5}, [3570] = {.lex_state = 128, .external_lex_state = 2}, - [3571] = {.lex_state = 128, .external_lex_state = 2}, + [3571] = {.lex_state = 7, .external_lex_state = 2}, [3572] = {.lex_state = 128, .external_lex_state = 5}, [3573] = {.lex_state = 128, .external_lex_state = 5}, - [3574] = {.lex_state = 128, .external_lex_state = 5}, + [3574] = {.lex_state = 7, .external_lex_state = 2}, [3575] = {.lex_state = 128, .external_lex_state = 5}, - [3576] = {.lex_state = 128, .external_lex_state = 5}, - [3577] = {.lex_state = 128, .external_lex_state = 2}, + [3576] = {.lex_state = 128, .external_lex_state = 2}, + [3577] = {.lex_state = 128, .external_lex_state = 5}, [3578] = {.lex_state = 128, .external_lex_state = 5}, [3579] = {.lex_state = 128, .external_lex_state = 5}, - [3580] = {.lex_state = 128, .external_lex_state = 5}, - [3581] = {.lex_state = 128, .external_lex_state = 5}, + [3580] = {.lex_state = 128, .external_lex_state = 2}, + [3581] = {.lex_state = 128, .external_lex_state = 2}, [3582] = {.lex_state = 7, .external_lex_state = 2}, - [3583] = {.lex_state = 128, .external_lex_state = 5}, - [3584] = {.lex_state = 128, .external_lex_state = 5}, + [3583] = {.lex_state = 128, .external_lex_state = 2}, + [3584] = {.lex_state = 7, .external_lex_state = 2}, [3585] = {.lex_state = 128, .external_lex_state = 5}, - [3586] = {.lex_state = 128, .external_lex_state = 5}, - [3587] = {.lex_state = 7, .external_lex_state = 2}, - [3588] = {.lex_state = 128, .external_lex_state = 2}, - [3589] = {.lex_state = 128, .external_lex_state = 5}, - [3590] = {.lex_state = 128, .external_lex_state = 5}, - [3591] = {.lex_state = 128, .external_lex_state = 5}, - [3592] = {.lex_state = 128, .external_lex_state = 5}, - [3593] = {.lex_state = 128, .external_lex_state = 2}, - [3594] = {.lex_state = 128, .external_lex_state = 5}, + [3586] = {.lex_state = 128, .external_lex_state = 2}, + [3587] = {.lex_state = 128, .external_lex_state = 2}, + [3588] = {.lex_state = 7, .external_lex_state = 2}, + [3589] = {.lex_state = 7, .external_lex_state = 2}, + [3590] = {.lex_state = 7, .external_lex_state = 2}, + [3591] = {.lex_state = 128, .external_lex_state = 2}, + [3592] = {.lex_state = 8, .external_lex_state = 2}, + [3593] = {.lex_state = 7, .external_lex_state = 2}, + [3594] = {.lex_state = 128, .external_lex_state = 2}, [3595] = {.lex_state = 128, .external_lex_state = 2}, [3596] = {.lex_state = 128, .external_lex_state = 2}, - [3597] = {.lex_state = 128, .external_lex_state = 5}, + [3597] = {.lex_state = 7, .external_lex_state = 2}, [3598] = {.lex_state = 128, .external_lex_state = 5}, - [3599] = {.lex_state = 128, .external_lex_state = 5}, + [3599] = {.lex_state = 128, .external_lex_state = 2}, [3600] = {.lex_state = 128, .external_lex_state = 5}, - [3601] = {.lex_state = 128, .external_lex_state = 5}, + [3601] = {.lex_state = 128, .external_lex_state = 2}, [3602] = {.lex_state = 128, .external_lex_state = 5}, - [3603] = {.lex_state = 128, .external_lex_state = 2}, - [3604] = {.lex_state = 128, .external_lex_state = 5}, + [3603] = {.lex_state = 128, .external_lex_state = 5}, + [3604] = {.lex_state = 128, .external_lex_state = 2}, [3605] = {.lex_state = 128, .external_lex_state = 5}, - [3606] = {.lex_state = 128, .external_lex_state = 5}, - [3607] = {.lex_state = 7, .external_lex_state = 2}, - [3608] = {.lex_state = 128, .external_lex_state = 5}, + [3606] = {.lex_state = 128, .external_lex_state = 2}, + [3607] = {.lex_state = 128, .external_lex_state = 2}, + [3608] = {.lex_state = 128, .external_lex_state = 2}, [3609] = {.lex_state = 128, .external_lex_state = 5}, [3610] = {.lex_state = 128, .external_lex_state = 5}, [3611] = {.lex_state = 128, .external_lex_state = 5}, - [3612] = {.lex_state = 7, .external_lex_state = 2}, + [3612] = {.lex_state = 128, .external_lex_state = 2}, [3613] = {.lex_state = 128, .external_lex_state = 5}, [3614] = {.lex_state = 128, .external_lex_state = 2}, [3615] = {.lex_state = 128, .external_lex_state = 5}, [3616] = {.lex_state = 128, .external_lex_state = 5}, - [3617] = {.lex_state = 7, .external_lex_state = 2}, - [3618] = {.lex_state = 128, .external_lex_state = 5}, + [3617] = {.lex_state = 128, .external_lex_state = 5}, + [3618] = {.lex_state = 128, .external_lex_state = 2}, [3619] = {.lex_state = 128, .external_lex_state = 5}, [3620] = {.lex_state = 128, .external_lex_state = 5}, - [3621] = {.lex_state = 128, .external_lex_state = 5}, + [3621] = {.lex_state = 128, .external_lex_state = 2}, [3622] = {.lex_state = 128, .external_lex_state = 5}, - [3623] = {.lex_state = 128, .external_lex_state = 5}, + [3623] = {.lex_state = 128, .external_lex_state = 2}, [3624] = {.lex_state = 128, .external_lex_state = 5}, [3625] = {.lex_state = 128, .external_lex_state = 5}, - [3626] = {.lex_state = 128, .external_lex_state = 2}, - [3627] = {.lex_state = 128, .external_lex_state = 2}, - [3628] = {.lex_state = 128, .external_lex_state = 2}, + [3626] = {.lex_state = 128, .external_lex_state = 5}, + [3627] = {.lex_state = 128, .external_lex_state = 5}, + [3628] = {.lex_state = 128, .external_lex_state = 5}, [3629] = {.lex_state = 128, .external_lex_state = 5}, [3630] = {.lex_state = 128, .external_lex_state = 5}, [3631] = {.lex_state = 128, .external_lex_state = 2}, - [3632] = {.lex_state = 128, .external_lex_state = 2}, - [3633] = {.lex_state = 7, .external_lex_state = 2}, + [3632] = {.lex_state = 128, .external_lex_state = 5}, + [3633] = {.lex_state = 128, .external_lex_state = 5}, [3634] = {.lex_state = 128, .external_lex_state = 2}, [3635] = {.lex_state = 128, .external_lex_state = 2}, - [3636] = {.lex_state = 7, .external_lex_state = 2}, - [3637] = {.lex_state = 128, .external_lex_state = 5}, - [3638] = {.lex_state = 128, .external_lex_state = 2}, - [3639] = {.lex_state = 128, .external_lex_state = 2}, + [3636] = {.lex_state = 128, .external_lex_state = 2}, + [3637] = {.lex_state = 128, .external_lex_state = 2}, + [3638] = {.lex_state = 128, .external_lex_state = 5}, + [3639] = {.lex_state = 128, .external_lex_state = 5}, [3640] = {.lex_state = 128, .external_lex_state = 5}, - [3641] = {.lex_state = 128, .external_lex_state = 5}, + [3641] = {.lex_state = 128, .external_lex_state = 2}, [3642] = {.lex_state = 128, .external_lex_state = 2}, [3643] = {.lex_state = 128, .external_lex_state = 2}, - [3644] = {.lex_state = 7, .external_lex_state = 2}, - [3645] = {.lex_state = 7, .external_lex_state = 2}, + [3644] = {.lex_state = 128, .external_lex_state = 2}, + [3645] = {.lex_state = 128, .external_lex_state = 5}, [3646] = {.lex_state = 128, .external_lex_state = 5}, [3647] = {.lex_state = 128, .external_lex_state = 2}, - [3648] = {.lex_state = 128, .external_lex_state = 2}, + [3648] = {.lex_state = 128, .external_lex_state = 5}, [3649] = {.lex_state = 128, .external_lex_state = 2}, - [3650] = {.lex_state = 128, .external_lex_state = 5}, - [3651] = {.lex_state = 7, .external_lex_state = 2}, - [3652] = {.lex_state = 128, .external_lex_state = 2}, - [3653] = {.lex_state = 128, .external_lex_state = 5}, - [3654] = {.lex_state = 128, .external_lex_state = 2}, - [3655] = {.lex_state = 7, .external_lex_state = 2}, - [3656] = {.lex_state = 8, .external_lex_state = 2}, + [3650] = {.lex_state = 128, .external_lex_state = 2}, + [3651] = {.lex_state = 128, .external_lex_state = 2}, + [3652] = {.lex_state = 128, .external_lex_state = 5}, + [3653] = {.lex_state = 7, .external_lex_state = 2}, + [3654] = {.lex_state = 128, .external_lex_state = 5}, + [3655] = {.lex_state = 128, .external_lex_state = 2}, + [3656] = {.lex_state = 7, .external_lex_state = 2}, [3657] = {.lex_state = 128, .external_lex_state = 5}, - [3658] = {.lex_state = 128, .external_lex_state = 2}, + [3658] = {.lex_state = 128, .external_lex_state = 5}, [3659] = {.lex_state = 128, .external_lex_state = 5}, [3660] = {.lex_state = 128, .external_lex_state = 5}, - [3661] = {.lex_state = 7, .external_lex_state = 2}, - [3662] = {.lex_state = 128, .external_lex_state = 5}, - [3663] = {.lex_state = 128, .external_lex_state = 2}, + [3661] = {.lex_state = 128, .external_lex_state = 5}, + [3662] = {.lex_state = 128, .external_lex_state = 2}, + [3663] = {.lex_state = 128, .external_lex_state = 5}, [3664] = {.lex_state = 128, .external_lex_state = 5}, [3665] = {.lex_state = 128, .external_lex_state = 5}, - [3666] = {.lex_state = 128, .external_lex_state = 5}, - [3667] = {.lex_state = 128, .external_lex_state = 5}, + [3666] = {.lex_state = 128, .external_lex_state = 2}, + [3667] = {.lex_state = 128, .external_lex_state = 2}, [3668] = {.lex_state = 128, .external_lex_state = 2}, [3669] = {.lex_state = 128, .external_lex_state = 5}, [3670] = {.lex_state = 128, .external_lex_state = 5}, @@ -17367,425 +17397,425 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3676] = {.lex_state = 128, .external_lex_state = 5}, [3677] = {.lex_state = 128, .external_lex_state = 5}, [3678] = {.lex_state = 128, .external_lex_state = 5}, - [3679] = {.lex_state = 128, .external_lex_state = 2}, - [3680] = {.lex_state = 128, .external_lex_state = 2}, - [3681] = {.lex_state = 128, .external_lex_state = 2}, + [3679] = {.lex_state = 20, .external_lex_state = 2}, + [3680] = {.lex_state = 7, .external_lex_state = 2}, + [3681] = {.lex_state = 128, .external_lex_state = 5}, [3682] = {.lex_state = 128, .external_lex_state = 5}, [3683] = {.lex_state = 128, .external_lex_state = 5}, - [3684] = {.lex_state = 7, .external_lex_state = 2}, - [3685] = {.lex_state = 128, .external_lex_state = 5}, - [3686] = {.lex_state = 128, .external_lex_state = 2}, + [3684] = {.lex_state = 128, .external_lex_state = 5}, + [3685] = {.lex_state = 128, .external_lex_state = 2}, + [3686] = {.lex_state = 128, .external_lex_state = 5}, [3687] = {.lex_state = 128, .external_lex_state = 5}, [3688] = {.lex_state = 128, .external_lex_state = 5}, [3689] = {.lex_state = 128, .external_lex_state = 5}, - [3690] = {.lex_state = 128, .external_lex_state = 5}, + [3690] = {.lex_state = 128, .external_lex_state = 2}, [3691] = {.lex_state = 128, .external_lex_state = 5}, - [3692] = {.lex_state = 128, .external_lex_state = 2}, - [3693] = {.lex_state = 8, .external_lex_state = 2}, - [3694] = {.lex_state = 128, .external_lex_state = 2}, - [3695] = {.lex_state = 128, .external_lex_state = 2}, + [3692] = {.lex_state = 128, .external_lex_state = 5}, + [3693] = {.lex_state = 128, .external_lex_state = 5}, + [3694] = {.lex_state = 128, .external_lex_state = 5}, + [3695] = {.lex_state = 128, .external_lex_state = 5}, [3696] = {.lex_state = 128, .external_lex_state = 5}, - [3697] = {.lex_state = 128, .external_lex_state = 2}, + [3697] = {.lex_state = 128, .external_lex_state = 5}, [3698] = {.lex_state = 128, .external_lex_state = 5}, [3699] = {.lex_state = 128, .external_lex_state = 5}, [3700] = {.lex_state = 128, .external_lex_state = 5}, [3701] = {.lex_state = 128, .external_lex_state = 5}, [3702] = {.lex_state = 128, .external_lex_state = 5}, - [3703] = {.lex_state = 8, .external_lex_state = 2}, - [3704] = {.lex_state = 7, .external_lex_state = 2}, - [3705] = {.lex_state = 128, .external_lex_state = 2}, - [3706] = {.lex_state = 128, .external_lex_state = 2}, + [3703] = {.lex_state = 128, .external_lex_state = 5}, + [3704] = {.lex_state = 128, .external_lex_state = 5}, + [3705] = {.lex_state = 128, .external_lex_state = 5}, + [3706] = {.lex_state = 128, .external_lex_state = 5}, [3707] = {.lex_state = 128, .external_lex_state = 5}, [3708] = {.lex_state = 128, .external_lex_state = 5}, [3709] = {.lex_state = 128, .external_lex_state = 5}, - [3710] = {.lex_state = 128, .external_lex_state = 2}, + [3710] = {.lex_state = 128, .external_lex_state = 5}, [3711] = {.lex_state = 128, .external_lex_state = 5}, [3712] = {.lex_state = 128, .external_lex_state = 5}, - [3713] = {.lex_state = 128, .external_lex_state = 2}, + [3713] = {.lex_state = 128, .external_lex_state = 5}, [3714] = {.lex_state = 128, .external_lex_state = 5}, [3715] = {.lex_state = 128, .external_lex_state = 5}, [3716] = {.lex_state = 128, .external_lex_state = 5}, [3717] = {.lex_state = 128, .external_lex_state = 5}, [3718] = {.lex_state = 128, .external_lex_state = 5}, [3719] = {.lex_state = 128, .external_lex_state = 2}, - [3720] = {.lex_state = 128, .external_lex_state = 5}, - [3721] = {.lex_state = 128, .external_lex_state = 5}, - [3722] = {.lex_state = 128, .external_lex_state = 5}, + [3720] = {.lex_state = 128, .external_lex_state = 2}, + [3721] = {.lex_state = 128, .external_lex_state = 2}, + [3722] = {.lex_state = 128, .external_lex_state = 2}, [3723] = {.lex_state = 128, .external_lex_state = 2}, - [3724] = {.lex_state = 128, .external_lex_state = 5}, - [3725] = {.lex_state = 128, .external_lex_state = 2}, - [3726] = {.lex_state = 128, .external_lex_state = 2}, - [3727] = {.lex_state = 128, .external_lex_state = 5}, + [3724] = {.lex_state = 128, .external_lex_state = 2}, + [3725] = {.lex_state = 128, .external_lex_state = 5}, + [3726] = {.lex_state = 128, .external_lex_state = 5}, + [3727] = {.lex_state = 128, .external_lex_state = 2}, [3728] = {.lex_state = 128, .external_lex_state = 5}, - [3729] = {.lex_state = 128, .external_lex_state = 2}, + [3729] = {.lex_state = 128, .external_lex_state = 5}, [3730] = {.lex_state = 128, .external_lex_state = 5}, - [3731] = {.lex_state = 128, .external_lex_state = 5}, + [3731] = {.lex_state = 128, .external_lex_state = 2}, [3732] = {.lex_state = 128, .external_lex_state = 5}, - [3733] = {.lex_state = 128, .external_lex_state = 2}, - [3734] = {.lex_state = 128, .external_lex_state = 5}, + [3733] = {.lex_state = 128, .external_lex_state = 5}, + [3734] = {.lex_state = 128, .external_lex_state = 2}, [3735] = {.lex_state = 128, .external_lex_state = 5}, [3736] = {.lex_state = 128, .external_lex_state = 5}, - [3737] = {.lex_state = 128, .external_lex_state = 2}, + [3737] = {.lex_state = 128, .external_lex_state = 5}, [3738] = {.lex_state = 128, .external_lex_state = 5}, [3739] = {.lex_state = 128, .external_lex_state = 5}, - [3740] = {.lex_state = 128, .external_lex_state = 2}, - [3741] = {.lex_state = 128, .external_lex_state = 2}, + [3740] = {.lex_state = 128, .external_lex_state = 5}, + [3741] = {.lex_state = 128, .external_lex_state = 5}, [3742] = {.lex_state = 128, .external_lex_state = 2}, [3743] = {.lex_state = 128, .external_lex_state = 2}, - [3744] = {.lex_state = 128, .external_lex_state = 5}, - [3745] = {.lex_state = 128, .external_lex_state = 2}, - [3746] = {.lex_state = 128, .external_lex_state = 5}, + [3744] = {.lex_state = 128, .external_lex_state = 2}, + [3745] = {.lex_state = 128, .external_lex_state = 5}, + [3746] = {.lex_state = 8, .external_lex_state = 2}, [3747] = {.lex_state = 128, .external_lex_state = 5}, [3748] = {.lex_state = 128, .external_lex_state = 5}, [3749] = {.lex_state = 128, .external_lex_state = 2}, [3750] = {.lex_state = 128, .external_lex_state = 5}, [3751] = {.lex_state = 128, .external_lex_state = 5}, - [3752] = {.lex_state = 128, .external_lex_state = 2}, - [3753] = {.lex_state = 128, .external_lex_state = 2}, + [3752] = {.lex_state = 128, .external_lex_state = 5}, + [3753] = {.lex_state = 128, .external_lex_state = 5}, [3754] = {.lex_state = 128, .external_lex_state = 2}, - [3755] = {.lex_state = 7, .external_lex_state = 2}, + [3755] = {.lex_state = 128, .external_lex_state = 5}, [3756] = {.lex_state = 128, .external_lex_state = 5}, - [3757] = {.lex_state = 128, .external_lex_state = 2}, - [3758] = {.lex_state = 128, .external_lex_state = 2}, + [3757] = {.lex_state = 128, .external_lex_state = 5}, + [3758] = {.lex_state = 128, .external_lex_state = 5}, [3759] = {.lex_state = 128, .external_lex_state = 5}, [3760] = {.lex_state = 128, .external_lex_state = 5}, [3761] = {.lex_state = 128, .external_lex_state = 5}, [3762] = {.lex_state = 128, .external_lex_state = 5}, - [3763] = {.lex_state = 128, .external_lex_state = 5}, + [3763] = {.lex_state = 7, .external_lex_state = 2}, [3764] = {.lex_state = 128, .external_lex_state = 5}, [3765] = {.lex_state = 128, .external_lex_state = 5}, - [3766] = {.lex_state = 128, .external_lex_state = 2}, - [3767] = {.lex_state = 128, .external_lex_state = 6}, + [3766] = {.lex_state = 128, .external_lex_state = 5}, + [3767] = {.lex_state = 128, .external_lex_state = 2}, [3768] = {.lex_state = 128, .external_lex_state = 2}, [3769] = {.lex_state = 128, .external_lex_state = 5}, [3770] = {.lex_state = 128, .external_lex_state = 5}, - [3771] = {.lex_state = 128, .external_lex_state = 5}, - [3772] = {.lex_state = 18, .external_lex_state = 8}, + [3771] = {.lex_state = 7, .external_lex_state = 2}, + [3772] = {.lex_state = 128, .external_lex_state = 2}, [3773] = {.lex_state = 128, .external_lex_state = 5}, [3774] = {.lex_state = 128, .external_lex_state = 2}, - [3775] = {.lex_state = 128, .external_lex_state = 2}, - [3776] = {.lex_state = 8, .external_lex_state = 2}, + [3775] = {.lex_state = 128, .external_lex_state = 5}, + [3776] = {.lex_state = 128, .external_lex_state = 5}, [3777] = {.lex_state = 128, .external_lex_state = 2}, - [3778] = {.lex_state = 128, .external_lex_state = 2}, - [3779] = {.lex_state = 128, .external_lex_state = 2}, - [3780] = {.lex_state = 128, .external_lex_state = 5}, - [3781] = {.lex_state = 128, .external_lex_state = 2}, - [3782] = {.lex_state = 128, .external_lex_state = 2}, - [3783] = {.lex_state = 128, .external_lex_state = 6}, + [3778] = {.lex_state = 8, .external_lex_state = 2}, + [3779] = {.lex_state = 128, .external_lex_state = 5}, + [3780] = {.lex_state = 128, .external_lex_state = 2}, + [3781] = {.lex_state = 128, .external_lex_state = 5}, + [3782] = {.lex_state = 128, .external_lex_state = 5}, + [3783] = {.lex_state = 128, .external_lex_state = 5}, [3784] = {.lex_state = 128, .external_lex_state = 2}, - [3785] = {.lex_state = 128, .external_lex_state = 2}, - [3786] = {.lex_state = 128, .external_lex_state = 6}, - [3787] = {.lex_state = 20, .external_lex_state = 2}, - [3788] = {.lex_state = 128, .external_lex_state = 6}, - [3789] = {.lex_state = 128, .external_lex_state = 6}, - [3790] = {.lex_state = 128, .external_lex_state = 2}, - [3791] = {.lex_state = 128, .external_lex_state = 2}, - [3792] = {.lex_state = 128, .external_lex_state = 2}, + [3785] = {.lex_state = 128, .external_lex_state = 5}, + [3786] = {.lex_state = 128, .external_lex_state = 2}, + [3787] = {.lex_state = 128, .external_lex_state = 2}, + [3788] = {.lex_state = 128, .external_lex_state = 2}, + [3789] = {.lex_state = 128, .external_lex_state = 2}, + [3790] = {.lex_state = 128, .external_lex_state = 5}, + [3791] = {.lex_state = 128, .external_lex_state = 5}, + [3792] = {.lex_state = 128, .external_lex_state = 5}, [3793] = {.lex_state = 128, .external_lex_state = 2}, - [3794] = {.lex_state = 18, .external_lex_state = 8}, - [3795] = {.lex_state = 128, .external_lex_state = 2}, - [3796] = {.lex_state = 20, .external_lex_state = 2}, - [3797] = {.lex_state = 20, .external_lex_state = 2}, - [3798] = {.lex_state = 128, .external_lex_state = 2}, + [3794] = {.lex_state = 128, .external_lex_state = 2}, + [3795] = {.lex_state = 128, .external_lex_state = 5}, + [3796] = {.lex_state = 128, .external_lex_state = 5}, + [3797] = {.lex_state = 128, .external_lex_state = 5}, + [3798] = {.lex_state = 128, .external_lex_state = 5}, [3799] = {.lex_state = 128, .external_lex_state = 2}, [3800] = {.lex_state = 128, .external_lex_state = 2}, [3801] = {.lex_state = 128, .external_lex_state = 2}, - [3802] = {.lex_state = 128, .external_lex_state = 2}, - [3803] = {.lex_state = 128, .external_lex_state = 2}, - [3804] = {.lex_state = 128, .external_lex_state = 2}, - [3805] = {.lex_state = 128, .external_lex_state = 2}, - [3806] = {.lex_state = 128, .external_lex_state = 2}, - [3807] = {.lex_state = 8, .external_lex_state = 2}, - [3808] = {.lex_state = 128, .external_lex_state = 6}, + [3802] = {.lex_state = 128, .external_lex_state = 5}, + [3803] = {.lex_state = 128, .external_lex_state = 5}, + [3804] = {.lex_state = 128, .external_lex_state = 6}, + [3805] = {.lex_state = 128, .external_lex_state = 5}, + [3806] = {.lex_state = 128, .external_lex_state = 5}, + [3807] = {.lex_state = 128, .external_lex_state = 2}, + [3808] = {.lex_state = 128, .external_lex_state = 5}, [3809] = {.lex_state = 128, .external_lex_state = 2}, - [3810] = {.lex_state = 128, .external_lex_state = 6}, - [3811] = {.lex_state = 128, .external_lex_state = 6}, - [3812] = {.lex_state = 18, .external_lex_state = 8}, - [3813] = {.lex_state = 128, .external_lex_state = 2}, + [3810] = {.lex_state = 128, .external_lex_state = 2}, + [3811] = {.lex_state = 128, .external_lex_state = 2}, + [3812] = {.lex_state = 128, .external_lex_state = 6}, + [3813] = {.lex_state = 128, .external_lex_state = 5}, [3814] = {.lex_state = 128, .external_lex_state = 2}, - [3815] = {.lex_state = 128, .external_lex_state = 5}, + [3815] = {.lex_state = 128, .external_lex_state = 2}, [3816] = {.lex_state = 128, .external_lex_state = 2}, - [3817] = {.lex_state = 128, .external_lex_state = 6}, - [3818] = {.lex_state = 128, .external_lex_state = 5}, - [3819] = {.lex_state = 18, .external_lex_state = 8}, + [3817] = {.lex_state = 128, .external_lex_state = 2}, + [3818] = {.lex_state = 128, .external_lex_state = 2}, + [3819] = {.lex_state = 128, .external_lex_state = 2}, [3820] = {.lex_state = 128, .external_lex_state = 5}, - [3821] = {.lex_state = 20, .external_lex_state = 2}, - [3822] = {.lex_state = 128, .external_lex_state = 2}, - [3823] = {.lex_state = 128, .external_lex_state = 6}, - [3824] = {.lex_state = 128, .external_lex_state = 5}, - [3825] = {.lex_state = 11, .external_lex_state = 2}, + [3821] = {.lex_state = 128, .external_lex_state = 6}, + [3822] = {.lex_state = 128, .external_lex_state = 5}, + [3823] = {.lex_state = 128, .external_lex_state = 2}, + [3824] = {.lex_state = 128, .external_lex_state = 2}, + [3825] = {.lex_state = 128, .external_lex_state = 2}, [3826] = {.lex_state = 128, .external_lex_state = 2}, [3827] = {.lex_state = 128, .external_lex_state = 2}, - [3828] = {.lex_state = 128, .external_lex_state = 5}, + [3828] = {.lex_state = 128, .external_lex_state = 2}, [3829] = {.lex_state = 128, .external_lex_state = 2}, - [3830] = {.lex_state = 128, .external_lex_state = 5}, - [3831] = {.lex_state = 128, .external_lex_state = 5}, - [3832] = {.lex_state = 128, .external_lex_state = 5}, + [3830] = {.lex_state = 128, .external_lex_state = 2}, + [3831] = {.lex_state = 128, .external_lex_state = 2}, + [3832] = {.lex_state = 128, .external_lex_state = 6}, [3833] = {.lex_state = 128, .external_lex_state = 2}, [3834] = {.lex_state = 128, .external_lex_state = 2}, - [3835] = {.lex_state = 128, .external_lex_state = 5}, + [3835] = {.lex_state = 128, .external_lex_state = 2}, [3836] = {.lex_state = 128, .external_lex_state = 5}, - [3837] = {.lex_state = 11, .external_lex_state = 2}, + [3837] = {.lex_state = 128, .external_lex_state = 2}, [3838] = {.lex_state = 128, .external_lex_state = 2}, - [3839] = {.lex_state = 128, .external_lex_state = 6}, - [3840] = {.lex_state = 128, .external_lex_state = 2}, + [3839] = {.lex_state = 128, .external_lex_state = 2}, + [3840] = {.lex_state = 128, .external_lex_state = 6}, [3841] = {.lex_state = 128, .external_lex_state = 2}, [3842] = {.lex_state = 128, .external_lex_state = 2}, - [3843] = {.lex_state = 128, .external_lex_state = 6}, - [3844] = {.lex_state = 128, .external_lex_state = 5}, - [3845] = {.lex_state = 20, .external_lex_state = 2}, + [3843] = {.lex_state = 128, .external_lex_state = 2}, + [3844] = {.lex_state = 128, .external_lex_state = 2}, + [3845] = {.lex_state = 128, .external_lex_state = 2}, [3846] = {.lex_state = 128, .external_lex_state = 2}, - [3847] = {.lex_state = 128, .external_lex_state = 6}, - [3848] = {.lex_state = 128, .external_lex_state = 2}, - [3849] = {.lex_state = 128, .external_lex_state = 2}, + [3847] = {.lex_state = 20, .external_lex_state = 2}, + [3848] = {.lex_state = 20, .external_lex_state = 2}, + [3849] = {.lex_state = 128, .external_lex_state = 5}, [3850] = {.lex_state = 128, .external_lex_state = 2}, [3851] = {.lex_state = 128, .external_lex_state = 2}, [3852] = {.lex_state = 128, .external_lex_state = 2}, [3853] = {.lex_state = 128, .external_lex_state = 2}, - [3854] = {.lex_state = 128, .external_lex_state = 2}, - [3855] = {.lex_state = 128, .external_lex_state = 5}, - [3856] = {.lex_state = 128, .external_lex_state = 6}, - [3857] = {.lex_state = 128, .external_lex_state = 2}, + [3854] = {.lex_state = 20, .external_lex_state = 2}, + [3855] = {.lex_state = 18, .external_lex_state = 8}, + [3856] = {.lex_state = 128, .external_lex_state = 2}, + [3857] = {.lex_state = 128, .external_lex_state = 6}, [3858] = {.lex_state = 128, .external_lex_state = 2}, [3859] = {.lex_state = 128, .external_lex_state = 2}, [3860] = {.lex_state = 128, .external_lex_state = 2}, - [3861] = {.lex_state = 128, .external_lex_state = 2}, + [3861] = {.lex_state = 128, .external_lex_state = 6}, [3862] = {.lex_state = 128, .external_lex_state = 2}, - [3863] = {.lex_state = 128, .external_lex_state = 2}, - [3864] = {.lex_state = 128, .external_lex_state = 2}, - [3865] = {.lex_state = 128, .external_lex_state = 2}, + [3863] = {.lex_state = 128, .external_lex_state = 5}, + [3864] = {.lex_state = 128, .external_lex_state = 6}, + [3865] = {.lex_state = 128, .external_lex_state = 6}, [3866] = {.lex_state = 128, .external_lex_state = 2}, - [3867] = {.lex_state = 128, .external_lex_state = 2}, - [3868] = {.lex_state = 128, .external_lex_state = 2}, - [3869] = {.lex_state = 128, .external_lex_state = 2}, - [3870] = {.lex_state = 128, .external_lex_state = 2}, - [3871] = {.lex_state = 128, .external_lex_state = 5}, + [3867] = {.lex_state = 128, .external_lex_state = 6}, + [3868] = {.lex_state = 128, .external_lex_state = 6}, + [3869] = {.lex_state = 18, .external_lex_state = 8}, + [3870] = {.lex_state = 128, .external_lex_state = 6}, + [3871] = {.lex_state = 128, .external_lex_state = 6}, [3872] = {.lex_state = 128, .external_lex_state = 2}, [3873] = {.lex_state = 128, .external_lex_state = 2}, - [3874] = {.lex_state = 128, .external_lex_state = 2}, + [3874] = {.lex_state = 128, .external_lex_state = 6}, [3875] = {.lex_state = 128, .external_lex_state = 2}, - [3876] = {.lex_state = 128, .external_lex_state = 5}, - [3877] = {.lex_state = 128, .external_lex_state = 2}, - [3878] = {.lex_state = 128, .external_lex_state = 5}, + [3876] = {.lex_state = 128, .external_lex_state = 2}, + [3877] = {.lex_state = 128, .external_lex_state = 6}, + [3878] = {.lex_state = 128, .external_lex_state = 2}, [3879] = {.lex_state = 128, .external_lex_state = 2}, [3880] = {.lex_state = 128, .external_lex_state = 2}, - [3881] = {.lex_state = 128, .external_lex_state = 6}, - [3882] = {.lex_state = 128, .external_lex_state = 6}, + [3881] = {.lex_state = 128, .external_lex_state = 2}, + [3882] = {.lex_state = 128, .external_lex_state = 2}, [3883] = {.lex_state = 128, .external_lex_state = 2}, [3884] = {.lex_state = 128, .external_lex_state = 2}, - [3885] = {.lex_state = 128, .external_lex_state = 5}, + [3885] = {.lex_state = 128, .external_lex_state = 2}, [3886] = {.lex_state = 128, .external_lex_state = 5}, - [3887] = {.lex_state = 128, .external_lex_state = 2}, + [3887] = {.lex_state = 128, .external_lex_state = 6}, [3888] = {.lex_state = 128, .external_lex_state = 2}, [3889] = {.lex_state = 128, .external_lex_state = 5}, [3890] = {.lex_state = 128, .external_lex_state = 2}, - [3891] = {.lex_state = 128, .external_lex_state = 2}, - [3892] = {.lex_state = 128, .external_lex_state = 2}, + [3891] = {.lex_state = 128, .external_lex_state = 5}, + [3892] = {.lex_state = 128, .external_lex_state = 5}, [3893] = {.lex_state = 128, .external_lex_state = 2}, - [3894] = {.lex_state = 128, .external_lex_state = 2}, - [3895] = {.lex_state = 18, .external_lex_state = 8}, - [3896] = {.lex_state = 128, .external_lex_state = 5}, - [3897] = {.lex_state = 128, .external_lex_state = 6}, - [3898] = {.lex_state = 128, .external_lex_state = 2}, - [3899] = {.lex_state = 128, .external_lex_state = 6}, - [3900] = {.lex_state = 128, .external_lex_state = 6}, - [3901] = {.lex_state = 128, .external_lex_state = 6}, + [3894] = {.lex_state = 128, .external_lex_state = 5}, + [3895] = {.lex_state = 128, .external_lex_state = 6}, + [3896] = {.lex_state = 128, .external_lex_state = 2}, + [3897] = {.lex_state = 128, .external_lex_state = 2}, + [3898] = {.lex_state = 128, .external_lex_state = 5}, + [3899] = {.lex_state = 128, .external_lex_state = 2}, + [3900] = {.lex_state = 128, .external_lex_state = 2}, + [3901] = {.lex_state = 128, .external_lex_state = 2}, [3902] = {.lex_state = 128, .external_lex_state = 2}, - [3903] = {.lex_state = 128, .external_lex_state = 5}, - [3904] = {.lex_state = 128, .external_lex_state = 6}, - [3905] = {.lex_state = 128, .external_lex_state = 2}, - [3906] = {.lex_state = 128, .external_lex_state = 5}, + [3903] = {.lex_state = 128, .external_lex_state = 6}, + [3904] = {.lex_state = 128, .external_lex_state = 2}, + [3905] = {.lex_state = 8, .external_lex_state = 2}, + [3906] = {.lex_state = 128, .external_lex_state = 2}, [3907] = {.lex_state = 128, .external_lex_state = 2}, [3908] = {.lex_state = 128, .external_lex_state = 2}, [3909] = {.lex_state = 128, .external_lex_state = 2}, [3910] = {.lex_state = 128, .external_lex_state = 2}, - [3911] = {.lex_state = 128, .external_lex_state = 2}, - [3912] = {.lex_state = 128, .external_lex_state = 6}, - [3913] = {.lex_state = 128, .external_lex_state = 6}, + [3911] = {.lex_state = 128, .external_lex_state = 5}, + [3912] = {.lex_state = 8, .external_lex_state = 2}, + [3913] = {.lex_state = 128, .external_lex_state = 2}, [3914] = {.lex_state = 128, .external_lex_state = 2}, - [3915] = {.lex_state = 128, .external_lex_state = 6}, - [3916] = {.lex_state = 128, .external_lex_state = 2}, - [3917] = {.lex_state = 128, .external_lex_state = 2}, - [3918] = {.lex_state = 128, .external_lex_state = 6}, - [3919] = {.lex_state = 128, .external_lex_state = 2}, - [3920] = {.lex_state = 128, .external_lex_state = 5}, - [3921] = {.lex_state = 128, .external_lex_state = 6}, - [3922] = {.lex_state = 128, .external_lex_state = 2}, - [3923] = {.lex_state = 128, .external_lex_state = 5}, + [3915] = {.lex_state = 128, .external_lex_state = 2}, + [3916] = {.lex_state = 128, .external_lex_state = 6}, + [3917] = {.lex_state = 128, .external_lex_state = 5}, + [3918] = {.lex_state = 128, .external_lex_state = 5}, + [3919] = {.lex_state = 20, .external_lex_state = 2}, + [3920] = {.lex_state = 18, .external_lex_state = 8}, + [3921] = {.lex_state = 128, .external_lex_state = 2}, + [3922] = {.lex_state = 20, .external_lex_state = 2}, + [3923] = {.lex_state = 128, .external_lex_state = 2}, [3924] = {.lex_state = 128, .external_lex_state = 2}, - [3925] = {.lex_state = 128, .external_lex_state = 5}, - [3926] = {.lex_state = 128, .external_lex_state = 2}, - [3927] = {.lex_state = 128, .external_lex_state = 5}, - [3928] = {.lex_state = 18, .external_lex_state = 7}, - [3929] = {.lex_state = 128, .external_lex_state = 5}, - [3930] = {.lex_state = 128, .external_lex_state = 5}, - [3931] = {.lex_state = 128, .external_lex_state = 2}, + [3925] = {.lex_state = 128, .external_lex_state = 2}, + [3926] = {.lex_state = 128, .external_lex_state = 5}, + [3927] = {.lex_state = 128, .external_lex_state = 2}, + [3928] = {.lex_state = 128, .external_lex_state = 5}, + [3929] = {.lex_state = 128, .external_lex_state = 2}, + [3930] = {.lex_state = 128, .external_lex_state = 6}, + [3931] = {.lex_state = 128, .external_lex_state = 6}, [3932] = {.lex_state = 128, .external_lex_state = 5}, [3933] = {.lex_state = 128, .external_lex_state = 5}, - [3934] = {.lex_state = 128, .external_lex_state = 5}, - [3935] = {.lex_state = 128, .external_lex_state = 5}, - [3936] = {.lex_state = 18, .external_lex_state = 7}, - [3937] = {.lex_state = 128, .external_lex_state = 5}, - [3938] = {.lex_state = 128, .external_lex_state = 5}, - [3939] = {.lex_state = 128, .external_lex_state = 5}, - [3940] = {.lex_state = 128, .external_lex_state = 5}, - [3941] = {.lex_state = 128, .external_lex_state = 5}, - [3942] = {.lex_state = 18, .external_lex_state = 7}, + [3934] = {.lex_state = 128, .external_lex_state = 2}, + [3935] = {.lex_state = 128, .external_lex_state = 6}, + [3936] = {.lex_state = 18, .external_lex_state = 8}, + [3937] = {.lex_state = 128, .external_lex_state = 2}, + [3938] = {.lex_state = 11, .external_lex_state = 2}, + [3939] = {.lex_state = 128, .external_lex_state = 2}, + [3940] = {.lex_state = 128, .external_lex_state = 2}, + [3941] = {.lex_state = 128, .external_lex_state = 2}, + [3942] = {.lex_state = 128, .external_lex_state = 2}, [3943] = {.lex_state = 128, .external_lex_state = 5}, - [3944] = {.lex_state = 128, .external_lex_state = 5}, - [3945] = {.lex_state = 128, .external_lex_state = 5}, + [3944] = {.lex_state = 128, .external_lex_state = 6}, + [3945] = {.lex_state = 128, .external_lex_state = 6}, [3946] = {.lex_state = 128, .external_lex_state = 2}, - [3947] = {.lex_state = 128, .external_lex_state = 5}, + [3947] = {.lex_state = 128, .external_lex_state = 2}, [3948] = {.lex_state = 128, .external_lex_state = 2}, - [3949] = {.lex_state = 128, .external_lex_state = 5}, + [3949] = {.lex_state = 128, .external_lex_state = 6}, [3950] = {.lex_state = 128, .external_lex_state = 5}, - [3951] = {.lex_state = 18, .external_lex_state = 7}, - [3952] = {.lex_state = 128, .external_lex_state = 5}, - [3953] = {.lex_state = 20, .external_lex_state = 2}, - [3954] = {.lex_state = 128, .external_lex_state = 5}, - [3955] = {.lex_state = 128, .external_lex_state = 5}, - [3956] = {.lex_state = 128, .external_lex_state = 5}, - [3957] = {.lex_state = 128, .external_lex_state = 5}, - [3958] = {.lex_state = 128, .external_lex_state = 6}, - [3959] = {.lex_state = 128, .external_lex_state = 6}, - [3960] = {.lex_state = 128, .external_lex_state = 6}, + [3951] = {.lex_state = 128, .external_lex_state = 5}, + [3952] = {.lex_state = 18, .external_lex_state = 8}, + [3953] = {.lex_state = 128, .external_lex_state = 6}, + [3954] = {.lex_state = 11, .external_lex_state = 2}, + [3955] = {.lex_state = 128, .external_lex_state = 2}, + [3956] = {.lex_state = 128, .external_lex_state = 2}, + [3957] = {.lex_state = 128, .external_lex_state = 2}, + [3958] = {.lex_state = 128, .external_lex_state = 5}, + [3959] = {.lex_state = 128, .external_lex_state = 5}, + [3960] = {.lex_state = 128, .external_lex_state = 2}, [3961] = {.lex_state = 128, .external_lex_state = 5}, [3962] = {.lex_state = 128, .external_lex_state = 5}, [3963] = {.lex_state = 128, .external_lex_state = 5}, [3964] = {.lex_state = 128, .external_lex_state = 5}, [3965] = {.lex_state = 128, .external_lex_state = 5}, - [3966] = {.lex_state = 128, .external_lex_state = 5}, - [3967] = {.lex_state = 128, .external_lex_state = 5}, + [3966] = {.lex_state = 20, .external_lex_state = 2}, + [3967] = {.lex_state = 20, .external_lex_state = 2}, [3968] = {.lex_state = 128, .external_lex_state = 5}, [3969] = {.lex_state = 128, .external_lex_state = 5}, [3970] = {.lex_state = 128, .external_lex_state = 5}, [3971] = {.lex_state = 128, .external_lex_state = 5}, - [3972] = {.lex_state = 128, .external_lex_state = 2}, + [3972] = {.lex_state = 20, .external_lex_state = 2}, [3973] = {.lex_state = 128, .external_lex_state = 5}, - [3974] = {.lex_state = 128, .external_lex_state = 5}, - [3975] = {.lex_state = 128, .external_lex_state = 5}, - [3976] = {.lex_state = 128, .external_lex_state = 5}, + [3974] = {.lex_state = 128, .external_lex_state = 2}, + [3975] = {.lex_state = 128, .external_lex_state = 2}, + [3976] = {.lex_state = 18, .external_lex_state = 7}, [3977] = {.lex_state = 128, .external_lex_state = 5}, - [3978] = {.lex_state = 128, .external_lex_state = 2}, + [3978] = {.lex_state = 128, .external_lex_state = 5}, [3979] = {.lex_state = 128, .external_lex_state = 2}, - [3980] = {.lex_state = 128, .external_lex_state = 5}, - [3981] = {.lex_state = 128, .external_lex_state = 5}, + [3980] = {.lex_state = 20, .external_lex_state = 2}, + [3981] = {.lex_state = 128, .external_lex_state = 2}, [3982] = {.lex_state = 128, .external_lex_state = 5}, [3983] = {.lex_state = 128, .external_lex_state = 5}, [3984] = {.lex_state = 128, .external_lex_state = 5}, - [3985] = {.lex_state = 128, .external_lex_state = 5}, - [3986] = {.lex_state = 128, .external_lex_state = 5}, + [3985] = {.lex_state = 18, .external_lex_state = 7}, + [3986] = {.lex_state = 128, .external_lex_state = 2}, [3987] = {.lex_state = 128, .external_lex_state = 5}, [3988] = {.lex_state = 128, .external_lex_state = 5}, - [3989] = {.lex_state = 128, .external_lex_state = 5}, + [3989] = {.lex_state = 18, .external_lex_state = 7}, [3990] = {.lex_state = 128, .external_lex_state = 5}, [3991] = {.lex_state = 128, .external_lex_state = 2}, - [3992] = {.lex_state = 128, .external_lex_state = 2}, - [3993] = {.lex_state = 11, .external_lex_state = 2}, - [3994] = {.lex_state = 128, .external_lex_state = 5}, + [3992] = {.lex_state = 128, .external_lex_state = 5}, + [3993] = {.lex_state = 128, .external_lex_state = 5}, + [3994] = {.lex_state = 128, .external_lex_state = 2}, [3995] = {.lex_state = 128, .external_lex_state = 5}, - [3996] = {.lex_state = 128, .external_lex_state = 2}, - [3997] = {.lex_state = 128, .external_lex_state = 2}, - [3998] = {.lex_state = 18, .external_lex_state = 7}, - [3999] = {.lex_state = 18, .external_lex_state = 9}, + [3996] = {.lex_state = 18, .external_lex_state = 9}, + [3997] = {.lex_state = 20, .external_lex_state = 2}, + [3998] = {.lex_state = 128, .external_lex_state = 5}, + [3999] = {.lex_state = 128, .external_lex_state = 5}, [4000] = {.lex_state = 128, .external_lex_state = 5}, [4001] = {.lex_state = 128, .external_lex_state = 5}, [4002] = {.lex_state = 128, .external_lex_state = 6}, - [4003] = {.lex_state = 128, .external_lex_state = 5}, + [4003] = {.lex_state = 128, .external_lex_state = 2}, [4004] = {.lex_state = 128, .external_lex_state = 5}, - [4005] = {.lex_state = 128, .external_lex_state = 2}, - [4006] = {.lex_state = 128, .external_lex_state = 2}, - [4007] = {.lex_state = 128, .external_lex_state = 2}, - [4008] = {.lex_state = 2, .external_lex_state = 2}, - [4009] = {.lex_state = 128, .external_lex_state = 6}, + [4005] = {.lex_state = 128, .external_lex_state = 5}, + [4006] = {.lex_state = 128, .external_lex_state = 5}, + [4007] = {.lex_state = 128, .external_lex_state = 5}, + [4008] = {.lex_state = 128, .external_lex_state = 2}, + [4009] = {.lex_state = 128, .external_lex_state = 5}, [4010] = {.lex_state = 128, .external_lex_state = 5}, [4011] = {.lex_state = 128, .external_lex_state = 5}, - [4012] = {.lex_state = 128, .external_lex_state = 5}, - [4013] = {.lex_state = 128, .external_lex_state = 5}, - [4014] = {.lex_state = 128, .external_lex_state = 5}, - [4015] = {.lex_state = 128, .external_lex_state = 5}, + [4012] = {.lex_state = 128, .external_lex_state = 2}, + [4013] = {.lex_state = 128, .external_lex_state = 2}, + [4014] = {.lex_state = 128, .external_lex_state = 2}, + [4015] = {.lex_state = 128, .external_lex_state = 6}, [4016] = {.lex_state = 128, .external_lex_state = 5}, - [4017] = {.lex_state = 128, .external_lex_state = 5}, + [4017] = {.lex_state = 128, .external_lex_state = 6}, [4018] = {.lex_state = 128, .external_lex_state = 5}, [4019] = {.lex_state = 128, .external_lex_state = 2}, - [4020] = {.lex_state = 128, .external_lex_state = 2}, + [4020] = {.lex_state = 128, .external_lex_state = 5}, [4021] = {.lex_state = 128, .external_lex_state = 6}, - [4022] = {.lex_state = 20, .external_lex_state = 2}, - [4023] = {.lex_state = 128, .external_lex_state = 5}, + [4022] = {.lex_state = 128, .external_lex_state = 2}, + [4023] = {.lex_state = 128, .external_lex_state = 6}, [4024] = {.lex_state = 128, .external_lex_state = 5}, [4025] = {.lex_state = 128, .external_lex_state = 5}, - [4026] = {.lex_state = 18, .external_lex_state = 9}, - [4027] = {.lex_state = 128, .external_lex_state = 2}, - [4028] = {.lex_state = 128, .external_lex_state = 5}, + [4026] = {.lex_state = 128, .external_lex_state = 5}, + [4027] = {.lex_state = 18, .external_lex_state = 7}, + [4028] = {.lex_state = 18, .external_lex_state = 7}, [4029] = {.lex_state = 128, .external_lex_state = 5}, - [4030] = {.lex_state = 128, .external_lex_state = 6}, + [4030] = {.lex_state = 128, .external_lex_state = 5}, [4031] = {.lex_state = 128, .external_lex_state = 5}, - [4032] = {.lex_state = 128, .external_lex_state = 5}, - [4033] = {.lex_state = 128, .external_lex_state = 5}, + [4032] = {.lex_state = 20, .external_lex_state = 2}, + [4033] = {.lex_state = 18, .external_lex_state = 7}, [4034] = {.lex_state = 128, .external_lex_state = 5}, [4035] = {.lex_state = 128, .external_lex_state = 5}, - [4036] = {.lex_state = 128, .external_lex_state = 5}, - [4037] = {.lex_state = 128, .external_lex_state = 2}, + [4036] = {.lex_state = 128, .external_lex_state = 2}, + [4037] = {.lex_state = 18, .external_lex_state = 9}, [4038] = {.lex_state = 128, .external_lex_state = 5}, - [4039] = {.lex_state = 128, .external_lex_state = 5}, - [4040] = {.lex_state = 128, .external_lex_state = 2}, - [4041] = {.lex_state = 128, .external_lex_state = 2}, + [4039] = {.lex_state = 128, .external_lex_state = 2}, + [4040] = {.lex_state = 128, .external_lex_state = 5}, + [4041] = {.lex_state = 128, .external_lex_state = 5}, [4042] = {.lex_state = 128, .external_lex_state = 5}, [4043] = {.lex_state = 128, .external_lex_state = 6}, - [4044] = {.lex_state = 128, .external_lex_state = 5}, + [4044] = {.lex_state = 20, .external_lex_state = 2}, [4045] = {.lex_state = 128, .external_lex_state = 5}, [4046] = {.lex_state = 128, .external_lex_state = 5}, - [4047] = {.lex_state = 128, .external_lex_state = 5}, + [4047] = {.lex_state = 128, .external_lex_state = 2}, [4048] = {.lex_state = 128, .external_lex_state = 2}, - [4049] = {.lex_state = 128, .external_lex_state = 2}, - [4050] = {.lex_state = 128, .external_lex_state = 5}, - [4051] = {.lex_state = 128, .external_lex_state = 2}, - [4052] = {.lex_state = 128, .external_lex_state = 5}, - [4053] = {.lex_state = 128, .external_lex_state = 5}, + [4049] = {.lex_state = 128, .external_lex_state = 5}, + [4050] = {.lex_state = 128, .external_lex_state = 2}, + [4051] = {.lex_state = 128, .external_lex_state = 5}, + [4052] = {.lex_state = 128, .external_lex_state = 2}, + [4053] = {.lex_state = 20, .external_lex_state = 2}, [4054] = {.lex_state = 128, .external_lex_state = 5}, - [4055] = {.lex_state = 128, .external_lex_state = 5}, - [4056] = {.lex_state = 128, .external_lex_state = 2}, - [4057] = {.lex_state = 128, .external_lex_state = 5}, - [4058] = {.lex_state = 128, .external_lex_state = 5}, + [4055] = {.lex_state = 128, .external_lex_state = 2}, + [4056] = {.lex_state = 128, .external_lex_state = 5}, + [4057] = {.lex_state = 128, .external_lex_state = 2}, + [4058] = {.lex_state = 128, .external_lex_state = 6}, [4059] = {.lex_state = 128, .external_lex_state = 5}, [4060] = {.lex_state = 128, .external_lex_state = 5}, - [4061] = {.lex_state = 128, .external_lex_state = 5}, - [4062] = {.lex_state = 128, .external_lex_state = 2}, - [4063] = {.lex_state = 20, .external_lex_state = 2}, - [4064] = {.lex_state = 128, .external_lex_state = 2}, - [4065] = {.lex_state = 128, .external_lex_state = 6}, + [4061] = {.lex_state = 128, .external_lex_state = 2}, + [4062] = {.lex_state = 128, .external_lex_state = 5}, + [4063] = {.lex_state = 128, .external_lex_state = 5}, + [4064] = {.lex_state = 128, .external_lex_state = 5}, + [4065] = {.lex_state = 128, .external_lex_state = 2}, [4066] = {.lex_state = 128, .external_lex_state = 5}, [4067] = {.lex_state = 128, .external_lex_state = 5}, [4068] = {.lex_state = 128, .external_lex_state = 5}, [4069] = {.lex_state = 128, .external_lex_state = 5}, [4070] = {.lex_state = 128, .external_lex_state = 2}, - [4071] = {.lex_state = 128, .external_lex_state = 5}, + [4071] = {.lex_state = 18, .external_lex_state = 7}, [4072] = {.lex_state = 128, .external_lex_state = 5}, [4073] = {.lex_state = 128, .external_lex_state = 5}, [4074] = {.lex_state = 128, .external_lex_state = 2}, - [4075] = {.lex_state = 128, .external_lex_state = 2}, + [4075] = {.lex_state = 128, .external_lex_state = 5}, [4076] = {.lex_state = 128, .external_lex_state = 2}, - [4077] = {.lex_state = 128, .external_lex_state = 2}, - [4078] = {.lex_state = 128, .external_lex_state = 2}, + [4077] = {.lex_state = 128, .external_lex_state = 5}, + [4078] = {.lex_state = 128, .external_lex_state = 5}, [4079] = {.lex_state = 128, .external_lex_state = 5}, [4080] = {.lex_state = 128, .external_lex_state = 5}, - [4081] = {.lex_state = 128, .external_lex_state = 5}, + [4081] = {.lex_state = 128, .external_lex_state = 2}, [4082] = {.lex_state = 128, .external_lex_state = 5}, [4083] = {.lex_state = 128, .external_lex_state = 5}, - [4084] = {.lex_state = 128, .external_lex_state = 2}, + [4084] = {.lex_state = 128, .external_lex_state = 5}, [4085] = {.lex_state = 128, .external_lex_state = 5}, - [4086] = {.lex_state = 128, .external_lex_state = 5}, + [4086] = {.lex_state = 128, .external_lex_state = 2}, [4087] = {.lex_state = 128, .external_lex_state = 5}, - [4088] = {.lex_state = 128, .external_lex_state = 2}, + [4088] = {.lex_state = 128, .external_lex_state = 5}, [4089] = {.lex_state = 128, .external_lex_state = 5}, [4090] = {.lex_state = 128, .external_lex_state = 5}, - [4091] = {.lex_state = 128, .external_lex_state = 5}, - [4092] = {.lex_state = 128, .external_lex_state = 5}, + [4091] = {.lex_state = 18, .external_lex_state = 7}, + [4092] = {.lex_state = 128, .external_lex_state = 2}, [4093] = {.lex_state = 128, .external_lex_state = 5}, [4094] = {.lex_state = 128, .external_lex_state = 5}, - [4095] = {.lex_state = 128, .external_lex_state = 5}, - [4096] = {.lex_state = 128, .external_lex_state = 5}, - [4097] = {.lex_state = 128, .external_lex_state = 5}, + [4095] = {.lex_state = 128, .external_lex_state = 2}, + [4096] = {.lex_state = 128, .external_lex_state = 2}, + [4097] = {.lex_state = 18, .external_lex_state = 7}, [4098] = {.lex_state = 128, .external_lex_state = 5}, [4099] = {.lex_state = 128, .external_lex_state = 5}, [4100] = {.lex_state = 128, .external_lex_state = 5}, @@ -17794,249 +17824,249 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4103] = {.lex_state = 128, .external_lex_state = 5}, [4104] = {.lex_state = 128, .external_lex_state = 5}, [4105] = {.lex_state = 128, .external_lex_state = 2}, - [4106] = {.lex_state = 11, .external_lex_state = 2}, - [4107] = {.lex_state = 128, .external_lex_state = 5}, - [4108] = {.lex_state = 18, .external_lex_state = 9}, - [4109] = {.lex_state = 128, .external_lex_state = 6}, - [4110] = {.lex_state = 128, .external_lex_state = 5}, + [4106] = {.lex_state = 128, .external_lex_state = 2}, + [4107] = {.lex_state = 128, .external_lex_state = 2}, + [4108] = {.lex_state = 128, .external_lex_state = 5}, + [4109] = {.lex_state = 128, .external_lex_state = 5}, + [4110] = {.lex_state = 128, .external_lex_state = 2}, [4111] = {.lex_state = 128, .external_lex_state = 5}, - [4112] = {.lex_state = 128, .external_lex_state = 5}, - [4113] = {.lex_state = 128, .external_lex_state = 2}, - [4114] = {.lex_state = 128, .external_lex_state = 5}, - [4115] = {.lex_state = 18, .external_lex_state = 9}, - [4116] = {.lex_state = 128, .external_lex_state = 6}, - [4117] = {.lex_state = 128, .external_lex_state = 5}, + [4112] = {.lex_state = 18, .external_lex_state = 9}, + [4113] = {.lex_state = 128, .external_lex_state = 5}, + [4114] = {.lex_state = 128, .external_lex_state = 2}, + [4115] = {.lex_state = 128, .external_lex_state = 5}, + [4116] = {.lex_state = 128, .external_lex_state = 5}, + [4117] = {.lex_state = 11, .external_lex_state = 2}, [4118] = {.lex_state = 128, .external_lex_state = 5}, [4119] = {.lex_state = 128, .external_lex_state = 5}, [4120] = {.lex_state = 128, .external_lex_state = 5}, [4121] = {.lex_state = 128, .external_lex_state = 5}, - [4122] = {.lex_state = 128, .external_lex_state = 5}, + [4122] = {.lex_state = 128, .external_lex_state = 2}, [4123] = {.lex_state = 128, .external_lex_state = 5}, - [4124] = {.lex_state = 128, .external_lex_state = 5}, + [4124] = {.lex_state = 20, .external_lex_state = 2}, [4125] = {.lex_state = 128, .external_lex_state = 5}, [4126] = {.lex_state = 128, .external_lex_state = 5}, [4127] = {.lex_state = 128, .external_lex_state = 5}, [4128] = {.lex_state = 128, .external_lex_state = 5}, - [4129] = {.lex_state = 128, .external_lex_state = 5}, - [4130] = {.lex_state = 128, .external_lex_state = 5}, + [4129] = {.lex_state = 18, .external_lex_state = 7}, + [4130] = {.lex_state = 128, .external_lex_state = 2}, [4131] = {.lex_state = 128, .external_lex_state = 5}, - [4132] = {.lex_state = 128, .external_lex_state = 2}, - [4133] = {.lex_state = 11, .external_lex_state = 2}, + [4132] = {.lex_state = 128, .external_lex_state = 5}, + [4133] = {.lex_state = 128, .external_lex_state = 5}, [4134] = {.lex_state = 128, .external_lex_state = 5}, - [4135] = {.lex_state = 128, .external_lex_state = 2}, - [4136] = {.lex_state = 18, .external_lex_state = 9}, + [4135] = {.lex_state = 128, .external_lex_state = 5}, + [4136] = {.lex_state = 128, .external_lex_state = 5}, [4137] = {.lex_state = 128, .external_lex_state = 5}, [4138] = {.lex_state = 128, .external_lex_state = 5}, [4139] = {.lex_state = 128, .external_lex_state = 5}, - [4140] = {.lex_state = 128, .external_lex_state = 5}, + [4140] = {.lex_state = 18, .external_lex_state = 7}, [4141] = {.lex_state = 128, .external_lex_state = 5}, - [4142] = {.lex_state = 18, .external_lex_state = 9}, - [4143] = {.lex_state = 128, .external_lex_state = 5}, + [4142] = {.lex_state = 128, .external_lex_state = 5}, + [4143] = {.lex_state = 128, .external_lex_state = 6}, [4144] = {.lex_state = 128, .external_lex_state = 5}, [4145] = {.lex_state = 128, .external_lex_state = 5}, [4146] = {.lex_state = 128, .external_lex_state = 5}, [4147] = {.lex_state = 128, .external_lex_state = 5}, [4148] = {.lex_state = 128, .external_lex_state = 5}, - [4149] = {.lex_state = 128, .external_lex_state = 2}, + [4149] = {.lex_state = 128, .external_lex_state = 5}, [4150] = {.lex_state = 128, .external_lex_state = 5}, - [4151] = {.lex_state = 128, .external_lex_state = 2}, - [4152] = {.lex_state = 128, .external_lex_state = 2}, - [4153] = {.lex_state = 128, .external_lex_state = 5}, - [4154] = {.lex_state = 128, .external_lex_state = 2}, - [4155] = {.lex_state = 128, .external_lex_state = 5}, + [4151] = {.lex_state = 128, .external_lex_state = 5}, + [4152] = {.lex_state = 128, .external_lex_state = 5}, + [4153] = {.lex_state = 18, .external_lex_state = 7}, + [4154] = {.lex_state = 128, .external_lex_state = 5}, + [4155] = {.lex_state = 8, .external_lex_state = 2}, [4156] = {.lex_state = 128, .external_lex_state = 5}, - [4157] = {.lex_state = 18, .external_lex_state = 9}, + [4157] = {.lex_state = 128, .external_lex_state = 5}, [4158] = {.lex_state = 128, .external_lex_state = 5}, - [4159] = {.lex_state = 128, .external_lex_state = 5}, + [4159] = {.lex_state = 8, .external_lex_state = 2}, [4160] = {.lex_state = 128, .external_lex_state = 5}, - [4161] = {.lex_state = 128, .external_lex_state = 5}, - [4162] = {.lex_state = 18, .external_lex_state = 9}, + [4161] = {.lex_state = 18, .external_lex_state = 9}, + [4162] = {.lex_state = 128, .external_lex_state = 5}, [4163] = {.lex_state = 128, .external_lex_state = 5}, [4164] = {.lex_state = 128, .external_lex_state = 5}, [4165] = {.lex_state = 128, .external_lex_state = 5}, - [4166] = {.lex_state = 128, .external_lex_state = 5}, - [4167] = {.lex_state = 128, .external_lex_state = 2}, - [4168] = {.lex_state = 128, .external_lex_state = 5}, + [4166] = {.lex_state = 128, .external_lex_state = 2}, + [4167] = {.lex_state = 128, .external_lex_state = 5}, + [4168] = {.lex_state = 128, .external_lex_state = 6}, [4169] = {.lex_state = 128, .external_lex_state = 5}, [4170] = {.lex_state = 128, .external_lex_state = 5}, [4171] = {.lex_state = 128, .external_lex_state = 5}, - [4172] = {.lex_state = 128, .external_lex_state = 5}, + [4172] = {.lex_state = 128, .external_lex_state = 2}, [4173] = {.lex_state = 128, .external_lex_state = 5}, - [4174] = {.lex_state = 18, .external_lex_state = 7}, - [4175] = {.lex_state = 18, .external_lex_state = 7}, + [4174] = {.lex_state = 128, .external_lex_state = 5}, + [4175] = {.lex_state = 128, .external_lex_state = 5}, [4176] = {.lex_state = 128, .external_lex_state = 5}, [4177] = {.lex_state = 128, .external_lex_state = 5}, [4178] = {.lex_state = 128, .external_lex_state = 5}, [4179] = {.lex_state = 128, .external_lex_state = 5}, [4180] = {.lex_state = 128, .external_lex_state = 5}, - [4181] = {.lex_state = 128, .external_lex_state = 2}, + [4181] = {.lex_state = 128, .external_lex_state = 5}, [4182] = {.lex_state = 128, .external_lex_state = 5}, [4183] = {.lex_state = 128, .external_lex_state = 5}, [4184] = {.lex_state = 128, .external_lex_state = 5}, [4185] = {.lex_state = 128, .external_lex_state = 2}, [4186] = {.lex_state = 128, .external_lex_state = 5}, - [4187] = {.lex_state = 18, .external_lex_state = 7}, + [4187] = {.lex_state = 128, .external_lex_state = 5}, [4188] = {.lex_state = 128, .external_lex_state = 5}, [4189] = {.lex_state = 128, .external_lex_state = 5}, - [4190] = {.lex_state = 18, .external_lex_state = 7}, + [4190] = {.lex_state = 128, .external_lex_state = 5}, [4191] = {.lex_state = 128, .external_lex_state = 5}, [4192] = {.lex_state = 128, .external_lex_state = 5}, [4193] = {.lex_state = 128, .external_lex_state = 2}, - [4194] = {.lex_state = 128, .external_lex_state = 2}, - [4195] = {.lex_state = 18, .external_lex_state = 7}, - [4196] = {.lex_state = 18, .external_lex_state = 7}, + [4194] = {.lex_state = 128, .external_lex_state = 5}, + [4195] = {.lex_state = 128, .external_lex_state = 5}, + [4196] = {.lex_state = 128, .external_lex_state = 5}, [4197] = {.lex_state = 128, .external_lex_state = 5}, [4198] = {.lex_state = 128, .external_lex_state = 2}, [4199] = {.lex_state = 128, .external_lex_state = 5}, - [4200] = {.lex_state = 11, .external_lex_state = 2}, + [4200] = {.lex_state = 128, .external_lex_state = 2}, [4201] = {.lex_state = 128, .external_lex_state = 2}, [4202] = {.lex_state = 128, .external_lex_state = 5}, [4203] = {.lex_state = 128, .external_lex_state = 5}, - [4204] = {.lex_state = 128, .external_lex_state = 2}, + [4204] = {.lex_state = 128, .external_lex_state = 5}, [4205] = {.lex_state = 128, .external_lex_state = 5}, [4206] = {.lex_state = 128, .external_lex_state = 5}, - [4207] = {.lex_state = 128, .external_lex_state = 5}, + [4207] = {.lex_state = 128, .external_lex_state = 2}, [4208] = {.lex_state = 128, .external_lex_state = 5}, - [4209] = {.lex_state = 128, .external_lex_state = 2}, - [4210] = {.lex_state = 128, .external_lex_state = 5}, - [4211] = {.lex_state = 128, .external_lex_state = 2}, - [4212] = {.lex_state = 128, .external_lex_state = 2}, + [4209] = {.lex_state = 18, .external_lex_state = 9}, + [4210] = {.lex_state = 128, .external_lex_state = 6}, + [4211] = {.lex_state = 128, .external_lex_state = 5}, + [4212] = {.lex_state = 128, .external_lex_state = 5}, [4213] = {.lex_state = 128, .external_lex_state = 5}, - [4214] = {.lex_state = 128, .external_lex_state = 2}, - [4215] = {.lex_state = 128, .external_lex_state = 2}, + [4214] = {.lex_state = 128, .external_lex_state = 5}, + [4215] = {.lex_state = 128, .external_lex_state = 5}, [4216] = {.lex_state = 128, .external_lex_state = 5}, [4217] = {.lex_state = 128, .external_lex_state = 5}, [4218] = {.lex_state = 128, .external_lex_state = 5}, [4219] = {.lex_state = 128, .external_lex_state = 5}, [4220] = {.lex_state = 128, .external_lex_state = 5}, - [4221] = {.lex_state = 128, .external_lex_state = 2}, + [4221] = {.lex_state = 2, .external_lex_state = 2}, [4222] = {.lex_state = 128, .external_lex_state = 2}, - [4223] = {.lex_state = 18, .external_lex_state = 9}, + [4223] = {.lex_state = 128, .external_lex_state = 5}, [4224] = {.lex_state = 128, .external_lex_state = 5}, [4225] = {.lex_state = 128, .external_lex_state = 5}, [4226] = {.lex_state = 128, .external_lex_state = 5}, [4227] = {.lex_state = 128, .external_lex_state = 5}, - [4228] = {.lex_state = 128, .external_lex_state = 2}, - [4229] = {.lex_state = 18, .external_lex_state = 7}, - [4230] = {.lex_state = 18, .external_lex_state = 7}, - [4231] = {.lex_state = 18, .external_lex_state = 7}, - [4232] = {.lex_state = 18, .external_lex_state = 7}, - [4233] = {.lex_state = 18, .external_lex_state = 7}, - [4234] = {.lex_state = 18, .external_lex_state = 7}, + [4228] = {.lex_state = 128, .external_lex_state = 5}, + [4229] = {.lex_state = 128, .external_lex_state = 5}, + [4230] = {.lex_state = 128, .external_lex_state = 5}, + [4231] = {.lex_state = 128, .external_lex_state = 5}, + [4232] = {.lex_state = 128, .external_lex_state = 5}, + [4233] = {.lex_state = 128, .external_lex_state = 5}, + [4234] = {.lex_state = 128, .external_lex_state = 5}, [4235] = {.lex_state = 128, .external_lex_state = 5}, - [4236] = {.lex_state = 128, .external_lex_state = 5}, - [4237] = {.lex_state = 128, .external_lex_state = 2}, + [4236] = {.lex_state = 128, .external_lex_state = 2}, + [4237] = {.lex_state = 128, .external_lex_state = 5}, [4238] = {.lex_state = 128, .external_lex_state = 5}, [4239] = {.lex_state = 128, .external_lex_state = 5}, - [4240] = {.lex_state = 18, .external_lex_state = 7}, - [4241] = {.lex_state = 18, .external_lex_state = 7}, + [4240] = {.lex_state = 128, .external_lex_state = 2}, + [4241] = {.lex_state = 128, .external_lex_state = 5}, [4242] = {.lex_state = 128, .external_lex_state = 5}, - [4243] = {.lex_state = 128, .external_lex_state = 5}, - [4244] = {.lex_state = 128, .external_lex_state = 2}, - [4245] = {.lex_state = 128, .external_lex_state = 5}, - [4246] = {.lex_state = 128, .external_lex_state = 2}, - [4247] = {.lex_state = 128, .external_lex_state = 2}, + [4243] = {.lex_state = 128, .external_lex_state = 2}, + [4244] = {.lex_state = 128, .external_lex_state = 5}, + [4245] = {.lex_state = 128, .external_lex_state = 2}, + [4246] = {.lex_state = 128, .external_lex_state = 5}, + [4247] = {.lex_state = 128, .external_lex_state = 5}, [4248] = {.lex_state = 128, .external_lex_state = 5}, [4249] = {.lex_state = 128, .external_lex_state = 5}, [4250] = {.lex_state = 128, .external_lex_state = 5}, - [4251] = {.lex_state = 2, .external_lex_state = 2}, - [4252] = {.lex_state = 128, .external_lex_state = 2}, - [4253] = {.lex_state = 20, .external_lex_state = 2}, - [4254] = {.lex_state = 20, .external_lex_state = 2}, - [4255] = {.lex_state = 18, .external_lex_state = 7}, - [4256] = {.lex_state = 18, .external_lex_state = 7}, - [4257] = {.lex_state = 128, .external_lex_state = 2}, - [4258] = {.lex_state = 128, .external_lex_state = 2}, + [4251] = {.lex_state = 128, .external_lex_state = 2}, + [4252] = {.lex_state = 128, .external_lex_state = 5}, + [4253] = {.lex_state = 128, .external_lex_state = 2}, + [4254] = {.lex_state = 18, .external_lex_state = 7}, + [4255] = {.lex_state = 128, .external_lex_state = 5}, + [4256] = {.lex_state = 128, .external_lex_state = 5}, + [4257] = {.lex_state = 128, .external_lex_state = 5}, + [4258] = {.lex_state = 128, .external_lex_state = 5}, [4259] = {.lex_state = 128, .external_lex_state = 5}, - [4260] = {.lex_state = 128, .external_lex_state = 2}, + [4260] = {.lex_state = 128, .external_lex_state = 5}, [4261] = {.lex_state = 128, .external_lex_state = 2}, [4262] = {.lex_state = 128, .external_lex_state = 5}, [4263] = {.lex_state = 128, .external_lex_state = 5}, [4264] = {.lex_state = 128, .external_lex_state = 5}, [4265] = {.lex_state = 128, .external_lex_state = 5}, [4266] = {.lex_state = 128, .external_lex_state = 5}, - [4267] = {.lex_state = 128, .external_lex_state = 5}, - [4268] = {.lex_state = 18, .external_lex_state = 7}, - [4269] = {.lex_state = 18, .external_lex_state = 7}, - [4270] = {.lex_state = 128, .external_lex_state = 5}, + [4267] = {.lex_state = 128, .external_lex_state = 2}, + [4268] = {.lex_state = 128, .external_lex_state = 2}, + [4269] = {.lex_state = 128, .external_lex_state = 5}, + [4270] = {.lex_state = 128, .external_lex_state = 2}, [4271] = {.lex_state = 128, .external_lex_state = 5}, [4272] = {.lex_state = 128, .external_lex_state = 2}, [4273] = {.lex_state = 128, .external_lex_state = 5}, [4274] = {.lex_state = 128, .external_lex_state = 5}, - [4275] = {.lex_state = 128, .external_lex_state = 5}, - [4276] = {.lex_state = 128, .external_lex_state = 2}, + [4275] = {.lex_state = 128, .external_lex_state = 2}, + [4276] = {.lex_state = 128, .external_lex_state = 5}, [4277] = {.lex_state = 128, .external_lex_state = 5}, [4278] = {.lex_state = 128, .external_lex_state = 5}, [4279] = {.lex_state = 128, .external_lex_state = 5}, - [4280] = {.lex_state = 128, .external_lex_state = 2}, + [4280] = {.lex_state = 128, .external_lex_state = 5}, [4281] = {.lex_state = 128, .external_lex_state = 2}, [4282] = {.lex_state = 128, .external_lex_state = 5}, [4283] = {.lex_state = 128, .external_lex_state = 5}, - [4284] = {.lex_state = 128, .external_lex_state = 2}, + [4284] = {.lex_state = 128, .external_lex_state = 5}, [4285] = {.lex_state = 128, .external_lex_state = 5}, - [4286] = {.lex_state = 128, .external_lex_state = 5}, - [4287] = {.lex_state = 128, .external_lex_state = 2}, - [4288] = {.lex_state = 128, .external_lex_state = 5}, + [4286] = {.lex_state = 128, .external_lex_state = 2}, + [4287] = {.lex_state = 128, .external_lex_state = 5}, + [4288] = {.lex_state = 2, .external_lex_state = 2}, [4289] = {.lex_state = 128, .external_lex_state = 2}, - [4290] = {.lex_state = 128, .external_lex_state = 2}, - [4291] = {.lex_state = 128, .external_lex_state = 2}, - [4292] = {.lex_state = 128, .external_lex_state = 2}, - [4293] = {.lex_state = 128, .external_lex_state = 5}, - [4294] = {.lex_state = 128, .external_lex_state = 2}, + [4290] = {.lex_state = 20, .external_lex_state = 2}, + [4291] = {.lex_state = 128, .external_lex_state = 6}, + [4292] = {.lex_state = 18, .external_lex_state = 7}, + [4293] = {.lex_state = 20, .external_lex_state = 2}, + [4294] = {.lex_state = 128, .external_lex_state = 5}, [4295] = {.lex_state = 128, .external_lex_state = 5}, - [4296] = {.lex_state = 128, .external_lex_state = 5}, + [4296] = {.lex_state = 11, .external_lex_state = 2}, [4297] = {.lex_state = 128, .external_lex_state = 5}, - [4298] = {.lex_state = 128, .external_lex_state = 5}, - [4299] = {.lex_state = 128, .external_lex_state = 2}, + [4298] = {.lex_state = 128, .external_lex_state = 2}, + [4299] = {.lex_state = 128, .external_lex_state = 5}, [4300] = {.lex_state = 128, .external_lex_state = 2}, - [4301] = {.lex_state = 128, .external_lex_state = 2}, + [4301] = {.lex_state = 18, .external_lex_state = 7}, [4302] = {.lex_state = 128, .external_lex_state = 2}, - [4303] = {.lex_state = 128, .external_lex_state = 2}, - [4304] = {.lex_state = 20, .external_lex_state = 2}, - [4305] = {.lex_state = 20, .external_lex_state = 2}, - [4306] = {.lex_state = 128, .external_lex_state = 5}, - [4307] = {.lex_state = 128, .external_lex_state = 5}, + [4303] = {.lex_state = 20, .external_lex_state = 2}, + [4304] = {.lex_state = 128, .external_lex_state = 2}, + [4305] = {.lex_state = 128, .external_lex_state = 5}, + [4306] = {.lex_state = 18, .external_lex_state = 9}, + [4307] = {.lex_state = 128, .external_lex_state = 2}, [4308] = {.lex_state = 128, .external_lex_state = 2}, [4309] = {.lex_state = 128, .external_lex_state = 5}, - [4310] = {.lex_state = 128, .external_lex_state = 2}, - [4311] = {.lex_state = 128, .external_lex_state = 5}, - [4312] = {.lex_state = 7, .external_lex_state = 2}, - [4313] = {.lex_state = 128, .external_lex_state = 5}, - [4314] = {.lex_state = 128, .external_lex_state = 5}, - [4315] = {.lex_state = 20, .external_lex_state = 2}, - [4316] = {.lex_state = 20, .external_lex_state = 2}, - [4317] = {.lex_state = 128, .external_lex_state = 5}, - [4318] = {.lex_state = 128, .external_lex_state = 2}, + [4310] = {.lex_state = 128, .external_lex_state = 5}, + [4311] = {.lex_state = 128, .external_lex_state = 2}, + [4312] = {.lex_state = 128, .external_lex_state = 5}, + [4313] = {.lex_state = 18, .external_lex_state = 7}, + [4314] = {.lex_state = 128, .external_lex_state = 6}, + [4315] = {.lex_state = 128, .external_lex_state = 2}, + [4316] = {.lex_state = 128, .external_lex_state = 2}, + [4317] = {.lex_state = 128, .external_lex_state = 2}, + [4318] = {.lex_state = 128, .external_lex_state = 5}, [4319] = {.lex_state = 128, .external_lex_state = 5}, - [4320] = {.lex_state = 20, .external_lex_state = 2}, - [4321] = {.lex_state = 20, .external_lex_state = 2}, - [4322] = {.lex_state = 128, .external_lex_state = 5}, - [4323] = {.lex_state = 128, .external_lex_state = 5}, + [4320] = {.lex_state = 128, .external_lex_state = 5}, + [4321] = {.lex_state = 128, .external_lex_state = 2}, + [4322] = {.lex_state = 128, .external_lex_state = 2}, + [4323] = {.lex_state = 20, .external_lex_state = 2}, [4324] = {.lex_state = 128, .external_lex_state = 5}, - [4325] = {.lex_state = 128, .external_lex_state = 5}, - [4326] = {.lex_state = 128, .external_lex_state = 5}, + [4325] = {.lex_state = 20, .external_lex_state = 2}, + [4326] = {.lex_state = 18, .external_lex_state = 9}, [4327] = {.lex_state = 128, .external_lex_state = 5}, [4328] = {.lex_state = 128, .external_lex_state = 5}, [4329] = {.lex_state = 128, .external_lex_state = 5}, - [4330] = {.lex_state = 128, .external_lex_state = 2}, - [4331] = {.lex_state = 128, .external_lex_state = 5}, + [4330] = {.lex_state = 20, .external_lex_state = 2}, + [4331] = {.lex_state = 128, .external_lex_state = 2}, [4332] = {.lex_state = 128, .external_lex_state = 5}, - [4333] = {.lex_state = 128, .external_lex_state = 2}, + [4333] = {.lex_state = 128, .external_lex_state = 5}, [4334] = {.lex_state = 128, .external_lex_state = 5}, [4335] = {.lex_state = 128, .external_lex_state = 5}, [4336] = {.lex_state = 128, .external_lex_state = 5}, - [4337] = {.lex_state = 20, .external_lex_state = 2}, - [4338] = {.lex_state = 20, .external_lex_state = 2}, - [4339] = {.lex_state = 20, .external_lex_state = 2}, + [4337] = {.lex_state = 128, .external_lex_state = 5}, + [4338] = {.lex_state = 128, .external_lex_state = 5}, + [4339] = {.lex_state = 128, .external_lex_state = 5}, [4340] = {.lex_state = 128, .external_lex_state = 5}, [4341] = {.lex_state = 20, .external_lex_state = 2}, - [4342] = {.lex_state = 20, .external_lex_state = 2}, - [4343] = {.lex_state = 20, .external_lex_state = 2}, - [4344] = {.lex_state = 128, .external_lex_state = 2}, + [4342] = {.lex_state = 128, .external_lex_state = 5}, + [4343] = {.lex_state = 128, .external_lex_state = 5}, + [4344] = {.lex_state = 128, .external_lex_state = 5}, [4345] = {.lex_state = 128, .external_lex_state = 5}, - [4346] = {.lex_state = 20, .external_lex_state = 2}, - [4347] = {.lex_state = 20, .external_lex_state = 2}, - [4348] = {.lex_state = 128, .external_lex_state = 5}, + [4346] = {.lex_state = 128, .external_lex_state = 2}, + [4347] = {.lex_state = 8, .external_lex_state = 2}, + [4348] = {.lex_state = 18, .external_lex_state = 9}, [4349] = {.lex_state = 128, .external_lex_state = 2}, [4350] = {.lex_state = 128, .external_lex_state = 5}, [4351] = {.lex_state = 128, .external_lex_state = 5}, @@ -18044,640 +18074,640 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4353] = {.lex_state = 128, .external_lex_state = 5}, [4354] = {.lex_state = 128, .external_lex_state = 5}, [4355] = {.lex_state = 128, .external_lex_state = 5}, - [4356] = {.lex_state = 128, .external_lex_state = 5}, - [4357] = {.lex_state = 128, .external_lex_state = 5}, + [4356] = {.lex_state = 128, .external_lex_state = 2}, + [4357] = {.lex_state = 128, .external_lex_state = 2}, [4358] = {.lex_state = 128, .external_lex_state = 5}, [4359] = {.lex_state = 128, .external_lex_state = 5}, - [4360] = {.lex_state = 128, .external_lex_state = 5}, - [4361] = {.lex_state = 20, .external_lex_state = 2}, - [4362] = {.lex_state = 20, .external_lex_state = 2}, + [4360] = {.lex_state = 128, .external_lex_state = 2}, + [4361] = {.lex_state = 128, .external_lex_state = 5}, + [4362] = {.lex_state = 18, .external_lex_state = 7}, [4363] = {.lex_state = 128, .external_lex_state = 5}, - [4364] = {.lex_state = 128, .external_lex_state = 2}, + [4364] = {.lex_state = 128, .external_lex_state = 5}, [4365] = {.lex_state = 128, .external_lex_state = 2}, [4366] = {.lex_state = 128, .external_lex_state = 5}, [4367] = {.lex_state = 128, .external_lex_state = 2}, - [4368] = {.lex_state = 128, .external_lex_state = 5}, - [4369] = {.lex_state = 128, .external_lex_state = 2}, - [4370] = {.lex_state = 128, .external_lex_state = 5}, + [4368] = {.lex_state = 18, .external_lex_state = 7}, + [4369] = {.lex_state = 128, .external_lex_state = 5}, + [4370] = {.lex_state = 128, .external_lex_state = 2}, [4371] = {.lex_state = 128, .external_lex_state = 5}, - [4372] = {.lex_state = 128, .external_lex_state = 5}, + [4372] = {.lex_state = 128, .external_lex_state = 2}, [4373] = {.lex_state = 128, .external_lex_state = 5}, - [4374] = {.lex_state = 18, .external_lex_state = 9}, + [4374] = {.lex_state = 18, .external_lex_state = 7}, [4375] = {.lex_state = 128, .external_lex_state = 5}, - [4376] = {.lex_state = 128, .external_lex_state = 5}, - [4377] = {.lex_state = 128, .external_lex_state = 5}, + [4376] = {.lex_state = 128, .external_lex_state = 2}, + [4377] = {.lex_state = 128, .external_lex_state = 2}, [4378] = {.lex_state = 128, .external_lex_state = 5}, [4379] = {.lex_state = 128, .external_lex_state = 2}, [4380] = {.lex_state = 128, .external_lex_state = 2}, [4381] = {.lex_state = 128, .external_lex_state = 2}, [4382] = {.lex_state = 128, .external_lex_state = 5}, [4383] = {.lex_state = 128, .external_lex_state = 2}, - [4384] = {.lex_state = 128, .external_lex_state = 2}, - [4385] = {.lex_state = 128, .external_lex_state = 2}, - [4386] = {.lex_state = 128, .external_lex_state = 2}, - [4387] = {.lex_state = 128, .external_lex_state = 2}, - [4388] = {.lex_state = 128, .external_lex_state = 6}, + [4384] = {.lex_state = 128, .external_lex_state = 5}, + [4385] = {.lex_state = 128, .external_lex_state = 5}, + [4386] = {.lex_state = 20, .external_lex_state = 2}, + [4387] = {.lex_state = 20, .external_lex_state = 2}, + [4388] = {.lex_state = 18, .external_lex_state = 7}, [4389] = {.lex_state = 128, .external_lex_state = 5}, [4390] = {.lex_state = 128, .external_lex_state = 5}, [4391] = {.lex_state = 128, .external_lex_state = 5}, [4392] = {.lex_state = 128, .external_lex_state = 5}, [4393] = {.lex_state = 128, .external_lex_state = 5}, [4394] = {.lex_state = 128, .external_lex_state = 5}, - [4395] = {.lex_state = 18, .external_lex_state = 9}, + [4395] = {.lex_state = 128, .external_lex_state = 2}, [4396] = {.lex_state = 128, .external_lex_state = 5}, [4397] = {.lex_state = 128, .external_lex_state = 5}, [4398] = {.lex_state = 128, .external_lex_state = 5}, [4399] = {.lex_state = 128, .external_lex_state = 5}, - [4400] = {.lex_state = 128, .external_lex_state = 5}, - [4401] = {.lex_state = 20, .external_lex_state = 2}, + [4400] = {.lex_state = 18, .external_lex_state = 7}, + [4401] = {.lex_state = 18, .external_lex_state = 7}, [4402] = {.lex_state = 128, .external_lex_state = 5}, - [4403] = {.lex_state = 8, .external_lex_state = 2}, - [4404] = {.lex_state = 128, .external_lex_state = 5}, - [4405] = {.lex_state = 128, .external_lex_state = 5}, + [4403] = {.lex_state = 128, .external_lex_state = 2}, + [4404] = {.lex_state = 128, .external_lex_state = 2}, + [4405] = {.lex_state = 128, .external_lex_state = 2}, [4406] = {.lex_state = 128, .external_lex_state = 5}, [4407] = {.lex_state = 128, .external_lex_state = 5}, - [4408] = {.lex_state = 128, .external_lex_state = 5}, - [4409] = {.lex_state = 128, .external_lex_state = 2}, - [4410] = {.lex_state = 128, .external_lex_state = 2}, - [4411] = {.lex_state = 128, .external_lex_state = 2}, + [4408] = {.lex_state = 128, .external_lex_state = 2}, + [4409] = {.lex_state = 128, .external_lex_state = 5}, + [4410] = {.lex_state = 128, .external_lex_state = 5}, + [4411] = {.lex_state = 128, .external_lex_state = 5}, [4412] = {.lex_state = 128, .external_lex_state = 2}, - [4413] = {.lex_state = 128, .external_lex_state = 6}, + [4413] = {.lex_state = 128, .external_lex_state = 2}, [4414] = {.lex_state = 128, .external_lex_state = 5}, [4415] = {.lex_state = 128, .external_lex_state = 5}, [4416] = {.lex_state = 128, .external_lex_state = 5}, - [4417] = {.lex_state = 18, .external_lex_state = 7}, - [4418] = {.lex_state = 128, .external_lex_state = 5}, - [4419] = {.lex_state = 18, .external_lex_state = 7}, - [4420] = {.lex_state = 128, .external_lex_state = 5}, - [4421] = {.lex_state = 20, .external_lex_state = 2}, + [4417] = {.lex_state = 128, .external_lex_state = 5}, + [4418] = {.lex_state = 128, .external_lex_state = 2}, + [4419] = {.lex_state = 128, .external_lex_state = 5}, + [4420] = {.lex_state = 20, .external_lex_state = 2}, + [4421] = {.lex_state = 18, .external_lex_state = 7}, [4422] = {.lex_state = 128, .external_lex_state = 5}, - [4423] = {.lex_state = 128, .external_lex_state = 5}, - [4424] = {.lex_state = 128, .external_lex_state = 2}, + [4423] = {.lex_state = 20, .external_lex_state = 2}, + [4424] = {.lex_state = 18, .external_lex_state = 7}, [4425] = {.lex_state = 128, .external_lex_state = 5}, [4426] = {.lex_state = 128, .external_lex_state = 5}, - [4427] = {.lex_state = 18, .external_lex_state = 7}, - [4428] = {.lex_state = 128, .external_lex_state = 6}, - [4429] = {.lex_state = 8, .external_lex_state = 2}, + [4427] = {.lex_state = 11, .external_lex_state = 2}, + [4428] = {.lex_state = 128, .external_lex_state = 2}, + [4429] = {.lex_state = 128, .external_lex_state = 5}, [4430] = {.lex_state = 128, .external_lex_state = 5}, [4431] = {.lex_state = 128, .external_lex_state = 5}, - [4432] = {.lex_state = 8, .external_lex_state = 2}, + [4432] = {.lex_state = 18, .external_lex_state = 9}, [4433] = {.lex_state = 128, .external_lex_state = 5}, - [4434] = {.lex_state = 128, .external_lex_state = 5}, - [4435] = {.lex_state = 128, .external_lex_state = 2}, + [4434] = {.lex_state = 20, .external_lex_state = 2}, + [4435] = {.lex_state = 128, .external_lex_state = 5}, [4436] = {.lex_state = 128, .external_lex_state = 5}, - [4437] = {.lex_state = 18, .external_lex_state = 7}, + [4437] = {.lex_state = 128, .external_lex_state = 5}, [4438] = {.lex_state = 128, .external_lex_state = 5}, - [4439] = {.lex_state = 128, .external_lex_state = 5}, + [4439] = {.lex_state = 128, .external_lex_state = 2}, [4440] = {.lex_state = 18, .external_lex_state = 7}, - [4441] = {.lex_state = 128, .external_lex_state = 2}, - [4442] = {.lex_state = 128, .external_lex_state = 5}, + [4441] = {.lex_state = 128, .external_lex_state = 5}, + [4442] = {.lex_state = 7, .external_lex_state = 2}, [4443] = {.lex_state = 128, .external_lex_state = 5}, [4444] = {.lex_state = 128, .external_lex_state = 2}, - [4445] = {.lex_state = 128, .external_lex_state = 5}, + [4445] = {.lex_state = 128, .external_lex_state = 2}, [4446] = {.lex_state = 128, .external_lex_state = 5}, - [4447] = {.lex_state = 128, .external_lex_state = 5}, - [4448] = {.lex_state = 18, .external_lex_state = 7}, + [4447] = {.lex_state = 18, .external_lex_state = 9}, + [4448] = {.lex_state = 128, .external_lex_state = 5}, [4449] = {.lex_state = 128, .external_lex_state = 2}, [4450] = {.lex_state = 128, .external_lex_state = 2}, - [4451] = {.lex_state = 128, .external_lex_state = 5}, - [4452] = {.lex_state = 7, .external_lex_state = 2}, + [4451] = {.lex_state = 20, .external_lex_state = 2}, + [4452] = {.lex_state = 128, .external_lex_state = 2}, [4453] = {.lex_state = 128, .external_lex_state = 5}, [4454] = {.lex_state = 128, .external_lex_state = 5}, - [4455] = {.lex_state = 128, .external_lex_state = 5}, + [4455] = {.lex_state = 128, .external_lex_state = 2}, [4456] = {.lex_state = 128, .external_lex_state = 5}, - [4457] = {.lex_state = 128, .external_lex_state = 2}, + [4457] = {.lex_state = 128, .external_lex_state = 5}, [4458] = {.lex_state = 128, .external_lex_state = 5}, [4459] = {.lex_state = 128, .external_lex_state = 5}, - [4460] = {.lex_state = 128, .external_lex_state = 2}, - [4461] = {.lex_state = 12, .external_lex_state = 2}, - [4462] = {.lex_state = 14, .external_lex_state = 10}, - [4463] = {.lex_state = 23, .external_lex_state = 10}, - [4464] = {.lex_state = 128, .external_lex_state = 2}, - [4465] = {.lex_state = 128, .external_lex_state = 2}, - [4466] = {.lex_state = 128, .external_lex_state = 2}, - [4467] = {.lex_state = 128, .external_lex_state = 2}, - [4468] = {.lex_state = 128, .external_lex_state = 2}, - [4469] = {.lex_state = 2, .external_lex_state = 2}, + [4460] = {.lex_state = 128, .external_lex_state = 5}, + [4461] = {.lex_state = 128, .external_lex_state = 5}, + [4462] = {.lex_state = 128, .external_lex_state = 2}, + [4463] = {.lex_state = 128, .external_lex_state = 5}, + [4464] = {.lex_state = 128, .external_lex_state = 6}, + [4465] = {.lex_state = 20, .external_lex_state = 2}, + [4466] = {.lex_state = 128, .external_lex_state = 5}, + [4467] = {.lex_state = 18, .external_lex_state = 7}, + [4468] = {.lex_state = 128, .external_lex_state = 5}, + [4469] = {.lex_state = 18, .external_lex_state = 7}, [4470] = {.lex_state = 128, .external_lex_state = 5}, - [4471] = {.lex_state = 128, .external_lex_state = 2}, - [4472] = {.lex_state = 128, .external_lex_state = 5}, - [4473] = {.lex_state = 128, .external_lex_state = 5}, + [4471] = {.lex_state = 128, .external_lex_state = 5}, + [4472] = {.lex_state = 18, .external_lex_state = 9}, + [4473] = {.lex_state = 11, .external_lex_state = 2}, [4474] = {.lex_state = 128, .external_lex_state = 2}, - [4475] = {.lex_state = 14, .external_lex_state = 10}, + [4475] = {.lex_state = 7, .external_lex_state = 2}, [4476] = {.lex_state = 128, .external_lex_state = 5}, - [4477] = {.lex_state = 128, .external_lex_state = 2}, - [4478] = {.lex_state = 128, .external_lex_state = 5}, - [4479] = {.lex_state = 128, .external_lex_state = 2}, - [4480] = {.lex_state = 128, .external_lex_state = 2}, + [4477] = {.lex_state = 128, .external_lex_state = 6}, + [4478] = {.lex_state = 128, .external_lex_state = 2}, + [4479] = {.lex_state = 128, .external_lex_state = 5}, + [4480] = {.lex_state = 128, .external_lex_state = 5}, [4481] = {.lex_state = 128, .external_lex_state = 2}, - [4482] = {.lex_state = 128, .external_lex_state = 2}, - [4483] = {.lex_state = 128, .external_lex_state = 2}, + [4482] = {.lex_state = 18, .external_lex_state = 7}, + [4483] = {.lex_state = 18, .external_lex_state = 7}, [4484] = {.lex_state = 128, .external_lex_state = 5}, - [4485] = {.lex_state = 128, .external_lex_state = 2}, - [4486] = {.lex_state = 128, .external_lex_state = 2}, + [4485] = {.lex_state = 128, .external_lex_state = 5}, + [4486] = {.lex_state = 128, .external_lex_state = 5}, [4487] = {.lex_state = 128, .external_lex_state = 5}, - [4488] = {.lex_state = 128, .external_lex_state = 2}, + [4488] = {.lex_state = 128, .external_lex_state = 5}, [4489] = {.lex_state = 128, .external_lex_state = 5}, - [4490] = {.lex_state = 128, .external_lex_state = 2}, + [4490] = {.lex_state = 128, .external_lex_state = 5}, [4491] = {.lex_state = 128, .external_lex_state = 2}, - [4492] = {.lex_state = 128, .external_lex_state = 2}, - [4493] = {.lex_state = 128, .external_lex_state = 2}, - [4494] = {.lex_state = 18, .external_lex_state = 8}, - [4495] = {.lex_state = 128, .external_lex_state = 2}, + [4492] = {.lex_state = 128, .external_lex_state = 5}, + [4493] = {.lex_state = 14, .external_lex_state = 10}, + [4494] = {.lex_state = 23, .external_lex_state = 10}, + [4495] = {.lex_state = 14, .external_lex_state = 10}, [4496] = {.lex_state = 128, .external_lex_state = 5}, [4497] = {.lex_state = 14, .external_lex_state = 10}, [4498] = {.lex_state = 23, .external_lex_state = 10}, [4499] = {.lex_state = 128, .external_lex_state = 2}, - [4500] = {.lex_state = 128, .external_lex_state = 2}, - [4501] = {.lex_state = 14, .external_lex_state = 10}, + [4500] = {.lex_state = 7, .external_lex_state = 2}, + [4501] = {.lex_state = 23, .external_lex_state = 10}, [4502] = {.lex_state = 128, .external_lex_state = 2}, - [4503] = {.lex_state = 23, .external_lex_state = 10}, + [4503] = {.lex_state = 128, .external_lex_state = 2}, [4504] = {.lex_state = 128, .external_lex_state = 2}, [4505] = {.lex_state = 128, .external_lex_state = 2}, - [4506] = {.lex_state = 128, .external_lex_state = 5}, - [4507] = {.lex_state = 23, .external_lex_state = 10}, + [4506] = {.lex_state = 128, .external_lex_state = 2}, + [4507] = {.lex_state = 128, .external_lex_state = 2}, [4508] = {.lex_state = 128, .external_lex_state = 2}, - [4509] = {.lex_state = 128, .external_lex_state = 2}, - [4510] = {.lex_state = 128, .external_lex_state = 5}, - [4511] = {.lex_state = 128, .external_lex_state = 2}, + [4509] = {.lex_state = 128, .external_lex_state = 5}, + [4510] = {.lex_state = 14, .external_lex_state = 10}, + [4511] = {.lex_state = 23, .external_lex_state = 10}, [4512] = {.lex_state = 128, .external_lex_state = 2}, - [4513] = {.lex_state = 128, .external_lex_state = 2}, - [4514] = {.lex_state = 128, .external_lex_state = 2}, + [4513] = {.lex_state = 14, .external_lex_state = 10}, + [4514] = {.lex_state = 23, .external_lex_state = 10}, [4515] = {.lex_state = 128, .external_lex_state = 2}, - [4516] = {.lex_state = 128, .external_lex_state = 5}, - [4517] = {.lex_state = 128, .external_lex_state = 5}, + [4516] = {.lex_state = 128, .external_lex_state = 2}, + [4517] = {.lex_state = 128, .external_lex_state = 2}, [4518] = {.lex_state = 128, .external_lex_state = 2}, [4519] = {.lex_state = 128, .external_lex_state = 2}, - [4520] = {.lex_state = 128, .external_lex_state = 2}, + [4520] = {.lex_state = 128, .external_lex_state = 5}, [4521] = {.lex_state = 128, .external_lex_state = 2}, - [4522] = {.lex_state = 12, .external_lex_state = 2}, - [4523] = {.lex_state = 21, .external_lex_state = 2}, - [4524] = {.lex_state = 128, .external_lex_state = 2}, - [4525] = {.lex_state = 128, .external_lex_state = 2}, - [4526] = {.lex_state = 128, .external_lex_state = 6}, + [4522] = {.lex_state = 14, .external_lex_state = 10}, + [4523] = {.lex_state = 23, .external_lex_state = 10}, + [4524] = {.lex_state = 14, .external_lex_state = 10}, + [4525] = {.lex_state = 23, .external_lex_state = 10}, + [4526] = {.lex_state = 128, .external_lex_state = 2}, [4527] = {.lex_state = 128, .external_lex_state = 2}, - [4528] = {.lex_state = 2, .external_lex_state = 2}, - [4529] = {.lex_state = 14, .external_lex_state = 10}, - [4530] = {.lex_state = 128, .external_lex_state = 2}, - [4531] = {.lex_state = 128, .external_lex_state = 2}, - [4532] = {.lex_state = 128, .external_lex_state = 2}, - [4533] = {.lex_state = 128, .external_lex_state = 2}, - [4534] = {.lex_state = 7, .external_lex_state = 2}, - [4535] = {.lex_state = 128, .external_lex_state = 2}, - [4536] = {.lex_state = 14, .external_lex_state = 10}, - [4537] = {.lex_state = 128, .external_lex_state = 2}, + [4528] = {.lex_state = 128, .external_lex_state = 2}, + [4529] = {.lex_state = 128, .external_lex_state = 2}, + [4530] = {.lex_state = 14, .external_lex_state = 10}, + [4531] = {.lex_state = 23, .external_lex_state = 10}, + [4532] = {.lex_state = 14, .external_lex_state = 10}, + [4533] = {.lex_state = 23, .external_lex_state = 10}, + [4534] = {.lex_state = 128, .external_lex_state = 2}, + [4535] = {.lex_state = 14, .external_lex_state = 10}, + [4536] = {.lex_state = 23, .external_lex_state = 10}, + [4537] = {.lex_state = 14, .external_lex_state = 10}, [4538] = {.lex_state = 23, .external_lex_state = 10}, [4539] = {.lex_state = 128, .external_lex_state = 2}, - [4540] = {.lex_state = 128, .external_lex_state = 2}, - [4541] = {.lex_state = 23, .external_lex_state = 10}, + [4540] = {.lex_state = 7, .external_lex_state = 2}, + [4541] = {.lex_state = 128, .external_lex_state = 2}, [4542] = {.lex_state = 128, .external_lex_state = 2}, [4543] = {.lex_state = 128, .external_lex_state = 2}, - [4544] = {.lex_state = 14, .external_lex_state = 10}, - [4545] = {.lex_state = 23, .external_lex_state = 10}, - [4546] = {.lex_state = 14, .external_lex_state = 10}, - [4547] = {.lex_state = 12, .external_lex_state = 2}, - [4548] = {.lex_state = 23, .external_lex_state = 10}, + [4544] = {.lex_state = 128, .external_lex_state = 2}, + [4545] = {.lex_state = 12, .external_lex_state = 2}, + [4546] = {.lex_state = 21, .external_lex_state = 2}, + [4547] = {.lex_state = 128, .external_lex_state = 2}, + [4548] = {.lex_state = 128, .external_lex_state = 2}, [4549] = {.lex_state = 128, .external_lex_state = 2}, - [4550] = {.lex_state = 128, .external_lex_state = 2}, - [4551] = {.lex_state = 21, .external_lex_state = 2}, + [4550] = {.lex_state = 18, .external_lex_state = 8}, + [4551] = {.lex_state = 128, .external_lex_state = 2}, [4552] = {.lex_state = 128, .external_lex_state = 2}, - [4553] = {.lex_state = 14, .external_lex_state = 10}, + [4553] = {.lex_state = 128, .external_lex_state = 2}, [4554] = {.lex_state = 128, .external_lex_state = 2}, - [4555] = {.lex_state = 128, .external_lex_state = 5}, - [4556] = {.lex_state = 23, .external_lex_state = 10}, - [4557] = {.lex_state = 14, .external_lex_state = 10}, - [4558] = {.lex_state = 23, .external_lex_state = 10}, - [4559] = {.lex_state = 128, .external_lex_state = 2}, + [4555] = {.lex_state = 128, .external_lex_state = 2}, + [4556] = {.lex_state = 128, .external_lex_state = 2}, + [4557] = {.lex_state = 128, .external_lex_state = 2}, + [4558] = {.lex_state = 12, .external_lex_state = 2}, + [4559] = {.lex_state = 21, .external_lex_state = 2}, [4560] = {.lex_state = 128, .external_lex_state = 2}, - [4561] = {.lex_state = 18, .external_lex_state = 8}, - [4562] = {.lex_state = 23, .external_lex_state = 10}, - [4563] = {.lex_state = 14, .external_lex_state = 10}, - [4564] = {.lex_state = 128, .external_lex_state = 2}, - [4565] = {.lex_state = 128, .external_lex_state = 2}, - [4566] = {.lex_state = 128, .external_lex_state = 2}, - [4567] = {.lex_state = 14, .external_lex_state = 10}, - [4568] = {.lex_state = 23, .external_lex_state = 10}, - [4569] = {.lex_state = 128, .external_lex_state = 2}, - [4570] = {.lex_state = 128, .external_lex_state = 2}, - [4571] = {.lex_state = 14, .external_lex_state = 10}, - [4572] = {.lex_state = 23, .external_lex_state = 10}, - [4573] = {.lex_state = 128, .external_lex_state = 2}, + [4561] = {.lex_state = 128, .external_lex_state = 2}, + [4562] = {.lex_state = 128, .external_lex_state = 2}, + [4563] = {.lex_state = 128, .external_lex_state = 2}, + [4564] = {.lex_state = 2, .external_lex_state = 2}, + [4565] = {.lex_state = 2, .external_lex_state = 2}, + [4566] = {.lex_state = 2, .external_lex_state = 2}, + [4567] = {.lex_state = 128, .external_lex_state = 2}, + [4568] = {.lex_state = 128, .external_lex_state = 5}, + [4569] = {.lex_state = 128, .external_lex_state = 5}, + [4570] = {.lex_state = 128, .external_lex_state = 5}, + [4571] = {.lex_state = 128, .external_lex_state = 5}, + [4572] = {.lex_state = 128, .external_lex_state = 5}, + [4573] = {.lex_state = 2, .external_lex_state = 2}, [4574] = {.lex_state = 128, .external_lex_state = 2}, - [4575] = {.lex_state = 128, .external_lex_state = 5}, - [4576] = {.lex_state = 128, .external_lex_state = 2}, - [4577] = {.lex_state = 128, .external_lex_state = 2}, + [4575] = {.lex_state = 128, .external_lex_state = 2}, + [4576] = {.lex_state = 14, .external_lex_state = 10}, + [4577] = {.lex_state = 23, .external_lex_state = 10}, [4578] = {.lex_state = 128, .external_lex_state = 2}, [4579] = {.lex_state = 128, .external_lex_state = 2}, - [4580] = {.lex_state = 128, .external_lex_state = 2}, - [4581] = {.lex_state = 23, .external_lex_state = 10}, + [4580] = {.lex_state = 128, .external_lex_state = 5}, + [4581] = {.lex_state = 128, .external_lex_state = 2}, [4582] = {.lex_state = 128, .external_lex_state = 2}, [4583] = {.lex_state = 128, .external_lex_state = 2}, - [4584] = {.lex_state = 128, .external_lex_state = 5}, - [4585] = {.lex_state = 21, .external_lex_state = 2}, - [4586] = {.lex_state = 7, .external_lex_state = 2}, - [4587] = {.lex_state = 128, .external_lex_state = 5}, - [4588] = {.lex_state = 14, .external_lex_state = 10}, - [4589] = {.lex_state = 128, .external_lex_state = 2}, + [4584] = {.lex_state = 128, .external_lex_state = 2}, + [4585] = {.lex_state = 128, .external_lex_state = 2}, + [4586] = {.lex_state = 128, .external_lex_state = 2}, + [4587] = {.lex_state = 128, .external_lex_state = 2}, + [4588] = {.lex_state = 128, .external_lex_state = 5}, + [4589] = {.lex_state = 128, .external_lex_state = 5}, [4590] = {.lex_state = 128, .external_lex_state = 2}, - [4591] = {.lex_state = 23, .external_lex_state = 10}, - [4592] = {.lex_state = 128, .external_lex_state = 2}, - [4593] = {.lex_state = 128, .external_lex_state = 2}, + [4591] = {.lex_state = 14, .external_lex_state = 10}, + [4592] = {.lex_state = 23, .external_lex_state = 10}, + [4593] = {.lex_state = 18, .external_lex_state = 8}, [4594] = {.lex_state = 128, .external_lex_state = 2}, [4595] = {.lex_state = 128, .external_lex_state = 2}, [4596] = {.lex_state = 128, .external_lex_state = 2}, [4597] = {.lex_state = 128, .external_lex_state = 2}, - [4598] = {.lex_state = 2, .external_lex_state = 2}, + [4598] = {.lex_state = 128, .external_lex_state = 5}, [4599] = {.lex_state = 128, .external_lex_state = 2}, [4600] = {.lex_state = 128, .external_lex_state = 2}, - [4601] = {.lex_state = 2, .external_lex_state = 2}, - [4602] = {.lex_state = 2, .external_lex_state = 2}, - [4603] = {.lex_state = 128, .external_lex_state = 2}, - [4604] = {.lex_state = 14, .external_lex_state = 10}, - [4605] = {.lex_state = 128, .external_lex_state = 5}, + [4601] = {.lex_state = 128, .external_lex_state = 5}, + [4602] = {.lex_state = 128, .external_lex_state = 2}, + [4603] = {.lex_state = 128, .external_lex_state = 5}, + [4604] = {.lex_state = 128, .external_lex_state = 2}, + [4605] = {.lex_state = 128, .external_lex_state = 2}, [4606] = {.lex_state = 128, .external_lex_state = 2}, [4607] = {.lex_state = 128, .external_lex_state = 2}, [4608] = {.lex_state = 128, .external_lex_state = 2}, [4609] = {.lex_state = 128, .external_lex_state = 2}, - [4610] = {.lex_state = 128, .external_lex_state = 2}, - [4611] = {.lex_state = 128, .external_lex_state = 5}, + [4610] = {.lex_state = 128, .external_lex_state = 5}, + [4611] = {.lex_state = 128, .external_lex_state = 2}, [4612] = {.lex_state = 128, .external_lex_state = 2}, - [4613] = {.lex_state = 128, .external_lex_state = 5}, - [4614] = {.lex_state = 128, .external_lex_state = 5}, - [4615] = {.lex_state = 128, .external_lex_state = 2}, - [4616] = {.lex_state = 128, .external_lex_state = 5}, + [4613] = {.lex_state = 128, .external_lex_state = 2}, + [4614] = {.lex_state = 12, .external_lex_state = 2}, + [4615] = {.lex_state = 21, .external_lex_state = 2}, + [4616] = {.lex_state = 2, .external_lex_state = 2}, [4617] = {.lex_state = 128, .external_lex_state = 2}, - [4618] = {.lex_state = 128, .external_lex_state = 2}, - [4619] = {.lex_state = 128, .external_lex_state = 2}, + [4618] = {.lex_state = 14, .external_lex_state = 10}, + [4619] = {.lex_state = 23, .external_lex_state = 10}, [4620] = {.lex_state = 128, .external_lex_state = 2}, [4621] = {.lex_state = 128, .external_lex_state = 5}, [4622] = {.lex_state = 128, .external_lex_state = 2}, - [4623] = {.lex_state = 128, .external_lex_state = 5}, - [4624] = {.lex_state = 128, .external_lex_state = 2}, + [4623] = {.lex_state = 14, .external_lex_state = 10}, + [4624] = {.lex_state = 23, .external_lex_state = 10}, [4625] = {.lex_state = 128, .external_lex_state = 2}, - [4626] = {.lex_state = 128, .external_lex_state = 5}, - [4627] = {.lex_state = 128, .external_lex_state = 5}, - [4628] = {.lex_state = 128, .external_lex_state = 5}, + [4626] = {.lex_state = 128, .external_lex_state = 2}, + [4627] = {.lex_state = 128, .external_lex_state = 2}, + [4628] = {.lex_state = 128, .external_lex_state = 2}, [4629] = {.lex_state = 128, .external_lex_state = 2}, - [4630] = {.lex_state = 128, .external_lex_state = 5}, - [4631] = {.lex_state = 128, .external_lex_state = 5}, - [4632] = {.lex_state = 128, .external_lex_state = 5}, + [4630] = {.lex_state = 128, .external_lex_state = 2}, + [4631] = {.lex_state = 128, .external_lex_state = 2}, + [4632] = {.lex_state = 128, .external_lex_state = 2}, [4633] = {.lex_state = 128, .external_lex_state = 2}, - [4634] = {.lex_state = 128, .external_lex_state = 5}, + [4634] = {.lex_state = 128, .external_lex_state = 6}, [4635] = {.lex_state = 128, .external_lex_state = 5}, - [4636] = {.lex_state = 128, .external_lex_state = 5}, - [4637] = {.lex_state = 128, .external_lex_state = 5}, - [4638] = {.lex_state = 128, .external_lex_state = 5}, + [4636] = {.lex_state = 128, .external_lex_state = 2}, + [4637] = {.lex_state = 128, .external_lex_state = 2}, + [4638] = {.lex_state = 128, .external_lex_state = 2}, [4639] = {.lex_state = 128, .external_lex_state = 5}, - [4640] = {.lex_state = 128, .external_lex_state = 2}, - [4641] = {.lex_state = 128, .external_lex_state = 2}, - [4642] = {.lex_state = 128, .external_lex_state = 2}, - [4643] = {.lex_state = 128, .external_lex_state = 5}, + [4640] = {.lex_state = 128, .external_lex_state = 5}, + [4641] = {.lex_state = 128, .external_lex_state = 5}, + [4642] = {.lex_state = 128, .external_lex_state = 5}, + [4643] = {.lex_state = 128, .external_lex_state = 2}, [4644] = {.lex_state = 128, .external_lex_state = 5}, [4645] = {.lex_state = 128, .external_lex_state = 5}, - [4646] = {.lex_state = 128, .external_lex_state = 2}, + [4646] = {.lex_state = 128, .external_lex_state = 5}, [4647] = {.lex_state = 128, .external_lex_state = 5}, - [4648] = {.lex_state = 128, .external_lex_state = 2}, + [4648] = {.lex_state = 128, .external_lex_state = 5}, [4649] = {.lex_state = 128, .external_lex_state = 2}, [4650] = {.lex_state = 128, .external_lex_state = 2}, - [4651] = {.lex_state = 128, .external_lex_state = 5}, - [4652] = {.lex_state = 128, .external_lex_state = 2}, + [4651] = {.lex_state = 128, .external_lex_state = 2}, + [4652] = {.lex_state = 128, .external_lex_state = 5}, [4653] = {.lex_state = 128, .external_lex_state = 5}, - [4654] = {.lex_state = 128, .external_lex_state = 2}, - [4655] = {.lex_state = 128, .external_lex_state = 2}, + [4654] = {.lex_state = 128, .external_lex_state = 5}, + [4655] = {.lex_state = 128, .external_lex_state = 5}, [4656] = {.lex_state = 128, .external_lex_state = 5}, [4657] = {.lex_state = 128, .external_lex_state = 2}, - [4658] = {.lex_state = 128, .external_lex_state = 2}, + [4658] = {.lex_state = 128, .external_lex_state = 5}, [4659] = {.lex_state = 128, .external_lex_state = 2}, [4660] = {.lex_state = 128, .external_lex_state = 5}, - [4661] = {.lex_state = 128, .external_lex_state = 5}, - [4662] = {.lex_state = 128, .external_lex_state = 5}, + [4661] = {.lex_state = 128, .external_lex_state = 2}, + [4662] = {.lex_state = 128, .external_lex_state = 2}, [4663] = {.lex_state = 128, .external_lex_state = 2}, - [4664] = {.lex_state = 128, .external_lex_state = 5}, - [4665] = {.lex_state = 128, .external_lex_state = 2}, + [4664] = {.lex_state = 128, .external_lex_state = 2}, + [4665] = {.lex_state = 128, .external_lex_state = 5}, [4666] = {.lex_state = 128, .external_lex_state = 2}, - [4667] = {.lex_state = 2, .external_lex_state = 2}, - [4668] = {.lex_state = 128, .external_lex_state = 5}, - [4669] = {.lex_state = 128, .external_lex_state = 5}, + [4667] = {.lex_state = 128, .external_lex_state = 2}, + [4668] = {.lex_state = 128, .external_lex_state = 2}, + [4669] = {.lex_state = 128, .external_lex_state = 2}, [4670] = {.lex_state = 128, .external_lex_state = 5}, - [4671] = {.lex_state = 128, .external_lex_state = 5}, - [4672] = {.lex_state = 2, .external_lex_state = 2}, - [4673] = {.lex_state = 128, .external_lex_state = 2}, - [4674] = {.lex_state = 128, .external_lex_state = 2}, - [4675] = {.lex_state = 128, .external_lex_state = 2}, - [4676] = {.lex_state = 128, .external_lex_state = 2}, - [4677] = {.lex_state = 128, .external_lex_state = 5}, - [4678] = {.lex_state = 128, .external_lex_state = 2}, + [4671] = {.lex_state = 128, .external_lex_state = 2}, + [4672] = {.lex_state = 128, .external_lex_state = 2}, + [4673] = {.lex_state = 128, .external_lex_state = 5}, + [4674] = {.lex_state = 128, .external_lex_state = 5}, + [4675] = {.lex_state = 128, .external_lex_state = 5}, + [4676] = {.lex_state = 128, .external_lex_state = 5}, + [4677] = {.lex_state = 128, .external_lex_state = 2}, + [4678] = {.lex_state = 128, .external_lex_state = 5}, [4679] = {.lex_state = 128, .external_lex_state = 5}, - [4680] = {.lex_state = 128, .external_lex_state = 5}, - [4681] = {.lex_state = 128, .external_lex_state = 5}, - [4682] = {.lex_state = 128, .external_lex_state = 2}, - [4683] = {.lex_state = 128, .external_lex_state = 2}, - [4684] = {.lex_state = 128, .external_lex_state = 2}, - [4685] = {.lex_state = 128, .external_lex_state = 5}, + [4680] = {.lex_state = 128, .external_lex_state = 2}, + [4681] = {.lex_state = 128, .external_lex_state = 2}, + [4682] = {.lex_state = 128, .external_lex_state = 5}, + [4683] = {.lex_state = 128, .external_lex_state = 5}, + [4684] = {.lex_state = 128, .external_lex_state = 5}, + [4685] = {.lex_state = 128, .external_lex_state = 2}, [4686] = {.lex_state = 128, .external_lex_state = 2}, - [4687] = {.lex_state = 128, .external_lex_state = 2}, + [4687] = {.lex_state = 128, .external_lex_state = 5}, [4688] = {.lex_state = 128, .external_lex_state = 5}, - [4689] = {.lex_state = 128, .external_lex_state = 5}, + [4689] = {.lex_state = 128, .external_lex_state = 2}, [4690] = {.lex_state = 128, .external_lex_state = 2}, [4691] = {.lex_state = 128, .external_lex_state = 2}, - [4692] = {.lex_state = 128, .external_lex_state = 2}, - [4693] = {.lex_state = 128, .external_lex_state = 2}, + [4692] = {.lex_state = 128, .external_lex_state = 5}, + [4693] = {.lex_state = 128, .external_lex_state = 5}, [4694] = {.lex_state = 128, .external_lex_state = 5}, - [4695] = {.lex_state = 128, .external_lex_state = 2}, - [4696] = {.lex_state = 128, .external_lex_state = 5}, + [4695] = {.lex_state = 128, .external_lex_state = 5}, + [4696] = {.lex_state = 128, .external_lex_state = 2}, [4697] = {.lex_state = 128, .external_lex_state = 5}, - [4698] = {.lex_state = 128, .external_lex_state = 5}, + [4698] = {.lex_state = 128, .external_lex_state = 2}, [4699] = {.lex_state = 128, .external_lex_state = 5}, [4700] = {.lex_state = 128, .external_lex_state = 5}, [4701] = {.lex_state = 128, .external_lex_state = 5}, [4702] = {.lex_state = 128, .external_lex_state = 5}, - [4703] = {.lex_state = 128, .external_lex_state = 5}, + [4703] = {.lex_state = 2, .external_lex_state = 2}, [4704] = {.lex_state = 128, .external_lex_state = 5}, [4705] = {.lex_state = 128, .external_lex_state = 5}, [4706] = {.lex_state = 128, .external_lex_state = 5}, - [4707] = {.lex_state = 128, .external_lex_state = 2}, - [4708] = {.lex_state = 128, .external_lex_state = 2}, + [4707] = {.lex_state = 128, .external_lex_state = 5}, + [4708] = {.lex_state = 128, .external_lex_state = 5}, [4709] = {.lex_state = 128, .external_lex_state = 5}, - [4710] = {.lex_state = 128, .external_lex_state = 5}, - [4711] = {.lex_state = 128, .external_lex_state = 2}, + [4710] = {.lex_state = 128, .external_lex_state = 2}, + [4711] = {.lex_state = 128, .external_lex_state = 5}, [4712] = {.lex_state = 128, .external_lex_state = 5}, - [4713] = {.lex_state = 128, .external_lex_state = 2}, + [4713] = {.lex_state = 128, .external_lex_state = 5}, [4714] = {.lex_state = 128, .external_lex_state = 2}, [4715] = {.lex_state = 128, .external_lex_state = 2}, [4716] = {.lex_state = 128, .external_lex_state = 5}, - [4717] = {.lex_state = 128, .external_lex_state = 5}, - [4718] = {.lex_state = 128, .external_lex_state = 2}, + [4717] = {.lex_state = 128, .external_lex_state = 2}, + [4718] = {.lex_state = 128, .external_lex_state = 5}, [4719] = {.lex_state = 128, .external_lex_state = 5}, - [4720] = {.lex_state = 128, .external_lex_state = 5}, + [4720] = {.lex_state = 128, .external_lex_state = 2}, [4721] = {.lex_state = 128, .external_lex_state = 2}, [4722] = {.lex_state = 128, .external_lex_state = 5}, - [4723] = {.lex_state = 128, .external_lex_state = 2}, - [4724] = {.lex_state = 128, .external_lex_state = 2}, + [4723] = {.lex_state = 128, .external_lex_state = 5}, + [4724] = {.lex_state = 128, .external_lex_state = 5}, [4725] = {.lex_state = 128, .external_lex_state = 5}, - [4726] = {.lex_state = 128, .external_lex_state = 2}, + [4726] = {.lex_state = 128, .external_lex_state = 5}, [4727] = {.lex_state = 128, .external_lex_state = 5}, [4728] = {.lex_state = 128, .external_lex_state = 5}, - [4729] = {.lex_state = 128, .external_lex_state = 2}, + [4729] = {.lex_state = 128, .external_lex_state = 5}, [4730] = {.lex_state = 128, .external_lex_state = 5}, - [4731] = {.lex_state = 128, .external_lex_state = 2}, + [4731] = {.lex_state = 128, .external_lex_state = 5}, [4732] = {.lex_state = 128, .external_lex_state = 5}, [4733] = {.lex_state = 128, .external_lex_state = 5}, [4734] = {.lex_state = 128, .external_lex_state = 5}, - [4735] = {.lex_state = 128, .external_lex_state = 5}, + [4735] = {.lex_state = 128, .external_lex_state = 2}, [4736] = {.lex_state = 128, .external_lex_state = 5}, [4737] = {.lex_state = 128, .external_lex_state = 5}, [4738] = {.lex_state = 128, .external_lex_state = 5}, [4739] = {.lex_state = 128, .external_lex_state = 5}, [4740] = {.lex_state = 128, .external_lex_state = 5}, - [4741] = {.lex_state = 128, .external_lex_state = 5}, + [4741] = {.lex_state = 128, .external_lex_state = 2}, [4742] = {.lex_state = 128, .external_lex_state = 5}, - [4743] = {.lex_state = 128, .external_lex_state = 2}, - [4744] = {.lex_state = 128, .external_lex_state = 5}, - [4745] = {.lex_state = 128, .external_lex_state = 5}, + [4743] = {.lex_state = 128, .external_lex_state = 5}, + [4744] = {.lex_state = 128, .external_lex_state = 2}, + [4745] = {.lex_state = 128, .external_lex_state = 2}, [4746] = {.lex_state = 128, .external_lex_state = 5}, [4747] = {.lex_state = 128, .external_lex_state = 5}, [4748] = {.lex_state = 128, .external_lex_state = 5}, - [4749] = {.lex_state = 128, .external_lex_state = 2}, + [4749] = {.lex_state = 128, .external_lex_state = 5}, [4750] = {.lex_state = 128, .external_lex_state = 2}, [4751] = {.lex_state = 128, .external_lex_state = 5}, - [4752] = {.lex_state = 128, .external_lex_state = 5}, + [4752] = {.lex_state = 2, .external_lex_state = 2}, [4753] = {.lex_state = 128, .external_lex_state = 2}, [4754] = {.lex_state = 128, .external_lex_state = 5}, [4755] = {.lex_state = 128, .external_lex_state = 5}, [4756] = {.lex_state = 128, .external_lex_state = 5}, [4757] = {.lex_state = 128, .external_lex_state = 5}, [4758] = {.lex_state = 128, .external_lex_state = 5}, - [4759] = {.lex_state = 128, .external_lex_state = 5}, - [4760] = {.lex_state = 128, .external_lex_state = 2}, - [4761] = {.lex_state = 128, .external_lex_state = 2}, - [4762] = {.lex_state = 128, .external_lex_state = 5}, + [4759] = {.lex_state = 128, .external_lex_state = 2}, + [4760] = {.lex_state = 128, .external_lex_state = 5}, + [4761] = {.lex_state = 128, .external_lex_state = 5}, + [4762] = {.lex_state = 2, .external_lex_state = 2}, [4763] = {.lex_state = 128, .external_lex_state = 5}, - [4764] = {.lex_state = 128, .external_lex_state = 2}, - [4765] = {.lex_state = 128, .external_lex_state = 5}, + [4764] = {.lex_state = 128, .external_lex_state = 5}, + [4765] = {.lex_state = 128, .external_lex_state = 2}, [4766] = {.lex_state = 128, .external_lex_state = 5}, [4767] = {.lex_state = 128, .external_lex_state = 5}, - [4768] = {.lex_state = 128, .external_lex_state = 2}, - [4769] = {.lex_state = 128, .external_lex_state = 2}, + [4768] = {.lex_state = 128, .external_lex_state = 5}, + [4769] = {.lex_state = 128, .external_lex_state = 5}, [4770] = {.lex_state = 128, .external_lex_state = 5}, - [4771] = {.lex_state = 128, .external_lex_state = 5}, + [4771] = {.lex_state = 128, .external_lex_state = 2}, [4772] = {.lex_state = 128, .external_lex_state = 5}, [4773] = {.lex_state = 128, .external_lex_state = 5}, [4774] = {.lex_state = 128, .external_lex_state = 5}, [4775] = {.lex_state = 128, .external_lex_state = 5}, [4776] = {.lex_state = 128, .external_lex_state = 5}, - [4777] = {.lex_state = 128, .external_lex_state = 5}, + [4777] = {.lex_state = 128, .external_lex_state = 2}, [4778] = {.lex_state = 128, .external_lex_state = 5}, [4779] = {.lex_state = 128, .external_lex_state = 5}, [4780] = {.lex_state = 128, .external_lex_state = 5}, [4781] = {.lex_state = 128, .external_lex_state = 5}, [4782] = {.lex_state = 128, .external_lex_state = 5}, [4783] = {.lex_state = 128, .external_lex_state = 2}, - [4784] = {.lex_state = 128, .external_lex_state = 2}, + [4784] = {.lex_state = 128, .external_lex_state = 5}, [4785] = {.lex_state = 128, .external_lex_state = 5}, - [4786] = {.lex_state = 128, .external_lex_state = 2}, - [4787] = {.lex_state = 128, .external_lex_state = 2}, - [4788] = {.lex_state = 128, .external_lex_state = 2}, + [4786] = {.lex_state = 128, .external_lex_state = 5}, + [4787] = {.lex_state = 128, .external_lex_state = 5}, + [4788] = {.lex_state = 128, .external_lex_state = 5}, [4789] = {.lex_state = 128, .external_lex_state = 2}, [4790] = {.lex_state = 128, .external_lex_state = 5}, - [4791] = {.lex_state = 128, .external_lex_state = 2}, - [4792] = {.lex_state = 128, .external_lex_state = 5}, + [4791] = {.lex_state = 128, .external_lex_state = 5}, + [4792] = {.lex_state = 128, .external_lex_state = 2}, [4793] = {.lex_state = 128, .external_lex_state = 2}, [4794] = {.lex_state = 128, .external_lex_state = 5}, - [4795] = {.lex_state = 128, .external_lex_state = 5}, + [4795] = {.lex_state = 128, .external_lex_state = 2}, [4796] = {.lex_state = 128, .external_lex_state = 5}, [4797] = {.lex_state = 128, .external_lex_state = 5}, - [4798] = {.lex_state = 128, .external_lex_state = 5}, + [4798] = {.lex_state = 128, .external_lex_state = 2}, [4799] = {.lex_state = 128, .external_lex_state = 5}, - [4800] = {.lex_state = 128, .external_lex_state = 2}, - [4801] = {.lex_state = 128, .external_lex_state = 2}, + [4800] = {.lex_state = 128, .external_lex_state = 5}, + [4801] = {.lex_state = 128, .external_lex_state = 5}, [4802] = {.lex_state = 128, .external_lex_state = 5}, [4803] = {.lex_state = 128, .external_lex_state = 5}, - [4804] = {.lex_state = 128, .external_lex_state = 5}, - [4805] = {.lex_state = 128, .external_lex_state = 2}, - [4806] = {.lex_state = 128, .external_lex_state = 5}, - [4807] = {.lex_state = 2, .external_lex_state = 2}, + [4804] = {.lex_state = 128, .external_lex_state = 2}, + [4805] = {.lex_state = 128, .external_lex_state = 5}, + [4806] = {.lex_state = 128, .external_lex_state = 2}, + [4807] = {.lex_state = 128, .external_lex_state = 2}, [4808] = {.lex_state = 128, .external_lex_state = 5}, [4809] = {.lex_state = 128, .external_lex_state = 2}, [4810] = {.lex_state = 128, .external_lex_state = 5}, [4811] = {.lex_state = 128, .external_lex_state = 5}, [4812] = {.lex_state = 128, .external_lex_state = 5}, [4813] = {.lex_state = 128, .external_lex_state = 5}, - [4814] = {.lex_state = 128, .external_lex_state = 5}, - [4815] = {.lex_state = 128, .external_lex_state = 2}, + [4814] = {.lex_state = 128, .external_lex_state = 2}, + [4815] = {.lex_state = 128, .external_lex_state = 5}, [4816] = {.lex_state = 128, .external_lex_state = 5}, - [4817] = {.lex_state = 128, .external_lex_state = 2}, + [4817] = {.lex_state = 128, .external_lex_state = 5}, [4818] = {.lex_state = 128, .external_lex_state = 5}, - [4819] = {.lex_state = 128, .external_lex_state = 2}, + [4819] = {.lex_state = 128, .external_lex_state = 5}, [4820] = {.lex_state = 128, .external_lex_state = 5}, - [4821] = {.lex_state = 2, .external_lex_state = 2}, + [4821] = {.lex_state = 128, .external_lex_state = 5}, [4822] = {.lex_state = 128, .external_lex_state = 5}, - [4823] = {.lex_state = 128, .external_lex_state = 2}, + [4823] = {.lex_state = 128, .external_lex_state = 5}, [4824] = {.lex_state = 128, .external_lex_state = 5}, [4825] = {.lex_state = 128, .external_lex_state = 5}, - [4826] = {.lex_state = 128, .external_lex_state = 2}, + [4826] = {.lex_state = 128, .external_lex_state = 5}, [4827] = {.lex_state = 128, .external_lex_state = 5}, - [4828] = {.lex_state = 128, .external_lex_state = 2}, + [4828] = {.lex_state = 128, .external_lex_state = 5}, [4829] = {.lex_state = 128, .external_lex_state = 5}, - [4830] = {.lex_state = 128, .external_lex_state = 2}, + [4830] = {.lex_state = 128, .external_lex_state = 5}, [4831] = {.lex_state = 128, .external_lex_state = 5}, - [4832] = {.lex_state = 128, .external_lex_state = 5}, + [4832] = {.lex_state = 128, .external_lex_state = 2}, [4833] = {.lex_state = 128, .external_lex_state = 2}, - [4834] = {.lex_state = 128, .external_lex_state = 2}, - [4835] = {.lex_state = 128, .external_lex_state = 2}, + [4834] = {.lex_state = 128, .external_lex_state = 5}, + [4835] = {.lex_state = 128, .external_lex_state = 5}, [4836] = {.lex_state = 128, .external_lex_state = 5}, [4837] = {.lex_state = 128, .external_lex_state = 5}, [4838] = {.lex_state = 128, .external_lex_state = 5}, [4839] = {.lex_state = 128, .external_lex_state = 5}, [4840] = {.lex_state = 128, .external_lex_state = 5}, - [4841] = {.lex_state = 128, .external_lex_state = 2}, + [4841] = {.lex_state = 128, .external_lex_state = 5}, [4842] = {.lex_state = 128, .external_lex_state = 5}, [4843] = {.lex_state = 128, .external_lex_state = 5}, - [4844] = {.lex_state = 128, .external_lex_state = 2}, + [4844] = {.lex_state = 128, .external_lex_state = 5}, [4845] = {.lex_state = 128, .external_lex_state = 5}, [4846] = {.lex_state = 128, .external_lex_state = 5}, - [4847] = {.lex_state = 128, .external_lex_state = 2}, + [4847] = {.lex_state = 128, .external_lex_state = 5}, [4848] = {.lex_state = 128, .external_lex_state = 2}, - [4849] = {.lex_state = 128, .external_lex_state = 2}, + [4849] = {.lex_state = 128, .external_lex_state = 5}, [4850] = {.lex_state = 128, .external_lex_state = 5}, [4851] = {.lex_state = 128, .external_lex_state = 5}, [4852] = {.lex_state = 128, .external_lex_state = 5}, [4853] = {.lex_state = 128, .external_lex_state = 5}, - [4854] = {.lex_state = 128, .external_lex_state = 5}, - [4855] = {.lex_state = 128, .external_lex_state = 2}, + [4854] = {.lex_state = 128, .external_lex_state = 2}, + [4855] = {.lex_state = 128, .external_lex_state = 5}, [4856] = {.lex_state = 128, .external_lex_state = 5}, - [4857] = {.lex_state = 128, .external_lex_state = 5}, + [4857] = {.lex_state = 128, .external_lex_state = 2}, [4858] = {.lex_state = 128, .external_lex_state = 5}, - [4859] = {.lex_state = 128, .external_lex_state = 5}, - [4860] = {.lex_state = 128, .external_lex_state = 5}, - [4861] = {.lex_state = 128, .external_lex_state = 2}, + [4859] = {.lex_state = 128, .external_lex_state = 2}, + [4860] = {.lex_state = 128, .external_lex_state = 2}, + [4861] = {.lex_state = 128, .external_lex_state = 5}, [4862] = {.lex_state = 128, .external_lex_state = 5}, - [4863] = {.lex_state = 128, .external_lex_state = 5}, + [4863] = {.lex_state = 128, .external_lex_state = 2}, [4864] = {.lex_state = 128, .external_lex_state = 5}, [4865] = {.lex_state = 128, .external_lex_state = 5}, - [4866] = {.lex_state = 128, .external_lex_state = 5}, + [4866] = {.lex_state = 128, .external_lex_state = 2}, [4867] = {.lex_state = 128, .external_lex_state = 5}, [4868] = {.lex_state = 128, .external_lex_state = 2}, - [4869] = {.lex_state = 128, .external_lex_state = 5}, + [4869] = {.lex_state = 128, .external_lex_state = 2}, [4870] = {.lex_state = 128, .external_lex_state = 2}, - [4871] = {.lex_state = 128, .external_lex_state = 5}, + [4871] = {.lex_state = 128, .external_lex_state = 2}, [4872] = {.lex_state = 128, .external_lex_state = 5}, - [4873] = {.lex_state = 128, .external_lex_state = 2}, - [4874] = {.lex_state = 128, .external_lex_state = 5}, + [4873] = {.lex_state = 128, .external_lex_state = 5}, + [4874] = {.lex_state = 128, .external_lex_state = 2}, [4875] = {.lex_state = 128, .external_lex_state = 5}, - [4876] = {.lex_state = 128, .external_lex_state = 2}, - [4877] = {.lex_state = 128, .external_lex_state = 5}, - [4878] = {.lex_state = 128, .external_lex_state = 5}, + [4876] = {.lex_state = 128, .external_lex_state = 5}, + [4877] = {.lex_state = 128, .external_lex_state = 2}, + [4878] = {.lex_state = 128, .external_lex_state = 2}, [4879] = {.lex_state = 128, .external_lex_state = 5}, [4880] = {.lex_state = 128, .external_lex_state = 5}, - [4881] = {.lex_state = 128, .external_lex_state = 2}, - [4882] = {.lex_state = 128, .external_lex_state = 5}, + [4881] = {.lex_state = 128, .external_lex_state = 5}, + [4882] = {.lex_state = 128, .external_lex_state = 2}, [4883] = {.lex_state = 128, .external_lex_state = 5}, [4884] = {.lex_state = 128, .external_lex_state = 5}, [4885] = {.lex_state = 128, .external_lex_state = 2}, [4886] = {.lex_state = 128, .external_lex_state = 5}, - [4887] = {.lex_state = 128, .external_lex_state = 2}, + [4887] = {.lex_state = 128, .external_lex_state = 5}, [4888] = {.lex_state = 128, .external_lex_state = 5}, - [4889] = {.lex_state = 128, .external_lex_state = 2}, + [4889] = {.lex_state = 128, .external_lex_state = 5}, [4890] = {.lex_state = 128, .external_lex_state = 5}, [4891] = {.lex_state = 128, .external_lex_state = 5}, [4892] = {.lex_state = 128, .external_lex_state = 5}, - [4893] = {.lex_state = 128, .external_lex_state = 5}, - [4894] = {.lex_state = 128, .external_lex_state = 5}, + [4893] = {.lex_state = 128, .external_lex_state = 2}, + [4894] = {.lex_state = 128, .external_lex_state = 2}, [4895] = {.lex_state = 128, .external_lex_state = 5}, - [4896] = {.lex_state = 128, .external_lex_state = 5}, - [4897] = {.lex_state = 128, .external_lex_state = 5}, + [4896] = {.lex_state = 128, .external_lex_state = 2}, + [4897] = {.lex_state = 128, .external_lex_state = 2}, [4898] = {.lex_state = 128, .external_lex_state = 5}, [4899] = {.lex_state = 128, .external_lex_state = 5}, [4900] = {.lex_state = 128, .external_lex_state = 5}, - [4901] = {.lex_state = 128, .external_lex_state = 2}, + [4901] = {.lex_state = 128, .external_lex_state = 5}, [4902] = {.lex_state = 128, .external_lex_state = 5}, [4903] = {.lex_state = 128, .external_lex_state = 5}, [4904] = {.lex_state = 128, .external_lex_state = 5}, [4905] = {.lex_state = 128, .external_lex_state = 5}, - [4906] = {.lex_state = 128, .external_lex_state = 5}, + [4906] = {.lex_state = 2, .external_lex_state = 2}, [4907] = {.lex_state = 128, .external_lex_state = 5}, - [4908] = {.lex_state = 128, .external_lex_state = 5}, - [4909] = {.lex_state = 128, .external_lex_state = 5}, + [4908] = {.lex_state = 128, .external_lex_state = 2}, + [4909] = {.lex_state = 128, .external_lex_state = 2}, [4910] = {.lex_state = 128, .external_lex_state = 5}, - [4911] = {.lex_state = 128, .external_lex_state = 5}, - [4912] = {.lex_state = 128, .external_lex_state = 2}, + [4911] = {.lex_state = 2, .external_lex_state = 2}, + [4912] = {.lex_state = 128, .external_lex_state = 5}, [4913] = {.lex_state = 128, .external_lex_state = 5}, - [4914] = {.lex_state = 128, .external_lex_state = 5}, + [4914] = {.lex_state = 2, .external_lex_state = 2}, [4915] = {.lex_state = 128, .external_lex_state = 5}, - [4916] = {.lex_state = 128, .external_lex_state = 5}, + [4916] = {.lex_state = 128, .external_lex_state = 2}, [4917] = {.lex_state = 128, .external_lex_state = 5}, [4918] = {.lex_state = 128, .external_lex_state = 5}, - [4919] = {.lex_state = 128, .external_lex_state = 2}, + [4919] = {.lex_state = 128, .external_lex_state = 5}, [4920] = {.lex_state = 128, .external_lex_state = 5}, - [4921] = {.lex_state = 128, .external_lex_state = 2}, + [4921] = {.lex_state = 128, .external_lex_state = 5}, [4922] = {.lex_state = 128, .external_lex_state = 5}, - [4923] = {.lex_state = 128, .external_lex_state = 2}, - [4924] = {.lex_state = 128, .external_lex_state = 2}, - [4925] = {.lex_state = 2, .external_lex_state = 2}, - [4926] = {.lex_state = 128, .external_lex_state = 5}, + [4923] = {.lex_state = 128, .external_lex_state = 5}, + [4924] = {.lex_state = 128, .external_lex_state = 5}, + [4925] = {.lex_state = 128, .external_lex_state = 5}, + [4926] = {.lex_state = 2, .external_lex_state = 2}, [4927] = {.lex_state = 128, .external_lex_state = 5}, [4928] = {.lex_state = 128, .external_lex_state = 5}, - [4929] = {.lex_state = 128, .external_lex_state = 5}, + [4929] = {.lex_state = 128, .external_lex_state = 2}, [4930] = {.lex_state = 128, .external_lex_state = 5}, - [4931] = {.lex_state = 128, .external_lex_state = 5}, + [4931] = {.lex_state = 128, .external_lex_state = 2}, [4932] = {.lex_state = 128, .external_lex_state = 5}, [4933] = {.lex_state = 128, .external_lex_state = 5}, - [4934] = {.lex_state = 128, .external_lex_state = 5}, + [4934] = {.lex_state = 128, .external_lex_state = 2}, [4935] = {.lex_state = 128, .external_lex_state = 2}, [4936] = {.lex_state = 128, .external_lex_state = 5}, - [4937] = {.lex_state = 128, .external_lex_state = 5}, + [4937] = {.lex_state = 128, .external_lex_state = 2}, [4938] = {.lex_state = 128, .external_lex_state = 5}, [4939] = {.lex_state = 128, .external_lex_state = 5}, [4940] = {.lex_state = 128, .external_lex_state = 5}, [4941] = {.lex_state = 128, .external_lex_state = 5}, - [4942] = {.lex_state = 128, .external_lex_state = 2}, - [4943] = {.lex_state = 128, .external_lex_state = 2}, - [4944] = {.lex_state = 128, .external_lex_state = 2}, - [4945] = {.lex_state = 128, .external_lex_state = 5}, + [4942] = {.lex_state = 128, .external_lex_state = 5}, + [4943] = {.lex_state = 128, .external_lex_state = 5}, + [4944] = {.lex_state = 128, .external_lex_state = 5}, + [4945] = {.lex_state = 128, .external_lex_state = 2}, [4946] = {.lex_state = 128, .external_lex_state = 5}, [4947] = {.lex_state = 128, .external_lex_state = 5}, - [4948] = {.lex_state = 128, .external_lex_state = 5}, - [4949] = {.lex_state = 128, .external_lex_state = 5}, - [4950] = {.lex_state = 128, .external_lex_state = 5}, + [4948] = {.lex_state = 128, .external_lex_state = 2}, + [4949] = {.lex_state = 128, .external_lex_state = 2}, + [4950] = {.lex_state = 128, .external_lex_state = 2}, [4951] = {.lex_state = 128, .external_lex_state = 5}, [4952] = {.lex_state = 128, .external_lex_state = 5}, [4953] = {.lex_state = 128, .external_lex_state = 5}, - [4954] = {.lex_state = 128, .external_lex_state = 5}, + [4954] = {.lex_state = 128, .external_lex_state = 2}, [4955] = {.lex_state = 128, .external_lex_state = 5}, [4956] = {.lex_state = 128, .external_lex_state = 5}, - [4957] = {.lex_state = 128, .external_lex_state = 5}, - [4958] = {.lex_state = 128, .external_lex_state = 2}, - [4959] = {.lex_state = 128, .external_lex_state = 5}, + [4957] = {.lex_state = 128, .external_lex_state = 2}, + [4958] = {.lex_state = 128, .external_lex_state = 5}, + [4959] = {.lex_state = 128, .external_lex_state = 2}, [4960] = {.lex_state = 128, .external_lex_state = 5}, [4961] = {.lex_state = 128, .external_lex_state = 5}, [4962] = {.lex_state = 128, .external_lex_state = 5}, [4963] = {.lex_state = 128, .external_lex_state = 5}, - [4964] = {.lex_state = 128, .external_lex_state = 5}, - [4965] = {.lex_state = 128, .external_lex_state = 5}, + [4964] = {.lex_state = 128, .external_lex_state = 2}, + [4965] = {.lex_state = 128, .external_lex_state = 2}, [4966] = {.lex_state = 128, .external_lex_state = 5}, - [4967] = {.lex_state = 128, .external_lex_state = 5}, - [4968] = {.lex_state = 128, .external_lex_state = 5}, - [4969] = {.lex_state = 128, .external_lex_state = 5}, - [4970] = {.lex_state = 128, .external_lex_state = 5}, + [4967] = {.lex_state = 128, .external_lex_state = 2}, + [4968] = {.lex_state = 128, .external_lex_state = 2}, + [4969] = {.lex_state = 128, .external_lex_state = 2}, + [4970] = {.lex_state = 128, .external_lex_state = 2}, [4971] = {.lex_state = 128, .external_lex_state = 5}, [4972] = {.lex_state = 128, .external_lex_state = 5}, [4973] = {.lex_state = 128, .external_lex_state = 5}, - [4974] = {.lex_state = 128, .external_lex_state = 5}, + [4974] = {.lex_state = 128, .external_lex_state = 2}, [4975] = {.lex_state = 128, .external_lex_state = 5}, - [4976] = {.lex_state = 128, .external_lex_state = 5}, - [4977] = {.lex_state = 128, .external_lex_state = 5}, + [4976] = {.lex_state = 128, .external_lex_state = 2}, + [4977] = {.lex_state = 128, .external_lex_state = 2}, [4978] = {.lex_state = 128, .external_lex_state = 5}, [4979] = {.lex_state = 128, .external_lex_state = 5}, [4980] = {.lex_state = 128, .external_lex_state = 5}, - [4981] = {.lex_state = 128, .external_lex_state = 5}, - [4982] = {.lex_state = 128, .external_lex_state = 5}, + [4981] = {.lex_state = 128, .external_lex_state = 2}, + [4982] = {.lex_state = 128, .external_lex_state = 2}, [4983] = {.lex_state = 128, .external_lex_state = 5}, [4984] = {.lex_state = 128, .external_lex_state = 5}, [4985] = {.lex_state = 128, .external_lex_state = 2}, - [4986] = {.lex_state = 128, .external_lex_state = 5}, + [4986] = {.lex_state = 128, .external_lex_state = 2}, [4987] = {.lex_state = 128, .external_lex_state = 5}, - [4988] = {.lex_state = 128, .external_lex_state = 5}, - [4989] = {.lex_state = 128, .external_lex_state = 5}, + [4988] = {.lex_state = 128, .external_lex_state = 2}, + [4989] = {.lex_state = 128, .external_lex_state = 2}, [4990] = {.lex_state = 128, .external_lex_state = 5}, [4991] = {.lex_state = 128, .external_lex_state = 5}, [4992] = {.lex_state = 128, .external_lex_state = 5}, @@ -18687,7 +18717,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4996] = {.lex_state = 128, .external_lex_state = 5}, [4997] = {.lex_state = 128, .external_lex_state = 5}, [4998] = {.lex_state = 128, .external_lex_state = 5}, - [4999] = {.lex_state = 128, .external_lex_state = 2}, + [4999] = {.lex_state = 128, .external_lex_state = 5}, [5000] = {.lex_state = 128, .external_lex_state = 5}, [5001] = {.lex_state = 128, .external_lex_state = 5}, [5002] = {.lex_state = 128, .external_lex_state = 5}, @@ -18695,50 +18725,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5004] = {.lex_state = 128, .external_lex_state = 5}, [5005] = {.lex_state = 128, .external_lex_state = 5}, [5006] = {.lex_state = 128, .external_lex_state = 5}, - [5007] = {.lex_state = 128, .external_lex_state = 5}, + [5007] = {.lex_state = 128, .external_lex_state = 2}, [5008] = {.lex_state = 128, .external_lex_state = 5}, [5009] = {.lex_state = 128, .external_lex_state = 5}, [5010] = {.lex_state = 128, .external_lex_state = 5}, - [5011] = {.lex_state = 128, .external_lex_state = 2}, + [5011] = {.lex_state = 128, .external_lex_state = 5}, [5012] = {.lex_state = 128, .external_lex_state = 5}, [5013] = {.lex_state = 128, .external_lex_state = 5}, [5014] = {.lex_state = 128, .external_lex_state = 5}, - [5015] = {.lex_state = 128, .external_lex_state = 5}, + [5015] = {.lex_state = 128, .external_lex_state = 2}, [5016] = {.lex_state = 128, .external_lex_state = 5}, [5017] = {.lex_state = 128, .external_lex_state = 5}, [5018] = {.lex_state = 128, .external_lex_state = 5}, [5019] = {.lex_state = 128, .external_lex_state = 5}, [5020] = {.lex_state = 128, .external_lex_state = 5}, [5021] = {.lex_state = 128, .external_lex_state = 5}, - [5022] = {.lex_state = 2, .external_lex_state = 2}, - [5023] = {.lex_state = 128, .external_lex_state = 2}, - [5024] = {.lex_state = 2, .external_lex_state = 2}, + [5022] = {.lex_state = 128, .external_lex_state = 2}, + [5023] = {.lex_state = 128, .external_lex_state = 5}, + [5024] = {.lex_state = 128, .external_lex_state = 5}, [5025] = {.lex_state = 128, .external_lex_state = 5}, [5026] = {.lex_state = 128, .external_lex_state = 5}, - [5027] = {.lex_state = 128, .external_lex_state = 2}, - [5028] = {.lex_state = 128, .external_lex_state = 5}, - [5029] = {.lex_state = 128, .external_lex_state = 2}, + [5027] = {.lex_state = 128, .external_lex_state = 5}, + [5028] = {.lex_state = 128, .external_lex_state = 2}, + [5029] = {.lex_state = 128, .external_lex_state = 5}, [5030] = {.lex_state = 128, .external_lex_state = 5}, [5031] = {.lex_state = 128, .external_lex_state = 5}, [5032] = {.lex_state = 128, .external_lex_state = 5}, - [5033] = {.lex_state = 128, .external_lex_state = 5}, - [5034] = {.lex_state = 128, .external_lex_state = 5}, - [5035] = {.lex_state = 128, .external_lex_state = 5}, - [5036] = {.lex_state = 128, .external_lex_state = 5}, - [5037] = {.lex_state = 128, .external_lex_state = 5}, + [5033] = {.lex_state = 2, .external_lex_state = 2}, + [5034] = {.lex_state = 128, .external_lex_state = 2}, + [5035] = {.lex_state = 128, .external_lex_state = 2}, + [5036] = {.lex_state = 128, .external_lex_state = 2}, + [5037] = {.lex_state = 128, .external_lex_state = 2}, [5038] = {.lex_state = 128, .external_lex_state = 5}, [5039] = {.lex_state = 128, .external_lex_state = 5}, [5040] = {.lex_state = 128, .external_lex_state = 5}, [5041] = {.lex_state = 128, .external_lex_state = 5}, [5042] = {.lex_state = 128, .external_lex_state = 5}, [5043] = {.lex_state = 128, .external_lex_state = 5}, - [5044] = {.lex_state = 128, .external_lex_state = 5}, - [5045] = {.lex_state = 128, .external_lex_state = 5}, + [5044] = {.lex_state = 128, .external_lex_state = 2}, + [5045] = {.lex_state = 128, .external_lex_state = 2}, [5046] = {.lex_state = 128, .external_lex_state = 5}, [5047] = {.lex_state = 128, .external_lex_state = 2}, [5048] = {.lex_state = 128, .external_lex_state = 5}, - [5049] = {.lex_state = 128, .external_lex_state = 5}, - [5050] = {.lex_state = 128, .external_lex_state = 5}, + [5049] = {.lex_state = 128, .external_lex_state = 2}, + [5050] = {.lex_state = 128, .external_lex_state = 2}, [5051] = {.lex_state = 128, .external_lex_state = 5}, [5052] = {.lex_state = 128, .external_lex_state = 5}, [5053] = {.lex_state = 128, .external_lex_state = 5}, @@ -18748,130 +18778,130 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5057] = {.lex_state = 128, .external_lex_state = 5}, [5058] = {.lex_state = 128, .external_lex_state = 5}, [5059] = {.lex_state = 128, .external_lex_state = 5}, - [5060] = {.lex_state = 128, .external_lex_state = 2}, - [5061] = {.lex_state = 128, .external_lex_state = 2}, - [5062] = {.lex_state = 128, .external_lex_state = 5}, - [5063] = {.lex_state = 128, .external_lex_state = 5}, - [5064] = {.lex_state = 128, .external_lex_state = 5}, + [5060] = {.lex_state = 128, .external_lex_state = 5}, + [5061] = {.lex_state = 128, .external_lex_state = 5}, + [5062] = {.lex_state = 128, .external_lex_state = 2}, + [5063] = {.lex_state = 128, .external_lex_state = 2}, + [5064] = {.lex_state = 128, .external_lex_state = 2}, [5065] = {.lex_state = 128, .external_lex_state = 5}, - [5066] = {.lex_state = 128, .external_lex_state = 2}, + [5066] = {.lex_state = 128, .external_lex_state = 5}, [5067] = {.lex_state = 128, .external_lex_state = 5}, [5068] = {.lex_state = 128, .external_lex_state = 5}, - [5069] = {.lex_state = 2, .external_lex_state = 2}, + [5069] = {.lex_state = 128, .external_lex_state = 5}, [5070] = {.lex_state = 128, .external_lex_state = 5}, - [5071] = {.lex_state = 2, .external_lex_state = 2}, + [5071] = {.lex_state = 128, .external_lex_state = 5}, [5072] = {.lex_state = 128, .external_lex_state = 2}, [5073] = {.lex_state = 128, .external_lex_state = 5}, [5074] = {.lex_state = 128, .external_lex_state = 5}, [5075] = {.lex_state = 128, .external_lex_state = 5}, [5076] = {.lex_state = 128, .external_lex_state = 5}, - [5077] = {.lex_state = 128, .external_lex_state = 2}, + [5077] = {.lex_state = 128, .external_lex_state = 5}, [5078] = {.lex_state = 128, .external_lex_state = 5}, - [5079] = {.lex_state = 128, .external_lex_state = 5}, + [5079] = {.lex_state = 2, .external_lex_state = 2}, [5080] = {.lex_state = 128, .external_lex_state = 5}, - [5081] = {.lex_state = 128, .external_lex_state = 5}, + [5081] = {.lex_state = 128, .external_lex_state = 2}, [5082] = {.lex_state = 128, .external_lex_state = 5}, [5083] = {.lex_state = 128, .external_lex_state = 2}, - [5084] = {.lex_state = 128, .external_lex_state = 5}, + [5084] = {.lex_state = 128, .external_lex_state = 2}, [5085] = {.lex_state = 128, .external_lex_state = 5}, [5086] = {.lex_state = 128, .external_lex_state = 5}, [5087] = {.lex_state = 128, .external_lex_state = 5}, - [5088] = {.lex_state = 128, .external_lex_state = 2}, - [5089] = {.lex_state = 128, .external_lex_state = 2}, + [5088] = {.lex_state = 128, .external_lex_state = 5}, + [5089] = {.lex_state = 2, .external_lex_state = 2}, [5090] = {.lex_state = 128, .external_lex_state = 5}, [5091] = {.lex_state = 128, .external_lex_state = 5}, [5092] = {.lex_state = 128, .external_lex_state = 5}, - [5093] = {.lex_state = 128, .external_lex_state = 2}, - [5094] = {.lex_state = 128, .external_lex_state = 2}, - [5095] = {.lex_state = 128, .external_lex_state = 2}, + [5093] = {.lex_state = 128, .external_lex_state = 5}, + [5094] = {.lex_state = 128, .external_lex_state = 5}, + [5095] = {.lex_state = 128, .external_lex_state = 5}, [5096] = {.lex_state = 128, .external_lex_state = 5}, [5097] = {.lex_state = 128, .external_lex_state = 5}, [5098] = {.lex_state = 128, .external_lex_state = 5}, [5099] = {.lex_state = 128, .external_lex_state = 2}, - [5100] = {.lex_state = 128, .external_lex_state = 2}, + [5100] = {.lex_state = 128, .external_lex_state = 5}, [5101] = {.lex_state = 128, .external_lex_state = 2}, - [5102] = {.lex_state = 128, .external_lex_state = 5}, - [5103] = {.lex_state = 128, .external_lex_state = 5}, - [5104] = {.lex_state = 128, .external_lex_state = 2}, - [5105] = {.lex_state = 128, .external_lex_state = 5}, - [5106] = {.lex_state = 128, .external_lex_state = 2}, - [5107] = {.lex_state = 18, .external_lex_state = 9}, + [5102] = {.lex_state = 128, .external_lex_state = 2}, + [5103] = {.lex_state = 128, .external_lex_state = 2}, + [5104] = {.lex_state = 128, .external_lex_state = 5}, + [5105] = {.lex_state = 128, .external_lex_state = 2}, + [5106] = {.lex_state = 128, .external_lex_state = 5}, + [5107] = {.lex_state = 128, .external_lex_state = 5}, [5108] = {.lex_state = 128, .external_lex_state = 5}, - [5109] = {.lex_state = 128, .external_lex_state = 2}, + [5109] = {.lex_state = 128, .external_lex_state = 5}, [5110] = {.lex_state = 128, .external_lex_state = 5}, - [5111] = {.lex_state = 128, .external_lex_state = 2}, + [5111] = {.lex_state = 128, .external_lex_state = 5}, [5112] = {.lex_state = 128, .external_lex_state = 2}, [5113] = {.lex_state = 128, .external_lex_state = 5}, [5114] = {.lex_state = 128, .external_lex_state = 5}, - [5115] = {.lex_state = 128, .external_lex_state = 2}, - [5116] = {.lex_state = 128, .external_lex_state = 2}, + [5115] = {.lex_state = 128, .external_lex_state = 5}, + [5116] = {.lex_state = 128, .external_lex_state = 5}, [5117] = {.lex_state = 128, .external_lex_state = 5}, [5118] = {.lex_state = 128, .external_lex_state = 5}, [5119] = {.lex_state = 128, .external_lex_state = 2}, - [5120] = {.lex_state = 128, .external_lex_state = 5}, - [5121] = {.lex_state = 128, .external_lex_state = 5}, - [5122] = {.lex_state = 128, .external_lex_state = 5}, - [5123] = {.lex_state = 128, .external_lex_state = 5}, - [5124] = {.lex_state = 2, .external_lex_state = 2}, - [5125] = {.lex_state = 128, .external_lex_state = 5}, + [5120] = {.lex_state = 128, .external_lex_state = 2}, + [5121] = {.lex_state = 128, .external_lex_state = 2}, + [5122] = {.lex_state = 128, .external_lex_state = 2}, + [5123] = {.lex_state = 128, .external_lex_state = 2}, + [5124] = {.lex_state = 128, .external_lex_state = 2}, + [5125] = {.lex_state = 128, .external_lex_state = 2}, [5126] = {.lex_state = 128, .external_lex_state = 5}, [5127] = {.lex_state = 128, .external_lex_state = 5}, - [5128] = {.lex_state = 128, .external_lex_state = 5}, - [5129] = {.lex_state = 128, .external_lex_state = 2}, + [5128] = {.lex_state = 128, .external_lex_state = 2}, + [5129] = {.lex_state = 128, .external_lex_state = 5}, [5130] = {.lex_state = 128, .external_lex_state = 5}, [5131] = {.lex_state = 128, .external_lex_state = 2}, - [5132] = {.lex_state = 128, .external_lex_state = 2}, - [5133] = {.lex_state = 128, .external_lex_state = 2}, - [5134] = {.lex_state = 128, .external_lex_state = 2}, - [5135] = {.lex_state = 128, .external_lex_state = 5}, - [5136] = {.lex_state = 128, .external_lex_state = 2}, + [5132] = {.lex_state = 18, .external_lex_state = 9}, + [5133] = {.lex_state = 128, .external_lex_state = 5}, + [5134] = {.lex_state = 128, .external_lex_state = 5}, + [5135] = {.lex_state = 2, .external_lex_state = 2}, + [5136] = {.lex_state = 128, .external_lex_state = 5}, [5137] = {.lex_state = 128, .external_lex_state = 2}, - [5138] = {.lex_state = 128, .external_lex_state = 5}, + [5138] = {.lex_state = 128, .external_lex_state = 2}, [5139] = {.lex_state = 128, .external_lex_state = 2}, [5140] = {.lex_state = 128, .external_lex_state = 2}, - [5141] = {.lex_state = 128, .external_lex_state = 2}, - [5142] = {.lex_state = 128, .external_lex_state = 5}, - [5143] = {.lex_state = 2, .external_lex_state = 2}, + [5141] = {.lex_state = 128, .external_lex_state = 5}, + [5142] = {.lex_state = 128, .external_lex_state = 2}, + [5143] = {.lex_state = 128, .external_lex_state = 2}, [5144] = {.lex_state = 128, .external_lex_state = 5}, - [5145] = {.lex_state = 128, .external_lex_state = 5}, + [5145] = {.lex_state = 128, .external_lex_state = 2}, [5146] = {.lex_state = 128, .external_lex_state = 5}, - [5147] = {.lex_state = 128, .external_lex_state = 5}, + [5147] = {.lex_state = 128, .external_lex_state = 2}, [5148] = {.lex_state = 128, .external_lex_state = 5}, - [5149] = {.lex_state = 2, .external_lex_state = 2}, + [5149] = {.lex_state = 128, .external_lex_state = 5}, [5150] = {.lex_state = 128, .external_lex_state = 5}, [5151] = {.lex_state = 128, .external_lex_state = 5}, [5152] = {.lex_state = 128, .external_lex_state = 5}, - [5153] = {.lex_state = 128, .external_lex_state = 2}, - [5154] = {.lex_state = 128, .external_lex_state = 5}, + [5153] = {.lex_state = 2, .external_lex_state = 2}, + [5154] = {.lex_state = 128, .external_lex_state = 2}, [5155] = {.lex_state = 128, .external_lex_state = 5}, [5156] = {.lex_state = 128, .external_lex_state = 5}, [5157] = {.lex_state = 128, .external_lex_state = 5}, - [5158] = {.lex_state = 128, .external_lex_state = 5}, - [5159] = {.lex_state = 128, .external_lex_state = 5}, - [5160] = {.lex_state = 128, .external_lex_state = 5}, - [5161] = {.lex_state = 128, .external_lex_state = 2}, - [5162] = {.lex_state = 128, .external_lex_state = 2}, + [5158] = {.lex_state = 128, .external_lex_state = 2}, + [5159] = {.lex_state = 128, .external_lex_state = 2}, + [5160] = {.lex_state = 128, .external_lex_state = 2}, + [5161] = {.lex_state = 128, .external_lex_state = 5}, + [5162] = {.lex_state = 128, .external_lex_state = 5}, [5163] = {.lex_state = 128, .external_lex_state = 5}, [5164] = {.lex_state = 128, .external_lex_state = 5}, [5165] = {.lex_state = 128, .external_lex_state = 5}, [5166] = {.lex_state = 128, .external_lex_state = 2}, [5167] = {.lex_state = 128, .external_lex_state = 2}, - [5168] = {.lex_state = 128, .external_lex_state = 2}, - [5169] = {.lex_state = 128, .external_lex_state = 5}, - [5170] = {.lex_state = 128, .external_lex_state = 5}, - [5171] = {.lex_state = 128, .external_lex_state = 5}, + [5168] = {.lex_state = 128, .external_lex_state = 5}, + [5169] = {.lex_state = 128, .external_lex_state = 2}, + [5170] = {.lex_state = 128, .external_lex_state = 2}, + [5171] = {.lex_state = 128, .external_lex_state = 2}, [5172] = {.lex_state = 128, .external_lex_state = 5}, [5173] = {.lex_state = 128, .external_lex_state = 5}, - [5174] = {.lex_state = 128, .external_lex_state = 2}, + [5174] = {.lex_state = 128, .external_lex_state = 5}, [5175] = {.lex_state = 128, .external_lex_state = 2}, [5176] = {.lex_state = 128, .external_lex_state = 5}, - [5177] = {.lex_state = 128, .external_lex_state = 2}, - [5178] = {.lex_state = 128, .external_lex_state = 2}, + [5177] = {.lex_state = 128, .external_lex_state = 5}, + [5178] = {.lex_state = 2, .external_lex_state = 2}, [5179] = {.lex_state = 128, .external_lex_state = 2}, [5180] = {.lex_state = 128, .external_lex_state = 2}, [5181] = {.lex_state = 128, .external_lex_state = 5}, - [5182] = {.lex_state = 128, .external_lex_state = 5}, - [5183] = {.lex_state = 128, .external_lex_state = 2}, + [5182] = {.lex_state = 128, .external_lex_state = 2}, + [5183] = {.lex_state = 128, .external_lex_state = 5}, [5184] = {.lex_state = 128, .external_lex_state = 5}, [5185] = {.lex_state = 128, .external_lex_state = 5}, [5186] = {.lex_state = 128, .external_lex_state = 5}, @@ -18879,66 +18909,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5188] = {.lex_state = 128, .external_lex_state = 2}, [5189] = {.lex_state = 128, .external_lex_state = 5}, [5190] = {.lex_state = 128, .external_lex_state = 5}, - [5191] = {.lex_state = 128, .external_lex_state = 2}, + [5191] = {.lex_state = 128, .external_lex_state = 5}, [5192] = {.lex_state = 128, .external_lex_state = 2}, - [5193] = {.lex_state = 128, .external_lex_state = 5}, + [5193] = {.lex_state = 128, .external_lex_state = 2}, [5194] = {.lex_state = 128, .external_lex_state = 2}, - [5195] = {.lex_state = 128, .external_lex_state = 5}, - [5196] = {.lex_state = 128, .external_lex_state = 5}, + [5195] = {.lex_state = 128, .external_lex_state = 2}, + [5196] = {.lex_state = 128, .external_lex_state = 2}, [5197] = {.lex_state = 128, .external_lex_state = 2}, [5198] = {.lex_state = 128, .external_lex_state = 5}, [5199] = {.lex_state = 128, .external_lex_state = 5}, [5200] = {.lex_state = 128, .external_lex_state = 5}, - [5201] = {.lex_state = 128, .external_lex_state = 2}, - [5202] = {.lex_state = 128, .external_lex_state = 5}, + [5201] = {.lex_state = 128, .external_lex_state = 5}, + [5202] = {.lex_state = 128, .external_lex_state = 2}, [5203] = {.lex_state = 128, .external_lex_state = 5}, [5204] = {.lex_state = 128, .external_lex_state = 5}, [5205] = {.lex_state = 128, .external_lex_state = 5}, - [5206] = {.lex_state = 128, .external_lex_state = 5}, - [5207] = {.lex_state = 128, .external_lex_state = 2}, + [5206] = {.lex_state = 128, .external_lex_state = 2}, + [5207] = {.lex_state = 128, .external_lex_state = 5}, [5208] = {.lex_state = 128, .external_lex_state = 5}, - [5209] = {.lex_state = 128, .external_lex_state = 2}, - [5210] = {.lex_state = 128, .external_lex_state = 5}, - [5211] = {.lex_state = 128, .external_lex_state = 2}, - [5212] = {.lex_state = 128, .external_lex_state = 5}, - [5213] = {.lex_state = 128, .external_lex_state = 5}, + [5209] = {.lex_state = 128, .external_lex_state = 5}, + [5210] = {.lex_state = 128, .external_lex_state = 2}, + [5211] = {.lex_state = 128, .external_lex_state = 5}, + [5212] = {.lex_state = 128, .external_lex_state = 2}, + [5213] = {.lex_state = 128, .external_lex_state = 2}, [5214] = {.lex_state = 128, .external_lex_state = 5}, [5215] = {.lex_state = 128, .external_lex_state = 5}, [5216] = {.lex_state = 128, .external_lex_state = 5}, - [5217] = {.lex_state = 2, .external_lex_state = 2}, + [5217] = {.lex_state = 128, .external_lex_state = 5}, [5218] = {.lex_state = 128, .external_lex_state = 5}, [5219] = {.lex_state = 128, .external_lex_state = 5}, [5220] = {.lex_state = 128, .external_lex_state = 5}, - [5221] = {.lex_state = 128, .external_lex_state = 2}, - [5222] = {.lex_state = 128, .external_lex_state = 2}, + [5221] = {.lex_state = 128, .external_lex_state = 5}, + [5222] = {.lex_state = 128, .external_lex_state = 5}, [5223] = {.lex_state = 128, .external_lex_state = 2}, - [5224] = {.lex_state = 128, .external_lex_state = 2}, - [5225] = {.lex_state = 128, .external_lex_state = 2}, - [5226] = {.lex_state = 128, .external_lex_state = 2}, - [5227] = {.lex_state = 128, .external_lex_state = 2}, - [5228] = {.lex_state = 128, .external_lex_state = 2}, - [5229] = {.lex_state = 128, .external_lex_state = 2}, + [5224] = {.lex_state = 128, .external_lex_state = 5}, + [5225] = {.lex_state = 128, .external_lex_state = 5}, + [5226] = {.lex_state = 128, .external_lex_state = 5}, + [5227] = {.lex_state = 128, .external_lex_state = 5}, + [5228] = {.lex_state = 128, .external_lex_state = 5}, + [5229] = {.lex_state = 128, .external_lex_state = 5}, [5230] = {.lex_state = 128, .external_lex_state = 2}, - [5231] = {.lex_state = 128, .external_lex_state = 2}, - [5232] = {.lex_state = 128, .external_lex_state = 2}, - [5233] = {.lex_state = 128, .external_lex_state = 2}, - [5234] = {.lex_state = 128, .external_lex_state = 2}, - [5235] = {.lex_state = 128, .external_lex_state = 2}, + [5231] = {.lex_state = 128, .external_lex_state = 5}, + [5232] = {.lex_state = 128, .external_lex_state = 5}, + [5233] = {.lex_state = 128, .external_lex_state = 5}, + [5234] = {.lex_state = 128, .external_lex_state = 5}, + [5235] = {.lex_state = 128, .external_lex_state = 5}, [5236] = {.lex_state = 128, .external_lex_state = 5}, - [5237] = {.lex_state = 128, .external_lex_state = 2}, - [5238] = {.lex_state = 128, .external_lex_state = 2}, - [5239] = {.lex_state = 128, .external_lex_state = 2}, - [5240] = {.lex_state = 128, .external_lex_state = 2}, + [5237] = {.lex_state = 128, .external_lex_state = 5}, + [5238] = {.lex_state = 128, .external_lex_state = 5}, + [5239] = {.lex_state = 128, .external_lex_state = 5}, + [5240] = {.lex_state = 128, .external_lex_state = 5}, [5241] = {.lex_state = 128, .external_lex_state = 5}, - [5242] = {.lex_state = 128, .external_lex_state = 2}, - [5243] = {.lex_state = 128, .external_lex_state = 2}, - [5244] = {.lex_state = 128, .external_lex_state = 2}, - [5245] = {.lex_state = 128, .external_lex_state = 2}, - [5246] = {.lex_state = 128, .external_lex_state = 2}, - [5247] = {.lex_state = 128, .external_lex_state = 2}, - [5248] = {.lex_state = 128, .external_lex_state = 2}, - [5249] = {.lex_state = 128, .external_lex_state = 2}, - [5250] = {.lex_state = 128, .external_lex_state = 2}, + [5242] = {.lex_state = 128, .external_lex_state = 5}, + [5243] = {.lex_state = 128, .external_lex_state = 5}, + [5244] = {.lex_state = 128, .external_lex_state = 5}, + [5245] = {.lex_state = 128, .external_lex_state = 5}, + [5246] = {.lex_state = 128, .external_lex_state = 5}, + [5247] = {.lex_state = 128, .external_lex_state = 5}, + [5248] = {.lex_state = 128, .external_lex_state = 5}, + [5249] = {.lex_state = 128, .external_lex_state = 5}, + [5250] = {.lex_state = 128, .external_lex_state = 5}, [5251] = {.lex_state = 128, .external_lex_state = 2}, [5252] = {.lex_state = 128, .external_lex_state = 2}, [5253] = {.lex_state = 128, .external_lex_state = 2}, @@ -18959,7 +18989,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5268] = {.lex_state = 128, .external_lex_state = 2}, [5269] = {.lex_state = 128, .external_lex_state = 2}, [5270] = {.lex_state = 128, .external_lex_state = 2}, - [5271] = {.lex_state = 128, .external_lex_state = 5}, + [5271] = {.lex_state = 11, .external_lex_state = 2}, [5272] = {.lex_state = 128, .external_lex_state = 2}, [5273] = {.lex_state = 128, .external_lex_state = 2}, [5274] = {.lex_state = 128, .external_lex_state = 2}, @@ -18979,21 +19009,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5288] = {.lex_state = 128, .external_lex_state = 2}, [5289] = {.lex_state = 128, .external_lex_state = 2}, [5290] = {.lex_state = 128, .external_lex_state = 2}, - [5291] = {.lex_state = 128, .external_lex_state = 2}, - [5292] = {.lex_state = 128, .external_lex_state = 5}, + [5291] = {.lex_state = 128, .external_lex_state = 5}, + [5292] = {.lex_state = 128, .external_lex_state = 2}, [5293] = {.lex_state = 128, .external_lex_state = 2}, [5294] = {.lex_state = 128, .external_lex_state = 2}, - [5295] = {.lex_state = 128, .external_lex_state = 5}, - [5296] = {.lex_state = 128, .external_lex_state = 5}, - [5297] = {.lex_state = 128, .external_lex_state = 5}, + [5295] = {.lex_state = 128, .external_lex_state = 2}, + [5296] = {.lex_state = 128, .external_lex_state = 2}, + [5297] = {.lex_state = 128, .external_lex_state = 2}, [5298] = {.lex_state = 128, .external_lex_state = 2}, [5299] = {.lex_state = 128, .external_lex_state = 2}, [5300] = {.lex_state = 128, .external_lex_state = 2}, - [5301] = {.lex_state = 128, .external_lex_state = 5}, + [5301] = {.lex_state = 128, .external_lex_state = 2}, [5302] = {.lex_state = 128, .external_lex_state = 2}, - [5303] = {.lex_state = 128, .external_lex_state = 2}, - [5304] = {.lex_state = 128, .external_lex_state = 5}, - [5305] = {.lex_state = 128, .external_lex_state = 2}, + [5303] = {.lex_state = 128, .external_lex_state = 5}, + [5304] = {.lex_state = 128, .external_lex_state = 2}, + [5305] = {.lex_state = 128, .external_lex_state = 5}, [5306] = {.lex_state = 128, .external_lex_state = 2}, [5307] = {.lex_state = 128, .external_lex_state = 2}, [5308] = {.lex_state = 128, .external_lex_state = 2}, @@ -19003,23 +19033,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5312] = {.lex_state = 128, .external_lex_state = 2}, [5313] = {.lex_state = 128, .external_lex_state = 2}, [5314] = {.lex_state = 128, .external_lex_state = 2}, - [5315] = {.lex_state = 128, .external_lex_state = 2}, - [5316] = {.lex_state = 128, .external_lex_state = 2}, + [5315] = {.lex_state = 128, .external_lex_state = 5}, + [5316] = {.lex_state = 128, .external_lex_state = 5}, [5317] = {.lex_state = 128, .external_lex_state = 2}, [5318] = {.lex_state = 128, .external_lex_state = 2}, - [5319] = {.lex_state = 128, .external_lex_state = 5}, + [5319] = {.lex_state = 128, .external_lex_state = 2}, [5320] = {.lex_state = 128, .external_lex_state = 2}, - [5321] = {.lex_state = 128, .external_lex_state = 2}, - [5322] = {.lex_state = 128, .external_lex_state = 2}, - [5323] = {.lex_state = 128, .external_lex_state = 2}, - [5324] = {.lex_state = 128, .external_lex_state = 5}, + [5321] = {.lex_state = 128, .external_lex_state = 5}, + [5322] = {.lex_state = 128, .external_lex_state = 5}, + [5323] = {.lex_state = 128, .external_lex_state = 5}, + [5324] = {.lex_state = 128, .external_lex_state = 2}, [5325] = {.lex_state = 128, .external_lex_state = 2}, [5326] = {.lex_state = 128, .external_lex_state = 2}, [5327] = {.lex_state = 128, .external_lex_state = 2}, [5328] = {.lex_state = 128, .external_lex_state = 2}, [5329] = {.lex_state = 128, .external_lex_state = 2}, [5330] = {.lex_state = 128, .external_lex_state = 2}, - [5331] = {.lex_state = 128, .external_lex_state = 5}, + [5331] = {.lex_state = 128, .external_lex_state = 2}, [5332] = {.lex_state = 128, .external_lex_state = 2}, [5333] = {.lex_state = 128, .external_lex_state = 2}, [5334] = {.lex_state = 128, .external_lex_state = 2}, @@ -19029,7 +19059,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5338] = {.lex_state = 128, .external_lex_state = 2}, [5339] = {.lex_state = 128, .external_lex_state = 2}, [5340] = {.lex_state = 128, .external_lex_state = 2}, - [5341] = {.lex_state = 128, .external_lex_state = 5}, + [5341] = {.lex_state = 128, .external_lex_state = 2}, [5342] = {.lex_state = 128, .external_lex_state = 2}, [5343] = {.lex_state = 128, .external_lex_state = 2}, [5344] = {.lex_state = 128, .external_lex_state = 2}, @@ -19038,11 +19068,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5347] = {.lex_state = 128, .external_lex_state = 2}, [5348] = {.lex_state = 128, .external_lex_state = 2}, [5349] = {.lex_state = 128, .external_lex_state = 2}, - [5350] = {.lex_state = 128, .external_lex_state = 5}, + [5350] = {.lex_state = 128, .external_lex_state = 2}, [5351] = {.lex_state = 128, .external_lex_state = 2}, [5352] = {.lex_state = 128, .external_lex_state = 2}, - [5353] = {.lex_state = 128, .external_lex_state = 5}, - [5354] = {.lex_state = 128, .external_lex_state = 2}, + [5353] = {.lex_state = 128, .external_lex_state = 2}, + [5354] = {.lex_state = 128, .external_lex_state = 5}, [5355] = {.lex_state = 128, .external_lex_state = 2}, [5356] = {.lex_state = 128, .external_lex_state = 2}, [5357] = {.lex_state = 128, .external_lex_state = 2}, @@ -19052,7 +19082,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5361] = {.lex_state = 128, .external_lex_state = 2}, [5362] = {.lex_state = 128, .external_lex_state = 2}, [5363] = {.lex_state = 128, .external_lex_state = 2}, - [5364] = {.lex_state = 128, .external_lex_state = 2}, + [5364] = {.lex_state = 128, .external_lex_state = 5}, [5365] = {.lex_state = 128, .external_lex_state = 2}, [5366] = {.lex_state = 128, .external_lex_state = 2}, [5367] = {.lex_state = 128, .external_lex_state = 2}, @@ -19065,26 +19095,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5374] = {.lex_state = 128, .external_lex_state = 2}, [5375] = {.lex_state = 128, .external_lex_state = 2}, [5376] = {.lex_state = 128, .external_lex_state = 2}, - [5377] = {.lex_state = 128, .external_lex_state = 2}, - [5378] = {.lex_state = 128, .external_lex_state = 5}, + [5377] = {.lex_state = 128, .external_lex_state = 5}, + [5378] = {.lex_state = 128, .external_lex_state = 2}, [5379] = {.lex_state = 128, .external_lex_state = 2}, [5380] = {.lex_state = 128, .external_lex_state = 2}, [5381] = {.lex_state = 128, .external_lex_state = 2}, - [5382] = {.lex_state = 128, .external_lex_state = 2}, - [5383] = {.lex_state = 128, .external_lex_state = 2}, + [5382] = {.lex_state = 128, .external_lex_state = 5}, + [5383] = {.lex_state = 128, .external_lex_state = 5}, [5384] = {.lex_state = 128, .external_lex_state = 2}, [5385] = {.lex_state = 128, .external_lex_state = 2}, [5386] = {.lex_state = 128, .external_lex_state = 2}, [5387] = {.lex_state = 128, .external_lex_state = 2}, [5388] = {.lex_state = 128, .external_lex_state = 2}, - [5389] = {.lex_state = 128, .external_lex_state = 5}, + [5389] = {.lex_state = 128, .external_lex_state = 2}, [5390] = {.lex_state = 128, .external_lex_state = 2}, - [5391] = {.lex_state = 128, .external_lex_state = 5}, + [5391] = {.lex_state = 128, .external_lex_state = 2}, [5392] = {.lex_state = 128, .external_lex_state = 2}, [5393] = {.lex_state = 128, .external_lex_state = 2}, [5394] = {.lex_state = 128, .external_lex_state = 2}, [5395] = {.lex_state = 128, .external_lex_state = 2}, - [5396] = {.lex_state = 128, .external_lex_state = 2}, + [5396] = {.lex_state = 128, .external_lex_state = 5}, [5397] = {.lex_state = 128, .external_lex_state = 2}, [5398] = {.lex_state = 128, .external_lex_state = 2}, [5399] = {.lex_state = 128, .external_lex_state = 2}, @@ -19098,7 +19128,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5407] = {.lex_state = 128, .external_lex_state = 2}, [5408] = {.lex_state = 128, .external_lex_state = 2}, [5409] = {.lex_state = 128, .external_lex_state = 2}, - [5410] = {.lex_state = 128, .external_lex_state = 2}, + [5410] = {.lex_state = 128, .external_lex_state = 5}, [5411] = {.lex_state = 128, .external_lex_state = 2}, [5412] = {.lex_state = 128, .external_lex_state = 2}, [5413] = {.lex_state = 128, .external_lex_state = 2}, @@ -19110,9 +19140,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5419] = {.lex_state = 128, .external_lex_state = 2}, [5420] = {.lex_state = 128, .external_lex_state = 2}, [5421] = {.lex_state = 128, .external_lex_state = 2}, - [5422] = {.lex_state = 128, .external_lex_state = 2}, + [5422] = {.lex_state = 128, .external_lex_state = 5}, [5423] = {.lex_state = 128, .external_lex_state = 2}, - [5424] = {.lex_state = 128, .external_lex_state = 2}, + [5424] = {.lex_state = 128, .external_lex_state = 5}, [5425] = {.lex_state = 128, .external_lex_state = 2}, [5426] = {.lex_state = 128, .external_lex_state = 2}, [5427] = {.lex_state = 128, .external_lex_state = 2}, @@ -19126,19 +19156,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5435] = {.lex_state = 128, .external_lex_state = 2}, [5436] = {.lex_state = 128, .external_lex_state = 2}, [5437] = {.lex_state = 128, .external_lex_state = 2}, - [5438] = {.lex_state = 128, .external_lex_state = 5}, + [5438] = {.lex_state = 128, .external_lex_state = 2}, [5439] = {.lex_state = 128, .external_lex_state = 2}, - [5440] = {.lex_state = 128, .external_lex_state = 5}, + [5440] = {.lex_state = 128, .external_lex_state = 2}, [5441] = {.lex_state = 128, .external_lex_state = 2}, - [5442] = {.lex_state = 128, .external_lex_state = 2}, + [5442] = {.lex_state = 128, .external_lex_state = 5}, [5443] = {.lex_state = 128, .external_lex_state = 2}, - [5444] = {.lex_state = 128, .external_lex_state = 2}, - [5445] = {.lex_state = 128, .external_lex_state = 2}, + [5444] = {.lex_state = 128, .external_lex_state = 5}, + [5445] = {.lex_state = 128, .external_lex_state = 5}, [5446] = {.lex_state = 128, .external_lex_state = 2}, [5447] = {.lex_state = 128, .external_lex_state = 2}, [5448] = {.lex_state = 128, .external_lex_state = 2}, [5449] = {.lex_state = 128, .external_lex_state = 2}, - [5450] = {.lex_state = 128, .external_lex_state = 5}, + [5450] = {.lex_state = 128, .external_lex_state = 2}, [5451] = {.lex_state = 128, .external_lex_state = 2}, [5452] = {.lex_state = 128, .external_lex_state = 2}, [5453] = {.lex_state = 128, .external_lex_state = 2}, @@ -19155,7 +19185,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5464] = {.lex_state = 128, .external_lex_state = 2}, [5465] = {.lex_state = 128, .external_lex_state = 2}, [5466] = {.lex_state = 128, .external_lex_state = 2}, - [5467] = {.lex_state = 128, .external_lex_state = 5}, + [5467] = {.lex_state = 128, .external_lex_state = 2}, [5468] = {.lex_state = 128, .external_lex_state = 2}, [5469] = {.lex_state = 128, .external_lex_state = 2}, [5470] = {.lex_state = 128, .external_lex_state = 2}, @@ -19163,7 +19193,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5472] = {.lex_state = 128, .external_lex_state = 2}, [5473] = {.lex_state = 128, .external_lex_state = 2}, [5474] = {.lex_state = 128, .external_lex_state = 2}, - [5475] = {.lex_state = 128, .external_lex_state = 2}, + [5475] = {.lex_state = 128, .external_lex_state = 5}, [5476] = {.lex_state = 128, .external_lex_state = 2}, [5477] = {.lex_state = 128, .external_lex_state = 2}, [5478] = {.lex_state = 128, .external_lex_state = 2}, @@ -19174,7 +19204,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5483] = {.lex_state = 128, .external_lex_state = 2}, [5484] = {.lex_state = 128, .external_lex_state = 2}, [5485] = {.lex_state = 128, .external_lex_state = 2}, - [5486] = {.lex_state = 128, .external_lex_state = 5}, + [5486] = {.lex_state = 128, .external_lex_state = 2}, [5487] = {.lex_state = 128, .external_lex_state = 2}, [5488] = {.lex_state = 128, .external_lex_state = 2}, [5489] = {.lex_state = 128, .external_lex_state = 2}, @@ -19184,7 +19214,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5493] = {.lex_state = 128, .external_lex_state = 2}, [5494] = {.lex_state = 128, .external_lex_state = 2}, [5495] = {.lex_state = 128, .external_lex_state = 2}, - [5496] = {.lex_state = 128, .external_lex_state = 5}, + [5496] = {.lex_state = 128, .external_lex_state = 2}, [5497] = {.lex_state = 128, .external_lex_state = 2}, [5498] = {.lex_state = 128, .external_lex_state = 2}, [5499] = {.lex_state = 128, .external_lex_state = 2}, @@ -19198,18 +19228,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5507] = {.lex_state = 128, .external_lex_state = 2}, [5508] = {.lex_state = 128, .external_lex_state = 2}, [5509] = {.lex_state = 128, .external_lex_state = 2}, - [5510] = {.lex_state = 11, .external_lex_state = 2}, + [5510] = {.lex_state = 128, .external_lex_state = 2}, [5511] = {.lex_state = 128, .external_lex_state = 2}, [5512] = {.lex_state = 128, .external_lex_state = 2}, [5513] = {.lex_state = 128, .external_lex_state = 2}, [5514] = {.lex_state = 128, .external_lex_state = 2}, - [5515] = {.lex_state = 128, .external_lex_state = 2}, - [5516] = {.lex_state = 128, .external_lex_state = 2}, - [5517] = {.lex_state = 128, .external_lex_state = 5}, + [5515] = {.lex_state = 128, .external_lex_state = 5}, + [5516] = {.lex_state = 128, .external_lex_state = 5}, + [5517] = {.lex_state = 128, .external_lex_state = 2}, [5518] = {.lex_state = 128, .external_lex_state = 2}, [5519] = {.lex_state = 128, .external_lex_state = 2}, [5520] = {.lex_state = 128, .external_lex_state = 2}, - [5521] = {.lex_state = 128, .external_lex_state = 5}, + [5521] = {.lex_state = 128, .external_lex_state = 2}, [5522] = {.lex_state = 128, .external_lex_state = 2}, [5523] = {.lex_state = 128, .external_lex_state = 2}, [5524] = {.lex_state = 128, .external_lex_state = 2}, @@ -19221,7 +19251,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5530] = {.lex_state = 128, .external_lex_state = 2}, [5531] = {.lex_state = 128, .external_lex_state = 2}, [5532] = {.lex_state = 128, .external_lex_state = 2}, - [5533] = {.lex_state = 128, .external_lex_state = 5}, + [5533] = {.lex_state = 128, .external_lex_state = 2}, [5534] = {.lex_state = 128, .external_lex_state = 2}, [5535] = {.lex_state = 128, .external_lex_state = 2}, [5536] = {.lex_state = 128, .external_lex_state = 2}, @@ -19235,8 +19265,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5544] = {.lex_state = 128, .external_lex_state = 2}, [5545] = {.lex_state = 128, .external_lex_state = 2}, [5546] = {.lex_state = 128, .external_lex_state = 2}, - [5547] = {.lex_state = 128, .external_lex_state = 5}, - [5548] = {.lex_state = 128, .external_lex_state = 2}, + [5547] = {.lex_state = 128, .external_lex_state = 2}, + [5548] = {.lex_state = 128, .external_lex_state = 5}, [5549] = {.lex_state = 128, .external_lex_state = 2}, [5550] = {.lex_state = 128, .external_lex_state = 2}, [5551] = {.lex_state = 128, .external_lex_state = 2}, @@ -19260,7 +19290,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5569] = {.lex_state = 128, .external_lex_state = 2}, [5570] = {.lex_state = 128, .external_lex_state = 2}, [5571] = {.lex_state = 128, .external_lex_state = 2}, - [5572] = {.lex_state = 128, .external_lex_state = 2}, + [5572] = {.lex_state = 128, .external_lex_state = 5}, [5573] = {.lex_state = 128, .external_lex_state = 2}, [5574] = {.lex_state = 128, .external_lex_state = 2}, [5575] = {.lex_state = 128, .external_lex_state = 2}, @@ -19274,14 +19304,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5583] = {.lex_state = 128, .external_lex_state = 2}, [5584] = {.lex_state = 128, .external_lex_state = 2}, [5585] = {.lex_state = 128, .external_lex_state = 2}, - [5586] = {.lex_state = 128, .external_lex_state = 2}, + [5586] = {.lex_state = 128, .external_lex_state = 5}, [5587] = {.lex_state = 128, .external_lex_state = 2}, [5588] = {.lex_state = 128, .external_lex_state = 2}, [5589] = {.lex_state = 128, .external_lex_state = 2}, [5590] = {.lex_state = 128, .external_lex_state = 2}, [5591] = {.lex_state = 128, .external_lex_state = 2}, [5592] = {.lex_state = 128, .external_lex_state = 2}, - [5593] = {.lex_state = 128, .external_lex_state = 2}, + [5593] = {.lex_state = 128, .external_lex_state = 5}, [5594] = {.lex_state = 128, .external_lex_state = 2}, [5595] = {.lex_state = 128, .external_lex_state = 2}, [5596] = {.lex_state = 128, .external_lex_state = 2}, @@ -19289,7 +19319,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5598] = {.lex_state = 128, .external_lex_state = 2}, [5599] = {.lex_state = 128, .external_lex_state = 2}, [5600] = {.lex_state = 128, .external_lex_state = 2}, - [5601] = {.lex_state = 128, .external_lex_state = 2}, + [5601] = {.lex_state = 128, .external_lex_state = 5}, [5602] = {.lex_state = 128, .external_lex_state = 2}, [5603] = {.lex_state = 128, .external_lex_state = 2}, [5604] = {.lex_state = 128, .external_lex_state = 2}, @@ -19300,7 +19330,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5609] = {.lex_state = 128, .external_lex_state = 2}, [5610] = {.lex_state = 128, .external_lex_state = 2}, [5611] = {.lex_state = 128, .external_lex_state = 2}, - [5612] = {.lex_state = 128, .external_lex_state = 2}, + [5612] = {.lex_state = 1, .external_lex_state = 11}, [5613] = {.lex_state = 128, .external_lex_state = 2}, [5614] = {.lex_state = 128, .external_lex_state = 2}, [5615] = {.lex_state = 128, .external_lex_state = 2}, @@ -19309,13 +19339,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5618] = {.lex_state = 128, .external_lex_state = 2}, [5619] = {.lex_state = 128, .external_lex_state = 2}, [5620] = {.lex_state = 128, .external_lex_state = 2}, - [5621] = {.lex_state = 128, .external_lex_state = 2}, + [5621] = {.lex_state = 33, .external_lex_state = 2}, [5622] = {.lex_state = 128, .external_lex_state = 2}, [5623] = {.lex_state = 128, .external_lex_state = 2}, [5624] = {.lex_state = 128, .external_lex_state = 2}, [5625] = {.lex_state = 128, .external_lex_state = 2}, [5626] = {.lex_state = 128, .external_lex_state = 2}, - [5627] = {.lex_state = 1, .external_lex_state = 11}, + [5627] = {.lex_state = 128, .external_lex_state = 2}, [5628] = {.lex_state = 128, .external_lex_state = 2}, [5629] = {.lex_state = 128, .external_lex_state = 2}, [5630] = {.lex_state = 128, .external_lex_state = 2}, @@ -19353,15 +19383,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5662] = {.lex_state = 128, .external_lex_state = 2}, [5663] = {.lex_state = 128, .external_lex_state = 2}, [5664] = {.lex_state = 128, .external_lex_state = 2}, - [5665] = {.lex_state = 128, .external_lex_state = 2}, + [5665] = {.lex_state = 33, .external_lex_state = 2}, [5666] = {.lex_state = 128, .external_lex_state = 2}, [5667] = {.lex_state = 128, .external_lex_state = 2}, [5668] = {.lex_state = 128, .external_lex_state = 2}, [5669] = {.lex_state = 128, .external_lex_state = 2}, [5670] = {.lex_state = 128, .external_lex_state = 2}, [5671] = {.lex_state = 128, .external_lex_state = 2}, - [5672] = {.lex_state = 128, .external_lex_state = 2}, - [5673] = {.lex_state = 128, .external_lex_state = 2}, + [5672] = {.lex_state = 33, .external_lex_state = 2}, + [5673] = {.lex_state = 1, .external_lex_state = 11}, [5674] = {.lex_state = 128, .external_lex_state = 2}, [5675] = {.lex_state = 128, .external_lex_state = 2}, [5676] = {.lex_state = 128, .external_lex_state = 2}, @@ -19417,9 +19447,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5726] = {.lex_state = 128, .external_lex_state = 2}, [5727] = {.lex_state = 128, .external_lex_state = 2}, [5728] = {.lex_state = 128, .external_lex_state = 2}, - [5729] = {.lex_state = 1, .external_lex_state = 11}, + [5729] = {.lex_state = 128, .external_lex_state = 2}, [5730] = {.lex_state = 128, .external_lex_state = 2}, - [5731] = {.lex_state = 128, .external_lex_state = 2}, + [5731] = {.lex_state = 33, .external_lex_state = 2}, [5732] = {.lex_state = 128, .external_lex_state = 2}, [5733] = {.lex_state = 128, .external_lex_state = 2}, [5734] = {.lex_state = 128, .external_lex_state = 2}, @@ -19438,7 +19468,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5747] = {.lex_state = 128, .external_lex_state = 2}, [5748] = {.lex_state = 128, .external_lex_state = 2}, [5749] = {.lex_state = 128, .external_lex_state = 2}, - [5750] = {.lex_state = 33, .external_lex_state = 2}, + [5750] = {.lex_state = 128, .external_lex_state = 2}, [5751] = {.lex_state = 128, .external_lex_state = 2}, [5752] = {.lex_state = 128, .external_lex_state = 2}, [5753] = {.lex_state = 128, .external_lex_state = 2}, @@ -19465,7 +19495,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5774] = {.lex_state = 128, .external_lex_state = 2}, [5775] = {.lex_state = 128, .external_lex_state = 2}, [5776] = {.lex_state = 128, .external_lex_state = 2}, - [5777] = {.lex_state = 128, .external_lex_state = 2}, + [5777] = {.lex_state = 1, .external_lex_state = 11}, [5778] = {.lex_state = 128, .external_lex_state = 2}, [5779] = {.lex_state = 128, .external_lex_state = 2}, [5780] = {.lex_state = 128, .external_lex_state = 2}, @@ -19487,16 +19517,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5796] = {.lex_state = 128, .external_lex_state = 2}, [5797] = {.lex_state = 128, .external_lex_state = 2}, [5798] = {.lex_state = 128, .external_lex_state = 2}, - [5799] = {.lex_state = 1, .external_lex_state = 11}, + [5799] = {.lex_state = 128, .external_lex_state = 2}, [5800] = {.lex_state = 128, .external_lex_state = 2}, [5801] = {.lex_state = 128, .external_lex_state = 2}, [5802] = {.lex_state = 128, .external_lex_state = 2}, - [5803] = {.lex_state = 128, .external_lex_state = 2}, + [5803] = {.lex_state = 33, .external_lex_state = 2}, [5804] = {.lex_state = 128, .external_lex_state = 2}, [5805] = {.lex_state = 128, .external_lex_state = 2}, [5806] = {.lex_state = 128, .external_lex_state = 2}, [5807] = {.lex_state = 128, .external_lex_state = 2}, - [5808] = {.lex_state = 128, .external_lex_state = 2}, + [5808] = {.lex_state = 1, .external_lex_state = 11}, [5809] = {.lex_state = 128, .external_lex_state = 2}, [5810] = {.lex_state = 128, .external_lex_state = 2}, [5811] = {.lex_state = 128, .external_lex_state = 2}, @@ -19554,7 +19584,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5863] = {.lex_state = 128, .external_lex_state = 2}, [5864] = {.lex_state = 128, .external_lex_state = 2}, [5865] = {.lex_state = 128, .external_lex_state = 2}, - [5866] = {.lex_state = 33, .external_lex_state = 2}, + [5866] = {.lex_state = 128, .external_lex_state = 2}, [5867] = {.lex_state = 128, .external_lex_state = 2}, [5868] = {.lex_state = 128, .external_lex_state = 2}, [5869] = {.lex_state = 128, .external_lex_state = 2}, @@ -19562,7 +19592,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5871] = {.lex_state = 128, .external_lex_state = 2}, [5872] = {.lex_state = 128, .external_lex_state = 2}, [5873] = {.lex_state = 128, .external_lex_state = 2}, - [5874] = {.lex_state = 33, .external_lex_state = 2}, + [5874] = {.lex_state = 128, .external_lex_state = 2}, [5875] = {.lex_state = 128, .external_lex_state = 2}, [5876] = {.lex_state = 128, .external_lex_state = 2}, [5877] = {.lex_state = 128, .external_lex_state = 2}, @@ -19602,7 +19632,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5911] = {.lex_state = 128, .external_lex_state = 2}, [5912] = {.lex_state = 128, .external_lex_state = 2}, [5913] = {.lex_state = 128, .external_lex_state = 2}, - [5914] = {.lex_state = 1, .external_lex_state = 11}, + [5914] = {.lex_state = 128, .external_lex_state = 2}, [5915] = {.lex_state = 128, .external_lex_state = 2}, [5916] = {.lex_state = 128, .external_lex_state = 2}, [5917] = {.lex_state = 128, .external_lex_state = 2}, @@ -19646,7 +19676,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5955] = {.lex_state = 128, .external_lex_state = 2}, [5956] = {.lex_state = 128, .external_lex_state = 2}, [5957] = {.lex_state = 128, .external_lex_state = 2}, - [5958] = {.lex_state = 1, .external_lex_state = 11}, + [5958] = {.lex_state = 128, .external_lex_state = 2}, [5959] = {.lex_state = 128, .external_lex_state = 2}, [5960] = {.lex_state = 128, .external_lex_state = 2}, [5961] = {.lex_state = 128, .external_lex_state = 2}, @@ -19659,12 +19689,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5968] = {.lex_state = 128, .external_lex_state = 2}, [5969] = {.lex_state = 128, .external_lex_state = 2}, [5970] = {.lex_state = 128, .external_lex_state = 2}, - [5971] = {.lex_state = 33, .external_lex_state = 2}, + [5971] = {.lex_state = 128, .external_lex_state = 2}, [5972] = {.lex_state = 128, .external_lex_state = 2}, [5973] = {.lex_state = 128, .external_lex_state = 2}, [5974] = {.lex_state = 128, .external_lex_state = 2}, [5975] = {.lex_state = 128, .external_lex_state = 2}, - [5976] = {.lex_state = 33, .external_lex_state = 2}, + [5976] = {.lex_state = 128, .external_lex_state = 2}, [5977] = {.lex_state = 128, .external_lex_state = 2}, [5978] = {.lex_state = 128, .external_lex_state = 2}, [5979] = {.lex_state = 128, .external_lex_state = 2}, @@ -19674,6 +19704,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5983] = {.lex_state = 128, .external_lex_state = 2}, [5984] = {.lex_state = 128, .external_lex_state = 2}, [5985] = {.lex_state = 128, .external_lex_state = 2}, + [5986] = {.lex_state = 128, .external_lex_state = 2}, + [5987] = {.lex_state = 128, .external_lex_state = 2}, + [5988] = {.lex_state = 128, .external_lex_state = 2}, + [5989] = {.lex_state = 1, .external_lex_state = 11}, + [5990] = {.lex_state = 128, .external_lex_state = 2}, + [5991] = {.lex_state = 128, .external_lex_state = 2}, + [5992] = {.lex_state = 128, .external_lex_state = 2}, + [5993] = {.lex_state = 128, .external_lex_state = 2}, + [5994] = {.lex_state = 128, .external_lex_state = 2}, + [5995] = {.lex_state = 128, .external_lex_state = 2}, + [5996] = {.lex_state = 128, .external_lex_state = 2}, + [5997] = {.lex_state = 128, .external_lex_state = 2}, + [5998] = {.lex_state = 128, .external_lex_state = 2}, + [5999] = {.lex_state = 128, .external_lex_state = 2}, + [6000] = {.lex_state = 128, .external_lex_state = 2}, + [6001] = {.lex_state = 128, .external_lex_state = 2}, + [6002] = {.lex_state = 128, .external_lex_state = 2}, + [6003] = {.lex_state = 128, .external_lex_state = 2}, + [6004] = {.lex_state = 128, .external_lex_state = 2}, + [6005] = {.lex_state = 128, .external_lex_state = 2}, + [6006] = {.lex_state = 128, .external_lex_state = 2}, + [6007] = {.lex_state = 128, .external_lex_state = 2}, + [6008] = {.lex_state = 128, .external_lex_state = 2}, + [6009] = {.lex_state = 128, .external_lex_state = 2}, + [6010] = {.lex_state = 128, .external_lex_state = 2}, + [6011] = {.lex_state = 128, .external_lex_state = 2}, + [6012] = {.lex_state = 128, .external_lex_state = 2}, + [6013] = {.lex_state = 128, .external_lex_state = 2}, + [6014] = {.lex_state = 128, .external_lex_state = 2}, + [6015] = {.lex_state = 128, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19842,86 +19902,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5712), - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3919), + [sym_program] = STATE(5791), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3853), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -20001,78 +20061,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3554), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4092), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), @@ -20082,390 +20142,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(194), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(193), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(202), + [anon_sym_readonly] = ACTIONS(201), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_QMARK] = ACTIONS(203), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), [anon_sym_override] = ACTIONS(113), [anon_sym_module] = ACTIONS(113), - [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(208), + [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(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3554), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4092), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(194), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(193), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(202), + [anon_sym_readonly] = ACTIONS(201), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_QMARK] = ACTIONS(203), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), [anon_sym_override] = ACTIONS(113), [anon_sym_module] = ACTIONS(113), - [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(208), + [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(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array] = STATE(2291), [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4687), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_spread_element] = STATE(5105), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2122), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(5105), + [sym_pair] = STATE(5105), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3595), + [sym_computed_property_name] = STATE(3595), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_accessibility_modifier] = STATE(2748), + [sym_override_modifier] = STATE(2757), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3853), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(5166), [sym_identifier] = ACTIONS(227), [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), @@ -20547,110 +20607,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array] = STATE(2291), [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4687), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(227), - [anon_sym_export] = ACTIONS(229), + [sym_spread_element] = STATE(4968), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2122), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3595), + [sym_computed_property_name] = STATE(3595), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_accessibility_modifier] = STATE(2748), + [sym_override_modifier] = STATE(2757), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(3853), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(271), + [anon_sym_export] = ACTIONS(273), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_type] = ACTIONS(233), - [anon_sym_namespace] = ACTIONS(235), + [anon_sym_type] = ACTIONS(275), + [anon_sym_namespace] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(279), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(241), + [anon_sym_let] = ACTIONS(281), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20672,9 +20732,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(245), + [anon_sym_async] = ACTIONS(283), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(247), + [anon_sym_new] = ACTIONS(285), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), @@ -20697,132 +20757,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(255), - [anon_sym_readonly] = ACTIONS(257), - [anon_sym_get] = ACTIONS(259), - [anon_sym_set] = ACTIONS(259), - [anon_sym_declare] = ACTIONS(261), - [anon_sym_public] = ACTIONS(263), - [anon_sym_private] = ACTIONS(263), - [anon_sym_protected] = ACTIONS(263), - [anon_sym_override] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_any] = ACTIONS(269), - [anon_sym_number] = ACTIONS(269), - [anon_sym_boolean] = ACTIONS(269), - [anon_sym_string] = ACTIONS(269), - [anon_sym_symbol] = ACTIONS(269), - [anon_sym_object] = ACTIONS(269), + [anon_sym_static] = ACTIONS(287), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_get] = ACTIONS(291), + [anon_sym_set] = ACTIONS(291), + [anon_sym_declare] = ACTIONS(293), + [anon_sym_public] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_override] = ACTIONS(297), + [anon_sym_module] = ACTIONS(299), + [anon_sym_any] = ACTIONS(301), + [anon_sym_number] = ACTIONS(301), + [anon_sym_boolean] = ACTIONS(301), + [anon_sym_string] = ACTIONS(301), + [anon_sym_symbol] = ACTIONS(301), + [anon_sym_object] = ACTIONS(301), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array] = STATE(2291), [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4841), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(273), - [anon_sym_export] = ACTIONS(275), + [sym_spread_element] = STATE(5105), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2122), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(5105), + [sym_pair] = STATE(5105), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3595), + [sym_computed_property_name] = STATE(3595), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_accessibility_modifier] = STATE(2748), + [sym_override_modifier] = STATE(2757), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3853), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_type] = ACTIONS(277), - [anon_sym_namespace] = ACTIONS(279), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(281), + [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(283), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20844,9 +20904,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(285), + [anon_sym_async] = ACTIONS(245), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(287), + [anon_sym_new] = ACTIONS(247), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), @@ -20869,119 +20929,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(289), - [anon_sym_readonly] = ACTIONS(291), - [anon_sym_get] = ACTIONS(293), - [anon_sym_set] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(295), - [anon_sym_public] = ACTIONS(297), - [anon_sym_private] = ACTIONS(297), - [anon_sym_protected] = ACTIONS(297), - [anon_sym_override] = ACTIONS(299), - [anon_sym_module] = ACTIONS(301), - [anon_sym_any] = ACTIONS(303), - [anon_sym_number] = ACTIONS(303), - [anon_sym_boolean] = ACTIONS(303), - [anon_sym_string] = ACTIONS(303), - [anon_sym_symbol] = ACTIONS(303), - [anon_sym_object] = ACTIONS(303), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array] = STATE(2291), [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4687), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_spread_element] = STATE(5105), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2122), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(5105), + [sym_pair] = STATE(5105), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3595), + [sym_computed_property_name] = STATE(3595), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_accessibility_modifier] = STATE(2748), + [sym_override_modifier] = STATE(2757), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3853), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(5166), [sym_identifier] = ACTIONS(227), [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), @@ -21063,97 +21123,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array] = STATE(2291), [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4841), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_spread_element] = STATE(4968), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2122), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3595), + [sym_computed_property_name] = STATE(3595), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_accessibility_modifier] = STATE(2748), + [sym_override_modifier] = STATE(2757), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(3853), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), [sym_identifier] = ACTIONS(307), [anon_sym_export] = ACTIONS(309), [anon_sym_STAR] = ACTIONS(231), @@ -21161,7 +21221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(279), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21235,85 +21295,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), [ts_builtin_sym_end] = ACTIONS(337), [sym_identifier] = ACTIONS(339), [anon_sym_export] = ACTIONS(342), @@ -21395,85 +21455,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(11), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(491), @@ -21554,85 +21614,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(10), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(3919), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(495), @@ -21713,85 +21773,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3919), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(499), @@ -21872,85 +21932,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(503), @@ -22031,91 +22091,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), - [ts_builtin_sym_end] = ACTIONS(507), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3853), [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(507), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22188,85 +22248,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), [ts_builtin_sym_end] = ACTIONS(509), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -22345,91 +22405,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), + [ts_builtin_sym_end] = ACTIONS(511), [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(511), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22502,85 +22562,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3919), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22659,91 +22719,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3853), + [ts_builtin_sym_end] = ACTIONS(511), [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(515), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22816,91 +22876,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), [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(517), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22973,85 +23033,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), + [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(517), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = 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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [21] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23129,86 +23346,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [21] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [22] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23286,86 +23503,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [22] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(3919), + [23] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23443,86 +23660,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [23] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3919), + [24] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23600,86 +23817,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [24] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [25] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23757,86 +23974,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [25] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3919), + [26] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23914,86 +24131,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [26] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [27] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24071,86 +24288,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [27] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(29), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(3919), + [28] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24228,86 +24445,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [28] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(3919), + [29] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24385,86 +24602,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [29] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [30] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24542,87 +24759,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [30] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3919), - [ts_builtin_sym_end] = ACTIONS(509), + [31] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(549), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(551), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(557), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [32] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(5195), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(581), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(583), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(585), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(589), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [33] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(900), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24699,104 +25224,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [31] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(895), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [34] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(834), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), + [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(549), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24808,10 +25333,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [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), @@ -24833,125 +25358,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [32] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [35] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(761), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), + [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(581), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24963,10 +25488,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [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), @@ -24988,106 +25513,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [33] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(854), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [36] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25164,85 +25689,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [34] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(861), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [37] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(849), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25319,240 +25844,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [35] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5132), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [36] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [38] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(850), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25629,104 +25999,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [37] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(5774), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [39] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(852), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), + [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(549), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25738,10 +26108,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [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), @@ -25763,106 +26133,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [38] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(860), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [40] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(914), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25939,85 +26309,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(878), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [41] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(880), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26094,85 +26464,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(881), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [42] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(915), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26249,85 +26619,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(882), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [43] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(826), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26404,85 +26774,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [44] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(837), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26559,85 +26929,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(894), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [45] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(809), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26714,104 +27084,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(895), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [46] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(809), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26823,10 +27193,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = 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(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26848,125 +27218,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(897), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [47] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(900), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26978,10 +27348,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = 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(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27003,125 +27373,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [48] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(4789), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27133,10 +27503,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = 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(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27158,106 +27528,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(878), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [49] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -27334,85 +27704,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [50] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(837), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -27489,104 +27859,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(4783), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), + [51] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(799), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27599,9 +27969,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(559), - [anon_sym_async] = ACTIONS(591), + [anon_sym_async] = ACTIONS(561), [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27623,106 +27993,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [52] = { + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [53] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(834), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -27799,85 +28324,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(861), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [54] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(849), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -27954,85 +28479,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(854), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [55] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(850), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -28109,240 +28634,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [56] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(852), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(549), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(551), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(557), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [57] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(914), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -28419,85 +28944,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(860), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [58] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(880), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -28574,550 +29099,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(881), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [57] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(882), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [58] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [59] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(894), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [59] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(915), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -29195,84 +29255,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(897), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(826), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(543), @@ -29350,103 +29410,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(799), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), + [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(549), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29458,10 +29518,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [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), @@ -29483,109 +29543,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(601), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), @@ -29594,20 +29654,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(627), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(631), @@ -29623,14 +29683,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -29653,249 +29713,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = 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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [64] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(601), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), @@ -29904,20 +29809,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(627), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(631), @@ -29933,14 +29838,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -29963,110 +29868,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [65] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(768), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [64] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(5705), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3817), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -30078,10 +29983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = 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(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30103,106 +30008,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [65] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3853), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -30279,243 +30184,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(5166), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [66] = { + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [67] = { + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(601), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), @@ -30524,20 +30429,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_RBRACK] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(627), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(631), @@ -30553,14 +30458,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -30583,94 +30488,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [69] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5132), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [68] = { + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2320), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(5147), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(5158), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(601), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), @@ -30679,20 +30584,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_RBRACK] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(627), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(631), @@ -30708,14 +30613,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -30738,94 +30643,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [70] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [69] = { + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(601), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), @@ -30834,20 +30739,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(627), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(631), @@ -30863,14 +30768,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -30893,94 +30798,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [71] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [70] = { + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(601), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), @@ -30989,20 +30894,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_RBRACK] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(627), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(631), @@ -31018,14 +30923,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -31048,94 +30953,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [72] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5194), - [sym_optional_tuple_parameter] = STATE(5194), - [sym_optional_type] = STATE(5194), - [sym_rest_type] = STATE(5194), - [sym__tuple_type_member] = STATE(5194), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [71] = { + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(4863), + [sym_optional_tuple_parameter] = STATE(4863), + [sym_optional_type] = STATE(4863), + [sym_rest_type] = STATE(4863), + [sym__tuple_type_member] = STATE(4863), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(601), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), @@ -31144,20 +31049,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(681), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(627), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(631), @@ -31173,14 +31078,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -31203,91 +31108,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [73] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(878), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [72] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(809), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -31364,85 +31269,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [73] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(900), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -31519,85 +31424,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [74] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -31674,85 +31579,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(861), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [75] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(837), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -31829,85 +31734,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(854), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [76] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(799), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -31984,85 +31889,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [77] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -32139,85 +32044,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(860), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [78] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(834), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -32294,85 +32199,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(881), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [79] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(849), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(581), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(583), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(585), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(589), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [80] = { + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(850), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -32450,84 +32510,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(882), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(852), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -32605,84 +32665,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(914), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -32760,84 +32820,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(894), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(880), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -32915,84 +32975,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(895), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(915), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -33070,84 +33130,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(897), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_export_statement] = STATE(848), + [sym_declaration] = STATE(848), + [sym_import] = STATE(3680), + [sym_import_statement] = STATE(848), + [sym_statement] = STATE(826), + [sym_expression_statement] = STATE(848), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_statement_block] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_for_in_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_with_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_debugger_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_empty_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5321), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(3937), [sym_identifier] = ACTIONS(573), [anon_sym_export] = ACTIONS(575), [anon_sym_type] = ACTIONS(577), @@ -33225,87 +33285,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [86] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2320), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(5147), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4302), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(4403), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5591), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(5158), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(601), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), @@ -33314,20 +33374,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(609), [anon_sym_COMMA] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(627), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(631), @@ -33343,14 +33403,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(653), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -33373,58 +33433,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -33433,18 +33493,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -33454,24 +33514,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33480,29 +33540,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -33528,56 +33588,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -33586,18 +33646,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -33607,24 +33667,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33633,29 +33693,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -33681,56 +33741,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -33739,18 +33799,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -33760,24 +33820,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33786,29 +33846,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -33834,103 +33894,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4149), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4036), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(733), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33939,34 +33999,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(741), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(746), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -33987,558 +34047,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5728), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(752), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(762), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_number] = ACTIONS(772), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_null] = ACTIONS(776), - [sym_undefined] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(780), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(788), - [anon_sym_number] = ACTIONS(788), - [anon_sym_boolean] = ACTIONS(788), - [anon_sym_string] = ACTIONS(788), - [anon_sym_symbol] = ACTIONS(788), - [anon_sym_object] = ACTIONS(788), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [92] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4308), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(790), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [93] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4135), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(792), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [94] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4152), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4304), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(733), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -34547,34 +34151,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(741), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(752), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -34595,117 +34199,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5728), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4500), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(752), + [92] = { + [sym_import] = STATE(3653), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1858), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5991), + [sym_string] = STATE(2137), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4512), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(278), + [sym_identifier] = ACTIONS(754), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_typeof] = ACTIONS(758), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(760), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(762), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(764), [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), [anon_sym_TILDE] = ACTIONS(615), @@ -34714,135 +34318,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_number] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [sym_number] = ACTIONS(774), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_null] = ACTIONS(776), - [sym_undefined] = ACTIONS(778), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), + [sym_undefined] = ACTIONS(780), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(780), + [anon_sym_readonly] = ACTIONS(782), [anon_sym_get] = ACTIONS(603), [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(788), - [anon_sym_number] = ACTIONS(788), - [anon_sym_boolean] = ACTIONS(788), - [anon_sym_string] = ACTIONS(788), - [anon_sym_symbol] = ACTIONS(788), - [anon_sym_object] = ACTIONS(788), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(790), + [anon_sym_number] = ACTIONS(790), + [anon_sym_boolean] = ACTIONS(790), + [anon_sym_string] = ACTIONS(790), + [anon_sym_symbol] = ACTIONS(790), + [anon_sym_object] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4252), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [93] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4105), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(733), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -34851,34 +34455,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(741), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(796), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(792), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -34899,55 +34503,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [94] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4092), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), @@ -34957,44 +34561,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(730), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(733), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35003,34 +34607,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(741), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -35051,102 +34655,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [95] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4272), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(796), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [96] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), [sym_pattern] = STATE(4289), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(733), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35155,34 +34911,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(741), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(800), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -35203,117 +34959,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5974), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(752), + [97] = { + [sym_import] = STATE(3653), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5680), + [sym_string] = STATE(2137), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4512), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(278), + [sym_identifier] = ACTIONS(754), [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_typeof] = ACTIONS(758), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(760), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(762), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(764), [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), [anon_sym_TILDE] = ACTIONS(615), @@ -35322,135 +35078,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_number] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [sym_number] = ACTIONS(774), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_null] = ACTIONS(776), - [sym_undefined] = ACTIONS(778), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), + [sym_undefined] = ACTIONS(780), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(780), + [anon_sym_readonly] = ACTIONS(782), [anon_sym_get] = ACTIONS(603), [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(788), - [anon_sym_number] = ACTIONS(788), - [anon_sym_boolean] = ACTIONS(788), - [anon_sym_string] = ACTIONS(788), - [anon_sym_symbol] = ACTIONS(788), - [anon_sym_object] = ACTIONS(788), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(790), + [anon_sym_number] = ACTIONS(790), + [anon_sym_boolean] = ACTIONS(790), + [anon_sym_string] = ACTIONS(790), + [anon_sym_symbol] = ACTIONS(790), + [anon_sym_object] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [98] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(3975), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(733), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35459,34 +35215,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(741), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(800), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -35507,404 +35263,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4520), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(111), - [anon_sym_export] = ACTIONS(113), + [99] = { + [sym_import] = STATE(3653), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5680), + [sym_string] = STATE(2137), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4503), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(278), + [sym_identifier] = ACTIONS(754), + [anon_sym_export] = ACTIONS(603), [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_typeof] = ACTIONS(758), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(764), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(772), + [sym_number] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), + [sym_undefined] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(782), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(790), + [anon_sym_number] = ACTIONS(790), + [anon_sym_boolean] = ACTIONS(790), + [anon_sym_string] = ACTIONS(790), + [anon_sym_symbol] = ACTIONS(790), + [anon_sym_object] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [100] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4092), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(750), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), + [101] = { + [sym_import] = STATE(3554), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4512), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(605), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(804), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(806), [anon_sym_private] = ACTIONS(806), [anon_sym_protected] = ACTIONS(806), [anon_sym_override] = ACTIONS(808), [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [102] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35913,40 +35821,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), [anon_sym_get] = ACTIONS(812), [anon_sym_set] = ACTIONS(812), + [anon_sym_QMARK] = ACTIONS(750), [anon_sym_declare] = ACTIONS(812), [anon_sym_public] = ACTIONS(812), [anon_sym_private] = ACTIONS(812), @@ -35960,554 +35869,555 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4483), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(111), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [103] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(832), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), - [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4500), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), + [104] = { + [sym_import] = STATE(3554), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4608), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(605), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(804), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(806), [anon_sym_private] = ACTIONS(806), [anon_sym_protected] = ACTIONS(806), [anon_sym_override] = ACTIONS(808), [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4466), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), + [105] = { + [sym_import] = STATE(3554), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4527), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(605), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(804), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(806), [anon_sym_private] = ACTIONS(806), [anon_sym_protected] = ACTIONS(806), [anon_sym_override] = ACTIONS(808), [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [106] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36516,150 +36426,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), + [107] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(838), [anon_sym_export] = ACTIONS(840), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(844), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36668,40 +36576,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(840), [anon_sym_readonly] = ACTIONS(840), [anon_sym_get] = ACTIONS(840), [anon_sym_set] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(750), [anon_sym_declare] = ACTIONS(840), [anon_sym_public] = ACTIONS(840), [anon_sym_private] = ACTIONS(840), @@ -36715,101 +36624,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(840), [anon_sym_object] = ACTIONS(840), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [108] = { + [sym_import] = STATE(3554), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4517), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(278), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3554), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4503), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(278), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [110] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(838), [anon_sym_export] = ACTIONS(840), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(844), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36818,41 +37030,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(840), [anon_sym_readonly] = ACTIONS(840), [anon_sym_get] = ACTIONS(840), [anon_sym_set] = ACTIONS(840), - [anon_sym_QMARK] = ACTIONS(750), [anon_sym_declare] = ACTIONS(840), [anon_sym_public] = ACTIONS(840), [anon_sym_private] = ACTIONS(840), @@ -36866,101 +37077,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(840), [anon_sym_object] = ACTIONS(840), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [111] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36969,41 +37181,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), [anon_sym_get] = ACTIONS(812), [anon_sym_set] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(750), [anon_sym_declare] = ACTIONS(812), [anon_sym_public] = ACTIONS(812), [anon_sym_private] = ACTIONS(812), @@ -37017,102 +37228,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [112] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(854), + [anon_sym_export] = ACTIONS(856), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_type] = ACTIONS(856), + [anon_sym_EQ] = ACTIONS(858), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(860), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(862), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(866), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37121,146 +37329,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + [anon_sym_object] = ACTIONS(856), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), + [113] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37269,41 +37478,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), [anon_sym_get] = ACTIONS(812), [anon_sym_set] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(750), [anon_sym_declare] = ACTIONS(812), [anon_sym_public] = ACTIONS(812), [anon_sym_private] = ACTIONS(812), @@ -37317,72 +37525,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [114] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -37392,24 +37601,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37418,29 +37627,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -37465,100 +37674,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(687), - [anon_sym_export] = ACTIONS(689), + [115] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(708), - [anon_sym_function] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37567,120 +37776,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(689), - [anon_sym_readonly] = ACTIONS(689), - [anon_sym_get] = ACTIONS(689), - [anon_sym_set] = ACTIONS(689), - [anon_sym_declare] = ACTIONS(689), - [anon_sym_public] = ACTIONS(689), - [anon_sym_private] = ACTIONS(689), - [anon_sym_protected] = ACTIONS(689), - [anon_sym_override] = ACTIONS(689), - [anon_sym_module] = ACTIONS(689), - [anon_sym_any] = ACTIONS(689), - [anon_sym_number] = ACTIONS(689), - [anon_sym_boolean] = ACTIONS(689), - [anon_sym_string] = ACTIONS(689), - [anon_sym_symbol] = ACTIONS(689), - [anon_sym_object] = ACTIONS(689), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [116] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -37690,24 +37899,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37716,29 +37925,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -37763,73 +37972,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [117] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [118] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -37839,24 +38197,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37865,29 +38223,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -37912,100 +38270,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [119] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(868), - [anon_sym_function] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(872), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38014,147 +38372,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_object] = ACTIONS(862), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [120] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(854), + [anon_sym_export] = ACTIONS(856), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(856), + [anon_sym_EQ] = ACTIONS(858), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(866), + [anon_sym_namespace] = ACTIONS(860), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(868), + [anon_sym_async] = ACTIONS(862), [anon_sym_function] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(872), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(866), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38163,29 +38521,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -38193,90 +38551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_object] = ACTIONS(862), + [anon_sym_static] = ACTIONS(856), + [anon_sym_readonly] = ACTIONS(856), + [anon_sym_get] = ACTIONS(856), + [anon_sym_set] = ACTIONS(856), + [anon_sym_declare] = ACTIONS(856), + [anon_sym_public] = ACTIONS(856), + [anon_sym_private] = ACTIONS(856), + [anon_sym_protected] = ACTIONS(856), + [anon_sym_override] = ACTIONS(856), + [anon_sym_module] = ACTIONS(856), + [anon_sym_any] = ACTIONS(856), + [anon_sym_number] = ACTIONS(856), + [anon_sym_boolean] = ACTIONS(856), + [anon_sym_string] = ACTIONS(856), + [anon_sym_symbol] = ACTIONS(856), + [anon_sym_object] = ACTIONS(856), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [121] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -38286,24 +38644,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38312,29 +38670,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -38359,398 +38717,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [120] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [122] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [122] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(117), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38759,101 +38819,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(838), [anon_sym_export] = ACTIONS(840), [anon_sym_STAR] = ACTIONS(120), @@ -38862,44 +38922,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(844), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(878), [anon_sym_of] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38908,35 +38968,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(840), [anon_sym_readonly] = ACTIONS(840), @@ -38955,201 +39015,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(840), [anon_sym_object] = ACTIONS(840), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [125] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(838), [anon_sym_export] = ACTIONS(840), [anon_sym_STAR] = ACTIONS(120), @@ -39160,42 +39072,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_COMMA] = ACTIONS(883), [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_RBRACK] = ACTIONS(883), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39204,35 +39116,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(840), [anon_sym_readonly] = ACTIONS(840), @@ -39251,53 +39163,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(840), [anon_sym_object] = ACTIONS(840), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [125] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(886), [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), @@ -39306,44 +39218,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(893), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39352,35 +39264,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(888), [anon_sym_readonly] = ACTIONS(888), @@ -39399,98 +39311,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(888), [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(886), - [anon_sym_export] = ACTIONS(888), + [126] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(893), + [anon_sym_namespace] = ACTIONS(844), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(883), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39499,144 +39412,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(888), - [anon_sym_readonly] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [anon_sym_public] = ACTIONS(888), - [anon_sym_private] = ACTIONS(888), - [anon_sym_protected] = ACTIONS(888), - [anon_sym_override] = ACTIONS(888), - [anon_sym_module] = ACTIONS(888), - [anon_sym_any] = ACTIONS(888), - [anon_sym_number] = ACTIONS(888), - [anon_sym_boolean] = ACTIONS(888), - [anon_sym_string] = ACTIONS(888), - [anon_sym_symbol] = ACTIONS(888), - [anon_sym_object] = ACTIONS(888), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(905), - [anon_sym_export] = ACTIONS(907), + [127] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(903), + [anon_sym_export] = ACTIONS(905), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(907), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(913), - [anon_sym_function] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(917), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(911), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(915), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39645,145 +39558,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(907), - [anon_sym_readonly] = ACTIONS(907), - [anon_sym_get] = ACTIONS(907), - [anon_sym_set] = ACTIONS(907), - [anon_sym_declare] = ACTIONS(907), - [anon_sym_public] = ACTIONS(907), - [anon_sym_private] = ACTIONS(907), - [anon_sym_protected] = ACTIONS(907), - [anon_sym_override] = ACTIONS(907), - [anon_sym_module] = ACTIONS(907), - [anon_sym_any] = ACTIONS(907), - [anon_sym_number] = ACTIONS(907), - [anon_sym_boolean] = ACTIONS(907), - [anon_sym_string] = ACTIONS(907), - [anon_sym_symbol] = ACTIONS(907), - [anon_sym_object] = ACTIONS(907), + [anon_sym_static] = ACTIONS(905), + [anon_sym_readonly] = ACTIONS(905), + [anon_sym_get] = ACTIONS(905), + [anon_sym_set] = ACTIONS(905), + [anon_sym_declare] = ACTIONS(905), + [anon_sym_public] = ACTIONS(905), + [anon_sym_private] = ACTIONS(905), + [anon_sym_protected] = ACTIONS(905), + [anon_sym_override] = ACTIONS(905), + [anon_sym_module] = ACTIONS(905), + [anon_sym_any] = ACTIONS(905), + [anon_sym_number] = ACTIONS(905), + [anon_sym_boolean] = ACTIONS(905), + [anon_sym_string] = ACTIONS(905), + [anon_sym_symbol] = ACTIONS(905), + [anon_sym_object] = ACTIONS(905), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [128] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39792,35 +39706,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -39839,99 +39753,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(886), - [anon_sym_export] = ACTIONS(888), + [129] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(903), + [anon_sym_export] = ACTIONS(905), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_type] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(907), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(893), + [anon_sym_namespace] = ACTIONS(909), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(911), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(915), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39940,439 +39852,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(888), - [anon_sym_readonly] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [anon_sym_public] = ACTIONS(888), - [anon_sym_private] = ACTIONS(888), - [anon_sym_protected] = ACTIONS(888), - [anon_sym_override] = ACTIONS(888), - [anon_sym_module] = ACTIONS(888), - [anon_sym_any] = ACTIONS(888), - [anon_sym_number] = ACTIONS(888), - [anon_sym_boolean] = ACTIONS(888), - [anon_sym_string] = ACTIONS(888), - [anon_sym_symbol] = ACTIONS(888), - [anon_sym_object] = ACTIONS(888), + [anon_sym_static] = ACTIONS(905), + [anon_sym_readonly] = ACTIONS(905), + [anon_sym_get] = ACTIONS(905), + [anon_sym_set] = ACTIONS(905), + [anon_sym_declare] = ACTIONS(905), + [anon_sym_public] = ACTIONS(905), + [anon_sym_private] = ACTIONS(905), + [anon_sym_protected] = ACTIONS(905), + [anon_sym_override] = ACTIONS(905), + [anon_sym_module] = ACTIONS(905), + [anon_sym_any] = ACTIONS(905), + [anon_sym_number] = ACTIONS(905), + [anon_sym_boolean] = ACTIONS(905), + [anon_sym_string] = ACTIONS(905), + [anon_sym_symbol] = ACTIONS(905), + [anon_sym_object] = ACTIONS(905), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(905), - [anon_sym_export] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(909), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(913), - [anon_sym_function] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(917), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(907), - [anon_sym_readonly] = ACTIONS(907), - [anon_sym_get] = ACTIONS(907), - [anon_sym_set] = ACTIONS(907), - [anon_sym_declare] = ACTIONS(907), - [anon_sym_public] = ACTIONS(907), - [anon_sym_private] = ACTIONS(907), - [anon_sym_protected] = ACTIONS(907), - [anon_sym_override] = ACTIONS(907), - [anon_sym_module] = ACTIONS(907), - [anon_sym_any] = ACTIONS(907), - [anon_sym_number] = ACTIONS(907), - [anon_sym_boolean] = ACTIONS(907), - [anon_sym_string] = ACTIONS(907), - [anon_sym_symbol] = ACTIONS(907), - [anon_sym_object] = ACTIONS(907), - [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [132] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(886), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(888), - [anon_sym_readonly] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [anon_sym_public] = ACTIONS(888), - [anon_sym_private] = ACTIONS(888), - [anon_sym_protected] = ACTIONS(888), - [anon_sym_override] = ACTIONS(888), - [anon_sym_module] = ACTIONS(888), - [anon_sym_any] = ACTIONS(888), - [anon_sym_number] = ACTIONS(888), - [anon_sym_boolean] = ACTIONS(888), - [anon_sym_string] = ACTIONS(888), - [anon_sym_symbol] = ACTIONS(888), - [anon_sym_object] = ACTIONS(888), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [133] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4040), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5465), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [130] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4315), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5594), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(844), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40381,35 +40000,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(840), [anon_sym_readonly] = ACTIONS(840), @@ -40428,53 +40047,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(840), [anon_sym_object] = ACTIONS(840), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), + [131] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(921), [anon_sym_export] = ACTIONS(923), [anon_sym_STAR] = ACTIONS(120), @@ -40483,43 +40102,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(929), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(931), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40528,35 +40147,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(923), [anon_sym_readonly] = ACTIONS(923), @@ -40575,98 +40194,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(923), [anon_sym_object] = ACTIONS(923), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4383), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5563), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [132] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(933), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(893), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40675,100 +40294,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [133] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(935), [anon_sym_export] = ACTIONS(937), [anon_sym_STAR] = ACTIONS(120), @@ -40776,43 +40395,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40821,35 +40440,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(937), [anon_sym_readonly] = ACTIONS(937), @@ -40868,99 +40487,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(937), [anon_sym_object] = ACTIONS(937), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [134] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1317), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1687), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(2652), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1317), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(935), + [anon_sym_export] = ACTIONS(937), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(947), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40969,144 +40587,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(937), + [anon_sym_readonly] = ACTIONS(937), + [anon_sym_get] = ACTIONS(937), + [anon_sym_set] = ACTIONS(937), + [anon_sym_declare] = ACTIONS(937), + [anon_sym_public] = ACTIONS(937), + [anon_sym_private] = ACTIONS(937), + [anon_sym_protected] = ACTIONS(937), + [anon_sym_override] = ACTIONS(937), + [anon_sym_module] = ACTIONS(937), + [anon_sym_any] = ACTIONS(937), + [anon_sym_number] = ACTIONS(937), + [anon_sym_boolean] = ACTIONS(937), + [anon_sym_string] = ACTIONS(937), + [anon_sym_symbol] = ACTIONS(937), + [anon_sym_object] = ACTIONS(937), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [138] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), + [135] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(933), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(941), + [anon_sym_namespace] = ACTIONS(893), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41115,101 +40735,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(937), - [anon_sym_readonly] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_override] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_object] = ACTIONS(937), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [136] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(921), [anon_sym_export] = ACTIONS(923), [anon_sym_STAR] = ACTIONS(120), @@ -41218,43 +40837,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(929), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(931), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41263,35 +40882,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(923), [anon_sym_readonly] = ACTIONS(923), @@ -41310,97 +40929,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(923), [anon_sym_object] = ACTIONS(923), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [140] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [137] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41409,145 +41029,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [138] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4281), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5485), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [139] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(878), - [anon_sym_of] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41556,35 +41322,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -41603,97 +41369,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [142] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(886), - [anon_sym_export] = ACTIONS(888), + [140] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41702,100 +41469,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(888), - [anon_sym_readonly] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [anon_sym_public] = ACTIONS(888), - [anon_sym_private] = ACTIONS(888), - [anon_sym_protected] = ACTIONS(888), - [anon_sym_override] = ACTIONS(888), - [anon_sym_module] = ACTIONS(888), - [anon_sym_any] = ACTIONS(888), - [anon_sym_number] = ACTIONS(888), - [anon_sym_boolean] = ACTIONS(888), - [anon_sym_string] = ACTIONS(888), - [anon_sym_symbol] = ACTIONS(888), - [anon_sym_object] = ACTIONS(888), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [143] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), + [141] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(951), [anon_sym_export] = ACTIONS(953), [anon_sym_STAR] = ACTIONS(120), @@ -41803,43 +41571,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(955), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41848,35 +41616,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(965), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(953), [anon_sym_readonly] = ACTIONS(953), @@ -41895,97 +41663,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(953), [anon_sym_object] = ACTIONS(953), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [142] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [143] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(832), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41994,35 +41908,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -42041,97 +41955,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [145] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [144] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(886), [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(933), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(893), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -42140,35 +42054,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(888), [anon_sym_readonly] = ACTIONS(888), @@ -42187,97 +42101,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(888), [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [145] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(933), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -42286,144 +42200,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [146] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -42432,35 +42346,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -42479,53 +42393,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [147] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(951), [anon_sym_export] = ACTIONS(953), [anon_sym_STAR] = ACTIONS(120), @@ -42533,43 +42447,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(955), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -42578,35 +42492,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(965), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(953), [anon_sym_readonly] = ACTIONS(953), @@ -42625,96 +42539,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(953), [anon_sym_object] = ACTIONS(953), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [148] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(878), + [anon_sym_of] = ACTIONS(881), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -42723,35 +42638,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -42770,96 +42685,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [150] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [149] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -42868,35 +42783,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -42915,96 +42830,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [150] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -43013,35 +42928,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -43060,96 +42975,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [151] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(969), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -43158,35 +43073,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -43205,96 +43120,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [152] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4404), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5251), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -43303,35 +43218,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -43350,96 +43265,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [153] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(971), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -43448,35 +43363,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -43495,96 +43410,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [154] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(973), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -43593,35 +43508,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -43640,96 +43555,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [155] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(975), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -43738,35 +43653,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -43785,96 +43700,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [156] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(977), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -43883,35 +43798,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -43930,96 +43845,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [157] = { + [sym_import] = STATE(3597), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5266), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5848), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2017), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4052), + [sym_pattern] = STATE(4691), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3325), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5427), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(979), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(993), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1003), + [sym_number] = ACTIONS(1005), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1007), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_undefined] = ACTIONS(1011), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(1017), + [anon_sym_number] = ACTIONS(1017), + [anon_sym_boolean] = ACTIONS(1017), + [anon_sym_string] = ACTIONS(1017), + [anon_sym_symbol] = ACTIONS(1017), + [anon_sym_object] = ACTIONS(1017), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(1031), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -44028,35 +44088,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -44075,241 +44135,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(3661), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5398), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5834), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2006), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4019), - [sym_pattern] = STATE(5047), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3279), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5410), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(983), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_typeof] = ACTIONS(989), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(997), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(1005), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1007), - [sym_number] = ACTIONS(1009), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1011), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_null] = ACTIONS(1013), - [sym_undefined] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(1017), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(1021), - [anon_sym_number] = ACTIONS(1021), - [anon_sym_boolean] = ACTIONS(1021), - [anon_sym_string] = ACTIONS(1021), - [anon_sym_symbol] = ACTIONS(1021), - [anon_sym_object] = ACTIONS(1021), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1458), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(812), [anon_sym_EQ] = ACTIONS(1035), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -44318,35 +44378,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -44365,107 +44425,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5894), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5077), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(4221), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(4521), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3653), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5785), + [sym_string] = STATE(2137), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5154), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(4321), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(4548), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1037), [anon_sym_export] = ACTIONS(1039), [anon_sym_STAR] = ACTIONS(605), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(758), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1049), [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), [anon_sym_TILDE] = ACTIONS(615), @@ -44474,21 +44534,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_number] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [sym_number] = ACTIONS(774), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(1051), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_null] = ACTIONS(776), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), [sym_undefined] = ACTIONS(1053), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), [anon_sym_readonly] = ACTIONS(1055), [anon_sym_get] = ACTIONS(1039), [anon_sym_set] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1039), [anon_sym_public] = ACTIONS(1039), [anon_sym_private] = ACTIONS(1039), @@ -44501,86 +44561,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1057), [anon_sym_symbol] = ACTIONS(1057), [anon_sym_object] = ACTIONS(1057), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(3612), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1986), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3571), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3727), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3727), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1412), + [sym_subscript_expression] = STATE(1412), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3727), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2505), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1412), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4308), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(1061), [anon_sym_STAR] = ACTIONS(605), @@ -44588,446 +44648,728 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1065), [anon_sym_typeof] = ACTIONS(1067), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1079), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1071), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1073), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1085), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1091), - [sym_number] = ACTIONS(1093), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1099), - [sym_false] = ACTIONS(1099), - [sym_null] = ACTIONS(1099), - [sym_undefined] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1077), + [sym_number] = ACTIONS(1079), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1081), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1083), + [sym_false] = ACTIONS(1083), + [sym_null] = ACTIONS(1083), + [sym_undefined] = ACTIONS(1085), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1103), + [anon_sym_readonly] = ACTIONS(1087), [anon_sym_get] = ACTIONS(1061), [anon_sym_set] = ACTIONS(1061), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1061), [anon_sym_public] = ACTIONS(1061), [anon_sym_private] = ACTIONS(1061), [anon_sym_protected] = ACTIONS(1061), [anon_sym_override] = ACTIONS(1061), [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1105), - [anon_sym_number] = ACTIONS(1105), - [anon_sym_boolean] = ACTIONS(1105), - [anon_sym_string] = ACTIONS(1105), - [anon_sym_symbol] = ACTIONS(1105), - [anon_sym_object] = ACTIONS(1105), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(1089), + [anon_sym_number] = ACTIONS(1089), + [anon_sym_boolean] = ACTIONS(1089), + [anon_sym_string] = ACTIONS(1089), + [anon_sym_symbol] = ACTIONS(1089), + [anon_sym_object] = ACTIONS(1089), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2035), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1675), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1107), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1115), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1133), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1139), - [sym_number] = ACTIONS(1141), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [sym_null] = ACTIONS(1147), - [sym_undefined] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1151), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1153), - [anon_sym_number] = ACTIONS(1153), - [anon_sym_boolean] = ACTIONS(1153), - [anon_sym_string] = ACTIONS(1153), - [anon_sym_symbol] = ACTIONS(1153), - [anon_sym_object] = ACTIONS(1153), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [164] = { - [sym_import] = STATE(3612), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2493), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1986), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1155), + [sym_import] = STATE(3571), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1997), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(605), [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_typeof] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_typeof] = ACTIONS(1095), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1161), - [anon_sym_using] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1091), - [sym_number] = ACTIONS(1093), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1099), - [sym_false] = ACTIONS(1099), - [sym_null] = ACTIONS(1099), - [sym_undefined] = ACTIONS(1165), + [anon_sym_BQUOTE] = ACTIONS(1103), + [sym_number] = ACTIONS(1105), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1107), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1109), + [sym_false] = ACTIONS(1109), + [sym_null] = ACTIONS(1109), + [sym_undefined] = ACTIONS(1111), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(1167), + [anon_sym_readonly] = ACTIONS(1113), [anon_sym_get] = ACTIONS(812), [anon_sym_set] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(812), [anon_sym_public] = ACTIONS(812), [anon_sym_private] = ACTIONS(812), [anon_sym_protected] = ACTIONS(812), [anon_sym_override] = ACTIONS(812), [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(1169), - [anon_sym_number] = ACTIONS(1169), - [anon_sym_boolean] = ACTIONS(1169), - [anon_sym_string] = ACTIONS(1169), - [anon_sym_symbol] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(1115), + [anon_sym_number] = ACTIONS(1115), + [anon_sym_boolean] = ACTIONS(1115), + [anon_sym_string] = ACTIONS(1115), + [anon_sym_symbol] = ACTIONS(1115), + [anon_sym_object] = ACTIONS(1115), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [164] = { + [sym_import] = STATE(3571), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2270), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1997), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1117), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1125), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1135), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1141), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1103), + [sym_number] = ACTIONS(1105), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(1107), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1109), + [sym_false] = ACTIONS(1109), + [sym_null] = ACTIONS(1109), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1119), + [anon_sym_readonly] = ACTIONS(1151), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(784), + [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(1153), + [anon_sym_number] = ACTIONS(1153), + [anon_sym_boolean] = ACTIONS(1153), + [anon_sym_string] = ACTIONS(1153), + [anon_sym_symbol] = ACTIONS(1153), + [anon_sym_object] = ACTIONS(1153), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2015), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4027), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4027), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4027), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1328), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4209), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(1173), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1848), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(1885), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3843), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1155), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_typeof] = ACTIONS(1163), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1177), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1183), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1189), + [sym_number] = ACTIONS(1191), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(1195), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [sym_null] = ACTIONS(1197), + [sym_undefined] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1201), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1203), + [anon_sym_number] = ACTIONS(1203), + [anon_sym_boolean] = ACTIONS(1203), + [anon_sym_string] = ACTIONS(1203), + [anon_sym_symbol] = ACTIONS(1203), + [anon_sym_object] = ACTIONS(1203), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [166] = { + [sym_import] = STATE(3582), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2186), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2479), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3843), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1205), + [anon_sym_export] = ACTIONS(1207), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1173), - [anon_sym_namespace] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_typeof] = ACTIONS(1213), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1225), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1231), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1237), + [sym_number] = ACTIONS(1239), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(1243), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1245), + [sym_false] = ACTIONS(1245), + [sym_null] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1249), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1251), + [anon_sym_number] = ACTIONS(1251), + [anon_sym_boolean] = ACTIONS(1251), + [anon_sym_string] = ACTIONS(1251), + [anon_sym_symbol] = ACTIONS(1251), + [anon_sym_object] = ACTIONS(1251), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [167] = { + [sym_import] = STATE(3653), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2026), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(4462), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(4462), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1333), + [sym_subscript_expression] = STATE(1333), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(4462), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(2074), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1333), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4308), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1253), + [anon_sym_export] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1255), + [anon_sym_namespace] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1259), [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(133), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1179), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1263), [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), [anon_sym_PLUS] = ACTIONS(637), [anon_sym_DASH] = ACTIONS(637), [anon_sym_SLASH] = ACTIONS(639), @@ -45038,421 +45380,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(1183), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1265), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_readonly] = ACTIONS(1185), - [anon_sym_get] = ACTIONS(1173), - [anon_sym_set] = ACTIONS(1173), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_any] = ACTIONS(1187), - [anon_sym_number] = ACTIONS(1187), - [anon_sym_boolean] = ACTIONS(1187), - [anon_sym_string] = ACTIONS(1187), - [anon_sym_symbol] = ACTIONS(1187), - [anon_sym_object] = ACTIONS(1187), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [166] = { - [sym_import] = STATE(3612), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3639), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3639), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1409), - [sym_subscript_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3639), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2529), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1409), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4209), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1189), - [anon_sym_export] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1191), - [anon_sym_namespace] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1203), - [anon_sym_using] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1207), - [sym_number] = ACTIONS(1209), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1211), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [sym_null] = ACTIONS(1213), - [sym_undefined] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_readonly] = ACTIONS(1217), - [anon_sym_get] = ACTIONS(1191), - [anon_sym_set] = ACTIONS(1191), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1191), - [anon_sym_public] = ACTIONS(1191), - [anon_sym_private] = ACTIONS(1191), - [anon_sym_protected] = ACTIONS(1191), - [anon_sym_override] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(1191), - [anon_sym_any] = ACTIONS(1219), - [anon_sym_number] = ACTIONS(1219), - [anon_sym_boolean] = ACTIONS(1219), - [anon_sym_string] = ACTIONS(1219), - [anon_sym_symbol] = ACTIONS(1219), - [anon_sym_object] = ACTIONS(1219), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [167] = { - [sym_import] = STATE(3651), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1986), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1237), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1243), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1091), - [sym_number] = ACTIONS(1093), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1099), - [sym_false] = ACTIONS(1099), - [sym_null] = ACTIONS(1099), - [sym_undefined] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1253), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(782), - [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(1255), - [anon_sym_number] = ACTIONS(1255), - [anon_sym_boolean] = ACTIONS(1255), - [anon_sym_string] = ACTIONS(1255), - [anon_sym_symbol] = ACTIONS(1255), - [anon_sym_object] = ACTIONS(1255), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_readonly] = ACTIONS(1267), + [anon_sym_get] = ACTIONS(1255), + [anon_sym_set] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1255), + [anon_sym_public] = ACTIONS(1255), + [anon_sym_private] = ACTIONS(1255), + [anon_sym_protected] = ACTIONS(1255), + [anon_sym_override] = ACTIONS(1255), + [anon_sym_module] = ACTIONS(1255), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1657), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1675), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1257), + [sym_import] = STATE(3653), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1628), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1702), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1271), [anon_sym_export] = ACTIONS(1039), [anon_sym_STAR] = ACTIONS(605), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1259), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_typeof] = ACTIONS(1275), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1049), [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), [anon_sym_TILDE] = ACTIONS(615), @@ -45461,650 +45521,650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1139), - [sym_number] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(1281), + [sym_number] = ACTIONS(1283), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [sym_null] = ACTIONS(1147), - [sym_undefined] = ACTIONS(1263), + [sym_this] = ACTIONS(1285), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_null] = ACTIONS(1287), + [sym_undefined] = ACTIONS(1289), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), [anon_sym_readonly] = ACTIONS(1055), [anon_sym_get] = ACTIONS(1039), [anon_sym_set] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1039), [anon_sym_public] = ACTIONS(1039), [anon_sym_private] = ACTIONS(1039), [anon_sym_protected] = ACTIONS(1039), [anon_sym_override] = ACTIONS(1039), [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1265), - [anon_sym_number] = ACTIONS(1265), - [anon_sym_boolean] = ACTIONS(1265), - [anon_sym_string] = ACTIONS(1265), - [anon_sym_symbol] = ACTIONS(1265), - [anon_sym_object] = ACTIONS(1265), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(1291), + [anon_sym_number] = ACTIONS(1291), + [anon_sym_boolean] = ACTIONS(1291), + [anon_sym_string] = ACTIONS(1291), + [anon_sym_symbol] = ACTIONS(1291), + [anon_sym_object] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(3633), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2379), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1267), - [anon_sym_export] = ACTIONS(1269), + [sym_import] = STATE(3589), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1997), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1293), + [anon_sym_export] = ACTIONS(1295), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_typeof] = ACTIONS(1275), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1289), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1295), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1301), - [sym_number] = ACTIONS(1303), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(1307), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [sym_null] = ACTIONS(1309), - [sym_undefined] = ACTIONS(1311), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_typeof] = ACTIONS(1299), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1315), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1103), + [sym_number] = ACTIONS(1105), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(1107), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1109), + [sym_false] = ACTIONS(1109), + [sym_null] = ACTIONS(1109), + [sym_undefined] = ACTIONS(1323), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1313), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1315), - [anon_sym_number] = ACTIONS(1315), - [anon_sym_boolean] = ACTIONS(1315), - [anon_sym_string] = ACTIONS(1315), - [anon_sym_symbol] = ACTIONS(1315), - [anon_sym_object] = ACTIONS(1315), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1327), + [anon_sym_number] = ACTIONS(1327), + [anon_sym_boolean] = ACTIONS(1327), + [anon_sym_string] = ACTIONS(1327), + [anon_sym_symbol] = ACTIONS(1327), + [anon_sym_object] = ACTIONS(1327), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(3704), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(1319), + [sym_import] = STATE(3571), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1997), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1329), + [anon_sym_export] = ACTIONS(1331), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1331), - [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1335), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1337), - [sym_number] = ACTIONS(1339), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1341), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [sym_null] = ACTIONS(1343), - [sym_undefined] = ACTIONS(1345), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_typeof] = ACTIONS(1335), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1103), + [sym_number] = ACTIONS(1105), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(1107), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1109), + [sym_false] = ACTIONS(1109), + [sym_null] = ACTIONS(1109), + [sym_undefined] = ACTIONS(1359), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(782), - [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(1349), - [anon_sym_number] = ACTIONS(1349), - [anon_sym_boolean] = ACTIONS(1349), - [anon_sym_string] = ACTIONS(1349), - [anon_sym_symbol] = ACTIONS(1349), - [anon_sym_object] = ACTIONS(1349), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_number] = ACTIONS(1363), + [anon_sym_boolean] = ACTIONS(1363), + [anon_sym_string] = ACTIONS(1363), + [anon_sym_symbol] = ACTIONS(1363), + [anon_sym_object] = ACTIONS(1363), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(3612), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1986), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1351), - [anon_sym_export] = ACTIONS(1353), + [sym_import] = STATE(3653), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2046), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1702), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1365), + [anon_sym_export] = ACTIONS(1367), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_typeof] = ACTIONS(1357), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1367), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1373), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1091), - [sym_number] = ACTIONS(1093), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1099), - [sym_false] = ACTIONS(1099), - [sym_null] = ACTIONS(1099), - [sym_undefined] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1281), + [sym_number] = ACTIONS(1283), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(1285), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [sym_null] = ACTIONS(1287), + [sym_undefined] = ACTIONS(1395), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1397), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_number] = ACTIONS(1399), + [anon_sym_boolean] = ACTIONS(1399), + [anon_sym_string] = ACTIONS(1399), + [anon_sym_symbol] = ACTIONS(1399), + [anon_sym_object] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(3704), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1387), - [anon_sym_export] = ACTIONS(1389), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_nested_identifier] = STATE(5915), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(1885), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(4207), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3843), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5458), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1401), + [anon_sym_export] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1393), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_typeof] = ACTIONS(1407), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1173), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1403), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1411), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1337), - [sym_number] = ACTIONS(1339), - [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1189), + [sym_number] = ACTIONS(1191), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1195), [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [sym_null] = ACTIONS(1343), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [sym_null] = ACTIONS(1197), [sym_undefined] = ACTIONS(1417), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1403), [anon_sym_readonly] = ACTIONS(1419), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), [anon_sym_any] = ACTIONS(1421), [anon_sym_number] = ACTIONS(1421), [anon_sym_boolean] = ACTIONS(1421), [anon_sym_string] = ACTIONS(1421), [anon_sym_symbol] = ACTIONS(1421), [anon_sym_object] = ACTIONS(1421), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1710), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1727), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_STAR] = ACTIONS(1425), @@ -46115,10 +46175,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1429), [anon_sym_RBRACE] = ACTIONS(1429), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_SEMI] = ACTIONS(1429), [anon_sym_RPAREN] = ACTIONS(1429), [anon_sym_await] = ACTIONS(617), @@ -46129,11 +46189,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1429), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), @@ -46150,7 +46210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46165,14 +46225,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -46196,61 +46256,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1768), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1403), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_COMMA] = ACTIONS(1429), [anon_sym_RBRACE] = ACTIONS(1429), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(1429), @@ -46263,7 +46323,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1439), @@ -46306,100 +46366,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [anon_sym_satisfies] = ACTIONS(1427), [sym__automatic_semicolon] = ACTIONS(1429), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1157), [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1157), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_await] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1169), [anon_sym_in] = ACTIONS(1427), [anon_sym_of] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), + [anon_sym_using] = ACTIONS(1179), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), @@ -46408,9 +46468,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), [anon_sym_LT] = ACTIONS(1441), @@ -46422,15 +46482,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -46438,98 +46498,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [anon_sym_satisfies] = ACTIONS(1427), [sym__automatic_semicolon] = ACTIONS(1429), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2354), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2069), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), + [anon_sym_export] = ACTIONS(1367), [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1367), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_await] = ACTIONS(1281), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), [anon_sym_in] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), + [anon_sym_using] = ACTIONS(1383), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), @@ -46538,12 +46598,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46552,114 +46612,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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_satisfies] = ACTIONS(1427), - [sym__automatic_semicolon] = ACTIONS(1429), + [anon_sym_implements] = ACTIONS(1427), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2057), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), + [anon_sym_export] = ACTIONS(1207), [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1207), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(1217), [anon_sym_in] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), + [anon_sym_using] = ACTIONS(1227), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), @@ -46668,12 +46728,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(1441), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46682,115 +46742,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [anon_sym_satisfies] = ACTIONS(1427), - [anon_sym_implements] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2303), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1119), [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_type] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1119), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), [anon_sym_in] = ACTIONS(1427), [anon_sym_COLON] = ACTIONS(1429), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), + [anon_sym_using] = ACTIONS(1137), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), @@ -46799,12 +46859,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46813,113 +46873,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [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(1427), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1295), [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1295), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), [anon_sym_in] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), [anon_sym_RBRACK] = ACTIONS(1429), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), + [anon_sym_using] = ACTIONS(1311), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), @@ -46928,12 +46988,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46942,113 +47002,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [anon_sym_satisfies] = ACTIONS(1427), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2473), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), + [anon_sym_export] = ACTIONS(1331), [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_type] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1331), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), [anon_sym_in] = ACTIONS(1427), [anon_sym_of] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), + [anon_sym_using] = ACTIONS(1347), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), @@ -47057,12 +47117,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), [anon_sym_SLASH] = ACTIONS(965), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -47071,112 +47131,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [anon_sym_satisfies] = ACTIONS(1427), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_STAR] = ACTIONS(1491), [anon_sym_type] = ACTIONS(812), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), @@ -47185,12 +47245,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -47199,21 +47259,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -47236,102 +47296,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -47341,68 +47401,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(858), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), @@ -47410,49 +47470,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -47462,70 +47522,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(120), @@ -47533,48 +47593,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -47584,119 +47644,724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_declaration] = STATE(893), + [sym_import] = STATE(3680), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4185), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1535), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [186] = { + [sym_declaration] = STATE(4069), + [sym_import] = STATE(3680), + [sym_variable_declaration] = STATE(3987), + [sym_lexical_declaration] = STATE(3987), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(3987), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(3987), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(3987), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_function_signature] = STATE(3987), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(3987), + [sym_abstract_class_declaration] = STATE(3987), + [sym_module] = STATE(3987), + [sym_internal_module] = STATE(2426), + [sym_import_alias] = STATE(3987), + [sym_interface_declaration] = STATE(3987), + [sym_enum_declaration] = STATE(3987), + [sym_type_alias_declaration] = STATE(3987), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4070), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(1539), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1561), + [sym_html_comment] = ACTIONS(5), + }, + [187] = { + [sym_declaration] = STATE(4062), + [sym_import] = STATE(3680), + [sym_variable_declaration] = STATE(3987), + [sym_lexical_declaration] = STATE(3987), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(3987), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(3987), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(3987), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_function_signature] = STATE(3987), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(3987), + [sym_abstract_class_declaration] = STATE(3987), + [sym_module] = STATE(3987), + [sym_internal_module] = STATE(2426), + [sym_import_alias] = STATE(3987), + [sym_interface_declaration] = STATE(3987), + [sym_enum_declaration] = STATE(3987), + [sym_type_alias_declaration] = STATE(3987), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4070), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(1539), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1561), + [sym_html_comment] = ACTIONS(5), + }, + [188] = { + [sym_declaration] = STATE(840), + [sym_import] = STATE(3680), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4200), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1535), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [189] = { + [sym_declaration] = STATE(893), + [sym_import] = STATE(3680), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4185), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [190] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(126), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(126), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -47706,1205 +48371,601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [186] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [187] = { - [sym_declaration] = STATE(859), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4193), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [188] = { - [sym_declaration] = STATE(4028), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(4393), - [sym_lexical_declaration] = STATE(4393), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2393), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(4393), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(4393), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(4393), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(4393), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(4393), - [sym_abstract_class_declaration] = STATE(4393), - [sym_module] = STATE(4393), - [sym_internal_module] = STATE(2413), - [sym_import_alias] = STATE(4393), - [sym_interface_declaration] = STATE(4393), - [sym_enum_declaration] = STATE(4393), - [sym_type_alias_declaration] = STATE(4393), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4287), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_function] = ACTIONS(1551), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_abstract] = ACTIONS(1557), - [anon_sym_interface] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1561), - [sym_html_comment] = ACTIONS(5), - }, - [189] = { - [sym_declaration] = STATE(4431), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(4393), - [sym_lexical_declaration] = STATE(4393), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2386), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(4393), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(4393), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(4393), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(4393), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(4393), - [sym_abstract_class_declaration] = STATE(4393), - [sym_module] = STATE(4393), - [sym_internal_module] = STATE(2413), - [sym_import_alias] = STATE(4393), - [sym_interface_declaration] = STATE(4393), - [sym_enum_declaration] = STATE(4393), - [sym_type_alias_declaration] = STATE(4393), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4287), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_function] = ACTIONS(1551), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_abstract] = ACTIONS(1557), - [anon_sym_interface] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1561), - [sym_html_comment] = ACTIONS(5), - }, - [190] = { - [sym_declaration] = STATE(806), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), + [191] = { + [sym_declaration] = STATE(840), + [sym_import] = STATE(3680), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4193), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4185), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(1527), [anon_sym_var] = ACTIONS(27), [anon_sym_let] = ACTIONS(1529), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(559), [anon_sym_async] = ACTIONS(1531), [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [191] = { - [sym_declaration] = STATE(806), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), + [192] = { + [sym_declaration] = STATE(840), + [sym_import] = STATE(3680), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4193), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(2400), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4185), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(1527), [anon_sym_var] = ACTIONS(27), [anon_sym_let] = ACTIONS(1529), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(559), [anon_sym_async] = ACTIONS(1531), [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [192] = { - [sym_declaration] = STATE(806), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4333), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1569), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_declaration] = STATE(859), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4333), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1569), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_declaration] = STATE(859), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), + [sym_declaration] = STATE(893), + [sym_import] = STATE(3680), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_class_declaration] = STATE(859), + [sym_function_expression] = STATE(2291), + [sym_function_declaration] = STATE(859), + [sym_generator_function] = STATE(2291), + [sym_generator_function_declaration] = STATE(859), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4193), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_function_signature] = STATE(859), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(235), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4200), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_namespace] = ACTIONS(1563), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(1527), [anon_sym_var] = ACTIONS(27), [anon_sym_let] = ACTIONS(1529), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1535), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3743), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(222), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(1573), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(1575), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -48913,359 +48974,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3246), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_EQ] = ACTIONS(117), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(909), + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3216), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(987), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(1589), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1591), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(1599), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_void] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(907), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49275,117 +49334,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_implements] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3766), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(925), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49394,65 +49454,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), @@ -49462,49 +49522,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49514,116 +49574,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(933), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49633,56 +49693,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(955), @@ -49690,7 +49750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), @@ -49701,48 +49761,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49752,64 +49812,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), @@ -49818,49 +49878,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49870,99 +49930,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5728), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5680), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(760), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), @@ -49973,14 +50033,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(1621), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -49988,10 +50048,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(603), [anon_sym_set] = ACTIONS(603), [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), [anon_sym_module] = ACTIONS(603), [anon_sym_any] = ACTIONS(603), [anon_sym_number] = ACTIONS(603), @@ -50002,80 +50062,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5974), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1858), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5991), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(760), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), @@ -50086,14 +50146,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), [sym_this] = ACTIONS(1621), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -50101,10 +50161,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(603), [anon_sym_set] = ACTIONS(603), [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), [anon_sym_module] = ACTIONS(603), [anon_sym_any] = ACTIONS(603), [anon_sym_number] = ACTIONS(603), @@ -50115,97 +50175,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(5378), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(5378), + [sym_optional_parameter] = STATE(5378), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -50227,97 +50287,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(5378), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(5378), + [sym_optional_parameter] = STATE(5378), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -50339,97 +50399,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5109), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5109), - [sym_optional_parameter] = STATE(5109), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(5378), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(5378), + [sym_optional_parameter] = STATE(5378), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -50451,97 +50511,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(5378), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(5378), + [sym_optional_parameter] = STATE(5378), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -50563,97 +50623,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(4638), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4638), + [sym_optional_parameter] = STATE(4638), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -50675,97 +50735,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(4857), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4857), + [sym_optional_parameter] = STATE(4857), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -50787,97 +50847,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4889), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4889), - [sym_optional_parameter] = STATE(4889), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -50899,97 +50959,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(5378), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(5378), + [sym_optional_parameter] = STATE(5378), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -51011,97 +51071,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(5378), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(5378), + [sym_optional_parameter] = STATE(5378), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -51123,75 +51183,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_RBRACK] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -51205,14 +51265,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -51234,17 +51294,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_statement_block] = STATE(247), [ts_builtin_sym_end] = ACTIONS(1653), [sym_identifier] = ACTIONS(1655), [anon_sym_export] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1657), [anon_sym_default] = ACTIONS(1655), [anon_sym_type] = ACTIONS(1655), - [anon_sym_as] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1659), + [anon_sym_as] = ACTIONS(1657), [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1661), [anon_sym_RBRACE] = ACTIONS(1653), [anon_sym_typeof] = ACTIONS(1655), [anon_sym_import] = ACTIONS(1655), @@ -51260,7 +51320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1653), [anon_sym_SEMI] = ACTIONS(1653), [anon_sym_await] = ACTIONS(1655), - [anon_sym_in] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1657), [anon_sym_while] = ACTIONS(1655), [anon_sym_do] = ACTIONS(1655), [anon_sym_try] = ACTIONS(1655), @@ -51272,38 +51332,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1655), [anon_sym_yield] = ACTIONS(1655), [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_DOT] = ACTIONS(1657), [anon_sym_DQUOTE] = ACTIONS(1653), [anon_sym_SQUOTE] = ACTIONS(1653), [anon_sym_class] = ACTIONS(1655), [anon_sym_async] = ACTIONS(1655), [anon_sym_function] = ACTIONS(1655), - [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_QMARK_DOT] = ACTIONS(1661), [anon_sym_new] = ACTIONS(1655), [anon_sym_using] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_PIPE_PIPE] = ACTIONS(1661), + [anon_sym_GT_GT] = ACTIONS(1657), + [anon_sym_GT_GT_GT] = ACTIONS(1661), + [anon_sym_LT_LT] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1657), [anon_sym_PLUS] = ACTIONS(1655), [anon_sym_DASH] = ACTIONS(1655), [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1653), - [anon_sym_STAR_STAR] = ACTIONS(1653), + [anon_sym_PERCENT] = ACTIONS(1661), + [anon_sym_STAR_STAR] = ACTIONS(1661), [anon_sym_LT] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_QMARK_QMARK] = ACTIONS(1653), - [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1661), + [anon_sym_EQ_EQ] = ACTIONS(1657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ] = ACTIONS(1657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1661), + [anon_sym_QMARK_QMARK] = ACTIONS(1661), + [anon_sym_instanceof] = ACTIONS(1657), [anon_sym_TILDE] = ACTIONS(1653), [anon_sym_void] = ACTIONS(1655), [anon_sym_delete] = ACTIONS(1655), @@ -51337,215 +51397,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1655), [anon_sym_object] = ACTIONS(1655), [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_satisfies] = ACTIONS(1655), + [anon_sym_satisfies] = ACTIONS(1657), [anon_sym_interface] = ACTIONS(1655), [anon_sym_enum] = ACTIONS(1655), - [sym__automatic_semicolon] = ACTIONS(1653), - [sym__ternary_qmark] = ACTIONS(1653), + [sym__automatic_semicolon] = ACTIONS(1663), + [sym__ternary_qmark] = ACTIONS(1661), [sym_html_comment] = ACTIONS(5), }, [217] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_as] = ACTIONS(1663), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1663), - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_QMARK_DOT] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1667), - [anon_sym_PIPE_PIPE] = ACTIONS(1667), - [anon_sym_GT_GT] = ACTIONS(1663), - [anon_sym_GT_GT_GT] = ACTIONS(1667), - [anon_sym_LT_LT] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_PERCENT] = ACTIONS(1667), - [anon_sym_STAR_STAR] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_QMARK_QMARK] = ACTIONS(1667), - [anon_sym_instanceof] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_object] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_satisfies] = ACTIONS(1663), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [sym__automatic_semicolon] = ACTIONS(1669), - [sym__ternary_qmark] = ACTIONS(1667), - [sym_html_comment] = ACTIONS(5), - }, - [218] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym__formal_parameter] = STATE(5378), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4003), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(290), + [sym_override_modifier] = STATE(307), + [sym_required_parameter] = STATE(5378), + [sym_optional_parameter] = STATE(5378), + [sym__parameter_name] = STATE(3655), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(278), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -51566,187 +51515,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [219] = { - [sym_statement_block] = STATE(247), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_as] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_COMMA] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_in] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1655), + [218] = { + [sym_statement_block] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1653), - [anon_sym_STAR_STAR] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_QMARK_QMARK] = ACTIONS(1653), - [anon_sym_instanceof] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_satisfies] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym__automatic_semicolon] = ACTIONS(1653), - [sym__ternary_qmark] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [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(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), + [sym_html_comment] = ACTIONS(5), + }, + [219] = { + [sym_statement_block] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [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(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2145), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5132), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2167), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(5147), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(5158), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -51760,14 +51820,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -51789,75 +51849,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -51871,14 +51931,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -51900,75 +51960,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -51982,14 +52042,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -52011,186 +52071,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_statement_block] = STATE(247), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_as] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_COMMA] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_in] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1653), - [anon_sym_STAR_STAR] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_QMARK_QMARK] = ACTIONS(1653), - [anon_sym_instanceof] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2320), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(5147), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(5158), + [aux_sym_array_pattern_repeat1] = STATE(5160), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_satisfies] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym__automatic_semicolon] = ACTIONS(1653), - [sym__ternary_qmark] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_statement_block] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [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(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), + [sym_html_comment] = ACTIONS(5), + }, + [225] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), [anon_sym_RBRACK] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -52204,14 +52375,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -52232,76 +52403,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5132), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [226] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(4986), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4988), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -52315,14 +52486,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -52343,77 +52514,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [226] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [227] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(1685), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_RBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), [anon_sym_PLUS] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), @@ -52424,21 +52595,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), [anon_sym_readonly] = ACTIONS(1039), [anon_sym_get] = ACTIONS(1039), [anon_sym_set] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1685), [anon_sym_declare] = ACTIONS(1039), [anon_sym_public] = ACTIONS(1039), [anon_sym_private] = ACTIONS(1039), @@ -52451,118 +52622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1039), [anon_sym_symbol] = ACTIONS(1039), [anon_sym_object] = ACTIONS(1039), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [227] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1623), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), + [anon_sym_extends] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, [228] = { @@ -52676,91 +52736,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5206), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5206), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1368), + [sym_subscript_expression] = STATE(1368), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5206), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1368), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_mapped_type_clause] = STATE(5953), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_pattern_repeat1] = STATE(5160), + [sym_identifier] = ACTIONS(1699), [anon_sym_export] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), [anon_sym_type] = ACTIONS(1701), - [anon_sym_as] = ACTIONS(1701), - [anon_sym_namespace] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_typeof] = ACTIONS(1701), - [anon_sym_import] = ACTIONS(1701), - [anon_sym_with] = ACTIONS(1701), - [anon_sym_var] = ACTIONS(1701), + [anon_sym_namespace] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_switch] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_await] = ACTIONS(1701), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_debugger] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_throw] = ACTIONS(1701), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_function] = ACTIONS(1701), - [anon_sym_QMARK_DOT] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1701), - [anon_sym_using] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_GT_GT_GT] = ACTIONS(1699), - [anon_sym_LT_LT] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1699), - [anon_sym_STAR_STAR] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_QMARK_QMARK] = ACTIONS(1699), - [anon_sym_instanceof] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_void] = ACTIONS(1701), - [anon_sym_delete] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1699), - [sym_number] = ACTIONS(1699), - [sym_private_property_identifier] = ACTIONS(1699), - [sym_this] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_true] = ACTIONS(1701), - [sym_false] = ACTIONS(1701), - [sym_null] = ACTIONS(1701), - [sym_undefined] = ACTIONS(1701), - [anon_sym_AT] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_RBRACK] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1713), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1701), [anon_sym_readonly] = ACTIONS(1701), [anon_sym_get] = ACTIONS(1701), @@ -52777,245 +52843,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1701), [anon_sym_symbol] = ACTIONS(1701), [anon_sym_object] = ACTIONS(1701), - [anon_sym_abstract] = ACTIONS(1701), - [anon_sym_satisfies] = ACTIONS(1701), - [anon_sym_interface] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [sym__automatic_semicolon] = ACTIONS(1699), - [sym__ternary_qmark] = ACTIONS(1699), [sym_html_comment] = ACTIONS(5), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_debugger] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_throw] = ACTIONS(1705), - [anon_sym_case] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_DOT] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_GT_GT_GT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1709), - [anon_sym_STAR_STAR] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_QMARK_QMARK] = ACTIONS(1709), - [anon_sym_instanceof] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1705), - [anon_sym_delete] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_private_property_identifier] = ACTIONS(1703), - [sym_this] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_true] = ACTIONS(1705), - [sym_false] = ACTIONS(1705), - [sym_null] = ACTIONS(1705), - [sym_undefined] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_readonly] = ACTIONS(1705), - [anon_sym_get] = ACTIONS(1705), - [anon_sym_set] = ACTIONS(1705), - [anon_sym_declare] = ACTIONS(1705), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_override] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_any] = ACTIONS(1705), - [anon_sym_number] = ACTIONS(1705), - [anon_sym_boolean] = ACTIONS(1705), - [anon_sym_string] = ACTIONS(1705), - [anon_sym_symbol] = ACTIONS(1705), - [anon_sym_object] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_satisfies] = ACTIONS(1707), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1711), - [sym__ternary_qmark] = ACTIONS(1709), - [sym_html_comment] = ACTIONS(5), - }, - [231] = { - [ts_builtin_sym_end] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1715), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1715), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_namespace] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1713), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym_identifier] = ACTIONS(1721), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_type] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1719), [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_typeof] = ACTIONS(1715), - [anon_sym_import] = ACTIONS(1715), - [anon_sym_with] = ACTIONS(1715), - [anon_sym_var] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_switch] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_debugger] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1715), - [anon_sym_yield] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1713), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_async] = ACTIONS(1715), - [anon_sym_function] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_typeof] = ACTIONS(1721), + [anon_sym_import] = ACTIONS(1721), + [anon_sym_with] = ACTIONS(1721), + [anon_sym_var] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_BANG] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_switch] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_await] = ACTIONS(1721), + [anon_sym_in] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_debugger] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1721), + [anon_sym_case] = ACTIONS(1721), + [anon_sym_yield] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1721), + [anon_sym_DOT] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1719), + [anon_sym_SQUOTE] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1721), + [anon_sym_async] = ACTIONS(1721), + [anon_sym_function] = ACTIONS(1721), [anon_sym_QMARK_DOT] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_using] = ACTIONS(1721), [anon_sym_AMP_AMP] = ACTIONS(1719), [anon_sym_PIPE_PIPE] = ACTIONS(1719), - [anon_sym_GT_GT] = ACTIONS(1717), + [anon_sym_GT_GT] = ACTIONS(1721), [anon_sym_GT_GT_GT] = ACTIONS(1719), [anon_sym_LT_LT] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1721), [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_SLASH] = ACTIONS(1721), [anon_sym_PERCENT] = ACTIONS(1719), [anon_sym_STAR_STAR] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1721), [anon_sym_LT_EQ] = ACTIONS(1719), - [anon_sym_EQ_EQ] = ACTIONS(1717), + [anon_sym_EQ_EQ] = ACTIONS(1721), [anon_sym_EQ_EQ_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ] = ACTIONS(1717), + [anon_sym_BANG_EQ] = ACTIONS(1721), [anon_sym_BANG_EQ_EQ] = ACTIONS(1719), [anon_sym_GT_EQ] = ACTIONS(1719), [anon_sym_QMARK_QMARK] = ACTIONS(1719), - [anon_sym_instanceof] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_void] = ACTIONS(1715), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1713), - [sym_number] = ACTIONS(1713), - [sym_private_property_identifier] = ACTIONS(1713), - [sym_this] = ACTIONS(1715), - [sym_super] = ACTIONS(1715), - [sym_true] = ACTIONS(1715), - [sym_false] = ACTIONS(1715), - [sym_null] = ACTIONS(1715), - [sym_undefined] = ACTIONS(1715), - [anon_sym_AT] = ACTIONS(1713), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_readonly] = ACTIONS(1715), - [anon_sym_get] = ACTIONS(1715), - [anon_sym_set] = ACTIONS(1715), - [anon_sym_declare] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1715), - [anon_sym_private] = ACTIONS(1715), - [anon_sym_protected] = ACTIONS(1715), - [anon_sym_override] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_any] = ACTIONS(1715), - [anon_sym_number] = ACTIONS(1715), - [anon_sym_boolean] = ACTIONS(1715), - [anon_sym_string] = ACTIONS(1715), - [anon_sym_symbol] = ACTIONS(1715), - [anon_sym_object] = ACTIONS(1715), - [anon_sym_abstract] = ACTIONS(1715), - [anon_sym_satisfies] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [sym__automatic_semicolon] = ACTIONS(1721), + [anon_sym_instanceof] = ACTIONS(1721), + [anon_sym_TILDE] = ACTIONS(1719), + [anon_sym_void] = ACTIONS(1721), + [anon_sym_delete] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [sym_private_property_identifier] = ACTIONS(1719), + [sym_this] = ACTIONS(1721), + [sym_super] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_null] = ACTIONS(1721), + [sym_undefined] = ACTIONS(1721), + [anon_sym_AT] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1721), + [anon_sym_readonly] = ACTIONS(1721), + [anon_sym_get] = ACTIONS(1721), + [anon_sym_set] = ACTIONS(1721), + [anon_sym_declare] = ACTIONS(1721), + [anon_sym_public] = ACTIONS(1721), + [anon_sym_private] = ACTIONS(1721), + [anon_sym_protected] = ACTIONS(1721), + [anon_sym_override] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [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(1721), + [anon_sym_satisfies] = ACTIONS(1721), + [anon_sym_interface] = ACTIONS(1721), + [anon_sym_enum] = ACTIONS(1721), + [sym__automatic_semicolon] = ACTIONS(1719), [sym__ternary_qmark] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [232] = { + [231] = { [ts_builtin_sym_end] = ACTIONS(1723), [sym_identifier] = ACTIONS(1725), [anon_sym_export] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), [anon_sym_default] = ACTIONS(1725), [anon_sym_type] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), + [anon_sym_as] = ACTIONS(1727), [anon_sym_namespace] = ACTIONS(1725), [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1729), [anon_sym_RBRACE] = ACTIONS(1723), [anon_sym_typeof] = ACTIONS(1725), [anon_sym_import] = ACTIONS(1725), @@ -53031,7 +52981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1723), [anon_sym_SEMI] = ACTIONS(1723), [anon_sym_await] = ACTIONS(1725), - [anon_sym_in] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1727), [anon_sym_while] = ACTIONS(1725), [anon_sym_do] = ACTIONS(1725), [anon_sym_try] = ACTIONS(1725), @@ -53043,38 +52993,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1725), [anon_sym_yield] = ACTIONS(1725), [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_DOT] = ACTIONS(1727), [anon_sym_DQUOTE] = ACTIONS(1723), [anon_sym_SQUOTE] = ACTIONS(1723), [anon_sym_class] = ACTIONS(1725), [anon_sym_async] = ACTIONS(1725), [anon_sym_function] = ACTIONS(1725), - [anon_sym_QMARK_DOT] = ACTIONS(1723), + [anon_sym_QMARK_DOT] = ACTIONS(1729), [anon_sym_new] = ACTIONS(1725), [anon_sym_using] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1729), + [anon_sym_PIPE_PIPE] = ACTIONS(1729), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1729), + [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1727), [anon_sym_PLUS] = ACTIONS(1725), [anon_sym_DASH] = ACTIONS(1725), [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_STAR_STAR] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1729), + [anon_sym_STAR_STAR] = ACTIONS(1729), [anon_sym_LT] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_QMARK_QMARK] = ACTIONS(1723), - [anon_sym_instanceof] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1729), + [anon_sym_QMARK_QMARK] = ACTIONS(1729), + [anon_sym_instanceof] = ACTIONS(1727), [anon_sym_TILDE] = ACTIONS(1723), [anon_sym_void] = ACTIONS(1725), [anon_sym_delete] = ACTIONS(1725), @@ -53108,784 +53058,784 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1725), [anon_sym_object] = ACTIONS(1725), [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_satisfies] = ACTIONS(1725), + [anon_sym_satisfies] = ACTIONS(1727), [anon_sym_interface] = ACTIONS(1725), [anon_sym_enum] = ACTIONS(1725), - [sym__automatic_semicolon] = ACTIONS(1723), - [sym__ternary_qmark] = ACTIONS(1723), + [sym__automatic_semicolon] = ACTIONS(1731), + [sym__ternary_qmark] = ACTIONS(1729), [sym_html_comment] = ACTIONS(5), }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_as] = ACTIONS(1731), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_typeof] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1729), - [anon_sym_with] = ACTIONS(1729), - [anon_sym_var] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_await] = ACTIONS(1729), - [anon_sym_in] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_debugger] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_DOT] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_function] = ACTIONS(1729), - [anon_sym_QMARK_DOT] = ACTIONS(1733), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1733), - [anon_sym_PIPE_PIPE] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_GT_GT_GT] = ACTIONS(1733), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1733), - [anon_sym_STAR_STAR] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1733), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1733), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1733), - [anon_sym_QMARK_QMARK] = ACTIONS(1733), - [anon_sym_instanceof] = ACTIONS(1731), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1727), - [sym_number] = ACTIONS(1727), - [sym_private_property_identifier] = ACTIONS(1727), - [sym_this] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_undefined] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_readonly] = ACTIONS(1729), - [anon_sym_get] = ACTIONS(1729), - [anon_sym_set] = ACTIONS(1729), - [anon_sym_declare] = ACTIONS(1729), - [anon_sym_public] = ACTIONS(1729), - [anon_sym_private] = ACTIONS(1729), - [anon_sym_protected] = ACTIONS(1729), - [anon_sym_override] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_any] = ACTIONS(1729), - [anon_sym_number] = ACTIONS(1729), - [anon_sym_boolean] = ACTIONS(1729), - [anon_sym_string] = ACTIONS(1729), - [anon_sym_symbol] = ACTIONS(1729), - [anon_sym_object] = ACTIONS(1729), - [anon_sym_abstract] = ACTIONS(1729), - [anon_sym_satisfies] = ACTIONS(1731), - [anon_sym_interface] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1735), - [sym__ternary_qmark] = ACTIONS(1733), - [sym_html_comment] = ACTIONS(5), - }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1739), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_typeof] = ACTIONS(1739), - [anon_sym_import] = ACTIONS(1739), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_var] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_await] = ACTIONS(1739), - [anon_sym_in] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_debugger] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_DOT] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_function] = ACTIONS(1739), - [anon_sym_QMARK_DOT] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_GT_GT_GT] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1737), - [anon_sym_STAR_STAR] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1739), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_QMARK_QMARK] = ACTIONS(1737), - [anon_sym_instanceof] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_void] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1737), - [sym_number] = ACTIONS(1737), - [sym_private_property_identifier] = ACTIONS(1737), - [sym_this] = ACTIONS(1739), - [sym_super] = ACTIONS(1739), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_undefined] = ACTIONS(1739), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_readonly] = ACTIONS(1739), - [anon_sym_get] = ACTIONS(1739), - [anon_sym_set] = ACTIONS(1739), - [anon_sym_declare] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [anon_sym_override] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_any] = ACTIONS(1739), - [anon_sym_number] = ACTIONS(1739), - [anon_sym_boolean] = ACTIONS(1739), - [anon_sym_string] = ACTIONS(1739), - [anon_sym_symbol] = ACTIONS(1739), - [anon_sym_object] = ACTIONS(1739), - [anon_sym_abstract] = ACTIONS(1739), - [anon_sym_satisfies] = ACTIONS(1739), - [anon_sym_interface] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [sym__automatic_semicolon] = ACTIONS(1737), - [sym__ternary_qmark] = ACTIONS(1737), + [232] = { + [ts_builtin_sym_end] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1735), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_STAR] = ACTIONS(1737), + [anon_sym_default] = ACTIONS(1735), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1737), + [anon_sym_namespace] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_COMMA] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_typeof] = ACTIONS(1735), + [anon_sym_import] = ACTIONS(1735), + [anon_sym_with] = ACTIONS(1735), + [anon_sym_var] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1735), + [anon_sym_in] = ACTIONS(1737), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_debugger] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1735), + [anon_sym_case] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_GT] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1733), + [anon_sym_class] = ACTIONS(1735), + [anon_sym_async] = ACTIONS(1735), + [anon_sym_function] = ACTIONS(1735), + [anon_sym_QMARK_DOT] = ACTIONS(1739), + [anon_sym_new] = ACTIONS(1735), + [anon_sym_using] = ACTIONS(1735), + [anon_sym_AMP_AMP] = ACTIONS(1739), + [anon_sym_PIPE_PIPE] = ACTIONS(1739), + [anon_sym_GT_GT] = ACTIONS(1737), + [anon_sym_GT_GT_GT] = ACTIONS(1739), + [anon_sym_LT_LT] = ACTIONS(1739), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_SLASH] = ACTIONS(1735), + [anon_sym_PERCENT] = ACTIONS(1739), + [anon_sym_STAR_STAR] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(1739), + [anon_sym_EQ_EQ] = ACTIONS(1737), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1739), + [anon_sym_BANG_EQ] = ACTIONS(1737), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1739), + [anon_sym_GT_EQ] = ACTIONS(1739), + [anon_sym_QMARK_QMARK] = ACTIONS(1739), + [anon_sym_instanceof] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1733), + [anon_sym_void] = ACTIONS(1735), + [anon_sym_delete] = ACTIONS(1735), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1733), + [sym_number] = ACTIONS(1733), + [sym_private_property_identifier] = ACTIONS(1733), + [sym_this] = ACTIONS(1735), + [sym_super] = ACTIONS(1735), + [sym_true] = ACTIONS(1735), + [sym_false] = ACTIONS(1735), + [sym_null] = ACTIONS(1735), + [sym_undefined] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1733), + [anon_sym_static] = ACTIONS(1735), + [anon_sym_readonly] = ACTIONS(1735), + [anon_sym_get] = ACTIONS(1735), + [anon_sym_set] = ACTIONS(1735), + [anon_sym_declare] = ACTIONS(1735), + [anon_sym_public] = ACTIONS(1735), + [anon_sym_private] = ACTIONS(1735), + [anon_sym_protected] = ACTIONS(1735), + [anon_sym_override] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_any] = ACTIONS(1735), + [anon_sym_number] = ACTIONS(1735), + [anon_sym_boolean] = ACTIONS(1735), + [anon_sym_string] = ACTIONS(1735), + [anon_sym_symbol] = ACTIONS(1735), + [anon_sym_object] = ACTIONS(1735), + [anon_sym_abstract] = ACTIONS(1735), + [anon_sym_satisfies] = ACTIONS(1737), + [anon_sym_interface] = ACTIONS(1735), + [anon_sym_enum] = ACTIONS(1735), + [sym__automatic_semicolon] = ACTIONS(1741), + [sym__ternary_qmark] = ACTIONS(1739), [sym_html_comment] = ACTIONS(5), }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1741), - [sym_identifier] = ACTIONS(1743), - [anon_sym_export] = ACTIONS(1743), + [233] = { + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [anon_sym_export] = ACTIONS(1745), [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_type] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), [anon_sym_as] = ACTIONS(1745), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_COMMA] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_typeof] = ACTIONS(1743), - [anon_sym_import] = ACTIONS(1743), - [anon_sym_with] = ACTIONS(1743), - [anon_sym_var] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_await] = ACTIONS(1743), + [anon_sym_namespace] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_COMMA] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_typeof] = ACTIONS(1745), + [anon_sym_import] = ACTIONS(1745), + [anon_sym_with] = ACTIONS(1745), + [anon_sym_var] = ACTIONS(1745), + [anon_sym_let] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_else] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_switch] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1745), [anon_sym_in] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_debugger] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_do] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_debugger] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1745), + [anon_sym_yield] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1743), [anon_sym_GT] = ACTIONS(1745), [anon_sym_DOT] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_async] = ACTIONS(1743), - [anon_sym_function] = ACTIONS(1743), - [anon_sym_QMARK_DOT] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_class] = ACTIONS(1745), + [anon_sym_async] = ACTIONS(1745), + [anon_sym_function] = ACTIONS(1745), + [anon_sym_QMARK_DOT] = ACTIONS(1743), + [anon_sym_new] = ACTIONS(1745), + [anon_sym_using] = ACTIONS(1745), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1743), [anon_sym_GT_GT] = ACTIONS(1745), - [anon_sym_GT_GT_GT] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_GT_GT_GT] = ACTIONS(1743), + [anon_sym_LT_LT] = ACTIONS(1743), [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1747), + [anon_sym_CARET] = ACTIONS(1743), [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_PERCENT] = ACTIONS(1747), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_SLASH] = ACTIONS(1745), + [anon_sym_PERCENT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_LT_EQ] = ACTIONS(1743), [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1747), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1743), [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1747), - [anon_sym_GT_EQ] = ACTIONS(1747), - [anon_sym_QMARK_QMARK] = ACTIONS(1747), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1743), + [anon_sym_GT_EQ] = ACTIONS(1743), + [anon_sym_QMARK_QMARK] = ACTIONS(1743), [anon_sym_instanceof] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_void] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1741), - [sym_number] = ACTIONS(1741), - [sym_private_property_identifier] = ACTIONS(1741), - [sym_this] = ACTIONS(1743), - [sym_super] = ACTIONS(1743), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_undefined] = ACTIONS(1743), - [anon_sym_AT] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_readonly] = ACTIONS(1743), - [anon_sym_get] = ACTIONS(1743), - [anon_sym_set] = ACTIONS(1743), - [anon_sym_declare] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_private] = ACTIONS(1743), - [anon_sym_protected] = ACTIONS(1743), - [anon_sym_override] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_any] = ACTIONS(1743), - [anon_sym_number] = ACTIONS(1743), - [anon_sym_boolean] = ACTIONS(1743), - [anon_sym_string] = ACTIONS(1743), - [anon_sym_symbol] = ACTIONS(1743), - [anon_sym_object] = ACTIONS(1743), - [anon_sym_abstract] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_void] = ACTIONS(1745), + [anon_sym_delete] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1743), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1743), + [sym_number] = ACTIONS(1743), + [sym_private_property_identifier] = ACTIONS(1743), + [sym_this] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [sym_null] = ACTIONS(1745), + [sym_undefined] = ACTIONS(1745), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_readonly] = ACTIONS(1745), + [anon_sym_get] = ACTIONS(1745), + [anon_sym_set] = ACTIONS(1745), + [anon_sym_declare] = ACTIONS(1745), + [anon_sym_public] = ACTIONS(1745), + [anon_sym_private] = ACTIONS(1745), + [anon_sym_protected] = ACTIONS(1745), + [anon_sym_override] = ACTIONS(1745), + [anon_sym_module] = ACTIONS(1745), + [anon_sym_any] = ACTIONS(1745), + [anon_sym_number] = ACTIONS(1745), + [anon_sym_boolean] = ACTIONS(1745), + [anon_sym_string] = ACTIONS(1745), + [anon_sym_symbol] = ACTIONS(1745), + [anon_sym_object] = ACTIONS(1745), + [anon_sym_abstract] = ACTIONS(1745), [anon_sym_satisfies] = ACTIONS(1745), - [anon_sym_interface] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [sym__automatic_semicolon] = ACTIONS(1749), - [sym__ternary_qmark] = ACTIONS(1747), + [anon_sym_interface] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [sym__automatic_semicolon] = ACTIONS(1743), + [sym__ternary_qmark] = ACTIONS(1743), + [sym_html_comment] = ACTIONS(5), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1751), + [anon_sym_namespace] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_COMMA] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_typeof] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_var] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_in] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_debugger] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_case] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1751), + [anon_sym_DOT] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(1749), + [anon_sym_QMARK_DOT] = ACTIONS(1753), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(1749), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1751), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1751), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_SLASH] = ACTIONS(1749), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_STAR_STAR] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1749), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1753), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_instanceof] = ACTIONS(1751), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_void] = ACTIONS(1749), + [anon_sym_delete] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [sym_private_property_identifier] = ACTIONS(1747), + [sym_this] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_undefined] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_get] = ACTIONS(1749), + [anon_sym_set] = ACTIONS(1749), + [anon_sym_declare] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_private] = ACTIONS(1749), + [anon_sym_protected] = ACTIONS(1749), + [anon_sym_override] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), + [anon_sym_abstract] = ACTIONS(1749), + [anon_sym_satisfies] = ACTIONS(1751), + [anon_sym_interface] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [sym__automatic_semicolon] = ACTIONS(1755), + [sym__ternary_qmark] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [235] = { + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_as] = ACTIONS(1761), + [anon_sym_namespace] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1759), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + [anon_sym_var] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_else] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_debugger] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_throw] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_class] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_function] = ACTIONS(1759), + [anon_sym_QMARK_DOT] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1759), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1761), + [anon_sym_GT_GT_GT] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_PERCENT] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1761), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1761), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_QMARK_QMARK] = ACTIONS(1763), + [anon_sym_instanceof] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_void] = ACTIONS(1759), + [anon_sym_delete] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1757), + [sym_number] = ACTIONS(1757), + [sym_private_property_identifier] = ACTIONS(1757), + [sym_this] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_undefined] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [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(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1759), + [anon_sym_satisfies] = ACTIONS(1761), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(1763), + [sym__ternary_qmark] = ACTIONS(1763), [sym_html_comment] = ACTIONS(5), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_QMARK_DOT] = ACTIONS(1757), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1755), - [anon_sym_GT_GT_GT] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_PERCENT] = ACTIONS(1757), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1755), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1757), - [anon_sym_BANG_EQ] = ACTIONS(1755), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1757), - [anon_sym_QMARK_QMARK] = ACTIONS(1757), - [anon_sym_instanceof] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_satisfies] = ACTIONS(1755), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [sym__automatic_semicolon] = ACTIONS(1759), - [sym__ternary_qmark] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1767), + [anon_sym_export] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_namespace] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_typeof] = ACTIONS(1767), + [anon_sym_import] = ACTIONS(1767), + [anon_sym_with] = ACTIONS(1767), + [anon_sym_var] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_else] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_switch] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1767), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_debugger] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_throw] = ACTIONS(1767), + [anon_sym_case] = ACTIONS(1767), + [anon_sym_yield] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_class] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(1767), + [anon_sym_QMARK_DOT] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_using] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1771), + [anon_sym_PIPE_PIPE] = ACTIONS(1771), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_GT_GT_GT] = ACTIONS(1771), + [anon_sym_LT_LT] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1771), + [anon_sym_STAR_STAR] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1771), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1771), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1771), + [anon_sym_GT_EQ] = ACTIONS(1771), + [anon_sym_QMARK_QMARK] = ACTIONS(1771), + [anon_sym_instanceof] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_void] = ACTIONS(1767), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1765), + [sym_number] = ACTIONS(1765), + [sym_private_property_identifier] = ACTIONS(1765), + [sym_this] = ACTIONS(1767), + [sym_super] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_null] = ACTIONS(1767), + [sym_undefined] = ACTIONS(1767), + [anon_sym_AT] = ACTIONS(1765), + [anon_sym_static] = ACTIONS(1767), + [anon_sym_readonly] = ACTIONS(1767), + [anon_sym_get] = ACTIONS(1767), + [anon_sym_set] = ACTIONS(1767), + [anon_sym_declare] = ACTIONS(1767), + [anon_sym_public] = ACTIONS(1767), + [anon_sym_private] = ACTIONS(1767), + [anon_sym_protected] = ACTIONS(1767), + [anon_sym_override] = ACTIONS(1767), + [anon_sym_module] = ACTIONS(1767), + [anon_sym_any] = ACTIONS(1767), + [anon_sym_number] = ACTIONS(1767), + [anon_sym_boolean] = ACTIONS(1767), + [anon_sym_string] = ACTIONS(1767), + [anon_sym_symbol] = ACTIONS(1767), + [anon_sym_object] = ACTIONS(1767), + [anon_sym_abstract] = ACTIONS(1767), + [anon_sym_satisfies] = ACTIONS(1769), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [sym__automatic_semicolon] = ACTIONS(1773), + [sym__ternary_qmark] = ACTIONS(1771), [sym_html_comment] = ACTIONS(5), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_identifier] = ACTIONS(1763), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_typeof] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1763), - [anon_sym_with] = ACTIONS(1763), - [anon_sym_var] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_debugger] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_function] = ACTIONS(1763), - [anon_sym_QMARK_DOT] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1767), - [anon_sym_PIPE_PIPE] = ACTIONS(1767), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1767), - [anon_sym_LT_LT] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_PERCENT] = ACTIONS(1767), - [anon_sym_STAR_STAR] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1767), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1767), - [anon_sym_QMARK_QMARK] = ACTIONS(1767), - [anon_sym_instanceof] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_void] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1761), - [sym_number] = ACTIONS(1761), - [sym_private_property_identifier] = ACTIONS(1761), - [sym_this] = ACTIONS(1763), - [sym_super] = ACTIONS(1763), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_undefined] = ACTIONS(1763), - [anon_sym_AT] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_readonly] = ACTIONS(1763), - [anon_sym_get] = ACTIONS(1763), - [anon_sym_set] = ACTIONS(1763), - [anon_sym_declare] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [anon_sym_override] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_any] = ACTIONS(1763), - [anon_sym_number] = ACTIONS(1763), - [anon_sym_boolean] = ACTIONS(1763), - [anon_sym_string] = ACTIONS(1763), - [anon_sym_symbol] = ACTIONS(1763), - [anon_sym_object] = ACTIONS(1763), - [anon_sym_abstract] = ACTIONS(1763), - [anon_sym_satisfies] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym__automatic_semicolon] = ACTIONS(1769), - [sym__ternary_qmark] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [anon_sym_export] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_default] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_namespace] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(1777), + [anon_sym_import] = ACTIONS(1777), + [anon_sym_with] = ACTIONS(1777), + [anon_sym_var] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1777), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_switch] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1777), + [anon_sym_in] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_do] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_debugger] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_throw] = ACTIONS(1777), + [anon_sym_case] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_class] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_function] = ACTIONS(1777), + [anon_sym_QMARK_DOT] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1777), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [anon_sym_GT_GT] = ACTIONS(1779), + [anon_sym_GT_GT_GT] = ACTIONS(1781), + [anon_sym_LT_LT] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_SLASH] = ACTIONS(1777), + [anon_sym_PERCENT] = ACTIONS(1781), + [anon_sym_STAR_STAR] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_LT_EQ] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1781), + [anon_sym_GT_EQ] = ACTIONS(1781), + [anon_sym_QMARK_QMARK] = ACTIONS(1781), + [anon_sym_instanceof] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1777), + [anon_sym_delete] = ACTIONS(1777), + [anon_sym_PLUS_PLUS] = ACTIONS(1775), + [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1775), + [sym_number] = ACTIONS(1775), + [sym_private_property_identifier] = ACTIONS(1775), + [sym_this] = ACTIONS(1777), + [sym_super] = ACTIONS(1777), + [sym_true] = ACTIONS(1777), + [sym_false] = ACTIONS(1777), + [sym_null] = ACTIONS(1777), + [sym_undefined] = ACTIONS(1777), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1777), + [anon_sym_readonly] = ACTIONS(1777), + [anon_sym_get] = ACTIONS(1777), + [anon_sym_set] = ACTIONS(1777), + [anon_sym_declare] = ACTIONS(1777), + [anon_sym_public] = ACTIONS(1777), + [anon_sym_private] = ACTIONS(1777), + [anon_sym_protected] = ACTIONS(1777), + [anon_sym_override] = ACTIONS(1777), + [anon_sym_module] = ACTIONS(1777), + [anon_sym_any] = ACTIONS(1777), + [anon_sym_number] = ACTIONS(1777), + [anon_sym_boolean] = ACTIONS(1777), + [anon_sym_string] = ACTIONS(1777), + [anon_sym_symbol] = ACTIONS(1777), + [anon_sym_object] = ACTIONS(1777), + [anon_sym_abstract] = ACTIONS(1777), + [anon_sym_satisfies] = ACTIONS(1779), + [anon_sym_interface] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [sym__automatic_semicolon] = ACTIONS(1783), + [sym__ternary_qmark] = ACTIONS(1781), [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5183), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5183), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5183), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1370), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_mapped_type_clause] = STATE(5583), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(1771), - [anon_sym_export] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1773), - [anon_sym_readonly] = ACTIONS(1773), - [anon_sym_get] = ACTIONS(1773), - [anon_sym_set] = ACTIONS(1773), - [anon_sym_declare] = ACTIONS(1773), - [anon_sym_public] = ACTIONS(1773), - [anon_sym_private] = ACTIONS(1773), - [anon_sym_protected] = ACTIONS(1773), - [anon_sym_override] = ACTIONS(1773), - [anon_sym_module] = ACTIONS(1773), - [anon_sym_any] = ACTIONS(1773), - [anon_sym_number] = ACTIONS(1773), - [anon_sym_boolean] = ACTIONS(1773), - [anon_sym_string] = ACTIONS(1773), - [anon_sym_symbol] = ACTIONS(1773), - [anon_sym_object] = ACTIONS(1773), - [sym_html_comment] = ACTIONS(5), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_namespace] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_as] = ACTIONS(1789), + [anon_sym_namespace] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1793), - [anon_sym_import] = ACTIONS(1793), - [anon_sym_with] = ACTIONS(1793), - [anon_sym_var] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_switch] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(1793), - [anon_sym_in] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_debugger] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_throw] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1793), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_function] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_debugger] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1789), + [anon_sym_DOT] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1787), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1793), + [anon_sym_GT_GT] = ACTIONS(1789), [anon_sym_GT_GT_GT] = ACTIONS(1791), [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1789), [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1787), [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1789), [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ] = ACTIONS(1789), [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_void] = ACTIONS(1793), - [anon_sym_delete] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1791), - [sym_number] = ACTIONS(1791), - [sym_private_property_identifier] = ACTIONS(1791), - [sym_this] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_true] = ACTIONS(1793), - [sym_false] = ACTIONS(1793), - [sym_null] = ACTIONS(1793), - [sym_undefined] = ACTIONS(1793), - [anon_sym_AT] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_readonly] = ACTIONS(1793), - [anon_sym_get] = ACTIONS(1793), - [anon_sym_set] = ACTIONS(1793), - [anon_sym_declare] = ACTIONS(1793), - [anon_sym_public] = ACTIONS(1793), - [anon_sym_private] = ACTIONS(1793), - [anon_sym_protected] = ACTIONS(1793), - [anon_sym_override] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_any] = ACTIONS(1793), - [anon_sym_number] = ACTIONS(1793), - [anon_sym_boolean] = ACTIONS(1793), - [anon_sym_string] = ACTIONS(1793), - [anon_sym_symbol] = ACTIONS(1793), - [anon_sym_object] = ACTIONS(1793), - [anon_sym_abstract] = ACTIONS(1793), - [anon_sym_satisfies] = ACTIONS(1793), - [anon_sym_interface] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [sym__automatic_semicolon] = ACTIONS(1791), + [anon_sym_instanceof] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_void] = ACTIONS(1787), + [anon_sym_delete] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1785), + [sym_number] = ACTIONS(1785), + [sym_private_property_identifier] = ACTIONS(1785), + [sym_this] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_get] = ACTIONS(1787), + [anon_sym_set] = ACTIONS(1787), + [anon_sym_declare] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_protected] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_any] = ACTIONS(1787), + [anon_sym_number] = ACTIONS(1787), + [anon_sym_boolean] = ACTIONS(1787), + [anon_sym_string] = ACTIONS(1787), + [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_object] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_satisfies] = ACTIONS(1789), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [sym__automatic_semicolon] = ACTIONS(1793), [sym__ternary_qmark] = ACTIONS(1791), [sym_html_comment] = ACTIONS(5), }, - [240] = { + [239] = { [ts_builtin_sym_end] = ACTIONS(1795), [sym_identifier] = ACTIONS(1797), [anon_sym_export] = ACTIONS(1797), @@ -53995,7 +53945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1801), [sym_html_comment] = ACTIONS(5), }, - [241] = { + [240] = { [ts_builtin_sym_end] = ACTIONS(1805), [sym_identifier] = ACTIONS(1807), [anon_sym_export] = ACTIONS(1807), @@ -54105,7 +54055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1805), [sym_html_comment] = ACTIONS(5), }, - [242] = { + [241] = { [ts_builtin_sym_end] = ACTIONS(1809), [sym_identifier] = ACTIONS(1811), [anon_sym_export] = ACTIONS(1811), @@ -54211,241 +54161,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(1811), [anon_sym_interface] = ACTIONS(1811), [anon_sym_enum] = ACTIONS(1811), - [sym__automatic_semicolon] = ACTIONS(1809), + [sym__automatic_semicolon] = ACTIONS(1813), [sym__ternary_qmark] = ACTIONS(1809), [sym_html_comment] = ACTIONS(5), }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_as] = ACTIONS(1817), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_typeof] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_debugger] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_function] = ACTIONS(1815), - [anon_sym_QMARK_DOT] = ACTIONS(1819), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_PERCENT] = ACTIONS(1819), - [anon_sym_STAR_STAR] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_LT_EQ] = ACTIONS(1819), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1819), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1819), - [anon_sym_GT_EQ] = ACTIONS(1819), - [anon_sym_QMARK_QMARK] = ACTIONS(1819), - [anon_sym_instanceof] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1813), - [sym_number] = ACTIONS(1813), - [sym_private_property_identifier] = ACTIONS(1813), - [sym_this] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_undefined] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_readonly] = ACTIONS(1815), - [anon_sym_get] = ACTIONS(1815), - [anon_sym_set] = ACTIONS(1815), - [anon_sym_declare] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [anon_sym_override] = ACTIONS(1815), - [anon_sym_module] = ACTIONS(1815), - [anon_sym_any] = ACTIONS(1815), - [anon_sym_number] = ACTIONS(1815), - [anon_sym_boolean] = ACTIONS(1815), - [anon_sym_string] = ACTIONS(1815), - [anon_sym_symbol] = ACTIONS(1815), - [anon_sym_object] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_satisfies] = ACTIONS(1817), - [anon_sym_interface] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [sym__automatic_semicolon] = ACTIONS(1821), - [sym__ternary_qmark] = ACTIONS(1819), + [242] = { + [ts_builtin_sym_end] = ACTIONS(1815), + [sym_identifier] = ACTIONS(1817), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1819), + [anon_sym_namespace] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1815), + [anon_sym_typeof] = ACTIONS(1817), + [anon_sym_import] = ACTIONS(1817), + [anon_sym_with] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_switch] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_in] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_debugger] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1817), + [anon_sym_case] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_GT] = ACTIONS(1819), + [anon_sym_DOT] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1815), + [anon_sym_SQUOTE] = ACTIONS(1815), + [anon_sym_class] = ACTIONS(1817), + [anon_sym_async] = ACTIONS(1817), + [anon_sym_function] = ACTIONS(1817), + [anon_sym_QMARK_DOT] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1817), + [anon_sym_AMP_AMP] = ACTIONS(1821), + [anon_sym_PIPE_PIPE] = ACTIONS(1821), + [anon_sym_GT_GT] = ACTIONS(1819), + [anon_sym_GT_GT_GT] = ACTIONS(1821), + [anon_sym_LT_LT] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_SLASH] = ACTIONS(1817), + [anon_sym_PERCENT] = ACTIONS(1821), + [anon_sym_STAR_STAR] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1817), + [anon_sym_LT_EQ] = ACTIONS(1821), + [anon_sym_EQ_EQ] = ACTIONS(1819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1821), + [anon_sym_BANG_EQ] = ACTIONS(1819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1821), + [anon_sym_GT_EQ] = ACTIONS(1821), + [anon_sym_QMARK_QMARK] = ACTIONS(1821), + [anon_sym_instanceof] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(1817), + [anon_sym_delete] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1815), + [anon_sym_DASH_DASH] = ACTIONS(1815), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1815), + [sym_number] = ACTIONS(1815), + [sym_private_property_identifier] = ACTIONS(1815), + [sym_this] = ACTIONS(1817), + [sym_super] = ACTIONS(1817), + [sym_true] = ACTIONS(1817), + [sym_false] = ACTIONS(1817), + [sym_null] = ACTIONS(1817), + [sym_undefined] = ACTIONS(1817), + [anon_sym_AT] = ACTIONS(1815), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(1817), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_any] = ACTIONS(1817), + [anon_sym_number] = ACTIONS(1817), + [anon_sym_boolean] = ACTIONS(1817), + [anon_sym_string] = ACTIONS(1817), + [anon_sym_symbol] = ACTIONS(1817), + [anon_sym_object] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1817), + [anon_sym_satisfies] = ACTIONS(1819), + [anon_sym_interface] = ACTIONS(1817), + [anon_sym_enum] = ACTIONS(1817), + [sym__automatic_semicolon] = ACTIONS(1823), + [sym__ternary_qmark] = ACTIONS(1821), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_export] = ACTIONS(1825), + [243] = { + [ts_builtin_sym_end] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1827), + [anon_sym_export] = ACTIONS(1827), [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), [anon_sym_as] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_typeof] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_with] = ACTIONS(1825), - [anon_sym_var] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_switch] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_typeof] = ACTIONS(1827), + [anon_sym_import] = ACTIONS(1827), + [anon_sym_with] = ACTIONS(1827), + [anon_sym_var] = ACTIONS(1827), + [anon_sym_let] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_else] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_switch] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1827), [anon_sym_in] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_do] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_debugger] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_throw] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_do] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_debugger] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_throw] = ACTIONS(1827), + [anon_sym_case] = ACTIONS(1827), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1825), [anon_sym_GT] = ACTIONS(1827), [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [anon_sym_SQUOTE] = ACTIONS(1825), + [anon_sym_class] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_function] = ACTIONS(1827), + [anon_sym_QMARK_DOT] = ACTIONS(1825), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_using] = ACTIONS(1827), + [anon_sym_AMP_AMP] = ACTIONS(1825), + [anon_sym_PIPE_PIPE] = ACTIONS(1825), + [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_GT_GT_GT] = ACTIONS(1825), + [anon_sym_LT_LT] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_CARET] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_SLASH] = ACTIONS(1827), + [anon_sym_PERCENT] = ACTIONS(1825), + [anon_sym_STAR_STAR] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_EQ] = ACTIONS(1825), + [anon_sym_EQ_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1825), + [anon_sym_BANG_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1825), + [anon_sym_GT_EQ] = ACTIONS(1825), + [anon_sym_QMARK_QMARK] = ACTIONS(1825), + [anon_sym_instanceof] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1827), + [anon_sym_delete] = ACTIONS(1827), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1825), + [sym_number] = ACTIONS(1825), + [sym_private_property_identifier] = ACTIONS(1825), + [sym_this] = ACTIONS(1827), + [sym_super] = ACTIONS(1827), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_null] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_readonly] = ACTIONS(1827), + [anon_sym_get] = ACTIONS(1827), + [anon_sym_set] = ACTIONS(1827), + [anon_sym_declare] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_private] = ACTIONS(1827), + [anon_sym_protected] = ACTIONS(1827), + [anon_sym_override] = ACTIONS(1827), + [anon_sym_module] = ACTIONS(1827), + [anon_sym_any] = ACTIONS(1827), + [anon_sym_number] = ACTIONS(1827), + [anon_sym_boolean] = ACTIONS(1827), + [anon_sym_string] = ACTIONS(1827), + [anon_sym_symbol] = ACTIONS(1827), + [anon_sym_object] = ACTIONS(1827), + [anon_sym_abstract] = ACTIONS(1827), + [anon_sym_satisfies] = ACTIONS(1827), + [anon_sym_interface] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [sym__automatic_semicolon] = ACTIONS(1825), + [sym__ternary_qmark] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), + }, + [244] = { + [ts_builtin_sym_end] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1831), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_as] = ACTIONS(1831), + [anon_sym_namespace] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_COMMA] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(1831), + [anon_sym_with] = ACTIONS(1831), + [anon_sym_var] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_switch] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_await] = ACTIONS(1831), + [anon_sym_in] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_debugger] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_throw] = ACTIONS(1831), + [anon_sym_case] = ACTIONS(1831), + [anon_sym_yield] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1829), + [anon_sym_class] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_function] = ACTIONS(1831), [anon_sym_QMARK_DOT] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1825), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_using] = ACTIONS(1831), [anon_sym_AMP_AMP] = ACTIONS(1829), [anon_sym_PIPE_PIPE] = ACTIONS(1829), - [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1831), [anon_sym_GT_GT_GT] = ACTIONS(1829), [anon_sym_LT_LT] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1831), [anon_sym_CARET] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1831), [anon_sym_PERCENT] = ACTIONS(1829), [anon_sym_STAR_STAR] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1831), [anon_sym_LT_EQ] = ACTIONS(1829), - [anon_sym_EQ_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1831), [anon_sym_EQ_EQ_EQ] = ACTIONS(1829), - [anon_sym_BANG_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ] = ACTIONS(1831), [anon_sym_BANG_EQ_EQ] = ACTIONS(1829), [anon_sym_GT_EQ] = ACTIONS(1829), [anon_sym_QMARK_QMARK] = ACTIONS(1829), - [anon_sym_instanceof] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_delete] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [sym_private_property_identifier] = ACTIONS(1823), - [sym_this] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_true] = ACTIONS(1825), - [sym_false] = ACTIONS(1825), - [sym_null] = ACTIONS(1825), - [sym_undefined] = ACTIONS(1825), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_get] = ACTIONS(1825), - [anon_sym_set] = ACTIONS(1825), - [anon_sym_declare] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_module] = ACTIONS(1825), - [anon_sym_any] = ACTIONS(1825), - [anon_sym_number] = ACTIONS(1825), - [anon_sym_boolean] = ACTIONS(1825), - [anon_sym_string] = ACTIONS(1825), - [anon_sym_symbol] = ACTIONS(1825), - [anon_sym_object] = ACTIONS(1825), - [anon_sym_abstract] = ACTIONS(1825), - [anon_sym_satisfies] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [sym__automatic_semicolon] = ACTIONS(1831), + [anon_sym_instanceof] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1829), + [sym_number] = ACTIONS(1829), + [sym_private_property_identifier] = ACTIONS(1829), + [sym_this] = ACTIONS(1831), + [sym_super] = ACTIONS(1831), + [sym_true] = ACTIONS(1831), + [sym_false] = ACTIONS(1831), + [sym_null] = ACTIONS(1831), + [sym_undefined] = ACTIONS(1831), + [anon_sym_AT] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_readonly] = ACTIONS(1831), + [anon_sym_get] = ACTIONS(1831), + [anon_sym_set] = ACTIONS(1831), + [anon_sym_declare] = ACTIONS(1831), + [anon_sym_public] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1831), + [anon_sym_protected] = ACTIONS(1831), + [anon_sym_override] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_any] = ACTIONS(1831), + [anon_sym_number] = ACTIONS(1831), + [anon_sym_boolean] = ACTIONS(1831), + [anon_sym_string] = ACTIONS(1831), + [anon_sym_symbol] = ACTIONS(1831), + [anon_sym_object] = ACTIONS(1831), + [anon_sym_abstract] = ACTIONS(1831), + [anon_sym_satisfies] = ACTIONS(1831), + [anon_sym_interface] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [sym__automatic_semicolon] = ACTIONS(1829), [sym__ternary_qmark] = ACTIONS(1829), [sym_html_comment] = ACTIONS(5), }, [245] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_extends] = ACTIONS(1687), + [anon_sym_PIPE_RBRACE] = ACTIONS(1685), + [sym__automatic_semicolon] = ACTIONS(1685), + [sym_html_comment] = ACTIONS(5), + }, + [246] = { [ts_builtin_sym_end] = ACTIONS(1833), [sym_identifier] = ACTIONS(1835), [anon_sym_export] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1837), [anon_sym_default] = ACTIONS(1835), [anon_sym_type] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1837), [anon_sym_namespace] = ACTIONS(1835), [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_COMMA] = ACTIONS(1839), [anon_sym_RBRACE] = ACTIONS(1833), [anon_sym_typeof] = ACTIONS(1835), [anon_sym_import] = ACTIONS(1835), @@ -54461,7 +54631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1833), [anon_sym_SEMI] = ACTIONS(1833), [anon_sym_await] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), + [anon_sym_in] = ACTIONS(1837), [anon_sym_while] = ACTIONS(1835), [anon_sym_do] = ACTIONS(1835), [anon_sym_try] = ACTIONS(1835), @@ -54473,38 +54643,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1835), [anon_sym_yield] = ACTIONS(1835), [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), [anon_sym_DQUOTE] = ACTIONS(1833), [anon_sym_SQUOTE] = ACTIONS(1833), [anon_sym_class] = ACTIONS(1835), [anon_sym_async] = ACTIONS(1835), [anon_sym_function] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(1833), + [anon_sym_QMARK_DOT] = ACTIONS(1839), [anon_sym_new] = ACTIONS(1835), [anon_sym_using] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_PIPE_PIPE] = ACTIONS(1833), - [anon_sym_GT_GT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_AMP_AMP] = ACTIONS(1839), + [anon_sym_PIPE_PIPE] = ACTIONS(1839), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1839), + [anon_sym_LT_LT] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1837), [anon_sym_PLUS] = ACTIONS(1835), [anon_sym_DASH] = ACTIONS(1835), [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1833), - [anon_sym_STAR_STAR] = ACTIONS(1833), + [anon_sym_PERCENT] = ACTIONS(1839), + [anon_sym_STAR_STAR] = ACTIONS(1839), [anon_sym_LT] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1833), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1833), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_QMARK_QMARK] = ACTIONS(1833), - [anon_sym_instanceof] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), + [anon_sym_GT_EQ] = ACTIONS(1839), + [anon_sym_QMARK_QMARK] = ACTIONS(1839), + [anon_sym_instanceof] = ACTIONS(1837), [anon_sym_TILDE] = ACTIONS(1833), [anon_sym_void] = ACTIONS(1835), [anon_sym_delete] = ACTIONS(1835), @@ -54538,244 +54708,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1835), [anon_sym_object] = ACTIONS(1835), [anon_sym_abstract] = ACTIONS(1835), - [anon_sym_satisfies] = ACTIONS(1835), + [anon_sym_satisfies] = ACTIONS(1837), [anon_sym_interface] = ACTIONS(1835), [anon_sym_enum] = ACTIONS(1835), - [sym__automatic_semicolon] = ACTIONS(1833), - [sym__ternary_qmark] = ACTIONS(1833), - [sym_html_comment] = ACTIONS(5), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_as] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_DOT] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_QMARK_DOT] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_GT_GT_GT] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_PERCENT] = ACTIONS(1659), - [anon_sym_STAR_STAR] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1659), - [anon_sym_EQ_EQ] = ACTIONS(1661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1659), - [anon_sym_BANG_EQ] = ACTIONS(1661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1659), - [anon_sym_GT_EQ] = ACTIONS(1659), - [anon_sym_QMARK_QMARK] = ACTIONS(1659), - [anon_sym_instanceof] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_object] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_satisfies] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [sym__automatic_semicolon] = ACTIONS(1837), - [sym__ternary_qmark] = ACTIONS(1659), - [sym_html_comment] = ACTIONS(5), - }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_namespace] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_var] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_switch] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_in] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_debugger] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_function] = ACTIONS(1841), - [anon_sym_QMARK_DOT] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_GT_GT] = ACTIONS(1841), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1841), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1841), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_QMARK_QMARK] = ACTIONS(1839), - [anon_sym_instanceof] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_delete] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1839), - [sym_number] = ACTIONS(1839), - [sym_private_property_identifier] = ACTIONS(1839), - [sym_this] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_null] = ACTIONS(1841), - [sym_undefined] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(1841), - [anon_sym_abstract] = ACTIONS(1841), - [anon_sym_satisfies] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [sym__automatic_semicolon] = ACTIONS(1839), + [sym__automatic_semicolon] = ACTIONS(1841), [sym__ternary_qmark] = ACTIONS(1839), [sym_html_comment] = ACTIONS(5), }, - [248] = { + [247] = { [ts_builtin_sym_end] = ACTIONS(1843), [sym_identifier] = ACTIONS(1845), [anon_sym_export] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), [anon_sym_default] = ACTIONS(1845), [anon_sym_type] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), + [anon_sym_as] = ACTIONS(1847), [anon_sym_namespace] = ACTIONS(1845), [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1849), [anon_sym_RBRACE] = ACTIONS(1843), [anon_sym_typeof] = ACTIONS(1845), [anon_sym_import] = ACTIONS(1845), @@ -54791,7 +54741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1843), [anon_sym_SEMI] = ACTIONS(1843), [anon_sym_await] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1845), + [anon_sym_in] = ACTIONS(1847), [anon_sym_while] = ACTIONS(1845), [anon_sym_do] = ACTIONS(1845), [anon_sym_try] = ACTIONS(1845), @@ -54803,38 +54753,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1845), [anon_sym_yield] = ACTIONS(1845), [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1847), [anon_sym_DQUOTE] = ACTIONS(1843), [anon_sym_SQUOTE] = ACTIONS(1843), [anon_sym_class] = ACTIONS(1845), [anon_sym_async] = ACTIONS(1845), [anon_sym_function] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1843), + [anon_sym_QMARK_DOT] = ACTIONS(1849), [anon_sym_new] = ACTIONS(1845), [anon_sym_using] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_GT_GT_GT] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1847), [anon_sym_PLUS] = ACTIONS(1845), [anon_sym_DASH] = ACTIONS(1845), [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1849), + [anon_sym_STAR_STAR] = ACTIONS(1849), [anon_sym_LT] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_QMARK_QMARK] = ACTIONS(1843), - [anon_sym_instanceof] = ACTIONS(1845), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_QMARK_QMARK] = ACTIONS(1849), + [anon_sym_instanceof] = ACTIONS(1847), [anon_sym_TILDE] = ACTIONS(1843), [anon_sym_void] = ACTIONS(1845), [anon_sym_delete] = ACTIONS(1845), @@ -54868,14 +54818,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1845), [anon_sym_object] = ACTIONS(1845), [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_satisfies] = ACTIONS(1845), + [anon_sym_satisfies] = ACTIONS(1847), [anon_sym_interface] = ACTIONS(1845), [anon_sym_enum] = ACTIONS(1845), - [sym__automatic_semicolon] = ACTIONS(1843), - [sym__ternary_qmark] = ACTIONS(1843), + [sym__automatic_semicolon] = ACTIONS(1851), + [sym__ternary_qmark] = ACTIONS(1849), [sym_html_comment] = ACTIONS(5), }, - [249] = { + [248] = { [ts_builtin_sym_end] = ACTIONS(1809), [sym_identifier] = ACTIONS(1811), [anon_sym_export] = ACTIONS(1811), @@ -54981,1064 +54931,738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(1811), [anon_sym_interface] = ACTIONS(1811), [anon_sym_enum] = ACTIONS(1811), - [sym__automatic_semicolon] = ACTIONS(1847), + [sym__automatic_semicolon] = ACTIONS(1809), [sym__ternary_qmark] = ACTIONS(1809), [sym_html_comment] = ACTIONS(5), }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1855), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_namespace] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_typeof] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_with] = ACTIONS(1855), + [anon_sym_var] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_await] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_debugger] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_case] = ACTIONS(1855), + [anon_sym_yield] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1853), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_function] = ACTIONS(1855), + [anon_sym_QMARK_DOT] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_using] = ACTIONS(1855), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_STAR_STAR] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_QMARK_QMARK] = ACTIONS(1853), + [anon_sym_instanceof] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_void] = ACTIONS(1855), + [anon_sym_delete] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1853), + [sym_number] = ACTIONS(1853), + [sym_private_property_identifier] = ACTIONS(1853), + [sym_this] = ACTIONS(1855), + [sym_super] = ACTIONS(1855), + [sym_true] = ACTIONS(1855), + [sym_false] = ACTIONS(1855), + [sym_null] = ACTIONS(1855), + [sym_undefined] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1853), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_readonly] = ACTIONS(1855), + [anon_sym_get] = ACTIONS(1855), + [anon_sym_set] = ACTIONS(1855), + [anon_sym_declare] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_override] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_any] = ACTIONS(1855), + [anon_sym_number] = ACTIONS(1855), + [anon_sym_boolean] = ACTIONS(1855), + [anon_sym_string] = ACTIONS(1855), + [anon_sym_symbol] = ACTIONS(1855), + [anon_sym_object] = ACTIONS(1855), + [anon_sym_abstract] = ACTIONS(1855), + [anon_sym_satisfies] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [sym__automatic_semicolon] = ACTIONS(1853), + [sym__ternary_qmark] = ACTIONS(1853), + [sym_html_comment] = ACTIONS(5), + }, [250] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_typeof] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(1851), - [anon_sym_with] = ACTIONS(1851), - [anon_sym_var] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_debugger] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_function] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1853), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_QMARK_QMARK] = ACTIONS(1855), - [anon_sym_instanceof] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_void] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1849), - [sym_number] = ACTIONS(1849), - [sym_private_property_identifier] = ACTIONS(1849), - [sym_this] = ACTIONS(1851), - [sym_super] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_readonly] = ACTIONS(1851), - [anon_sym_get] = ACTIONS(1851), - [anon_sym_set] = ACTIONS(1851), - [anon_sym_declare] = ACTIONS(1851), - [anon_sym_public] = ACTIONS(1851), - [anon_sym_private] = ACTIONS(1851), - [anon_sym_protected] = ACTIONS(1851), - [anon_sym_override] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_any] = ACTIONS(1851), - [anon_sym_number] = ACTIONS(1851), - [anon_sym_boolean] = ACTIONS(1851), - [anon_sym_string] = ACTIONS(1851), - [anon_sym_symbol] = ACTIONS(1851), - [anon_sym_object] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1851), - [anon_sym_satisfies] = ACTIONS(1853), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_typeof] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_debugger] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_QMARK_DOT] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_STAR_STAR] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_instanceof] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_delete] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1857), + [sym_number] = ACTIONS(1857), + [sym_private_property_identifier] = ACTIONS(1857), + [sym_this] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [sym_null] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_satisfies] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), [sym__automatic_semicolon] = ACTIONS(1857), - [sym__ternary_qmark] = ACTIONS(1855), + [sym__ternary_qmark] = ACTIONS(1857), [sym_html_comment] = ACTIONS(5), }, [251] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_GT] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_using] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_PIPE_PIPE] = ACTIONS(1865), - [anon_sym_GT_GT] = ACTIONS(1863), - [anon_sym_GT_GT_GT] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_STAR_STAR] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_QMARK_QMARK] = ACTIONS(1865), - [anon_sym_instanceof] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_private_property_identifier] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_override] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_object] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_satisfies] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym__automatic_semicolon] = ACTIONS(1867), - [sym__ternary_qmark] = ACTIONS(1865), + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_typeof] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_debugger] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_DOT] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_QMARK_DOT] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_GT_GT] = ACTIONS(1865), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_QMARK_QMARK] = ACTIONS(1867), + [anon_sym_instanceof] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_void] = ACTIONS(1863), + [anon_sym_delete] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1861), + [sym_number] = ACTIONS(1861), + [sym_private_property_identifier] = ACTIONS(1861), + [sym_this] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [sym_undefined] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_satisfies] = ACTIONS(1865), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym__automatic_semicolon] = ACTIONS(1869), + [sym__ternary_qmark] = ACTIONS(1867), [sym_html_comment] = ACTIONS(5), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_QMARK_DOT] = ACTIONS(1869), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_PIPE_PIPE] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_GT_GT_GT] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_PERCENT] = ACTIONS(1869), - [anon_sym_STAR_STAR] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_LT_EQ] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1871), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1869), - [anon_sym_BANG_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1869), - [anon_sym_QMARK_QMARK] = ACTIONS(1869), - [anon_sym_instanceof] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_satisfies] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [sym__automatic_semicolon] = ACTIONS(1869), - [sym__ternary_qmark] = ACTIONS(1869), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_as] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_in] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_QMARK_DOT] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_GT_GT] = ACTIONS(1873), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_QMARK_QMARK] = ACTIONS(1871), + [anon_sym_instanceof] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_satisfies] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym__automatic_semicolon] = ACTIONS(1871), + [sym__ternary_qmark] = ACTIONS(1871), [sym_html_comment] = ACTIONS(5), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_typeof] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_with] = ACTIONS(1875), - [anon_sym_var] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_switch] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_await] = ACTIONS(1875), - [anon_sym_in] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_debugger] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_throw] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1877), - [anon_sym_DOT] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1875), - [anon_sym_async] = ACTIONS(1875), - [anon_sym_function] = ACTIONS(1875), - [anon_sym_QMARK_DOT] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_using] = ACTIONS(1875), - [anon_sym_AMP_AMP] = ACTIONS(1879), - [anon_sym_PIPE_PIPE] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1877), - [anon_sym_GT_GT_GT] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_STAR_STAR] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ] = ACTIONS(1877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1879), - [anon_sym_QMARK_QMARK] = ACTIONS(1879), - [anon_sym_instanceof] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_delete] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1873), - [sym_number] = ACTIONS(1873), - [sym_private_property_identifier] = ACTIONS(1873), - [sym_this] = ACTIONS(1875), - [sym_super] = ACTIONS(1875), - [sym_true] = ACTIONS(1875), - [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), - [sym_undefined] = ACTIONS(1875), - [anon_sym_AT] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_readonly] = ACTIONS(1875), - [anon_sym_get] = ACTIONS(1875), - [anon_sym_set] = ACTIONS(1875), - [anon_sym_declare] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [anon_sym_override] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1875), - [anon_sym_number] = ACTIONS(1875), - [anon_sym_boolean] = ACTIONS(1875), - [anon_sym_string] = ACTIONS(1875), - [anon_sym_symbol] = ACTIONS(1875), - [anon_sym_object] = ACTIONS(1875), - [anon_sym_abstract] = ACTIONS(1875), - [anon_sym_satisfies] = ACTIONS(1877), - [anon_sym_interface] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [sym__automatic_semicolon] = ACTIONS(1879), - [sym__ternary_qmark] = ACTIONS(1879), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_PIPE_PIPE] = ACTIONS(1653), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1653), + [anon_sym_LT_LT] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1653), + [anon_sym_STAR_STAR] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_QMARK_QMARK] = ACTIONS(1653), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_satisfies] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1875), + [sym__ternary_qmark] = ACTIONS(1653), [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_extends] = ACTIONS(1685), - [anon_sym_PIPE_RBRACE] = ACTIONS(1683), - [sym__automatic_semicolon] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_typeof] = ACTIONS(1879), + [anon_sym_import] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_var] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_await] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_debugger] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_throw] = ACTIONS(1879), + [anon_sym_case] = ACTIONS(1879), + [anon_sym_yield] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_async] = ACTIONS(1879), + [anon_sym_function] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1879), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_QMARK_QMARK] = ACTIONS(1877), + [anon_sym_instanceof] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_void] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1877), + [sym_number] = ACTIONS(1877), + [sym_private_property_identifier] = ACTIONS(1877), + [sym_this] = ACTIONS(1879), + [sym_super] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_null] = ACTIONS(1879), + [sym_undefined] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_readonly] = ACTIONS(1879), + [anon_sym_get] = ACTIONS(1879), + [anon_sym_set] = ACTIONS(1879), + [anon_sym_declare] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_private] = ACTIONS(1879), + [anon_sym_protected] = ACTIONS(1879), + [anon_sym_override] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_any] = ACTIONS(1879), + [anon_sym_number] = ACTIONS(1879), + [anon_sym_boolean] = ACTIONS(1879), + [anon_sym_string] = ACTIONS(1879), + [anon_sym_symbol] = ACTIONS(1879), + [anon_sym_object] = ACTIONS(1879), + [anon_sym_abstract] = ACTIONS(1879), + [anon_sym_satisfies] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [sym__automatic_semicolon] = ACTIONS(1877), + [sym__ternary_qmark] = ACTIONS(1877), [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_import] = STATE(3644), - [sym_variable_declaration] = STATE(309), - [sym_lexical_declaration] = STATE(309), - [sym_empty_statement] = STATE(309), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2278), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4935), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4935), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4935), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5756), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1354), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1881), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_readonly] = ACTIONS(1883), - [anon_sym_get] = ACTIONS(1883), - [anon_sym_set] = ACTIONS(1883), - [anon_sym_declare] = ACTIONS(1883), - [anon_sym_public] = ACTIONS(1883), - [anon_sym_private] = ACTIONS(1883), - [anon_sym_protected] = ACTIONS(1883), - [anon_sym_override] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_any] = ACTIONS(1883), - [anon_sym_number] = ACTIONS(1883), - [anon_sym_boolean] = ACTIONS(1883), - [anon_sym_string] = ACTIONS(1883), - [anon_sym_symbol] = ACTIONS(1883), - [anon_sym_object] = ACTIONS(1883), - [sym_html_comment] = ACTIONS(5), - }, - [256] = { - [sym_import] = STATE(3644), - [sym_variable_declaration] = STATE(315), - [sym_lexical_declaration] = STATE(315), - [sym_empty_statement] = STATE(315), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4935), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4935), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4935), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5948), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1354), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1881), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_readonly] = ACTIONS(1883), - [anon_sym_get] = ACTIONS(1883), - [anon_sym_set] = ACTIONS(1883), - [anon_sym_declare] = ACTIONS(1883), - [anon_sym_public] = ACTIONS(1883), - [anon_sym_private] = ACTIONS(1883), - [anon_sym_protected] = ACTIONS(1883), - [anon_sym_override] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_any] = ACTIONS(1883), - [anon_sym_number] = ACTIONS(1883), - [anon_sym_boolean] = ACTIONS(1883), - [anon_sym_string] = ACTIONS(1883), - [anon_sym_symbol] = ACTIONS(1883), - [anon_sym_object] = ACTIONS(1883), - [sym_html_comment] = ACTIONS(5), - }, - [257] = { - [sym_import] = STATE(3644), - [sym_variable_declaration] = STATE(306), - [sym_lexical_declaration] = STATE(306), - [sym_empty_statement] = STATE(306), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4935), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4935), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4935), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5977), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1354), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1881), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_readonly] = ACTIONS(1883), - [anon_sym_get] = ACTIONS(1883), - [anon_sym_set] = ACTIONS(1883), - [anon_sym_declare] = ACTIONS(1883), - [anon_sym_public] = ACTIONS(1883), - [anon_sym_private] = ACTIONS(1883), - [anon_sym_protected] = ACTIONS(1883), - [anon_sym_override] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_any] = ACTIONS(1883), - [anon_sym_number] = ACTIONS(1883), - [anon_sym_boolean] = ACTIONS(1883), - [anon_sym_string] = ACTIONS(1883), - [anon_sym_symbol] = ACTIONS(1883), - [anon_sym_object] = ACTIONS(1883), - [sym_html_comment] = ACTIONS(5), - }, - [258] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5183), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5183), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5183), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1370), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_namespace] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_readonly] = ACTIONS(1905), - [anon_sym_get] = ACTIONS(1905), - [anon_sym_set] = ACTIONS(1905), - [anon_sym_declare] = ACTIONS(1905), - [anon_sym_public] = ACTIONS(1905), - [anon_sym_private] = ACTIONS(1905), - [anon_sym_protected] = ACTIONS(1905), - [anon_sym_override] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_any] = ACTIONS(1905), - [anon_sym_number] = ACTIONS(1905), - [anon_sym_boolean] = ACTIONS(1905), - [anon_sym_string] = ACTIONS(1905), - [anon_sym_symbol] = ACTIONS(1905), - [anon_sym_object] = ACTIONS(1905), - [sym_html_comment] = ACTIONS(5), - }, - [259] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5492), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5139), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5525), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(5169), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(5170), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(1881), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -56052,14 +55676,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -56080,74 +55704,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5492), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5139), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [256] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_assignment_pattern] = STATE(4985), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4590), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_pattern_repeat1] = STATE(4989), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5525), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(5169), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(5170), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(1881), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -56161,14 +55894,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -56189,95 +55922,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [258] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5206), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5206), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1368), + [sym_subscript_expression] = STATE(1368), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5206), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1368), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_pattern_repeat1] = STATE(5160), + [sym_identifier] = ACTIONS(1894), + [anon_sym_export] = ACTIONS(1896), + [anon_sym_type] = ACTIONS(1896), + [anon_sym_namespace] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_RBRACK] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1900), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1902), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_readonly] = ACTIONS(1896), + [anon_sym_get] = ACTIONS(1896), + [anon_sym_set] = ACTIONS(1896), + [anon_sym_declare] = ACTIONS(1896), + [anon_sym_public] = ACTIONS(1896), + [anon_sym_private] = ACTIONS(1896), + [anon_sym_protected] = ACTIONS(1896), + [anon_sym_override] = ACTIONS(1896), + [anon_sym_module] = ACTIONS(1896), + [anon_sym_any] = ACTIONS(1896), + [anon_sym_number] = ACTIONS(1896), + [anon_sym_boolean] = ACTIONS(1896), + [anon_sym_string] = ACTIONS(1896), + [anon_sym_symbol] = ACTIONS(1896), + [anon_sym_object] = ACTIONS(1896), + [sym_html_comment] = ACTIONS(5), + }, + [259] = { + [sym_import] = STATE(3763), + [sym_variable_declaration] = STATE(310), + [sym_lexical_declaration] = STATE(310), + [sym_empty_statement] = STATE(310), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2297), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(4949), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(4949), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(4949), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5715), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1351), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1904), + [anon_sym_export] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_namespace] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1922), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1924), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1906), + [anon_sym_set] = ACTIONS(1906), + [anon_sym_declare] = ACTIONS(1906), + [anon_sym_public] = ACTIONS(1906), + [anon_sym_private] = ACTIONS(1906), + [anon_sym_protected] = ACTIONS(1906), + [anon_sym_override] = ACTIONS(1906), + [anon_sym_module] = ACTIONS(1906), + [anon_sym_any] = ACTIONS(1906), + [anon_sym_number] = ACTIONS(1906), + [anon_sym_boolean] = ACTIONS(1906), + [anon_sym_string] = ACTIONS(1906), + [anon_sym_symbol] = ACTIONS(1906), + [anon_sym_object] = ACTIONS(1906), + [sym_html_comment] = ACTIONS(5), + }, + [260] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_RBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -56295,98 +56246,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(812), [anon_sym_symbol] = ACTIONS(812), [anon_sym_object] = ACTIONS(812), - [anon_sym_extends] = ACTIONS(1685), + [anon_sym_extends] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [261] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_assignment_pattern] = STATE(5143), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4617), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_pattern_repeat1] = STATE(5160), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -56407,183 +56358,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_assignment_pattern] = STATE(4901), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4513), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_pattern_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_RBRACK] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [262] = { + [sym_import] = STATE(3763), + [sym_variable_declaration] = STATE(308), + [sym_lexical_declaration] = STATE(308), + [sym_empty_statement] = STATE(308), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2362), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(4949), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(4949), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(4949), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5978), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1351), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1904), + [anon_sym_export] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_namespace] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1922), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1924), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1906), + [anon_sym_set] = ACTIONS(1906), + [anon_sym_declare] = ACTIONS(1906), + [anon_sym_public] = ACTIONS(1906), + [anon_sym_private] = ACTIONS(1906), + [anon_sym_protected] = ACTIONS(1906), + [anon_sym_override] = ACTIONS(1906), + [anon_sym_module] = ACTIONS(1906), + [anon_sym_any] = ACTIONS(1906), + [anon_sym_number] = ACTIONS(1906), + [anon_sym_boolean] = ACTIONS(1906), + [anon_sym_string] = ACTIONS(1906), + [anon_sym_symbol] = ACTIONS(1906), + [anon_sym_object] = ACTIONS(1906), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5492), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5139), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [263] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5525), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_spread_element] = STATE(5169), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(5170), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1617), [anon_sym_export] = ACTIONS(603), [anon_sym_type] = ACTIONS(603), [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(1881), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(603), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), @@ -56597,14 +56548,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(603), @@ -56625,94 +56576,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, + [264] = { + [sym_import] = STATE(3763), + [sym_variable_declaration] = STATE(313), + [sym_lexical_declaration] = STATE(313), + [sym_empty_statement] = STATE(313), + [sym_parenthesized_expression] = STATE(1351), + [sym_expression] = STATE(2096), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(4949), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(4949), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1351), + [sym_subscript_expression] = STATE(1351), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(4949), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(6007), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1351), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1904), + [anon_sym_export] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_namespace] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1922), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1924), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1906), + [anon_sym_get] = ACTIONS(1906), + [anon_sym_set] = ACTIONS(1906), + [anon_sym_declare] = ACTIONS(1906), + [anon_sym_public] = ACTIONS(1906), + [anon_sym_private] = ACTIONS(1906), + [anon_sym_protected] = ACTIONS(1906), + [anon_sym_override] = ACTIONS(1906), + [anon_sym_module] = ACTIONS(1906), + [anon_sym_any] = ACTIONS(1906), + [anon_sym_number] = ACTIONS(1906), + [anon_sym_boolean] = ACTIONS(1906), + [anon_sym_string] = ACTIONS(1906), + [anon_sym_symbol] = ACTIONS(1906), + [anon_sym_object] = ACTIONS(1906), + [sym_html_comment] = ACTIONS(5), + }, [265] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_assignment_pattern] = STATE(5492), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_assignment_pattern] = STATE(5525), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(5170), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), [anon_sym_COMMA] = ACTIONS(1926), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -56734,51 +56794,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4723), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4724), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(5062), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(5064), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), @@ -56786,19 +56846,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_COMMA] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1930), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), @@ -56812,14 +56872,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -56841,51 +56901,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2161), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4674), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4678), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2187), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(5083), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(5084), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), @@ -56893,19 +56953,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_COMMA] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1934), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), @@ -56919,14 +56979,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -56948,372 +57008,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(1936), - [anon_sym_import] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(1936), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_function] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_void] = ACTIONS(1936), - [anon_sym_delete] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1938), - [sym_private_property_identifier] = ACTIONS(1938), - [sym_this] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [sym_null] = ACTIONS(1936), - [sym_undefined] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_readonly] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(1936), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_override] = ACTIONS(1936), - [anon_sym_module] = ACTIONS(1936), - [anon_sym_any] = ACTIONS(1936), - [anon_sym_number] = ACTIONS(1936), - [anon_sym_boolean] = ACTIONS(1936), - [anon_sym_string] = ACTIONS(1936), - [anon_sym_symbol] = ACTIONS(1936), - [anon_sym_object] = ACTIONS(1936), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [269] = { - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(1940), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(1940), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_function] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_void] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1942), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [sym_this] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [270] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_extends] = ACTIONS(1685), + [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(1687), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2194), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(5167), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5168), + [269] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2234), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(4689), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4690), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), @@ -57321,19 +57167,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_COMMA] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(1936), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), @@ -57347,14 +57193,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -57375,268 +57221,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [273] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [274] = { - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), + [270] = { + [sym_identifier] = ACTIONS(1938), + [anon_sym_export] = ACTIONS(1938), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(1940), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1938), + [anon_sym_import] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(1938), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1940), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_function] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1938), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1938), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -57645,123 +57277,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1938), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_void] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1942), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [sym_this] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), + [anon_sym_TILDE] = ACTIONS(1940), + [anon_sym_void] = ACTIONS(1938), + [anon_sym_delete] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym_number] = ACTIONS(1940), + [sym_private_property_identifier] = ACTIONS(1940), + [sym_this] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_true] = ACTIONS(1938), + [sym_false] = ACTIONS(1938), + [sym_null] = ACTIONS(1938), + [sym_undefined] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_readonly] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_override] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [anon_sym_object] = ACTIONS(1938), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(5139), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [271] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(4714), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4715), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(1942), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), @@ -57775,14 +57407,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -57803,266 +57435,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [276] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [272] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [anon_sym_extends] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), + [anon_sym_extends] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, - [277] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [273] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), - [anon_sym_extends] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [anon_sym_extends] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, - [278] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2204), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4641), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4642), + [274] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2218), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(4792), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4809), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), @@ -58070,19 +57702,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_COMMA] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(1944), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), @@ -58096,14 +57728,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -58124,288 +57756,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [275] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [anon_sym_extends] = ACTIONS(1687), + [sym_html_comment] = ACTIONS(5), + }, + [276] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2067), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [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_extends] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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_extends] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [277] = { + [sym_identifier] = ACTIONS(1938), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1938), + [anon_sym_import] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1938), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_class] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1938), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1938), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1940), + [anon_sym_void] = ACTIONS(1938), + [anon_sym_delete] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym_number] = ACTIONS(1940), + [sym_private_property_identifier] = ACTIONS(1940), + [sym_this] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_true] = ACTIONS(1938), + [sym_false] = ACTIONS(1938), + [sym_null] = ACTIONS(1938), + [sym_undefined] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_readonly] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_override] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [anon_sym_object] = ACTIONS(1938), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [278] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4675), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4243), + [sym_rest_pattern] = STATE(3649), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4676), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1950), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_accessibility_modifier] = STATE(286), + [sym_override_modifier] = STATE(309), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1948), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [279] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_COMMA] = ACTIONS(1685), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -58426,91 +58272,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_extends] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [anon_sym_extends] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2076), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4624), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4640), + [280] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(5169), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_COMMA] = ACTIONS(1952), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1952), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(1952), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), @@ -58524,14 +58370,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -58552,52 +58398,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2212), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4707), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4708), + [281] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(5122), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(5125), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), @@ -58605,19 +58451,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_COMMA] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_RPAREN] = ACTIONS(1954), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), @@ -58631,14 +58477,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -58659,161 +58505,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4364), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(304), - [sym_override_modifier] = STATE(312), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1958), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(1960), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [285] = { - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(1936), + [282] = { + [sym_identifier] = ACTIONS(1956), + [anon_sym_export] = ACTIONS(1956), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1956), [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_namespace] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1958), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(1936), - [anon_sym_import] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_typeof] = ACTIONS(1956), + [anon_sym_import] = ACTIONS(1956), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1958), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1956), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_yield] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1958), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_function] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1956), + [anon_sym_function] = ACTIONS(1956), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_using] = ACTIONS(1956), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1958), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -58822,231 +58561,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1956), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(1956), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_void] = ACTIONS(1936), - [anon_sym_delete] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1938), - [sym_private_property_identifier] = ACTIONS(1938), - [sym_this] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [sym_null] = ACTIONS(1936), - [sym_undefined] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_readonly] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(1936), - [anon_sym_set] = ACTIONS(1936), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_void] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1956), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1958), + [sym_number] = ACTIONS(1958), + [sym_private_property_identifier] = ACTIONS(1958), + [sym_this] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_true] = ACTIONS(1956), + [sym_false] = ACTIONS(1956), + [sym_null] = ACTIONS(1956), + [sym_undefined] = ACTIONS(1956), + [anon_sym_AT] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_readonly] = ACTIONS(1956), + [anon_sym_get] = ACTIONS(1956), + [anon_sym_set] = ACTIONS(1956), [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_override] = ACTIONS(1936), - [anon_sym_module] = ACTIONS(1936), - [anon_sym_any] = ACTIONS(1936), - [anon_sym_number] = ACTIONS(1936), - [anon_sym_boolean] = ACTIONS(1936), - [anon_sym_string] = ACTIONS(1936), - [anon_sym_symbol] = ACTIONS(1936), - [anon_sym_object] = ACTIONS(1936), + [anon_sym_declare] = ACTIONS(1956), + [anon_sym_public] = ACTIONS(1956), + [anon_sym_private] = ACTIONS(1956), + [anon_sym_protected] = ACTIONS(1956), + [anon_sym_override] = ACTIONS(1956), + [anon_sym_module] = ACTIONS(1956), + [anon_sym_any] = ACTIONS(1956), + [anon_sym_number] = ACTIONS(1956), + [anon_sym_boolean] = ACTIONS(1956), + [anon_sym_string] = ACTIONS(1956), + [anon_sym_symbol] = ACTIONS(1956), + [anon_sym_object] = ACTIONS(1956), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(3617), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1962), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [283] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1685), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(1964), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), + [anon_sym_extends] = ACTIONS(1687), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(3607), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1966), + [284] = { + [sym_identifier] = ACTIONS(1956), + [anon_sym_export] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1956), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1956), + [anon_sym_import] = ACTIONS(1956), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1956), + [anon_sym_function] = ACTIONS(1956), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_using] = ACTIONS(1956), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1958), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_SLASH] = ACTIONS(1956), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1956), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_void] = ACTIONS(1956), + [anon_sym_delete] = ACTIONS(1956), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1958), + [sym_number] = ACTIONS(1958), + [sym_private_property_identifier] = ACTIONS(1958), + [sym_this] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_true] = ACTIONS(1956), + [sym_false] = ACTIONS(1956), + [sym_null] = ACTIONS(1956), + [sym_undefined] = ACTIONS(1956), + [anon_sym_AT] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_readonly] = ACTIONS(1956), + [anon_sym_get] = ACTIONS(1956), + [anon_sym_set] = ACTIONS(1956), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(1956), + [anon_sym_public] = ACTIONS(1956), + [anon_sym_private] = ACTIONS(1956), + [anon_sym_protected] = ACTIONS(1956), + [anon_sym_override] = ACTIONS(1956), + [anon_sym_module] = ACTIONS(1956), + [anon_sym_any] = ACTIONS(1956), + [anon_sym_number] = ACTIONS(1956), + [anon_sym_boolean] = ACTIONS(1956), + [anon_sym_string] = ACTIONS(1956), + [anon_sym_symbol] = ACTIONS(1956), + [anon_sym_object] = ACTIONS(1956), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [285] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2233), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(4650), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [aux_sym_array_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(1960), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), [anon_sym_PLUS] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), @@ -59057,14 +58905,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -59085,315 +58933,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(3607), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [286] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4047), + [sym_rest_pattern] = STATE(3649), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1970), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1972), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [289] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1974), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [290] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_assignment_pattern] = STATE(5398), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5047), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_override_modifier] = STATE(314), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1962), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1964), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), + [anon_sym_override] = ACTIONS(808), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -59403,199 +59039,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2176), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(5665), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5665), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [287] = { + [sym_import] = STATE(3557), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1966), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1980), + [288] = { + [sym_import] = STATE(3557), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1970), [anon_sym_export] = ACTIONS(812), [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1982), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1972), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -59615,74 +59251,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [293] = { - [sym_import] = STATE(3607), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [289] = { + [sym_import] = STATE(3588), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2067), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [290] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4092), + [sym_rest_pattern] = STATE(3649), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1984), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_override_modifier] = STATE(316), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [291] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2200), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(5636), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5636), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1980), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), @@ -59693,14 +59541,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1982), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -59721,199 +59569,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [294] = { - [sym_import] = STATE(3607), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1986), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [292] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_assignment_pattern] = STATE(5266), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4691), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [295] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1988), + [293] = { + [sym_import] = STATE(3557), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1984), [anon_sym_export] = ACTIONS(812), [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1972), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -59933,180 +59781,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1990), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [294] = { + [sym_import] = STATE(3557), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1986), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2148), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5736), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [295] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2075), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_spread_element] = STATE(5738), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5738), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1988), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1982), [anon_sym_PLUS] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), @@ -60117,14 +59965,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -60145,496 +59993,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1994), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [296] = { + [sym_import] = STATE(3771), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1990), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1992), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [299] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1996), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [297] = { + [sym_import] = STATE(3584), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1994), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_override_modifier] = STATE(310), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [298] = { + [sym_import] = STATE(3557), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1996), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(808), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [301] = { - [sym_import] = STATE(3684), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(2000), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(1964), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [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), }, - [302] = { - [sym_import] = STATE(3655), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2887), - [sym__type_query_subscript_expression] = STATE(2883), - [sym__type_query_call_expression] = STATE(3099), - [sym__type_query_instantiation_expression] = STATE(3239), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2002), + [299] = { + [sym_import] = STATE(3588), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1998), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -60647,14 +60389,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(2004), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -60675,74 +60417,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5398), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5047), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [300] = { + [sym_import] = STATE(3588), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2000), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), @@ -60753,311 +60495,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1623), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [304] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4299), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_override_modifier] = STATE(308), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2006), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(808), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [305] = { - [sym_import] = STATE(3684), + [301] = { + [sym_import] = STATE(3771), [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), [sym_member_expression] = STATE(1337), [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(2002), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [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(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1964), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(1992), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [306] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(326), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5905), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), + [302] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3647), + [sym_assignment_pattern] = STATE(5266), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3647), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3647), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4691), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), + [sym_html_comment] = ACTIONS(5), + }, + [303] = { + [sym_import] = STATE(3590), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2893), + [sym__type_query_subscript_expression] = STATE(2894), + [sym__type_query_call_expression] = STATE(3090), + [sym__type_query_instantiation_expression] = STATE(3209), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2004), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -61070,14 +60813,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(2006), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -61098,281 +60841,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2027), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5301), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym__automatic_semicolon] = ACTIONS(2012), - [sym_html_comment] = ACTIONS(5), - }, - [308] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4151), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2016), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [309] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(318), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5766), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), + [304] = { + [sym_import] = STATE(3588), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2008), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -61385,14 +60919,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(1972), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -61413,176 +60947,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4252), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [305] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym__type_query_member_expression] = STATE(2842), + [sym__type_query_subscript_expression] = STATE(2843), + [sym__type_query_call_expression] = STATE(2910), + [sym__type_query_instantiation_expression] = STATE(2934), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(796), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(1992), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2018), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(317), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2201), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5752), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [306] = { + [sym_import] = STATE(3763), + [sym_empty_statement] = STATE(326), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2318), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5719), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -61595,14 +61130,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -61623,95 +61158,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4300), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [307] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4092), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2020), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(1978), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), @@ -61728,71 +61263,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [313] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(324), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2300), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5689), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [308] = { + [sym_import] = STATE(3763), + [sym_empty_statement] = STATE(317), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5701), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -61805,14 +61340,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -61833,95 +61368,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [309] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4311), + [sym_rest_pattern] = STATE(3649), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(1998), + [anon_sym_readonly] = ACTIONS(2014), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), @@ -61938,71 +61473,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(322), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2299), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5671), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [310] = { + [sym_import] = STATE(3763), + [sym_empty_statement] = STATE(319), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2078), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5830), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62015,14 +61550,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62043,71 +61578,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(328), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5908), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [311] = { + [sym_import] = STATE(3763), + [sym_empty_statement] = STATE(324), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5814), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62120,14 +61655,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62148,70 +61683,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2289), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5824), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [312] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2038), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5323), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [sym__automatic_semicolon] = ACTIONS(2016), + [sym_html_comment] = ACTIONS(5), + }, + [313] = { + [sym_import] = STATE(3763), + [sym_empty_statement] = STATE(320), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2360), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5935), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62224,14 +61865,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62252,70 +61893,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [314] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5607), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(4298), + [sym_rest_pattern] = STATE(3649), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2018), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2020), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [315] = { + [sym_import] = STATE(3763), + [sym_empty_statement] = STATE(322), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2361), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5938), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62328,14 +62075,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62356,70 +62103,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2287), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [316] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3721), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3721), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5818), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3721), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_pattern] = STATE(3975), + [sym_rest_pattern] = STATE(3649), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(800), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [317] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5765), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2024), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62432,14 +62284,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62460,70 +62312,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2345), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5880), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [318] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2306), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5775), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2026), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62536,14 +62388,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62564,174 +62416,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1415), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5083), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5083), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1415), - [sym_subscript_expression] = STATE(1415), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5083), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1415), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2032), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_namespace] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_var] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2046), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_readonly] = ACTIONS(2034), - [anon_sym_get] = ACTIONS(2034), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_declare] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_protected] = ACTIONS(2034), - [anon_sym_override] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_any] = ACTIONS(2034), - [anon_sym_number] = ACTIONS(2034), - [anon_sym_boolean] = ACTIONS(2034), - [anon_sym_string] = ACTIONS(2034), - [anon_sym_symbol] = ACTIONS(2034), - [anon_sym_object] = ACTIONS(2034), - [sym_html_comment] = ACTIONS(5), - }, - [322] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2230), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5751), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [319] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5613), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2028), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62744,14 +62492,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62772,70 +62520,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [323] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2232), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5800), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [320] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5885), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2030), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62848,14 +62596,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62876,70 +62624,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2233), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5810), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [321] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2355), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5889), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2032), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -62952,14 +62700,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62980,70 +62728,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2235), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5840), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [322] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5891), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2034), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -63056,14 +62804,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63084,70 +62832,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [326] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2340), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5855), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [323] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2358), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5894), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2036), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -63160,14 +62908,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63188,70 +62936,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2342), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5859), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [324] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2307), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5783), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2038), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -63264,14 +63012,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63292,70 +63040,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2343), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5861), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [325] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5817), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2040), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -63368,14 +63116,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63396,70 +63144,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2344), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5864), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [326] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2254), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5829), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2042), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -63472,14 +63220,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63500,275 +63248,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [330] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [327] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2256), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5864), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [331] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [328] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1413), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5112), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5112), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1413), + [sym_subscript_expression] = STATE(1413), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5112), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1413), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_namespace] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2060), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2062), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(2048), + [anon_sym_readonly] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(2048), + [anon_sym_set] = ACTIONS(2048), + [anon_sym_declare] = ACTIONS(2048), + [anon_sym_public] = ACTIONS(2048), + [anon_sym_private] = ACTIONS(2048), + [anon_sym_protected] = ACTIONS(2048), + [anon_sym_override] = ACTIONS(2048), + [anon_sym_module] = ACTIONS(2048), + [anon_sym_any] = ACTIONS(2048), + [anon_sym_number] = ACTIONS(2048), + [anon_sym_boolean] = ACTIONS(2048), + [anon_sym_string] = ACTIONS(2048), + [anon_sym_symbol] = ACTIONS(2048), + [anon_sym_object] = ACTIONS(2048), [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5584), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [329] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2357), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5899), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(2064), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -63781,14 +63532,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63809,59 +63560,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [333] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2096), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [330] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1697), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1712), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [331] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2039), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_sequence_expression] = STATE(5364), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -63870,7 +63724,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -63894,87 +63748,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5845), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [332] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1697), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [333] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1629), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1630), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(2066), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -63987,14 +63944,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64015,69 +63972,1305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, + [334] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1623), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2516), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, [335] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2337), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5847), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1697), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [sym_html_comment] = ACTIONS(5), + }, + [336] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1623), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [sym_html_comment] = ACTIONS(5), + }, + [337] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1704), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [sym_html_comment] = ACTIONS(5), + }, + [338] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1629), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [sym_html_comment] = ACTIONS(5), + }, + [339] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2460), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [sym_html_comment] = ACTIONS(5), + }, + [340] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1638), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [sym_html_comment] = ACTIONS(5), + }, + [341] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1704), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2529), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [342] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2179), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym__extends_clause_single] = STATE(4574), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [343] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1629), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [344] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [345] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1638), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [346] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2216), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5748), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -64090,14 +65283,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64118,69 +65311,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [336] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2059), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5851), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [347] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2217), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5611), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -64193,14 +65386,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64221,69 +65414,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [337] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2339), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5856), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [348] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2123), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [sym_html_comment] = ACTIONS(5), + }, + [349] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2123), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2177), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [sym_html_comment] = ACTIONS(5), + }, + [350] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2125), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [sym_html_comment] = ACTIONS(5), + }, + [351] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5840), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -64296,14 +65798,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64324,69 +65826,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [338] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2341), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5862), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [352] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2173), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5717), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -64399,14 +65901,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64427,275 +65929,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [339] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_mapped_type_clause] = STATE(5937), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2070), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_namespace] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_readonly] = ACTIONS(2072), - [anon_sym_get] = ACTIONS(2072), - [anon_sym_set] = ACTIONS(2072), - [anon_sym_declare] = ACTIONS(2072), - [anon_sym_public] = ACTIONS(2072), - [anon_sym_private] = ACTIONS(2072), - [anon_sym_protected] = ACTIONS(2072), - [anon_sym_override] = ACTIONS(2072), - [anon_sym_module] = ACTIONS(2072), - [anon_sym_any] = ACTIONS(2072), - [anon_sym_number] = ACTIONS(2072), - [anon_sym_boolean] = ACTIONS(2072), - [anon_sym_string] = ACTIONS(2072), - [anon_sym_symbol] = ACTIONS(2072), - [anon_sym_object] = ACTIONS(2072), - [sym_html_comment] = ACTIONS(5), - }, - [340] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2096), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2150), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [341] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5786), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [353] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5759), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -64708,14 +66004,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64736,172 +66032,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [342] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2226), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2159), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), + [354] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2123), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), + [sym_html_comment] = ACTIONS(5), + }, + [355] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2144), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2185), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [sym_html_comment] = ACTIONS(5), + }, + [356] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2144), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), + [sym_html_comment] = ACTIONS(5), + }, + [357] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), + [sym_html_comment] = ACTIONS(5), + }, + [358] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1697), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2041), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, - [343] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2163), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5640), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [359] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1623), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2045), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [360] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2189), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5609), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -64914,14 +66725,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64942,172 +66753,584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [344] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [361] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1704), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2058), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [362] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1629), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2060), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [363] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2061), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [364] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1638), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2062), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [365] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2125), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [345] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1623), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [366] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2350), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5867), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -65120,14 +67343,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -65148,481 +67371,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [346] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2098), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2180), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [347] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2100), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2181), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [348] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2104), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2182), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [367] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2127), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1815), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [349] = { - [sym_import] = STATE(3555), + [368] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2128), [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2028), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), [sym_member_expression] = STATE(1337), [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5341), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [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(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [350] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2186), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5758), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [369] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_mapped_type_clause] = STATE(5811), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2072), + [anon_sym_export] = ACTIONS(2074), + [anon_sym_type] = ACTIONS(2074), + [anon_sym_namespace] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2078), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2080), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_readonly] = ACTIONS(2074), + [anon_sym_get] = ACTIONS(2074), + [anon_sym_set] = ACTIONS(2074), + [anon_sym_declare] = ACTIONS(2074), + [anon_sym_public] = ACTIONS(2074), + [anon_sym_private] = ACTIONS(2074), + [anon_sym_protected] = ACTIONS(2074), + [anon_sym_override] = ACTIONS(2074), + [anon_sym_module] = ACTIONS(2074), + [anon_sym_any] = ACTIONS(2074), + [anon_sym_number] = ACTIONS(2074), + [anon_sym_boolean] = ACTIONS(2074), + [anon_sym_string] = ACTIONS(2074), + [anon_sym_symbol] = ACTIONS(2074), + [anon_sym_object] = ACTIONS(2074), + [sym_html_comment] = ACTIONS(5), + }, + [370] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1623), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1624), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(2066), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -65635,14 +67755,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -65663,69 +67783,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [351] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2107), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5677), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [371] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2352), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5874), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -65738,14 +67858,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -65766,790 +67886,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [352] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2062), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym__extends_clause_single] = STATE(4769), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [372] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2201), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [353] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [354] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [355] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [356] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [373] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2353), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5876), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [357] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [374] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5785), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [358] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [375] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2144), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1795), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [359] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1656), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [376] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5898), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -66562,14 +68373,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -66590,1099 +68401,1820 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [360] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2096), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [377] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_mapped_type_clause] = STATE(5953), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2082), + [anon_sym_export] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_namespace] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_readonly] = ACTIONS(2084), + [anon_sym_get] = ACTIONS(2084), + [anon_sym_set] = ACTIONS(2084), + [anon_sym_declare] = ACTIONS(2084), + [anon_sym_public] = ACTIONS(2084), + [anon_sym_private] = ACTIONS(2084), + [anon_sym_protected] = ACTIONS(2084), + [anon_sym_override] = ACTIONS(2084), + [anon_sym_module] = ACTIONS(2084), + [anon_sym_any] = ACTIONS(2084), + [anon_sym_number] = ACTIONS(2084), + [anon_sym_boolean] = ACTIONS(2084), + [anon_sym_string] = ACTIONS(2084), + [anon_sym_symbol] = ACTIONS(2084), + [anon_sym_object] = ACTIONS(2084), + [sym_html_comment] = ACTIONS(5), + }, + [378] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2125), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2203), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2226), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [379] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1697), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [380] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2127), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2204), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [362] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [381] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2328), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5608), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [382] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1623), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2269), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [383] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1704), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2282), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [384] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1439), + [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(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2098), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1769), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [385] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1629), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2284), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [386] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2285), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [387] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1638), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2286), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [388] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2128), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2205), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [364] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2100), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [389] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2127), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1439), + [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(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2104), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [390] = { + [sym_import] = STATE(3680), + [sym_statement_block] = STATE(2128), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1439), + [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(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [366] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2248), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2261), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [391] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1633), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2263), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [392] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2179), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym__extends_clause_single] = STATE(4753), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2264), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [393] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2208), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5764), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2283), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5777), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [394] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5992), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -67695,14 +70227,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -67723,69 +70255,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [371] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [395] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1638), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1639), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(2066), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -67798,14 +70330,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -67826,790 +70358,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [396] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1697), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [397] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1623), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2431), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [398] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1704), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2380), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [399] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1629), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [400] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2383), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [377] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [401] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1638), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2384), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [378] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_mapped_type_clause] = STATE(5583), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2082), - [anon_sym_export] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_namespace] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2090), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_readonly] = ACTIONS(2084), - [anon_sym_get] = ACTIONS(2084), - [anon_sym_set] = ACTIONS(2084), - [anon_sym_declare] = ACTIONS(2084), - [anon_sym_public] = ACTIONS(2084), - [anon_sym_private] = ACTIONS(2084), - [anon_sym_protected] = ACTIONS(2084), - [anon_sym_override] = ACTIONS(2084), - [anon_sym_module] = ACTIONS(2084), - [anon_sym_any] = ACTIONS(2084), - [anon_sym_number] = ACTIONS(2084), - [anon_sym_boolean] = ACTIONS(2084), - [anon_sym_string] = ACTIONS(2084), - [anon_sym_symbol] = ACTIONS(2084), - [anon_sym_object] = ACTIONS(2084), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1715), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [402] = { + [sym_import] = STATE(3763), + [sym_statement_block] = STATE(1704), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1648), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(2066), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -68622,14 +71051,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -68650,69 +71079,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1720), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [403] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2298), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5725), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -68725,14 +71154,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -68753,69 +71182,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [404] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2351), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_sequence_expression] = STATE(5870), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -68828,14 +71257,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -68856,677 +71285,670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [405] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [406] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1792), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [384] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [407] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [385] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [408] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2398), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [386] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2466), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [409] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2066), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [410] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, - [388] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2098), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [411] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -69535,7 +71957,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -69559,77 +71981,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2100), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [412] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2327), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -69638,7 +72059,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -69662,77 +72083,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2104), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [413] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -69741,7 +72161,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -69765,705 +72185,1106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [391] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2030), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [414] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2047), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [415] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2049), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [416] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2050), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [417] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2051), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [418] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2153), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5792), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [419] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [sym_html_comment] = ACTIONS(5), + }, + [421] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1768), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [sym_html_comment] = ACTIONS(5), + }, + [422] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), + [sym_html_comment] = ACTIONS(5), + }, + [424] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1674), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -70476,14 +73297,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -70504,275 +73325,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [398] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2062), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym__extends_clause_single] = STATE(4474), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [425] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1724), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [399] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2226), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [426] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1719), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [400] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5894), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [427] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1621), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -70785,14 +73603,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -70813,69 +73631,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [401] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2195), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5678), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [428] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1628), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -70888,14 +73705,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -70916,69 +73733,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [402] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2196), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5749), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [429] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1659), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -70991,14 +73807,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -71019,69 +73835,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [403] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2197), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5812), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [430] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1732), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -71094,14 +73909,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -71122,2201 +73937,1792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [431] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1675), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [432] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1676), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [406] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3639), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3639), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1273), - [sym_subscript_expression] = STATE(1273), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3639), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1273), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2092), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_type] = ACTIONS(2094), - [anon_sym_namespace] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2098), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2100), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [433] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1680), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2102), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_readonly] = ACTIONS(2094), - [anon_sym_get] = ACTIONS(2094), - [anon_sym_set] = ACTIONS(2094), - [anon_sym_declare] = ACTIONS(2094), - [anon_sym_public] = ACTIONS(2094), - [anon_sym_private] = ACTIONS(2094), - [anon_sym_protected] = ACTIONS(2094), - [anon_sym_override] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_any] = ACTIONS(2094), - [anon_sym_number] = ACTIONS(2094), - [anon_sym_boolean] = ACTIONS(2094), - [anon_sym_string] = ACTIONS(2094), - [anon_sym_symbol] = ACTIONS(2094), - [anon_sym_object] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [407] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [434] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1685), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [435] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1688), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2487), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [436] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1690), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [437] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1691), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [411] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [438] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1692), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [412] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [413] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2493), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [414] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2495), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [416] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [439] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1721), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [440] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [418] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [441] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1653), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [442] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2117), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [420] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2500), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [443] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2026), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(4462), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(4462), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1333), + [sym_subscript_expression] = STATE(1333), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(4462), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1333), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2094), + [anon_sym_export] = ACTIONS(1255), + [anon_sym_type] = ACTIONS(1255), + [anon_sym_namespace] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2096), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2098), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_readonly] = ACTIONS(1255), + [anon_sym_get] = ACTIONS(1255), + [anon_sym_set] = ACTIONS(1255), + [anon_sym_declare] = ACTIONS(1255), + [anon_sym_public] = ACTIONS(1255), + [anon_sym_private] = ACTIONS(1255), + [anon_sym_protected] = ACTIONS(1255), + [anon_sym_override] = ACTIONS(1255), + [anon_sym_module] = ACTIONS(1255), + [anon_sym_any] = ACTIONS(1255), + [anon_sym_number] = ACTIONS(1255), + [anon_sym_boolean] = ACTIONS(1255), + [anon_sym_string] = ACTIONS(1255), + [anon_sym_symbol] = ACTIONS(1255), + [anon_sym_object] = ACTIONS(1255), [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2501), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [444] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1908), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [422] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [445] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [446] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1647), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [424] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [447] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1667), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [425] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1771), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [448] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1909), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -73325,7 +75731,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -73349,188 +75755,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [426] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [449] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -73543,14 +75847,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2104), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2092), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -73571,160 +75875,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5967), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5967), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5967), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1431), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2106), - [anon_sym_export] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_namespace] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2112), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2114), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [450] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1642), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2116), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_readonly] = ACTIONS(2108), - [anon_sym_get] = ACTIONS(2108), - [anon_sym_set] = ACTIONS(2108), - [anon_sym_declare] = ACTIONS(2108), - [anon_sym_public] = ACTIONS(2108), - [anon_sym_private] = ACTIONS(2108), - [anon_sym_protected] = ACTIONS(2108), - [anon_sym_override] = ACTIONS(2108), - [anon_sym_module] = ACTIONS(2108), - [anon_sym_any] = ACTIONS(2108), - [anon_sym_number] = ACTIONS(2108), - [anon_sym_boolean] = ACTIONS(2108), - [anon_sym_string] = ACTIONS(2108), - [anon_sym_symbol] = ACTIONS(2108), - [anon_sym_object] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2311), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [451] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1910), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -73733,7 +76037,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -73757,280 +76061,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [430] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [452] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [453] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2341), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -74039,7 +76241,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -74063,86 +76265,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1632), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [454] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -74155,14 +76357,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -74183,293 +76385,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [455] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(3555), + [456] = { + [sym_import] = STATE(3680), [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), + [sym_expression] = STATE(1989), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), [sym_member_expression] = STATE(1337), [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [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(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [457] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [sym_html_comment] = ACTIONS(5), + }, + [458] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2100), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(812), [anon_sym_readonly] = ACTIONS(812), @@ -74489,68 +76793,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1654), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [459] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2104), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -74563,14 +76867,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -74591,374 +76895,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [439] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [440] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [441] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1657), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [460] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -74971,14 +76969,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2100), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -74999,160 +76997,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1428), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5819), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5819), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1428), - [sym_subscript_expression] = STATE(1428), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5819), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1428), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2120), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2128), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2130), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [443] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1897), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [461] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -75161,7 +77057,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -75185,188 +77081,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [462] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1439), + [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(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1661), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [463] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2102), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [464] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2102), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [465] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2026), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -75379,14 +77479,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -75407,83 +77507,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [466] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(1677), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2104), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [467] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5662), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5662), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5662), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1429), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2106), + [anon_sym_export] = ACTIONS(2108), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2112), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2114), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_readonly] = ACTIONS(2108), + [anon_sym_get] = ACTIONS(2108), + [anon_sym_set] = ACTIONS(2108), + [anon_sym_declare] = ACTIONS(2108), + [anon_sym_public] = ACTIONS(2108), + [anon_sym_private] = ACTIONS(2108), + [anon_sym_protected] = ACTIONS(2108), + [anon_sym_override] = ACTIONS(2108), + [anon_sym_module] = ACTIONS(2108), + [anon_sym_any] = ACTIONS(2108), + [anon_sym_number] = ACTIONS(2108), + [anon_sym_boolean] = ACTIONS(2108), + [anon_sym_string] = ACTIONS(2108), + [anon_sym_symbol] = ACTIONS(2108), + [anon_sym_object] = ACTIONS(2108), + [sym_html_comment] = ACTIONS(5), + }, + [468] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1786), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75491,5380 +77795,4666 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [469] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2178), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2095), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [470] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2181), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [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(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [471] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2184), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2552), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [472] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2186), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [sym_html_comment] = ACTIONS(5), + }, + [473] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [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), }, - [451] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [474] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [475] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1439), + [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(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1819), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [476] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2190), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1823), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [477] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2191), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [478] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2192), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [479] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2193), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [480] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2194), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [481] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2195), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [459] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [482] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2196), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [460] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1787), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [483] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2197), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [461] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [484] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2198), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [462] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1425), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5842), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5842), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1425), - [sym_subscript_expression] = STATE(1425), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5842), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1425), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2132), - [anon_sym_export] = ACTIONS(2134), - [anon_sym_type] = ACTIONS(2134), - [anon_sym_namespace] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2142), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_readonly] = ACTIONS(2134), - [anon_sym_get] = ACTIONS(2134), - [anon_sym_set] = ACTIONS(2134), - [anon_sym_declare] = ACTIONS(2134), - [anon_sym_public] = ACTIONS(2134), - [anon_sym_private] = ACTIONS(2134), - [anon_sym_protected] = ACTIONS(2134), - [anon_sym_override] = ACTIONS(2134), - [anon_sym_module] = ACTIONS(2134), - [anon_sym_any] = ACTIONS(2134), - [anon_sym_number] = ACTIONS(2134), - [anon_sym_boolean] = ACTIONS(2134), - [anon_sym_string] = ACTIONS(2134), - [anon_sym_symbol] = ACTIONS(2134), - [anon_sym_object] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [463] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [485] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2199), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [464] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1731), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [486] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2202), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [487] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2151), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [488] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1439), + [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(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [489] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2206), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [490] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2207), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [470] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1663), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1664), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [491] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [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), }, - [472] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [492] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [473] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1665), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1666), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [493] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(3727), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(3727), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(3727), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2128), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2130), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [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), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [494] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2210), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1667), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [495] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [496] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), - [sym_html_comment] = ACTIONS(5), - }, - [478] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2245), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [497] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1725), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [498] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2246), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [499] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2247), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [500] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2518), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [483] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [501] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [502] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [503] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2521), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2252), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [504] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2522), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2253), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [505] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [506] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2255), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [507] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2525), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [508] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2257), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [509] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [510] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2528), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [511] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [512] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2573), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [496] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2154), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [497] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2262), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [513] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2535), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [498] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2158), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [514] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -80873,7 +82463,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -80897,392 +82487,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [501] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2266), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [502] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [515] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1671), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [516] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -81295,14 +82681,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -81323,68 +82709,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1672), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [517] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -81397,14 +82783,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -81425,3730 +82811,1996 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [518] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(3555), + [519] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [520] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1198), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5993), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5993), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1198), + [sym_subscript_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5993), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1198), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(826), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [521] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5740), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5740), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5740), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1427), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2132), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2140), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), + [sym_html_comment] = ACTIONS(5), + }, + [522] = { + [sym_import] = STATE(3680), [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), + [sym_expression] = STATE(1822), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), [sym_member_expression] = STATE(1337), [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [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(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1679), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [508] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2268), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [523] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1837), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1680), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [524] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [511] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2280), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [525] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1848), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), + [526] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), [sym_expression] = STATE(2554), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [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), }, - [513] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1688), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [514] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5960), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5960), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5960), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1429), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2146), - [anon_sym_export] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_namespace] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2154), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [527] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1852), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_readonly] = ACTIONS(2148), - [anon_sym_get] = ACTIONS(2148), - [anon_sym_set] = ACTIONS(2148), - [anon_sym_declare] = ACTIONS(2148), - [anon_sym_public] = ACTIONS(2148), - [anon_sym_private] = ACTIONS(2148), - [anon_sym_protected] = ACTIONS(2148), - [anon_sym_override] = ACTIONS(2148), - [anon_sym_module] = ACTIONS(2148), - [anon_sym_any] = ACTIONS(2148), - [anon_sym_number] = ACTIONS(2148), - [anon_sym_boolean] = ACTIONS(2148), - [anon_sym_string] = ACTIONS(2148), - [anon_sym_symbol] = ACTIONS(2148), - [anon_sym_object] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2481), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [528] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2162), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [529] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [517] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [518] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [519] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(3555), + [530] = { + [sym_import] = STATE(3680), [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), [sym_member_expression] = STATE(1337), [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [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(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [521] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [522] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2420), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [523] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2421), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [524] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [525] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [526] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [527] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [528] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2426), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [529] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [530] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, [531] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, [532] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2430), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, [533] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2164), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, [534] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [535] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2165), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2166), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [535] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2167), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [536] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1824), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [538] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [539] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [540] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [537] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2115), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -85157,7 +84809,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -85181,4972 +84833,5482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [538] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1865), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2168), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [539] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [540] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [545] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2169), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [541] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(1193), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), + [sym_html_comment] = ACTIONS(5), + }, + [542] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), + [sym_html_comment] = ACTIONS(5), + }, + [543] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), + [sym_html_comment] = ACTIONS(5), + }, + [544] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2266), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [545] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2267), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), }, [546] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2268), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [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_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), }, [547] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2270), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [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_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), }, [548] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2170), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2271), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_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), }, [549] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1432), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5793), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5793), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1432), - [sym_subscript_expression] = STATE(1432), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5793), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1432), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2158), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2168), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [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_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), }, [550] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2273), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [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), }, [551] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2171), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2274), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_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), }, [552] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2174), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_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), }, [553] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [554] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2277), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [555] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2278), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [556] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2175), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_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), }, [557] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [558] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2281), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [559] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2283), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [560] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [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(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, [561] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [562] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [563] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [564] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2289), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [565] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2459), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [566] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2460), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2302), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [567] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2461), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1426), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(6014), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(6014), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1426), + [sym_subscript_expression] = STATE(1426), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(6014), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1426), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2144), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2154), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_readonly] = ACTIONS(2146), + [anon_sym_get] = ACTIONS(2146), + [anon_sym_set] = ACTIONS(2146), + [anon_sym_declare] = ACTIONS(2146), + [anon_sym_public] = ACTIONS(2146), + [anon_sym_private] = ACTIONS(2146), + [anon_sym_protected] = ACTIONS(2146), + [anon_sym_override] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_any] = ACTIONS(2146), + [anon_sym_number] = ACTIONS(2146), + [anon_sym_boolean] = ACTIONS(2146), + [anon_sym_string] = ACTIONS(2146), + [anon_sym_symbol] = ACTIONS(2146), + [anon_sym_object] = ACTIONS(2146), [sym_html_comment] = ACTIONS(5), }, [568] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2462), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2559), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [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), }, [569] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2170), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [570] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [571] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [572] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [573] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1612), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2369), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [574] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [575] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [576] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1625), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2372), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [577] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1626), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [578] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2374), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [579] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1850), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [580] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2532), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2376), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [581] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2470), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2377), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [582] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2378), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [583] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2379), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [584] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2381), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [585] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2385), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [586] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5956), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5956), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5956), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2174), - [anon_sym_type] = ACTIONS(2174), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2180), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_readonly] = ACTIONS(2174), - [anon_sym_get] = ACTIONS(2174), - [anon_sym_set] = ACTIONS(2174), - [anon_sym_declare] = ACTIONS(2174), - [anon_sym_public] = ACTIONS(2174), - [anon_sym_private] = ACTIONS(2174), - [anon_sym_protected] = ACTIONS(2174), - [anon_sym_override] = ACTIONS(2174), - [anon_sym_module] = ACTIONS(2174), - [anon_sym_any] = ACTIONS(2174), - [anon_sym_number] = ACTIONS(2174), - [anon_sym_boolean] = ACTIONS(2174), - [anon_sym_string] = ACTIONS(2174), - [anon_sym_symbol] = ACTIONS(2174), - [anon_sym_object] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [587] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [588] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2087), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2387), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [589] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, [590] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2390), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), + [sym_html_comment] = ACTIONS(5), + }, + [591] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1785), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -90155,7 +90317,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -90179,5074 +90341,5074 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2015), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), + [592] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1432), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5804), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5804), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1432), + [sym_subscript_expression] = STATE(1432), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5804), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1432), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2158), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [592] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2166), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_readonly] = ACTIONS(2158), + [anon_sym_get] = ACTIONS(2158), + [anon_sym_set] = ACTIONS(2158), + [anon_sym_declare] = ACTIONS(2158), + [anon_sym_public] = ACTIONS(2158), + [anon_sym_private] = ACTIONS(2158), + [anon_sym_protected] = ACTIONS(2158), + [anon_sym_override] = ACTIONS(2158), + [anon_sym_module] = ACTIONS(2158), + [anon_sym_any] = ACTIONS(2158), + [anon_sym_number] = ACTIONS(2158), + [anon_sym_boolean] = ACTIONS(2158), + [anon_sym_string] = ACTIONS(2158), + [anon_sym_symbol] = ACTIONS(2158), + [anon_sym_object] = ACTIONS(2158), [sym_html_comment] = ACTIONS(5), }, [593] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2217), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2562), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_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), }, [594] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1723), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [595] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2220), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [596] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [597] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [598] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2015), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4027), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4027), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4027), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1328), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(1173), - [anon_sym_type] = ACTIONS(1173), - [anon_sym_namespace] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1179), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2186), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(1173), - [anon_sym_set] = ACTIONS(1173), - [anon_sym_declare] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_any] = ACTIONS(1173), - [anon_sym_number] = ACTIONS(1173), - [anon_sym_boolean] = ACTIONS(1173), - [anon_sym_string] = ACTIONS(1173), - [anon_sym_symbol] = ACTIONS(1173), - [anon_sym_object] = ACTIONS(1173), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [599] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(1967), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [600] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1774), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [601] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2031), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [602] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2032), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [603] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2033), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [604] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2183), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [605] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2035), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [606] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2036), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [607] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2037), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [608] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2038), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [609] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2039), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [610] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [611] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2041), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [612] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2042), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [613] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2043), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [614] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2044), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1422), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5959), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5959), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5946), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1422), + [sym_subscript_expression] = STATE(1422), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2966), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5959), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1422), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_namespace] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_void] = ACTIONS(1353), + [anon_sym_delete] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1355), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1357), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_readonly] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_declare] = ACTIONS(1331), + [anon_sym_public] = ACTIONS(1331), + [anon_sym_private] = ACTIONS(1331), + [anon_sym_protected] = ACTIONS(1331), + [anon_sym_override] = ACTIONS(1331), + [anon_sym_module] = ACTIONS(1331), + [anon_sym_any] = ACTIONS(1331), + [anon_sym_number] = ACTIONS(1331), + [anon_sym_boolean] = ACTIONS(1331), + [anon_sym_string] = ACTIONS(1331), + [anon_sym_symbol] = ACTIONS(1331), + [anon_sym_object] = ACTIONS(1331), [sym_html_comment] = ACTIONS(5), }, [615] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1425), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5982), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5982), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1425), + [sym_subscript_expression] = STATE(1425), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5982), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1425), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2168), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2178), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), [sym_html_comment] = ACTIONS(5), }, [616] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2046), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [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), }, [617] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2184), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, [618] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2048), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1223), + [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), [sym_html_comment] = ACTIONS(5), }, [619] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [620] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1624), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [621] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1377), + [sym_expression] = STATE(2243), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5626), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5626), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5624), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_assignment_expression] = STATE(2330), [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5626), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1207), + [anon_sym_type] = ACTIONS(1207), + [anon_sym_namespace] = ACTIONS(1209), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1233), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1215), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1223), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_delete] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1241), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_readonly] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(1207), + [anon_sym_set] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [anon_sym_public] = ACTIONS(1207), + [anon_sym_private] = ACTIONS(1207), + [anon_sym_protected] = ACTIONS(1207), + [anon_sym_override] = ACTIONS(1207), + [anon_sym_module] = ACTIONS(1207), + [anon_sym_any] = ACTIONS(1207), + [anon_sym_number] = ACTIONS(1207), + [anon_sym_boolean] = ACTIONS(1207), + [anon_sym_string] = ACTIONS(1207), + [anon_sym_symbol] = ACTIONS(1207), + [anon_sym_object] = ACTIONS(1207), + [sym_html_comment] = ACTIONS(5), + }, + [620] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1430), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5762), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5762), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1430), + [sym_subscript_expression] = STATE(1430), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5762), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1430), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2180), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2190), + [anon_sym_AT] = ACTIONS(97), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [621] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(1979), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [622] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2042), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [623] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2053), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2043), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [624] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2044), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [625] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2046), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [626] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2047), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [627] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2048), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [628] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2054), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2049), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [629] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2050), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2170), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [630] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2051), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [631] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [632] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2053), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [633] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2054), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [634] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1708), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2055), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [635] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [636] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2187), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2057), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [637] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2059), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [638] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5798), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5798), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5798), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1427), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2198), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2063), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2202), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [639] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2064), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, [640] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2067), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [641] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -95255,7 +95417,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -95279,178 +95441,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), + [642] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2065), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [643] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2067), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [644] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1361), + [sym_expression] = STATE(2068), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5903), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5903), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5903), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_namespace] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1389), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_delete] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1393), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_readonly] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_declare] = ACTIONS(1367), + [anon_sym_public] = ACTIONS(1367), + [anon_sym_private] = ACTIONS(1367), + [anon_sym_protected] = ACTIONS(1367), + [anon_sym_override] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [645] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5708), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5616), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(2981), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5708), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_namespace] = ACTIONS(1405), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -95459,7 +95825,7 @@ 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(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -95483,203 +95849,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1403), + [anon_sym_readonly] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_declare] = ACTIONS(1403), + [anon_sym_public] = ACTIONS(1403), + [anon_sym_private] = ACTIONS(1403), + [anon_sym_protected] = ACTIONS(1403), + [anon_sym_override] = ACTIONS(1403), + [anon_sym_module] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_number] = ACTIONS(1403), + [anon_sym_boolean] = ACTIONS(1403), + [anon_sym_string] = ACTIONS(1403), + [anon_sym_symbol] = ACTIONS(1403), + [anon_sym_object] = ACTIONS(1403), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [646] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5828), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5828), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5828), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1431), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2202), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_readonly] = ACTIONS(2194), + [anon_sym_get] = ACTIONS(2194), + [anon_sym_set] = ACTIONS(2194), + [anon_sym_declare] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_protected] = ACTIONS(2194), + [anon_sym_override] = ACTIONS(2194), + [anon_sym_module] = ACTIONS(2194), + [anon_sym_any] = ACTIONS(2194), + [anon_sym_number] = ACTIONS(2194), + [anon_sym_boolean] = ACTIONS(2194), + [anon_sym_string] = ACTIONS(2194), + [anon_sym_symbol] = ACTIONS(2194), + [anon_sym_object] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [647] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2570), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [648] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -95687,101 +96155,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [645] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [649] = { + [sym_import] = STATE(3680), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -95789,86 +96257,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [650] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1276), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5905), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2970), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1276), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), [anon_sym_await] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), [anon_sym_using] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(645), @@ -95881,14 +96349,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(647), [anon_sym_DASH_DASH] = ACTIONS(647), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -95909,292 +96377,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [647] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2282), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [651] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2304), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [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), }, - [648] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [652] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5948), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5948), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5789), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2957), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5948), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_export] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_namespace] = ACTIONS(1297), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_using] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_void] = ACTIONS(1317), + [anon_sym_delete] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1321), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1295), + [anon_sym_readonly] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [anon_sym_public] = ACTIONS(1295), + [anon_sym_private] = ACTIONS(1295), + [anon_sym_protected] = ACTIONS(1295), + [anon_sym_override] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), + [anon_sym_any] = ACTIONS(1295), + [anon_sym_number] = ACTIONS(1295), + [anon_sym_boolean] = ACTIONS(1295), + [anon_sym_string] = ACTIONS(1295), + [anon_sym_symbol] = ACTIONS(1295), + [anon_sym_object] = ACTIONS(1295), [sym_html_comment] = ACTIONS(5), }, - [649] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1426), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5622), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5622), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1426), - [sym_subscript_expression] = STATE(1426), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5622), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1426), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [653] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1428), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5652), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5652), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1428), + [sym_subscript_expression] = STATE(1428), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5652), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1428), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(2204), [anon_sym_export] = ACTIONS(2206), [anon_sym_type] = ACTIONS(2206), [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2210), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(2214), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(2206), @@ -96215,496 +96683,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2206), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1978), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [651] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [654] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2569), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [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), }, - [652] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1775), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [653] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [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(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [654] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1430), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1430), - [sym_subscript_expression] = STATE(1430), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1430), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [655] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1424), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5928), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5928), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5689), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1424), + [sym_subscript_expression] = STATE(1424), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2935), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5928), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1424), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), [sym_identifier] = ACTIONS(2216), [anon_sym_export] = ACTIONS(2218), [anon_sym_type] = ACTIONS(2218), [anon_sym_namespace] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(639), [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(828), [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(2226), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(2218), @@ -96725,334 +96887,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_import] = STATE(3555), + [656] = { + [sym_import] = STATE(3763), + [sym_parenthesized_expression] = STATE(1378), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(1476), + [sym_yield_expression] = STATE(1658), + [sym_object] = STATE(1649), + [sym_object_pattern] = STATE(5812), + [sym_array] = STATE(1649), + [sym_array_pattern] = STATE(5812), + [sym_jsx_element] = STATE(1658), + [sym_jsx_opening_element] = STATE(3248), + [sym_jsx_self_closing_element] = STATE(1658), + [sym_class] = STATE(1649), + [sym_function_expression] = STATE(1649), + [sym_generator_function] = STATE(1649), + [sym_arrow_function] = STATE(1649), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(1521), + [sym_await_expression] = STATE(1658), + [sym_member_expression] = STATE(1378), + [sym_subscript_expression] = STATE(1378), + [sym_assignment_expression] = STATE(1658), + [sym__augmented_assignment_lhs] = STATE(2945), + [sym_augmented_assignment_expression] = STATE(1658), + [sym__destructuring_pattern] = STATE(5812), + [sym_ternary_expression] = STATE(1658), + [sym_binary_expression] = STATE(1658), + [sym_unary_expression] = STATE(1658), + [sym_update_expression] = STATE(1658), + [sym_string] = STATE(1649), + [sym_template_string] = STATE(1649), + [sym_regex] = STATE(1649), + [sym_meta_property] = STATE(1649), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1658), + [sym_satisfies_expression] = STATE(1658), + [sym_instantiation_expression] = STATE(1658), + [sym_internal_module] = STATE(1658), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4541), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_await] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1133), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_delete] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1147), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [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), + }, + [657] = { + [sym_import] = STATE(3680), [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), + [sym_expression] = STATE(1863), + [sym_primary_expression] = STATE(1800), + [sym_yield_expression] = STATE(2330), + [sym_object] = STATE(2291), + [sym_object_pattern] = STATE(5913), + [sym_array] = STATE(2291), + [sym_array_pattern] = STATE(5913), + [sym_jsx_element] = STATE(2330), + [sym_jsx_opening_element] = STATE(3259), + [sym_jsx_self_closing_element] = STATE(2330), + [sym_class] = STATE(2291), + [sym_function_expression] = STATE(2291), + [sym_generator_function] = STATE(2291), + [sym_arrow_function] = STATE(2291), + [sym__call_signature] = STATE(5911), + [sym_call_expression] = STATE(2291), + [sym_new_expression] = STATE(1884), + [sym_await_expression] = STATE(2330), [sym_member_expression] = STATE(1337), [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(2330), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2330), + [sym__destructuring_pattern] = STATE(5913), + [sym_ternary_expression] = STATE(2330), + [sym_binary_expression] = STATE(2330), + [sym_unary_expression] = STATE(2330), + [sym_update_expression] = STATE(2330), + [sym_string] = STATE(2291), + [sym_template_string] = STATE(2291), + [sym_regex] = STATE(2291), + [sym_meta_property] = STATE(2291), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3851), [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [sym_as_expression] = STATE(2330), + [sym_satisfies_expression] = STATE(2330), + [sym_instantiation_expression] = STATE(2330), + [sym_internal_module] = STATE(2330), + [sym_type_parameters] = STATE(5275), + [aux_sym_export_statement_repeat1] = STATE(4539), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_type] = ACTIONS(1157), + [anon_sym_namespace] = ACTIONS(1159), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1165), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(868), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [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(1165), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1193), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [656] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2557), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [657] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2216), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1157), + [anon_sym_set] = ACTIONS(1157), + [anon_sym_declare] = ACTIONS(1157), + [anon_sym_public] = ACTIONS(1157), + [anon_sym_private] = ACTIONS(1157), + [anon_sym_protected] = ACTIONS(1157), + [anon_sym_override] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_any] = ACTIONS(1157), + [anon_sym_number] = ACTIONS(1157), + [anon_sym_boolean] = ACTIONS(1157), + [anon_sym_string] = ACTIONS(1157), + [anon_sym_symbol] = ACTIONS(1157), + [anon_sym_object] = ACTIONS(1157), [sym_html_comment] = ACTIONS(5), }, [658] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_namespace_export] = STATE(5573), + [sym_export_clause] = STATE(4569), + [sym_declaration] = STATE(787), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2230), [anon_sym_type] = ACTIONS(2232), @@ -97060,40 +97120,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97108,52 +97168,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [659] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_namespace_export] = STATE(5573), + [sym_export_clause] = STATE(4569), + [sym_declaration] = STATE(787), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2230), [anon_sym_type] = ACTIONS(2232), @@ -97161,7 +97221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), @@ -97169,32 +97229,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97209,52 +97269,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [660] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_namespace_export] = STATE(5573), + [sym_export_clause] = STATE(4569), + [sym_declaration] = STATE(787), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2230), [anon_sym_type] = ACTIONS(2232), @@ -97262,40 +97322,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97310,39 +97370,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [661] = { - [sym__call_signature] = STATE(5739), - [sym_string] = STATE(3887), - [sym_formal_parameters] = STATE(3848), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_type_parameters] = STATE(5231), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__call_signature] = STATE(5860), + [sym_string] = STATE(3890), + [sym_formal_parameters] = STATE(3851), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [sym_type_parameters] = STATE(5275), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2272), [anon_sym_export] = ACTIONS(2274), [anon_sym_STAR] = ACTIONS(2276), @@ -97350,12 +97410,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2274), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -97366,23 +97426,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2274), [anon_sym_function] = ACTIONS(2286), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2274), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97397,18 +97457,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2274), @@ -97429,19 +97489,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2274), [anon_sym_object] = ACTIONS(2274), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [662] = { - [sym__call_signature] = STATE(5739), - [sym_string] = STATE(3887), - [sym_formal_parameters] = STATE(3848), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_type_parameters] = STATE(5231), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__call_signature] = STATE(5860), + [sym_string] = STATE(3890), + [sym_formal_parameters] = STATE(3851), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [sym_type_parameters] = STATE(5275), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2272), [anon_sym_export] = ACTIONS(2274), [anon_sym_STAR] = ACTIONS(2276), @@ -97449,12 +97509,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(2274), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -97465,23 +97525,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2274), [anon_sym_function] = ACTIONS(2286), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2274), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97496,18 +97556,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2274), @@ -97528,19 +97588,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2274), [anon_sym_object] = ACTIONS(2274), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym__call_signature] = STATE(5739), - [sym_string] = STATE(3887), - [sym_formal_parameters] = STATE(3848), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_type_parameters] = STATE(5231), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__call_signature] = STATE(5860), + [sym_string] = STATE(3890), + [sym_formal_parameters] = STATE(3851), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [sym_type_parameters] = STATE(5275), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2272), [anon_sym_export] = ACTIONS(2274), [anon_sym_STAR] = ACTIONS(2276), @@ -97548,12 +97608,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_let] = ACTIONS(2274), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -97564,23 +97624,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2274), [anon_sym_function] = ACTIONS(2286), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2274), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97595,18 +97655,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2274), @@ -97627,69 +97687,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2274), [anon_sym_object] = ACTIONS(2274), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_declaration] = STATE(828), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97704,57 +97764,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_declaration] = STATE(828), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), @@ -97762,32 +97822,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97802,90 +97862,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [666] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_declaration] = STATE(828), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97900,51 +97960,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [667] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym_namespace_export] = STATE(5573), + [sym_export_clause] = STATE(4569), + [sym_declaration] = STATE(787), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2302), [anon_sym_type] = ACTIONS(2232), @@ -97952,39 +98012,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2306), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -97999,49 +98059,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2308), [anon_sym_module] = ACTIONS(2310), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym_namespace_export] = STATE(5573), + [sym_export_clause] = STATE(4569), + [sym_declaration] = STATE(787), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2312), [anon_sym_type] = ACTIONS(2232), @@ -98049,39 +98109,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98096,49 +98156,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym_namespace_export] = STATE(5573), + [sym_export_clause] = STATE(4569), + [sym_declaration] = STATE(787), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2230), [anon_sym_type] = ACTIONS(2232), @@ -98146,39 +98206,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98193,36 +98253,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_override_modifier] = STATE(2756), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [sym_override_modifier] = STATE(2772), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2322), + [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_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [671] = { + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [sym_override_modifier] = STATE(2772), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98230,12 +98386,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98245,23 +98401,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98276,18 +98432,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98308,17 +98464,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [671] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_override_modifier] = STATE(2756), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [672] = { + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [sym_override_modifier] = STATE(2772), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98326,12 +98482,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98341,23 +98497,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98372,18 +98528,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98404,30 +98560,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_override_modifier] = STATE(2756), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [673] = { + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2314), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98435,25 +98590,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(2316), + [anon_sym_async] = ACTIONS(2314), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98468,30 +98623,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2318), - [anon_sym_get] = ACTIONS(2320), - [anon_sym_set] = ACTIONS(2320), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2314), [anon_sym_public] = ACTIONS(2314), [anon_sym_private] = ACTIONS(2314), [anon_sym_protected] = ACTIONS(2314), - [anon_sym_override] = ACTIONS(2322), + [anon_sym_override] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2314), [anon_sym_any] = ACTIONS(2314), [anon_sym_number] = ACTIONS(2314), @@ -98500,16 +98655,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [674] = { + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98517,12 +98672,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98532,23 +98687,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98563,18 +98718,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98595,16 +98750,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [675] = { + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98612,12 +98767,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98627,23 +98782,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98658,18 +98813,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98690,16 +98845,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [676] = { + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(120), @@ -98707,12 +98862,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98722,23 +98877,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2314), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98753,18 +98908,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98785,29 +98940,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [677] = { + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(2276), [anon_sym_type] = ACTIONS(2314), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98815,25 +98970,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98848,24 +99003,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2314), [anon_sym_public] = ACTIONS(2314), @@ -98880,29 +99035,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [678] = { + [sym_string] = STATE(3890), + [sym__property_name] = STATE(3890), + [sym_computed_property_name] = STATE(3890), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2314), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98910,25 +99065,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(2316), + [anon_sym_async] = ACTIONS(2314), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98943,24 +99098,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2320), - [anon_sym_set] = ACTIONS(2320), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2314), [anon_sym_public] = ACTIONS(2314), @@ -98975,55 +99130,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2314), + [679] = { + [sym_declaration] = STATE(828), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_EQ] = ACTIONS(691), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2314), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99037,99 +99203,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(2292), - [sym_private_property_identifier] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), - [anon_sym_QMARK] = ACTIONS(720), - [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_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [680] = { + [sym_declaration] = STATE(828), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2306), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99144,274 +99298,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2308), [anon_sym_module] = ACTIONS(2324), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [680] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_from] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_RBRACK] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_extends] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [681] = { - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_typeof] = ACTIONS(1807), - [anon_sym_import] = ACTIONS(1807), - [anon_sym_from] = ACTIONS(1807), - [anon_sym_with] = ACTIONS(1807), - [anon_sym_var] = ACTIONS(1807), - [anon_sym_let] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_await] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_debugger] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_COLON] = ACTIONS(1805), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_function] = ACTIONS(1807), - [anon_sym_EQ_GT] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1807), - [anon_sym_using] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_void] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1805), - [sym_number] = ACTIONS(1805), - [sym_private_property_identifier] = ACTIONS(1805), - [sym_this] = ACTIONS(1807), - [sym_super] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_undefined] = ACTIONS(1807), - [anon_sym_AT] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_readonly] = ACTIONS(1807), - [anon_sym_get] = ACTIONS(1807), - [anon_sym_set] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_declare] = ACTIONS(1807), - [anon_sym_public] = ACTIONS(1807), - [anon_sym_private] = ACTIONS(1807), - [anon_sym_protected] = ACTIONS(1807), - [anon_sym_override] = ACTIONS(1807), - [anon_sym_module] = ACTIONS(1807), - [anon_sym_any] = ACTIONS(1807), - [anon_sym_number] = ACTIONS(1807), - [anon_sym_boolean] = ACTIONS(1807), - [anon_sym_string] = ACTIONS(1807), - [anon_sym_symbol] = ACTIONS(1807), - [anon_sym_object] = ACTIONS(1807), - [anon_sym_abstract] = ACTIONS(1807), - [anon_sym_extends] = ACTIONS(1807), - [anon_sym_interface] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [sym_html_comment] = ACTIONS(5), - }, - [682] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym_declaration] = STATE(828), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99426,122 +99392,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [682] = { + [ts_builtin_sym_end] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1827), + [anon_sym_export] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_EQ] = ACTIONS(1827), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_typeof] = ACTIONS(1827), + [anon_sym_import] = ACTIONS(1827), + [anon_sym_from] = ACTIONS(1827), + [anon_sym_with] = ACTIONS(1827), + [anon_sym_var] = ACTIONS(1827), + [anon_sym_let] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_else] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_switch] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_do] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_debugger] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_throw] = ACTIONS(1827), + [anon_sym_COLON] = ACTIONS(1825), + [anon_sym_case] = ACTIONS(1827), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_RBRACK] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [anon_sym_SQUOTE] = ACTIONS(1825), + [anon_sym_class] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_function] = ACTIONS(1827), + [anon_sym_EQ_GT] = ACTIONS(1825), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_using] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_SLASH] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1827), + [anon_sym_delete] = ACTIONS(1827), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1825), + [sym_number] = ACTIONS(1825), + [sym_private_property_identifier] = ACTIONS(1825), + [sym_this] = ACTIONS(1827), + [sym_super] = ACTIONS(1827), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_null] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_readonly] = ACTIONS(1827), + [anon_sym_get] = ACTIONS(1827), + [anon_sym_set] = ACTIONS(1827), + [anon_sym_QMARK] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_private] = ACTIONS(1827), + [anon_sym_protected] = ACTIONS(1827), + [anon_sym_override] = ACTIONS(1827), + [anon_sym_module] = ACTIONS(1827), + [anon_sym_any] = ACTIONS(1827), + [anon_sym_number] = ACTIONS(1827), + [anon_sym_boolean] = ACTIONS(1827), + [anon_sym_string] = ACTIONS(1827), + [anon_sym_symbol] = ACTIONS(1827), + [anon_sym_object] = ACTIONS(1827), + [anon_sym_abstract] = ACTIONS(1827), + [anon_sym_extends] = ACTIONS(1827), + [anon_sym_interface] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), [sym_html_comment] = ACTIONS(5), }, [683] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(854), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2248), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), - [anon_sym_global] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_typeof] = ACTIONS(1879), + [anon_sym_import] = ACTIONS(1879), + [anon_sym_from] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_var] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_await] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_debugger] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_throw] = ACTIONS(1879), + [anon_sym_COLON] = ACTIONS(1877), + [anon_sym_case] = ACTIONS(1879), + [anon_sym_yield] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_RBRACK] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_async] = ACTIONS(1879), + [anon_sym_function] = ACTIONS(1879), + [anon_sym_EQ_GT] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_void] = ACTIONS(1879), + [anon_sym_delete] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1877), + [sym_number] = ACTIONS(1877), + [sym_private_property_identifier] = ACTIONS(1877), + [sym_this] = ACTIONS(1879), + [sym_super] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_null] = ACTIONS(1879), + [sym_undefined] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_readonly] = ACTIONS(1879), + [anon_sym_get] = ACTIONS(1879), + [anon_sym_set] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1877), + [anon_sym_declare] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_private] = ACTIONS(1879), + [anon_sym_protected] = ACTIONS(1879), + [anon_sym_override] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_any] = ACTIONS(1879), + [anon_sym_number] = ACTIONS(1879), + [anon_sym_boolean] = ACTIONS(1879), + [anon_sym_string] = ACTIONS(1879), + [anon_sym_symbol] = ACTIONS(1879), + [anon_sym_object] = ACTIONS(1879), + [anon_sym_abstract] = ACTIONS(1879), + [anon_sym_extends] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), [sym_html_comment] = ACTIONS(5), }, [684] = { @@ -100010,47 +100070,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [689] = { - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), + [sym_declaration] = STATE(828), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [690] = { + [sym_declaration] = STATE(828), + [sym_variable_declaration] = STATE(859), + [sym_lexical_declaration] = STATE(859), + [sym_class_declaration] = STATE(859), + [sym_function_declaration] = STATE(859), + [sym_generator_function_declaration] = STATE(859), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(859), + [sym_ambient_declaration] = STATE(859), + [sym_abstract_class_declaration] = STATE(859), + [sym_module] = STATE(859), + [sym_internal_module] = STATE(789), + [sym_import_alias] = STATE(859), + [sym_interface_declaration] = STATE(859), + [sym_enum_declaration] = STATE(859), + [sym_type_alias_declaration] = STATE(859), + [aux_sym_export_statement_repeat1] = STATE(4055), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [691] = { + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(1956), + [anon_sym_export] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1956), + [anon_sym_type] = ACTIONS(1956), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_let] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(1956), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1958), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1956), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100065,84 +100309,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1958), + [sym_private_property_identifier] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_readonly] = ACTIONS(1956), + [anon_sym_get] = ACTIONS(1956), + [anon_sym_set] = ACTIONS(1956), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), + [anon_sym_declare] = ACTIONS(1956), + [anon_sym_public] = ACTIONS(1956), + [anon_sym_private] = ACTIONS(1956), + [anon_sym_protected] = ACTIONS(1956), + [anon_sym_override] = ACTIONS(1956), + [anon_sym_module] = ACTIONS(1956), + [anon_sym_any] = ACTIONS(1956), + [anon_sym_number] = ACTIONS(1956), + [anon_sym_boolean] = ACTIONS(1956), + [anon_sym_string] = ACTIONS(1956), + [anon_sym_symbol] = ACTIONS(1956), + [anon_sym_object] = ACTIONS(1956), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [690] = { - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), + [692] = { + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(1956), + [anon_sym_export] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1956), + [anon_sym_type] = ACTIONS(1956), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_let] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(1956), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1958), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_async] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1956), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100157,96 +100401,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1938), - [sym_private_property_identifier] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_readonly] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(1936), - [anon_sym_set] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1958), + [sym_private_property_identifier] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_readonly] = ACTIONS(1956), + [anon_sym_get] = ACTIONS(1956), + [anon_sym_set] = ACTIONS(1956), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_override] = ACTIONS(1936), - [anon_sym_module] = ACTIONS(1936), - [anon_sym_any] = ACTIONS(1936), - [anon_sym_number] = ACTIONS(1936), - [anon_sym_boolean] = ACTIONS(1936), - [anon_sym_string] = ACTIONS(1936), - [anon_sym_symbol] = ACTIONS(1936), - [anon_sym_object] = ACTIONS(1936), + [anon_sym_declare] = ACTIONS(1956), + [anon_sym_public] = ACTIONS(1956), + [anon_sym_private] = ACTIONS(1956), + [anon_sym_protected] = ACTIONS(1956), + [anon_sym_override] = ACTIONS(1956), + [anon_sym_module] = ACTIONS(1956), + [anon_sym_any] = ACTIONS(1956), + [anon_sym_number] = ACTIONS(1956), + [anon_sym_boolean] = ACTIONS(1956), + [anon_sym_string] = ACTIONS(1956), + [anon_sym_symbol] = ACTIONS(1956), + [anon_sym_object] = ACTIONS(1956), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [691] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(909), + [693] = { + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(1938), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2248), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(1938), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1940), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100260,52 +100492,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), - [anon_sym_global] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1940), + [sym_private_property_identifier] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_readonly] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_override] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [anon_sym_object] = ACTIONS(1938), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [692] = { - [sym_declaration] = STATE(4415), - [sym_variable_declaration] = STATE(4393), - [sym_lexical_declaration] = STATE(4393), - [sym_class_declaration] = STATE(4393), - [sym_function_declaration] = STATE(4393), - [sym_generator_function_declaration] = STATE(4393), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(4393), - [sym_ambient_declaration] = STATE(4393), - [sym_abstract_class_declaration] = STATE(4393), - [sym_module] = STATE(4393), - [sym_internal_module] = STATE(4399), - [sym_import_alias] = STATE(4393), - [sym_interface_declaration] = STATE(4393), - [sym_enum_declaration] = STATE(4393), - [sym_type_alias_declaration] = STATE(4393), - [aux_sym_export_statement_repeat1] = STATE(4367), + [694] = { + [sym_declaration] = STATE(3962), + [sym_variable_declaration] = STATE(3987), + [sym_lexical_declaration] = STATE(3987), + [sym_class_declaration] = STATE(3987), + [sym_function_declaration] = STATE(3987), + [sym_generator_function_declaration] = STATE(3987), + [sym_decorator] = STATE(1322), + [sym_function_signature] = STATE(3987), + [sym_ambient_declaration] = STATE(3987), + [sym_abstract_class_declaration] = STATE(3987), + [sym_module] = STATE(3987), + [sym_internal_module] = STATE(4179), + [sym_import_alias] = STATE(3987), + [sym_interface_declaration] = STATE(3987), + [sym_enum_declaration] = STATE(3987), + [sym_type_alias_declaration] = STATE(3987), + [aux_sym_export_statement_repeat1] = STATE(4268), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2348), [anon_sym_import] = ACTIONS(2350), @@ -100313,32 +100557,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2354), [anon_sym_const] = ACTIONS(2356), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2358), [anon_sym_async] = ACTIONS(2360), [anon_sym_function] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100353,72 +100597,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2364), [anon_sym_module] = ACTIONS(2366), [anon_sym_abstract] = ACTIONS(2368), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2370), [anon_sym_interface] = ACTIONS(2372), [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [693] = { - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), + [695] = { + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(1938), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_let] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(1938), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1940), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1938), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100433,84 +100677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1940), + [sym_private_property_identifier] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_readonly] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_override] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [anon_sym_object] = ACTIONS(1938), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [694] = { - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), + [696] = { + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(1938), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1938), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1940), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_async] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1938), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100525,176 +100769,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1938), - [sym_private_property_identifier] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_readonly] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(1936), - [anon_sym_set] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1940), + [sym_private_property_identifier] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_readonly] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_override] = ACTIONS(1936), - [anon_sym_module] = ACTIONS(1936), - [anon_sym_any] = ACTIONS(1936), - [anon_sym_number] = ACTIONS(1936), - [anon_sym_boolean] = ACTIONS(1936), - [anon_sym_string] = ACTIONS(1936), - [anon_sym_symbol] = ACTIONS(1936), - [anon_sym_object] = ACTIONS(1936), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_override] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [anon_sym_object] = ACTIONS(1938), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [695] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(909), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2306), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2248), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2324), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), - [anon_sym_global] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [696] = { - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), + [697] = { + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(1956), + [anon_sym_export] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1956), + [anon_sym_type] = ACTIONS(1956), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(1956), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1958), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1956), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1956), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100709,84 +100861,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1958), + [sym_private_property_identifier] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_readonly] = ACTIONS(1956), + [anon_sym_get] = ACTIONS(1956), + [anon_sym_set] = ACTIONS(1956), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), + [anon_sym_declare] = ACTIONS(1956), + [anon_sym_public] = ACTIONS(1956), + [anon_sym_private] = ACTIONS(1956), + [anon_sym_protected] = ACTIONS(1956), + [anon_sym_override] = ACTIONS(1956), + [anon_sym_module] = ACTIONS(1956), + [anon_sym_any] = ACTIONS(1956), + [anon_sym_number] = ACTIONS(1956), + [anon_sym_boolean] = ACTIONS(1956), + [anon_sym_string] = ACTIONS(1956), + [anon_sym_symbol] = ACTIONS(1956), + [anon_sym_object] = ACTIONS(1956), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [697] = { - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_EQ] = ACTIONS(691), + [698] = { + [sym__call_signature] = STATE(5633), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_let] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100800,86 +100954,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1938), - [sym_private_property_identifier] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_readonly] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(1936), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_override] = ACTIONS(1936), - [anon_sym_module] = ACTIONS(1936), - [anon_sym_any] = ACTIONS(1936), - [anon_sym_number] = ACTIONS(1936), - [anon_sym_boolean] = ACTIONS(1936), - [anon_sym_string] = ACTIONS(1936), - [anon_sym_symbol] = ACTIONS(1936), - [anon_sym_object] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [698] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [699] = { + [sym__call_signature] = STATE(5633), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2376), [anon_sym_export] = ACTIONS(2378), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_RPAREN] = ACTIONS(222), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2378), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100894,18 +101044,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2378), [anon_sym_readonly] = ACTIONS(2378), [anon_sym_get] = ACTIONS(2378), @@ -100924,52 +101074,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2378), [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [699] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [700] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(834), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(834), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100984,23 +101134,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), [anon_sym_set] = ACTIONS(2390), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(836), [anon_sym_declare] = ACTIONS(2390), [anon_sym_public] = ACTIONS(2390), [anon_sym_private] = ACTIONS(2390), @@ -101014,53 +101164,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [700] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2376), - [anon_sym_export] = ACTIONS(2378), + [701] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101075,82 +101224,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_readonly] = ACTIONS(2378), - [anon_sym_get] = ACTIONS(2378), - [anon_sym_set] = ACTIONS(2378), - [anon_sym_declare] = ACTIONS(2378), - [anon_sym_public] = ACTIONS(2378), - [anon_sym_private] = ACTIONS(2378), - [anon_sym_protected] = ACTIONS(2378), - [anon_sym_override] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_any] = ACTIONS(2378), - [anon_sym_number] = ACTIONS(2378), - [anon_sym_boolean] = ACTIONS(2378), - [anon_sym_string] = ACTIONS(2378), - [anon_sym_symbol] = ACTIONS(2378), - [anon_sym_object] = ACTIONS(2378), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [701] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [702] = { + [sym__call_signature] = STATE(5633), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2376), [anon_sym_export] = ACTIONS(2378), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2378), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101165,18 +101315,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2378), [anon_sym_readonly] = ACTIONS(2378), [anon_sym_get] = ACTIONS(2378), @@ -101194,52 +101344,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2378), [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [702] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2388), - [anon_sym_export] = ACTIONS(2390), + [703] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_let] = ACTIONS(2390), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2394), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101254,80 +101402,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_readonly] = ACTIONS(2390), - [anon_sym_get] = ACTIONS(2390), - [anon_sym_set] = ACTIONS(2390), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_declare] = ACTIONS(2390), - [anon_sym_public] = ACTIONS(2390), - [anon_sym_private] = ACTIONS(2390), - [anon_sym_protected] = ACTIONS(2390), - [anon_sym_override] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_any] = ACTIONS(2390), - [anon_sym_number] = ACTIONS(2390), - [anon_sym_boolean] = ACTIONS(2390), - [anon_sym_string] = ACTIONS(2390), - [anon_sym_symbol] = ACTIONS(2390), - [anon_sym_object] = ACTIONS(2390), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [sym__call_signature] = STATE(5889), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [704] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2392), [anon_sym_export] = ACTIONS(2394), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2394), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_let] = ACTIONS(2394), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_function] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2394), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101342,18 +101490,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2394), [anon_sym_readonly] = ACTIONS(2394), [anon_sym_get] = ACTIONS(2394), @@ -101371,51 +101519,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2394), [anon_sym_object] = ACTIONS(2394), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [704] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(2400), + [705] = { + [sym__call_signature] = STATE(5919), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2400), + [anon_sym_export] = ACTIONS(2402), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_EQ] = ACTIONS(858), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2402), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101430,80 +101578,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_readonly] = ACTIONS(2400), - [anon_sym_get] = ACTIONS(2400), - [anon_sym_set] = ACTIONS(2400), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_protected] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_any] = ACTIONS(2400), - [anon_sym_number] = ACTIONS(2400), - [anon_sym_boolean] = ACTIONS(2400), - [anon_sym_string] = ACTIONS(2400), - [anon_sym_symbol] = ACTIONS(2400), - [anon_sym_object] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [705] = { - [sym__call_signature] = STATE(5889), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2392), - [anon_sym_export] = ACTIONS(2394), + [706] = { + [sym__call_signature] = STATE(5633), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2394), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(883), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101518,80 +101667,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [706] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(2400), + [707] = { + [sym__call_signature] = STATE(5919), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2400), + [anon_sym_export] = ACTIONS(2402), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2402), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101606,80 +101754,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_readonly] = ACTIONS(2400), - [anon_sym_get] = ACTIONS(2400), - [anon_sym_set] = ACTIONS(2400), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_protected] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_any] = ACTIONS(2400), - [anon_sym_number] = ACTIONS(2400), - [anon_sym_boolean] = ACTIONS(2400), - [anon_sym_string] = ACTIONS(2400), - [anon_sym_symbol] = ACTIONS(2400), - [anon_sym_object] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [707] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(2400), + [708] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2394), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2402), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_function] = ACTIONS(2398), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101694,80 +101842,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_readonly] = ACTIONS(2400), - [anon_sym_get] = ACTIONS(2400), - [anon_sym_set] = ACTIONS(2400), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_protected] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_any] = ACTIONS(2400), - [anon_sym_number] = ACTIONS(2400), - [anon_sym_boolean] = ACTIONS(2400), - [anon_sym_string] = ACTIONS(2400), - [anon_sym_symbol] = ACTIONS(2400), - [anon_sym_object] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(2400), + [709] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2394), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2400), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2394), [anon_sym_function] = ACTIONS(2286), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101782,80 +101930,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_readonly] = ACTIONS(2400), - [anon_sym_get] = ACTIONS(2400), - [anon_sym_set] = ACTIONS(2400), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_protected] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_any] = ACTIONS(2400), - [anon_sym_number] = ACTIONS(2400), - [anon_sym_boolean] = ACTIONS(2400), - [anon_sym_string] = ACTIONS(2400), - [anon_sym_symbol] = ACTIONS(2400), - [anon_sym_object] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(2400), + [710] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2394), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2400), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2394), [anon_sym_function] = ACTIONS(2396), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101870,43 +102018,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_readonly] = ACTIONS(2400), - [anon_sym_get] = ACTIONS(2400), - [anon_sym_set] = ACTIONS(2400), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_protected] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_any] = ACTIONS(2400), - [anon_sym_number] = ACTIONS(2400), - [anon_sym_boolean] = ACTIONS(2400), - [anon_sym_string] = ACTIONS(2400), - [anon_sym_symbol] = ACTIONS(2400), - [anon_sym_object] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [710] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [711] = { + [sym__call_signature] = STATE(5794), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [712] = { + [sym__call_signature] = STATE(5633), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2376), [anon_sym_export] = ACTIONS(2378), [anon_sym_STAR] = ACTIONS(120), @@ -101914,37 +102149,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(878), + [anon_sym_of] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2378), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101959,18 +102193,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2378), [anon_sym_readonly] = ACTIONS(2378), [anon_sym_get] = ACTIONS(2378), @@ -101988,49 +102222,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2378), [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [711] = { - [sym__call_signature] = STATE(5790), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2404), - [anon_sym_export] = ACTIONS(2406), + [713] = { + [sym__call_signature] = STATE(5820), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(907), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2406), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2410), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2406), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2406), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102045,80 +102279,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_readonly] = ACTIONS(2406), - [anon_sym_get] = ACTIONS(2406), - [anon_sym_set] = ACTIONS(2406), - [anon_sym_declare] = ACTIONS(2406), - [anon_sym_public] = ACTIONS(2406), - [anon_sym_private] = ACTIONS(2406), - [anon_sym_protected] = ACTIONS(2406), - [anon_sym_override] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_any] = ACTIONS(2406), - [anon_sym_number] = ACTIONS(2406), - [anon_sym_boolean] = ACTIONS(2406), - [anon_sym_string] = ACTIONS(2406), - [anon_sym_symbol] = ACTIONS(2406), - [anon_sym_object] = ACTIONS(2406), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), [anon_sym_satisfies] = ACTIONS(120), [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [712] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [714] = { + [sym__call_signature] = STATE(5820), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2408), [anon_sym_export] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2410), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102133,18 +102366,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2410), [anon_sym_readonly] = ACTIONS(2410), [anon_sym_get] = ACTIONS(2410), @@ -102162,50 +102395,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2410), [anon_sym_object] = ACTIONS(2410), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [713] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2376), - [anon_sym_export] = ACTIONS(2378), + [715] = { + [sym__call_signature] = STATE(5643), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_in] = ACTIONS(878), - [anon_sym_of] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2378), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102220,78 +102452,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_readonly] = ACTIONS(2378), - [anon_sym_get] = ACTIONS(2378), - [anon_sym_set] = ACTIONS(2378), - [anon_sym_declare] = ACTIONS(2378), - [anon_sym_public] = ACTIONS(2378), - [anon_sym_private] = ACTIONS(2378), - [anon_sym_protected] = ACTIONS(2378), - [anon_sym_override] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_any] = ACTIONS(2378), - [anon_sym_number] = ACTIONS(2378), - [anon_sym_boolean] = ACTIONS(2378), - [anon_sym_string] = ACTIONS(2378), - [anon_sym_symbol] = ACTIONS(2378), - [anon_sym_object] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [714] = { - [sym__call_signature] = STATE(5790), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [716] = { + [sym__call_signature] = STATE(5794), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2404), [anon_sym_export] = ACTIONS(2406), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(126), [anon_sym_let] = ACTIONS(2406), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2406), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2406), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102306,18 +102539,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2406), [anon_sym_readonly] = ACTIONS(2406), [anon_sym_get] = ACTIONS(2406), @@ -102335,11 +102568,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2406), [anon_sym_object] = ACTIONS(2406), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [715] = { + [717] = { [ts_builtin_sym_end] = ACTIONS(1809), [sym_identifier] = ACTIONS(1811), [anon_sym_export] = ACTIONS(1811), @@ -102422,49 +102654,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1811), [anon_sym_interface] = ACTIONS(1811), [anon_sym_enum] = ACTIONS(1811), - [sym__automatic_semicolon] = ACTIONS(2412), + [sym__automatic_semicolon] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, - [716] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2408), - [anon_sym_export] = ACTIONS(2410), + [718] = { + [sym__call_signature] = STATE(5794), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(933), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2406), [anon_sym_function] = ACTIONS(2383), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102479,190 +102711,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [717] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(909), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2286), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [718] = { - [sym__call_signature] = STATE(5925), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2418), + [719] = { + [sym_catch_clause] = STATE(742), + [sym_finally_clause] = STATE(842), + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2420), [anon_sym_export] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(120), + [anon_sym_default] = ACTIONS(2420), [anon_sym_type] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2420), + [anon_sym_import] = ACTIONS(2420), + [anon_sym_with] = ACTIONS(2420), + [anon_sym_var] = ACTIONS(2420), [anon_sym_let] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_debugger] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2422), + [anon_sym_finally] = ACTIONS(2424), + [anon_sym_yield] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2420), [anon_sym_async] = ACTIONS(2420), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_function] = ACTIONS(2420), [anon_sym_new] = ACTIONS(2420), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2420), + [sym_super] = ACTIONS(2420), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_undefined] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2418), [anon_sym_static] = ACTIONS(2420), [anon_sym_readonly] = ACTIONS(2420), [anon_sym_get] = ACTIONS(2420), @@ -102679,136 +102824,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2420), [anon_sym_symbol] = ACTIONS(2420), [anon_sym_object] = ACTIONS(2420), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [719] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(909), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_abstract] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), [sym_html_comment] = ACTIONS(5), }, [720] = { - [sym__call_signature] = STATE(5925), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2418), - [anon_sym_export] = ACTIONS(2420), + [sym__call_signature] = STATE(5794), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(925), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(933), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2406), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102823,77 +102883,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_readonly] = ACTIONS(2420), - [anon_sym_get] = ACTIONS(2420), - [anon_sym_set] = ACTIONS(2420), - [anon_sym_declare] = ACTIONS(2420), - [anon_sym_public] = ACTIONS(2420), - [anon_sym_private] = ACTIONS(2420), - [anon_sym_protected] = ACTIONS(2420), - [anon_sym_override] = ACTIONS(2420), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_any] = ACTIONS(2420), - [anon_sym_number] = ACTIONS(2420), - [anon_sym_boolean] = ACTIONS(2420), - [anon_sym_string] = ACTIONS(2420), - [anon_sym_symbol] = ACTIONS(2420), - [anon_sym_object] = ACTIONS(2420), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [721] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), + [sym__call_signature] = STATE(5986), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2426), + [anon_sym_export] = ACTIONS(2428), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_EQ] = ACTIONS(925), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2428), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2422), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2428), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102908,78 +102969,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_readonly] = ACTIONS(2428), + [anon_sym_get] = ACTIONS(2428), + [anon_sym_set] = ACTIONS(2428), + [anon_sym_declare] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_protected] = ACTIONS(2428), + [anon_sym_override] = ACTIONS(2428), + [anon_sym_module] = ACTIONS(2428), + [anon_sym_any] = ACTIONS(2428), + [anon_sym_number] = ACTIONS(2428), + [anon_sym_boolean] = ACTIONS(2428), + [anon_sym_string] = ACTIONS(2428), + [anon_sym_symbol] = ACTIONS(2428), + [anon_sym_object] = ACTIONS(2428), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [722] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_catch] = ACTIONS(1655), + [anon_sym_finally] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1663), + [sym_html_comment] = ACTIONS(5), + }, + [723] = { + [sym__call_signature] = STATE(5643), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102994,78 +103140,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [723] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), + [724] = { + [sym__call_signature] = STATE(5643), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103080,79 +103226,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [724] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2408), - [anon_sym_export] = ACTIONS(2410), + [725] = { + [sym__call_signature] = STATE(5986), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2426), + [anon_sym_export] = ACTIONS(2428), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(890), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_let] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2428), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2428), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103167,164 +103313,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_readonly] = ACTIONS(2428), + [anon_sym_get] = ACTIONS(2428), + [anon_sym_set] = ACTIONS(2428), + [anon_sym_declare] = ACTIONS(2428), + [anon_sym_public] = ACTIONS(2428), + [anon_sym_private] = ACTIONS(2428), + [anon_sym_protected] = ACTIONS(2428), + [anon_sym_override] = ACTIONS(2428), + [anon_sym_module] = ACTIONS(2428), + [anon_sym_any] = ACTIONS(2428), + [anon_sym_number] = ACTIONS(2428), + [anon_sym_boolean] = ACTIONS(2428), + [anon_sym_string] = ACTIONS(2428), + [anon_sym_symbol] = ACTIONS(2428), + [anon_sym_object] = ACTIONS(2428), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_finally] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_object] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [sym__automatic_semicolon] = ACTIONS(1669), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [726] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2408), - [anon_sym_export] = ACTIONS(2410), + [sym__call_signature] = STATE(5643), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103339,163 +103398,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [727] = { - [sym_catch_clause] = STATE(742), - [sym_finally_clause] = STATE(863), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_typeof] = ACTIONS(2426), - [anon_sym_import] = ACTIONS(2426), - [anon_sym_with] = ACTIONS(2426), - [anon_sym_var] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_switch] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_await] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_debugger] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_throw] = ACTIONS(2426), - [anon_sym_case] = ACTIONS(2426), - [anon_sym_catch] = ACTIONS(2428), - [anon_sym_finally] = ACTIONS(2430), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_using] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_TILDE] = ACTIONS(2424), - [anon_sym_void] = ACTIONS(2426), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2424), - [sym_number] = ACTIONS(2424), - [sym_private_property_identifier] = ACTIONS(2424), - [sym_this] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_true] = ACTIONS(2426), - [sym_false] = ACTIONS(2426), - [sym_null] = ACTIONS(2426), - [sym_undefined] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_readonly] = ACTIONS(2426), - [anon_sym_get] = ACTIONS(2426), - [anon_sym_set] = ACTIONS(2426), - [anon_sym_declare] = ACTIONS(2426), - [anon_sym_public] = ACTIONS(2426), - [anon_sym_private] = ACTIONS(2426), - [anon_sym_protected] = ACTIONS(2426), - [anon_sym_override] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_any] = ACTIONS(2426), - [anon_sym_number] = ACTIONS(2426), - [anon_sym_boolean] = ACTIONS(2426), - [anon_sym_string] = ACTIONS(2426), - [anon_sym_symbol] = ACTIONS(2426), - [anon_sym_object] = ACTIONS(2426), - [anon_sym_abstract] = ACTIONS(2426), - [anon_sym_interface] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [sym_html_comment] = ACTIONS(5), - }, - [728] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2408), - [anon_sym_export] = ACTIONS(2410), + [sym__call_signature] = STATE(5643), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2412), + [anon_sym_export] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2398), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103510,39 +103484,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [729] = { + [728] = { [ts_builtin_sym_end] = ACTIONS(1809), [sym_identifier] = ACTIONS(1811), [anon_sym_export] = ACTIONS(1811), @@ -103627,215 +103602,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1809), [sym_html_comment] = ACTIONS(5), }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1831), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_namespace] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_COMMA] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(1831), + [anon_sym_with] = ACTIONS(1831), + [anon_sym_var] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_switch] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_await] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_debugger] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_throw] = ACTIONS(1831), + [anon_sym_case] = ACTIONS(1831), + [anon_sym_yield] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1829), + [anon_sym_class] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_function] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_using] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1829), + [sym_number] = ACTIONS(1829), + [sym_private_property_identifier] = ACTIONS(1829), + [sym_this] = ACTIONS(1831), + [sym_super] = ACTIONS(1831), + [sym_true] = ACTIONS(1831), + [sym_false] = ACTIONS(1831), + [sym_null] = ACTIONS(1831), + [sym_undefined] = ACTIONS(1831), + [anon_sym_AT] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_readonly] = ACTIONS(1831), + [anon_sym_get] = ACTIONS(1831), + [anon_sym_set] = ACTIONS(1831), + [anon_sym_declare] = ACTIONS(1831), + [anon_sym_public] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1831), + [anon_sym_protected] = ACTIONS(1831), + [anon_sym_override] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_any] = ACTIONS(1831), + [anon_sym_number] = ACTIONS(1831), + [anon_sym_boolean] = ACTIONS(1831), + [anon_sym_string] = ACTIONS(1831), + [anon_sym_symbol] = ACTIONS(1831), + [anon_sym_object] = ACTIONS(1831), + [anon_sym_abstract] = ACTIONS(1831), + [anon_sym_interface] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_PIPE_RBRACE] = ACTIONS(1829), + [sym__automatic_semicolon] = ACTIONS(1829), + [sym_html_comment] = ACTIONS(5), + }, [730] = { - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_typeof] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_with] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_debugger] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_case] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_finally] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_using] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_delete] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1723), + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [anon_sym_export] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), + [anon_sym_namespace] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_COMMA] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_typeof] = ACTIONS(1745), + [anon_sym_import] = ACTIONS(1745), + [anon_sym_with] = ACTIONS(1745), + [anon_sym_var] = ACTIONS(1745), + [anon_sym_let] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_else] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_switch] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_do] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_debugger] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1745), + [anon_sym_yield] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_class] = ACTIONS(1745), + [anon_sym_async] = ACTIONS(1745), + [anon_sym_function] = ACTIONS(1745), + [anon_sym_new] = ACTIONS(1745), + [anon_sym_using] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_SLASH] = ACTIONS(1745), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_void] = ACTIONS(1745), + [anon_sym_delete] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1743), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1743), + [sym_number] = ACTIONS(1743), + [sym_private_property_identifier] = ACTIONS(1743), + [sym_this] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [sym_null] = ACTIONS(1745), + [sym_undefined] = ACTIONS(1745), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_readonly] = ACTIONS(1745), + [anon_sym_get] = ACTIONS(1745), + [anon_sym_set] = ACTIONS(1745), + [anon_sym_declare] = ACTIONS(1745), + [anon_sym_public] = ACTIONS(1745), + [anon_sym_private] = ACTIONS(1745), + [anon_sym_protected] = ACTIONS(1745), + [anon_sym_override] = ACTIONS(1745), + [anon_sym_module] = ACTIONS(1745), + [anon_sym_any] = ACTIONS(1745), + [anon_sym_number] = ACTIONS(1745), + [anon_sym_boolean] = ACTIONS(1745), + [anon_sym_string] = ACTIONS(1745), + [anon_sym_symbol] = ACTIONS(1745), + [anon_sym_object] = ACTIONS(1745), + [anon_sym_abstract] = ACTIONS(1745), + [anon_sym_interface] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_PIPE_RBRACE] = ACTIONS(1743), + [sym__automatic_semicolon] = ACTIONS(1743), + [sym_html_comment] = ACTIONS(5), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_export] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_typeof] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_with] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_await] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_debugger] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_void] = ACTIONS(1811), + [anon_sym_delete] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1809), + [sym_number] = ACTIONS(1809), + [sym_private_property_identifier] = ACTIONS(1809), + [sym_this] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_readonly] = ACTIONS(1811), + [anon_sym_get] = ACTIONS(1811), + [anon_sym_set] = ACTIONS(1811), + [anon_sym_declare] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_protected] = ACTIONS(1811), + [anon_sym_override] = ACTIONS(1811), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_any] = ACTIONS(1811), + [anon_sym_number] = ACTIONS(1811), + [anon_sym_boolean] = ACTIONS(1811), + [anon_sym_string] = ACTIONS(1811), + [anon_sym_symbol] = ACTIONS(1811), + [anon_sym_object] = ACTIONS(1811), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_PIPE_RBRACE] = ACTIONS(1809), + [sym__automatic_semicolon] = ACTIONS(2432), + [sym_html_comment] = ACTIONS(5), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(1719), + [sym_identifier] = ACTIONS(1721), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_type] = ACTIONS(1721), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_COMMA] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_typeof] = ACTIONS(1721), + [anon_sym_import] = ACTIONS(1721), + [anon_sym_with] = ACTIONS(1721), + [anon_sym_var] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_BANG] = ACTIONS(1719), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_switch] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_await] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_debugger] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1721), + [anon_sym_case] = ACTIONS(1721), + [anon_sym_yield] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [anon_sym_SQUOTE] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1721), + [anon_sym_async] = ACTIONS(1721), + [anon_sym_function] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_using] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_SLASH] = ACTIONS(1721), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1719), + [anon_sym_void] = ACTIONS(1721), + [anon_sym_delete] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [sym_private_property_identifier] = ACTIONS(1719), + [sym_this] = ACTIONS(1721), + [sym_super] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_null] = ACTIONS(1721), + [sym_undefined] = ACTIONS(1721), + [anon_sym_AT] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1721), + [anon_sym_readonly] = ACTIONS(1721), + [anon_sym_get] = ACTIONS(1721), + [anon_sym_set] = ACTIONS(1721), + [anon_sym_declare] = ACTIONS(1721), + [anon_sym_public] = ACTIONS(1721), + [anon_sym_private] = ACTIONS(1721), + [anon_sym_protected] = ACTIONS(1721), + [anon_sym_override] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [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(1721), + [anon_sym_interface] = ACTIONS(1721), + [anon_sym_enum] = ACTIONS(1721), + [anon_sym_PIPE_RBRACE] = ACTIONS(1719), + [sym__automatic_semicolon] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1723), - [sym_number] = ACTIONS(1723), - [sym_private_property_identifier] = ACTIONS(1723), - [sym_this] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_null] = ACTIONS(1725), - [sym_undefined] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_readonly] = ACTIONS(1725), - [anon_sym_get] = ACTIONS(1725), - [anon_sym_set] = ACTIONS(1725), - [anon_sym_declare] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_protected] = ACTIONS(1725), - [anon_sym_override] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_any] = ACTIONS(1725), - [anon_sym_number] = ACTIONS(1725), - [anon_sym_boolean] = ACTIONS(1725), - [anon_sym_string] = ACTIONS(1725), - [anon_sym_symbol] = ACTIONS(1725), - [anon_sym_object] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [sym_html_comment] = ACTIONS(5), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_object] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_PIPE_RBRACE] = ACTIONS(1659), - [sym__automatic_semicolon] = ACTIONS(2432), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [anon_sym_PIPE_RBRACE] = ACTIONS(1653), + [sym__automatic_semicolon] = ACTIONS(2434), [sym_html_comment] = ACTIONS(5), }, - [732] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2408), - [anon_sym_export] = ACTIONS(2410), + [734] = { + [sym__call_signature] = STATE(5956), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2436), + [anon_sym_export] = ACTIONS(2438), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_EQ] = ACTIONS(955), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2438), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103850,77 +104080,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2438), + [anon_sym_readonly] = ACTIONS(2438), + [anon_sym_get] = ACTIONS(2438), + [anon_sym_set] = ACTIONS(2438), + [anon_sym_declare] = ACTIONS(2438), + [anon_sym_public] = ACTIONS(2438), + [anon_sym_private] = ACTIONS(2438), + [anon_sym_protected] = ACTIONS(2438), + [anon_sym_override] = ACTIONS(2438), + [anon_sym_module] = ACTIONS(2438), + [anon_sym_any] = ACTIONS(2438), + [anon_sym_number] = ACTIONS(2438), + [anon_sym_boolean] = ACTIONS(2438), + [anon_sym_string] = ACTIONS(2438), + [anon_sym_symbol] = ACTIONS(2438), + [anon_sym_object] = ACTIONS(2438), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [733] = { - [sym__call_signature] = STATE(5936), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), + [735] = { + [sym__call_signature] = STATE(5794), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2406), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103935,47 +104165,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [736] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), @@ -103983,29 +104213,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104020,18 +104250,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104049,103 +104279,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_PIPE_RBRACE] = ACTIONS(1869), - [sym__automatic_semicolon] = ACTIONS(1869), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [736] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [737] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), @@ -104153,29 +104298,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(878), [anon_sym_of] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104190,18 +104335,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104219,180 +104364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1739), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_typeof] = ACTIONS(1739), - [anon_sym_import] = ACTIONS(1739), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_var] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_await] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_debugger] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_function] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_void] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1737), - [sym_number] = ACTIONS(1737), - [sym_private_property_identifier] = ACTIONS(1737), - [sym_this] = ACTIONS(1739), - [sym_super] = ACTIONS(1739), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_undefined] = ACTIONS(1739), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_readonly] = ACTIONS(1739), - [anon_sym_get] = ACTIONS(1739), - [anon_sym_set] = ACTIONS(1739), - [anon_sym_declare] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [anon_sym_override] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_any] = ACTIONS(1739), - [anon_sym_number] = ACTIONS(1739), - [anon_sym_boolean] = ACTIONS(1739), - [anon_sym_string] = ACTIONS(1739), - [anon_sym_symbol] = ACTIONS(1739), - [anon_sym_object] = ACTIONS(1739), - [anon_sym_abstract] = ACTIONS(1739), - [anon_sym_interface] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_PIPE_RBRACE] = ACTIONS(1737), - [sym__automatic_semicolon] = ACTIONS(1737), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [738] = { - [sym__call_signature] = STATE(5936), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [739] = { [ts_builtin_sym_end] = ACTIONS(1809), [sym_identifier] = ACTIONS(1811), [anon_sym_export] = ACTIONS(1811), @@ -104425,6 +104400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1811), [anon_sym_throw] = ACTIONS(1811), [anon_sym_case] = ACTIONS(1811), + [anon_sym_catch] = ACTIONS(1811), + [anon_sym_finally] = ACTIONS(1811), [anon_sym_yield] = ACTIONS(1811), [anon_sym_LBRACK] = ACTIONS(1809), [anon_sym_DQUOTE] = ACTIONS(1809), @@ -104473,182 +104450,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1811), [anon_sym_interface] = ACTIONS(1811), [anon_sym_enum] = ACTIONS(1811), - [anon_sym_PIPE_RBRACE] = ACTIONS(1809), - [sym__automatic_semicolon] = ACTIONS(2438), [sym_html_comment] = ACTIONS(5), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_typeof] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_with] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_debugger] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_case] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_using] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_delete] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1723), + [739] = { + [sym__call_signature] = STATE(5794), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(933), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1723), - [sym_number] = ACTIONS(1723), - [sym_private_property_identifier] = ACTIONS(1723), - [sym_this] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_null] = ACTIONS(1725), - [sym_undefined] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_readonly] = ACTIONS(1725), - [anon_sym_get] = ACTIONS(1725), - [anon_sym_set] = ACTIONS(1725), - [anon_sym_declare] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_protected] = ACTIONS(1725), - [anon_sym_override] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_any] = ACTIONS(1725), - [anon_sym_number] = ACTIONS(1725), - [anon_sym_boolean] = ACTIONS(1725), - [anon_sym_string] = ACTIONS(1725), - [anon_sym_symbol] = ACTIONS(1725), - [anon_sym_object] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_PIPE_RBRACE] = ACTIONS(1723), - [sym__automatic_semicolon] = ACTIONS(1723), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [740] = { + [sym__call_signature] = STATE(5956), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), + [sym_identifier] = ACTIONS(2436), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_EQ] = ACTIONS(832), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2438), + [anon_sym_readonly] = ACTIONS(2438), + [anon_sym_get] = ACTIONS(2438), + [anon_sym_set] = ACTIONS(2438), + [anon_sym_declare] = ACTIONS(2438), + [anon_sym_public] = ACTIONS(2438), + [anon_sym_private] = ACTIONS(2438), + [anon_sym_protected] = ACTIONS(2438), + [anon_sym_override] = ACTIONS(2438), + [anon_sym_module] = ACTIONS(2438), + [anon_sym_any] = ACTIONS(2438), + [anon_sym_number] = ACTIONS(2438), + [anon_sym_boolean] = ACTIONS(2438), + [anon_sym_string] = ACTIONS(2438), + [anon_sym_symbol] = ACTIONS(2438), + [anon_sym_object] = ACTIONS(2438), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [741] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_catch] = ACTIONS(1811), - [anon_sym_finally] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym_identifier] = ACTIONS(1721), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_type] = ACTIONS(1721), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_COMMA] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_typeof] = ACTIONS(1721), + [anon_sym_import] = ACTIONS(1721), + [anon_sym_with] = ACTIONS(1721), + [anon_sym_var] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_BANG] = ACTIONS(1719), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_switch] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_await] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_debugger] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_throw] = ACTIONS(1721), + [anon_sym_case] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_finally] = ACTIONS(1721), + [anon_sym_yield] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [anon_sym_SQUOTE] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1721), + [anon_sym_async] = ACTIONS(1721), + [anon_sym_function] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_using] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_SLASH] = ACTIONS(1721), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1719), + [anon_sym_void] = ACTIONS(1721), + [anon_sym_delete] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_number] = ACTIONS(1719), + [sym_private_property_identifier] = ACTIONS(1719), + [sym_this] = ACTIONS(1721), + [sym_super] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_null] = ACTIONS(1721), + [sym_undefined] = ACTIONS(1721), + [anon_sym_AT] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1721), + [anon_sym_readonly] = ACTIONS(1721), + [anon_sym_get] = ACTIONS(1721), + [anon_sym_set] = ACTIONS(1721), + [anon_sym_declare] = ACTIONS(1721), + [anon_sym_public] = ACTIONS(1721), + [anon_sym_private] = ACTIONS(1721), + [anon_sym_protected] = ACTIONS(1721), + [anon_sym_override] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [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(1721), + [anon_sym_interface] = ACTIONS(1721), + [anon_sym_enum] = ACTIONS(1721), [sym_html_comment] = ACTIONS(5), }, [742] = { - [sym_finally_clause] = STATE(903), + [sym_finally_clause] = STATE(815), [ts_builtin_sym_end] = ACTIONS(2440), [sym_identifier] = ACTIONS(2442), [anon_sym_export] = ACTIONS(2442), @@ -104680,7 +104740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2442), [anon_sym_throw] = ACTIONS(2442), [anon_sym_case] = ACTIONS(2442), - [anon_sym_finally] = ACTIONS(2430), + [anon_sym_finally] = ACTIONS(2424), [anon_sym_yield] = ACTIONS(2442), [anon_sym_LBRACK] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(2440), @@ -104732,9 +104792,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [743] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [sym_statement_block] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [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(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym_html_comment] = ACTIONS(5), + }, + [744] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), @@ -104746,29 +104890,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104783,18 +104927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104812,47 +104956,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [744] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [745] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(971), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104867,18 +105011,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104896,47 +105040,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [746] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1031), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104951,18 +105095,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104980,47 +105124,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [746] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [747] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105035,18 +105179,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105064,13 +105208,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [747] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [748] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), @@ -105082,29 +105226,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105119,18 +105263,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105148,47 +105292,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [749] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(975), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105203,18 +105347,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105232,47 +105376,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [750] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(1033), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105287,18 +105431,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105316,215 +105460,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [750] = { - [sym_statement_block] = STATE(911), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_DOT] = ACTIONS(2446), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [751] = { - [sym_statement_block] = STATE(911), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_DOT] = ACTIONS(2448), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym_html_comment] = ACTIONS(5), - }, - [752] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105539,18 +105515,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105568,47 +105544,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [752] = { + [sym_statement_block] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [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(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), [sym_html_comment] = ACTIONS(5), }, [753] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(969), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105623,18 +105683,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105652,47 +105712,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [754] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3851), + [sym_type_parameters] = STATE(5275), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(1035), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105707,18 +105767,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105736,10 +105796,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [755] = { + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_typeof] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_debugger] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_void] = ACTIONS(1863), + [anon_sym_delete] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1861), + [sym_number] = ACTIONS(1861), + [sym_private_property_identifier] = ACTIONS(1861), + [sym_this] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [sym_undefined] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym__automatic_semicolon] = ACTIONS(1869), + [sym_html_comment] = ACTIONS(5), + }, + [756] = { [ts_builtin_sym_end] = ACTIONS(2450), [sym_identifier] = ACTIONS(2452), [anon_sym_export] = ACTIONS(2452), @@ -105822,7 +105965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(2450), [sym_html_comment] = ACTIONS(5), }, - [756] = { + [757] = { [ts_builtin_sym_end] = ACTIONS(2454), [sym_identifier] = ACTIONS(2456), [anon_sym_export] = ACTIONS(2456), @@ -105843,7 +105986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2456), [anon_sym_for] = ACTIONS(2456), [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2458), [anon_sym_await] = ACTIONS(2456), [anon_sym_while] = ACTIONS(2456), [anon_sym_do] = ACTIONS(2456), @@ -105902,316 +106045,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2456), [anon_sym_interface] = ACTIONS(2456), [anon_sym_enum] = ACTIONS(2456), - [sym__automatic_semicolon] = ACTIONS(2454), - [sym_html_comment] = ACTIONS(5), - }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_export] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_namespace] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_typeof] = ACTIONS(1701), - [anon_sym_import] = ACTIONS(1701), - [anon_sym_with] = ACTIONS(1701), - [anon_sym_var] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_switch] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_await] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_debugger] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_throw] = ACTIONS(1701), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_function] = ACTIONS(1701), - [anon_sym_new] = ACTIONS(1701), - [anon_sym_using] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1701), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_void] = ACTIONS(1701), - [anon_sym_delete] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1699), - [sym_number] = ACTIONS(1699), - [sym_private_property_identifier] = ACTIONS(1699), - [sym_this] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_true] = ACTIONS(1701), - [sym_false] = ACTIONS(1701), - [sym_null] = ACTIONS(1701), - [sym_undefined] = ACTIONS(1701), - [anon_sym_AT] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_readonly] = ACTIONS(1701), - [anon_sym_get] = ACTIONS(1701), - [anon_sym_set] = ACTIONS(1701), - [anon_sym_declare] = ACTIONS(1701), - [anon_sym_public] = ACTIONS(1701), - [anon_sym_private] = ACTIONS(1701), - [anon_sym_protected] = ACTIONS(1701), - [anon_sym_override] = ACTIONS(1701), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_any] = ACTIONS(1701), - [anon_sym_number] = ACTIONS(1701), - [anon_sym_boolean] = ACTIONS(1701), - [anon_sym_string] = ACTIONS(1701), - [anon_sym_symbol] = ACTIONS(1701), - [anon_sym_object] = ACTIONS(1701), - [anon_sym_abstract] = ACTIONS(1701), - [anon_sym_interface] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), + [sym__automatic_semicolon] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, [758] = { - [ts_builtin_sym_end] = ACTIONS(2458), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5119), + [sym_optional_tuple_parameter] = STATE(5119), + [sym_optional_type] = STATE(5119), + [sym_rest_type] = STATE(5119), + [sym__tuple_type_member] = STATE(5119), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2460), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2460), - [anon_sym_import] = ACTIONS(2460), - [anon_sym_with] = ACTIONS(2460), - [anon_sym_var] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_switch] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_await] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_debugger] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_throw] = ACTIONS(2460), - [anon_sym_case] = ACTIONS(2460), - [anon_sym_yield] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2460), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_using] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_SLASH] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2460), - [anon_sym_delete] = ACTIONS(2460), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_private_property_identifier] = ACTIONS(2458), - [sym_this] = ACTIONS(2460), - [sym_super] = ACTIONS(2460), - [sym_true] = ACTIONS(2460), - [sym_false] = ACTIONS(2460), - [sym_null] = ACTIONS(2460), - [sym_undefined] = ACTIONS(2460), - [anon_sym_AT] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_object] = ACTIONS(2460), - [anon_sym_abstract] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2460), - [sym__automatic_semicolon] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [759] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_finally] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2464), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_TILDE] = ACTIONS(2464), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2464), - [sym_number] = ACTIONS(2464), - [sym_private_property_identifier] = ACTIONS(2464), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2464), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(4863), + [sym_optional_tuple_parameter] = STATE(4863), + [sym_optional_type] = STATE(4863), + [sym_rest_type] = STATE(4863), + [sym__tuple_type_member] = STATE(4863), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [760] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(4784), - [sym_optional_tuple_parameter] = STATE(4784), - [sym_optional_type] = STATE(4784), - [sym_rest_type] = STATE(4784), - [sym__tuple_type_member] = STATE(4784), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5044), + [sym_optional_tuple_parameter] = STATE(5044), + [sym_optional_type] = STATE(5044), + [sym_rest_type] = STATE(5044), + [sym__tuple_type_member] = STATE(5044), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2476), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2472), + [anon_sym_RBRACK] = ACTIONS(2478), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -106220,81 +106280,745 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [761] = { + [sym_else_clause] = STATE(785), + [ts_builtin_sym_end] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2480), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2480), + [sym_number] = ACTIONS(2480), + [sym_private_property_identifier] = ACTIONS(2480), + [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(2480), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym_html_comment] = ACTIONS(5), + }, + [762] = { + [sym_statement_block] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [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(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym_html_comment] = ACTIONS(5), + }, + [763] = { + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2488), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2488), + [anon_sym_import] = ACTIONS(2488), + [anon_sym_with] = ACTIONS(2488), + [anon_sym_var] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_switch] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_await] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_debugger] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_throw] = ACTIONS(2488), + [anon_sym_case] = ACTIONS(2488), + [anon_sym_finally] = ACTIONS(2488), + [anon_sym_yield] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_class] = ACTIONS(2488), + [anon_sym_async] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_using] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_void] = ACTIONS(2488), + [anon_sym_delete] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2486), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [sym_this] = ACTIONS(2488), + [sym_super] = ACTIONS(2488), + [sym_true] = ACTIONS(2488), + [sym_false] = ACTIONS(2488), + [sym_null] = ACTIONS(2488), + [sym_undefined] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_readonly] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_declare] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_protected] = ACTIONS(2488), + [anon_sym_override] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_any] = ACTIONS(2488), + [anon_sym_number] = ACTIONS(2488), + [anon_sym_boolean] = ACTIONS(2488), + [anon_sym_string] = ACTIONS(2488), + [anon_sym_symbol] = ACTIONS(2488), + [anon_sym_object] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_interface] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [sym_html_comment] = ACTIONS(5), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_typeof] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_var] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_do] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_debugger] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_case] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_void] = ACTIONS(1873), + [anon_sym_delete] = ACTIONS(1873), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_number] = ACTIONS(1871), + [sym_private_property_identifier] = ACTIONS(1871), + [sym_this] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_undefined] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_get] = ACTIONS(1873), + [anon_sym_set] = ACTIONS(1873), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_private] = ACTIONS(1873), + [anon_sym_protected] = ACTIONS(1873), + [anon_sym_override] = ACTIONS(1873), + [anon_sym_module] = ACTIONS(1873), + [anon_sym_any] = ACTIONS(1873), + [anon_sym_number] = ACTIONS(1873), + [anon_sym_boolean] = ACTIONS(1873), + [anon_sym_string] = ACTIONS(1873), + [anon_sym_symbol] = ACTIONS(1873), + [anon_sym_object] = ACTIONS(1873), + [anon_sym_abstract] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [sym_html_comment] = ACTIONS(5), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_namespace] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym_import] = ACTIONS(1797), + [anon_sym_with] = ACTIONS(1797), + [anon_sym_var] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_switch] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_debugger] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_throw] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1797), + [anon_sym_using] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_void] = ACTIONS(1797), + [anon_sym_delete] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1795), + [sym_number] = ACTIONS(1795), + [sym_private_property_identifier] = ACTIONS(1795), + [sym_this] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_null] = ACTIONS(1797), + [sym_undefined] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_get] = ACTIONS(1797), + [anon_sym_set] = ACTIONS(1797), + [anon_sym_declare] = ACTIONS(1797), + [anon_sym_public] = ACTIONS(1797), + [anon_sym_private] = ACTIONS(1797), + [anon_sym_protected] = ACTIONS(1797), + [anon_sym_override] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_any] = ACTIONS(1797), + [anon_sym_number] = ACTIONS(1797), + [anon_sym_boolean] = ACTIONS(1797), + [anon_sym_string] = ACTIONS(1797), + [anon_sym_symbol] = ACTIONS(1797), + [anon_sym_object] = ACTIONS(1797), + [anon_sym_abstract] = ACTIONS(1797), + [anon_sym_interface] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [sym__automatic_semicolon] = ACTIONS(1803), + [sym_html_comment] = ACTIONS(5), + }, + [766] = { + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_namespace] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_typeof] = ACTIONS(1835), + [anon_sym_import] = ACTIONS(1835), + [anon_sym_with] = ACTIONS(1835), + [anon_sym_var] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_switch] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_debugger] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_case] = ACTIONS(1835), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(1833), + [anon_sym_class] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_function] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_using] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_delete] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1833), + [sym_number] = ACTIONS(1833), + [sym_private_property_identifier] = ACTIONS(1833), + [sym_this] = ACTIONS(1835), + [sym_super] = ACTIONS(1835), + [sym_true] = ACTIONS(1835), + [sym_false] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1833), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_readonly] = ACTIONS(1835), + [anon_sym_get] = ACTIONS(1835), + [anon_sym_set] = ACTIONS(1835), + [anon_sym_declare] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1835), + [anon_sym_private] = ACTIONS(1835), + [anon_sym_protected] = ACTIONS(1835), + [anon_sym_override] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_any] = ACTIONS(1835), + [anon_sym_number] = ACTIONS(1835), + [anon_sym_boolean] = ACTIONS(1835), + [anon_sym_string] = ACTIONS(1835), + [anon_sym_symbol] = ACTIONS(1835), + [anon_sym_object] = ACTIONS(1835), + [anon_sym_abstract] = ACTIONS(1835), + [anon_sym_interface] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [sym__automatic_semicolon] = ACTIONS(1841), + [sym_html_comment] = ACTIONS(5), + }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1807), + [anon_sym_default] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1807), + [anon_sym_namespace] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_typeof] = ACTIONS(1807), + [anon_sym_import] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_var] = ACTIONS(1807), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_switch] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_await] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_try] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_debugger] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_throw] = ACTIONS(1807), + [anon_sym_case] = ACTIONS(1807), + [anon_sym_yield] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1807), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_function] = ACTIONS(1807), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_using] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_void] = ACTIONS(1807), + [anon_sym_delete] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1805), + [sym_number] = ACTIONS(1805), + [sym_private_property_identifier] = ACTIONS(1805), + [sym_this] = ACTIONS(1807), + [sym_super] = ACTIONS(1807), + [sym_true] = ACTIONS(1807), + [sym_false] = ACTIONS(1807), + [sym_null] = ACTIONS(1807), + [sym_undefined] = ACTIONS(1807), + [anon_sym_AT] = ACTIONS(1805), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_readonly] = ACTIONS(1807), + [anon_sym_get] = ACTIONS(1807), + [anon_sym_set] = ACTIONS(1807), + [anon_sym_declare] = ACTIONS(1807), + [anon_sym_public] = ACTIONS(1807), + [anon_sym_private] = ACTIONS(1807), + [anon_sym_protected] = ACTIONS(1807), + [anon_sym_override] = ACTIONS(1807), + [anon_sym_module] = ACTIONS(1807), + [anon_sym_any] = ACTIONS(1807), + [anon_sym_number] = ACTIONS(1807), + [anon_sym_boolean] = ACTIONS(1807), + [anon_sym_string] = ACTIONS(1807), + [anon_sym_symbol] = ACTIONS(1807), + [anon_sym_object] = ACTIONS(1807), + [anon_sym_abstract] = ACTIONS(1807), + [anon_sym_interface] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [sym_html_comment] = ACTIONS(5), + }, + [768] = { + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_typeof] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_with] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_debugger] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_throw] = ACTIONS(1725), + [anon_sym_case] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(1723), + [anon_sym_void] = ACTIONS(1725), + [anon_sym_delete] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1723), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_number] = ACTIONS(1723), + [sym_private_property_identifier] = ACTIONS(1723), + [sym_this] = ACTIONS(1725), + [sym_super] = ACTIONS(1725), + [sym_true] = ACTIONS(1725), + [sym_false] = ACTIONS(1725), + [sym_null] = ACTIONS(1725), + [sym_undefined] = ACTIONS(1725), + [anon_sym_AT] = ACTIONS(1723), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [sym__automatic_semicolon] = ACTIONS(1731), [sym_html_comment] = ACTIONS(5), }, - [761] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5194), - [sym_optional_tuple_parameter] = STATE(5194), - [sym_optional_type] = STATE(5194), - [sym_rest_type] = STATE(5194), - [sym__tuple_type_member] = STATE(5194), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), + [769] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5175), + [sym_optional_tuple_parameter] = STATE(5175), + [sym_optional_type] = STATE(5175), + [sym_rest_type] = STATE(5175), + [sym__tuple_type_member] = STATE(5175), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2480), + [anon_sym_COMMA] = ACTIONS(2490), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2482), + [anon_sym_RBRACK] = ACTIONS(2492), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -106303,81 +107027,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [762] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(4649), - [sym_optional_tuple_parameter] = STATE(4649), - [sym_optional_type] = STATE(4649), - [sym_rest_type] = STATE(4649), - [sym__tuple_type_member] = STATE(4649), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), + [770] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(4657), + [sym_optional_tuple_parameter] = STATE(4657), + [sym_optional_type] = STATE(4657), + [sym_rest_type] = STATE(4657), + [sym__tuple_type_member] = STATE(4657), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COMMA] = ACTIONS(2494), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2486), + [anon_sym_RBRACK] = ACTIONS(2496), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -106386,356 +107110,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [763] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(4682), - [sym_optional_tuple_parameter] = STATE(4682), - [sym_optional_type] = STATE(4682), - [sym_rest_type] = STATE(4682), - [sym__tuple_type_member] = STATE(4682), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2488), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [771] = { + [ts_builtin_sym_end] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1735), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1735), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_typeof] = ACTIONS(1735), + [anon_sym_import] = ACTIONS(1735), + [anon_sym_with] = ACTIONS(1735), + [anon_sym_var] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_debugger] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1735), + [anon_sym_case] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1733), + [anon_sym_class] = ACTIONS(1735), + [anon_sym_async] = ACTIONS(1735), + [anon_sym_function] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1735), + [anon_sym_using] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_SLASH] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_TILDE] = ACTIONS(1733), + [anon_sym_void] = ACTIONS(1735), + [anon_sym_delete] = ACTIONS(1735), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1733), + [sym_number] = ACTIONS(1733), + [sym_private_property_identifier] = ACTIONS(1733), + [sym_this] = ACTIONS(1735), + [sym_super] = ACTIONS(1735), + [sym_true] = ACTIONS(1735), + [sym_false] = ACTIONS(1735), + [sym_null] = ACTIONS(1735), + [sym_undefined] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1733), + [anon_sym_static] = ACTIONS(1735), + [anon_sym_readonly] = ACTIONS(1735), + [anon_sym_get] = ACTIONS(1735), + [anon_sym_set] = ACTIONS(1735), + [anon_sym_declare] = ACTIONS(1735), + [anon_sym_public] = ACTIONS(1735), + [anon_sym_private] = ACTIONS(1735), + [anon_sym_protected] = ACTIONS(1735), + [anon_sym_override] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_any] = ACTIONS(1735), + [anon_sym_number] = ACTIONS(1735), + [anon_sym_boolean] = ACTIONS(1735), + [anon_sym_string] = ACTIONS(1735), + [anon_sym_symbol] = ACTIONS(1735), + [anon_sym_object] = ACTIONS(1735), + [anon_sym_abstract] = ACTIONS(1735), + [anon_sym_interface] = ACTIONS(1735), + [anon_sym_enum] = ACTIONS(1735), + [sym__automatic_semicolon] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_debugger] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_throw] = ACTIONS(1705), - [anon_sym_case] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1705), - [anon_sym_delete] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_private_property_identifier] = ACTIONS(1703), - [sym_this] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_true] = ACTIONS(1705), - [sym_false] = ACTIONS(1705), - [sym_null] = ACTIONS(1705), - [sym_undefined] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_readonly] = ACTIONS(1705), - [anon_sym_get] = ACTIONS(1705), - [anon_sym_set] = ACTIONS(1705), - [anon_sym_declare] = ACTIONS(1705), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_override] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_any] = ACTIONS(1705), - [anon_sym_number] = ACTIONS(1705), - [anon_sym_boolean] = ACTIONS(1705), - [anon_sym_string] = ACTIONS(1705), - [anon_sym_symbol] = ACTIONS(1705), - [anon_sym_object] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1711), + [772] = { + [ts_builtin_sym_end] = ACTIONS(1775), + [sym_identifier] = ACTIONS(1777), + [anon_sym_export] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_namespace] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_typeof] = ACTIONS(1777), + [anon_sym_import] = ACTIONS(1777), + [anon_sym_with] = ACTIONS(1777), + [anon_sym_var] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_switch] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_do] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_debugger] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_throw] = ACTIONS(1777), + [anon_sym_case] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1775), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_class] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_function] = ACTIONS(1777), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_SLASH] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_void] = ACTIONS(1777), + [anon_sym_delete] = ACTIONS(1777), + [anon_sym_PLUS_PLUS] = ACTIONS(1775), + [anon_sym_DASH_DASH] = ACTIONS(1775), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1775), + [sym_number] = ACTIONS(1775), + [sym_private_property_identifier] = ACTIONS(1775), + [sym_this] = ACTIONS(1777), + [sym_super] = ACTIONS(1777), + [sym_true] = ACTIONS(1777), + [sym_false] = ACTIONS(1777), + [sym_null] = ACTIONS(1777), + [sym_undefined] = ACTIONS(1777), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1777), + [anon_sym_readonly] = ACTIONS(1777), + [anon_sym_get] = ACTIONS(1777), + [anon_sym_set] = ACTIONS(1777), + [anon_sym_declare] = ACTIONS(1777), + [anon_sym_public] = ACTIONS(1777), + [anon_sym_private] = ACTIONS(1777), + [anon_sym_protected] = ACTIONS(1777), + [anon_sym_override] = ACTIONS(1777), + [anon_sym_module] = ACTIONS(1777), + [anon_sym_any] = ACTIONS(1777), + [anon_sym_number] = ACTIONS(1777), + [anon_sym_boolean] = ACTIONS(1777), + [anon_sym_string] = ACTIONS(1777), + [anon_sym_symbol] = ACTIONS(1777), + [anon_sym_object] = ACTIONS(1777), + [anon_sym_abstract] = ACTIONS(1777), + [anon_sym_interface] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [sym__automatic_semicolon] = ACTIONS(1783), [sym_html_comment] = ACTIONS(5), }, - [765] = { - [ts_builtin_sym_end] = ACTIONS(1741), - [sym_identifier] = ACTIONS(1743), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_type] = ACTIONS(1743), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_typeof] = ACTIONS(1743), - [anon_sym_import] = ACTIONS(1743), - [anon_sym_with] = ACTIONS(1743), - [anon_sym_var] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_await] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_debugger] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_async] = ACTIONS(1743), - [anon_sym_function] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_void] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1741), - [sym_number] = ACTIONS(1741), - [sym_private_property_identifier] = ACTIONS(1741), - [sym_this] = ACTIONS(1743), - [sym_super] = ACTIONS(1743), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_undefined] = ACTIONS(1743), - [anon_sym_AT] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_readonly] = ACTIONS(1743), - [anon_sym_get] = ACTIONS(1743), - [anon_sym_set] = ACTIONS(1743), - [anon_sym_declare] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_private] = ACTIONS(1743), - [anon_sym_protected] = ACTIONS(1743), - [anon_sym_override] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_any] = ACTIONS(1743), - [anon_sym_number] = ACTIONS(1743), - [anon_sym_boolean] = ACTIONS(1743), - [anon_sym_string] = ACTIONS(1743), - [anon_sym_symbol] = ACTIONS(1743), - [anon_sym_object] = ACTIONS(1743), - [anon_sym_abstract] = ACTIONS(1743), - [anon_sym_interface] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [sym__automatic_semicolon] = ACTIONS(1749), + [773] = { + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2500), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_default] = ACTIONS(2500), + [anon_sym_type] = ACTIONS(2500), + [anon_sym_namespace] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2500), + [anon_sym_import] = ACTIONS(2500), + [anon_sym_with] = ACTIONS(2500), + [anon_sym_var] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_switch] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_await] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_debugger] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_throw] = ACTIONS(2500), + [anon_sym_case] = ACTIONS(2500), + [anon_sym_finally] = ACTIONS(2500), + [anon_sym_yield] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_class] = ACTIONS(2500), + [anon_sym_async] = ACTIONS(2500), + [anon_sym_function] = ACTIONS(2500), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_using] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_TILDE] = ACTIONS(2498), + [anon_sym_void] = ACTIONS(2500), + [anon_sym_delete] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2498), + [sym_number] = ACTIONS(2498), + [sym_private_property_identifier] = ACTIONS(2498), + [sym_this] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_true] = ACTIONS(2500), + [sym_false] = ACTIONS(2500), + [sym_null] = ACTIONS(2500), + [sym_undefined] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_readonly] = ACTIONS(2500), + [anon_sym_get] = ACTIONS(2500), + [anon_sym_set] = ACTIONS(2500), + [anon_sym_declare] = ACTIONS(2500), + [anon_sym_public] = ACTIONS(2500), + [anon_sym_private] = ACTIONS(2500), + [anon_sym_protected] = ACTIONS(2500), + [anon_sym_override] = ACTIONS(2500), + [anon_sym_module] = ACTIONS(2500), + [anon_sym_any] = ACTIONS(2500), + [anon_sym_number] = ACTIONS(2500), + [anon_sym_boolean] = ACTIONS(2500), + [anon_sym_string] = ACTIONS(2500), + [anon_sym_symbol] = ACTIONS(2500), + [anon_sym_object] = ACTIONS(2500), + [anon_sym_abstract] = ACTIONS(2500), + [anon_sym_interface] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), [sym_html_comment] = ACTIONS(5), }, - [766] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_identifier] = ACTIONS(1763), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_typeof] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1763), - [anon_sym_with] = ACTIONS(1763), - [anon_sym_var] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_debugger] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_function] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_void] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1761), - [sym_number] = ACTIONS(1761), - [sym_private_property_identifier] = ACTIONS(1761), - [sym_this] = ACTIONS(1763), - [sym_super] = ACTIONS(1763), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_undefined] = ACTIONS(1763), - [anon_sym_AT] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_readonly] = ACTIONS(1763), - [anon_sym_get] = ACTIONS(1763), - [anon_sym_set] = ACTIONS(1763), - [anon_sym_declare] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [anon_sym_override] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_any] = ACTIONS(1763), - [anon_sym_number] = ACTIONS(1763), - [anon_sym_boolean] = ACTIONS(1763), - [anon_sym_string] = ACTIONS(1763), - [anon_sym_symbol] = ACTIONS(1763), - [anon_sym_object] = ACTIONS(1763), - [anon_sym_abstract] = ACTIONS(1763), - [anon_sym_interface] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym__automatic_semicolon] = ACTIONS(1769), + [774] = { + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_namespace] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_typeof] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_var] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_debugger] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_case] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(1749), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_SLASH] = ACTIONS(1749), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_void] = ACTIONS(1749), + [anon_sym_delete] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [sym_private_property_identifier] = ACTIONS(1747), + [sym_this] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_undefined] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_get] = ACTIONS(1749), + [anon_sym_set] = ACTIONS(1749), + [anon_sym_declare] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_private] = ACTIONS(1749), + [anon_sym_protected] = ACTIONS(1749), + [anon_sym_override] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), + [anon_sym_abstract] = ACTIONS(1749), + [anon_sym_interface] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [sym__automatic_semicolon] = ACTIONS(1755), [sym_html_comment] = ACTIONS(5), }, - [767] = { + [775] = { [ts_builtin_sym_end] = ACTIONS(1689), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(1691), @@ -106818,837 +107542,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1697), [sym_html_comment] = ACTIONS(5), }, - [768] = { - [sym_else_clause] = STATE(850), - [ts_builtin_sym_end] = ACTIONS(2492), - [sym_identifier] = ACTIONS(2494), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_default] = ACTIONS(2494), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_namespace] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_typeof] = ACTIONS(2494), - [anon_sym_import] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2494), - [anon_sym_var] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_switch] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_await] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_debugger] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_throw] = ACTIONS(2494), - [anon_sym_case] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2494), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_using] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2492), - [anon_sym_void] = ACTIONS(2494), - [anon_sym_delete] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2492), - [sym_number] = ACTIONS(2492), - [sym_private_property_identifier] = ACTIONS(2492), - [sym_this] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_true] = ACTIONS(2494), - [sym_false] = ACTIONS(2494), - [sym_null] = ACTIONS(2494), - [sym_undefined] = ACTIONS(2494), - [anon_sym_AT] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_readonly] = ACTIONS(2494), - [anon_sym_get] = ACTIONS(2494), - [anon_sym_set] = ACTIONS(2494), - [anon_sym_declare] = ACTIONS(2494), - [anon_sym_public] = ACTIONS(2494), - [anon_sym_private] = ACTIONS(2494), - [anon_sym_protected] = ACTIONS(2494), - [anon_sym_override] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_any] = ACTIONS(2494), - [anon_sym_number] = ACTIONS(2494), - [anon_sym_boolean] = ACTIONS(2494), - [anon_sym_string] = ACTIONS(2494), - [anon_sym_symbol] = ACTIONS(2494), - [anon_sym_object] = ACTIONS(2494), - [anon_sym_abstract] = ACTIONS(2494), - [anon_sym_interface] = ACTIONS(2494), - [anon_sym_enum] = ACTIONS(2494), - [sym_html_comment] = ACTIONS(5), - }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_namespace] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1793), - [anon_sym_import] = ACTIONS(1793), - [anon_sym_with] = ACTIONS(1793), - [anon_sym_var] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_switch] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_debugger] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_throw] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_function] = ACTIONS(1793), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_void] = ACTIONS(1793), - [anon_sym_delete] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1791), - [sym_number] = ACTIONS(1791), - [sym_private_property_identifier] = ACTIONS(1791), - [sym_this] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_true] = ACTIONS(1793), - [sym_false] = ACTIONS(1793), - [sym_null] = ACTIONS(1793), - [sym_undefined] = ACTIONS(1793), - [anon_sym_AT] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_readonly] = ACTIONS(1793), - [anon_sym_get] = ACTIONS(1793), - [anon_sym_set] = ACTIONS(1793), - [anon_sym_declare] = ACTIONS(1793), - [anon_sym_public] = ACTIONS(1793), - [anon_sym_private] = ACTIONS(1793), - [anon_sym_protected] = ACTIONS(1793), - [anon_sym_override] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_any] = ACTIONS(1793), - [anon_sym_number] = ACTIONS(1793), - [anon_sym_boolean] = ACTIONS(1793), - [anon_sym_string] = ACTIONS(1793), - [anon_sym_symbol] = ACTIONS(1793), - [anon_sym_object] = ACTIONS(1793), - [anon_sym_abstract] = ACTIONS(1793), - [anon_sym_interface] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [sym_html_comment] = ACTIONS(5), - }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_export] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_namespace] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_typeof] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_with] = ACTIONS(1797), - [anon_sym_var] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_else] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_switch] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_debugger] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_throw] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_function] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1797), - [anon_sym_using] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_delete] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1795), - [sym_number] = ACTIONS(1795), - [sym_private_property_identifier] = ACTIONS(1795), - [sym_this] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_true] = ACTIONS(1797), - [sym_false] = ACTIONS(1797), - [sym_null] = ACTIONS(1797), - [sym_undefined] = ACTIONS(1797), - [anon_sym_AT] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_readonly] = ACTIONS(1797), - [anon_sym_get] = ACTIONS(1797), - [anon_sym_set] = ACTIONS(1797), - [anon_sym_declare] = ACTIONS(1797), - [anon_sym_public] = ACTIONS(1797), - [anon_sym_private] = ACTIONS(1797), - [anon_sym_protected] = ACTIONS(1797), - [anon_sym_override] = ACTIONS(1797), - [anon_sym_module] = ACTIONS(1797), - [anon_sym_any] = ACTIONS(1797), - [anon_sym_number] = ACTIONS(1797), - [anon_sym_boolean] = ACTIONS(1797), - [anon_sym_string] = ACTIONS(1797), - [anon_sym_symbol] = ACTIONS(1797), - [anon_sym_object] = ACTIONS(1797), - [anon_sym_abstract] = ACTIONS(1797), - [anon_sym_interface] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [sym__automatic_semicolon] = ACTIONS(1803), - [sym_html_comment] = ACTIONS(5), - }, - [771] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_typeof] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_debugger] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_function] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1813), - [sym_number] = ACTIONS(1813), - [sym_private_property_identifier] = ACTIONS(1813), - [sym_this] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_undefined] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_readonly] = ACTIONS(1815), - [anon_sym_get] = ACTIONS(1815), - [anon_sym_set] = ACTIONS(1815), - [anon_sym_declare] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [anon_sym_override] = ACTIONS(1815), - [anon_sym_module] = ACTIONS(1815), - [anon_sym_any] = ACTIONS(1815), - [anon_sym_number] = ACTIONS(1815), - [anon_sym_boolean] = ACTIONS(1815), - [anon_sym_string] = ACTIONS(1815), - [anon_sym_symbol] = ACTIONS(1815), - [anon_sym_object] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_interface] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [sym__automatic_semicolon] = ACTIONS(1821), - [sym_html_comment] = ACTIONS(5), - }, - [772] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_export] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_namespace] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_typeof] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_with] = ACTIONS(1825), - [anon_sym_var] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_switch] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_do] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_debugger] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_throw] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(1825), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_delete] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [sym_private_property_identifier] = ACTIONS(1823), - [sym_this] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_true] = ACTIONS(1825), - [sym_false] = ACTIONS(1825), - [sym_null] = ACTIONS(1825), - [sym_undefined] = ACTIONS(1825), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_get] = ACTIONS(1825), - [anon_sym_set] = ACTIONS(1825), - [anon_sym_declare] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_module] = ACTIONS(1825), - [anon_sym_any] = ACTIONS(1825), - [anon_sym_number] = ACTIONS(1825), - [anon_sym_boolean] = ACTIONS(1825), - [anon_sym_string] = ACTIONS(1825), - [anon_sym_symbol] = ACTIONS(1825), - [anon_sym_object] = ACTIONS(1825), - [anon_sym_abstract] = ACTIONS(1825), - [anon_sym_interface] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym_html_comment] = ACTIONS(5), - }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_typeof] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(1851), - [anon_sym_with] = ACTIONS(1851), - [anon_sym_var] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_debugger] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_function] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_void] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1849), - [sym_number] = ACTIONS(1849), - [sym_private_property_identifier] = ACTIONS(1849), - [sym_this] = ACTIONS(1851), - [sym_super] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_readonly] = ACTIONS(1851), - [anon_sym_get] = ACTIONS(1851), - [anon_sym_set] = ACTIONS(1851), - [anon_sym_declare] = ACTIONS(1851), - [anon_sym_public] = ACTIONS(1851), - [anon_sym_private] = ACTIONS(1851), - [anon_sym_protected] = ACTIONS(1851), - [anon_sym_override] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_any] = ACTIONS(1851), - [anon_sym_number] = ACTIONS(1851), - [anon_sym_boolean] = ACTIONS(1851), - [anon_sym_string] = ACTIONS(1851), - [anon_sym_symbol] = ACTIONS(1851), - [anon_sym_object] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [sym__automatic_semicolon] = ACTIONS(1857), - [sym_html_comment] = ACTIONS(5), - }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_using] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1859), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_private_property_identifier] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_override] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_object] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym__automatic_semicolon] = ACTIONS(1867), - [sym_html_comment] = ACTIONS(5), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_identifier] = ACTIONS(2500), - [anon_sym_export] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_typeof] = ACTIONS(2500), - [anon_sym_import] = ACTIONS(2500), - [anon_sym_with] = ACTIONS(2500), - [anon_sym_var] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_RPAREN] = ACTIONS(2498), - [anon_sym_await] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_debugger] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_yield] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(2500), - [anon_sym_function] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_SLASH] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_void] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2498), - [sym_number] = ACTIONS(2498), - [sym_private_property_identifier] = ACTIONS(2498), - [sym_this] = ACTIONS(2500), - [sym_super] = ACTIONS(2500), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_undefined] = ACTIONS(2500), - [anon_sym_AT] = ACTIONS(2498), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_readonly] = ACTIONS(2500), - [anon_sym_get] = ACTIONS(2500), - [anon_sym_set] = ACTIONS(2500), - [anon_sym_declare] = ACTIONS(2500), - [anon_sym_public] = ACTIONS(2500), - [anon_sym_private] = ACTIONS(2500), - [anon_sym_protected] = ACTIONS(2500), - [anon_sym_override] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2500), - [anon_sym_any] = ACTIONS(2500), - [anon_sym_number] = ACTIONS(2500), - [anon_sym_boolean] = ACTIONS(2500), - [anon_sym_string] = ACTIONS(2500), - [anon_sym_symbol] = ACTIONS(2500), - [anon_sym_object] = ACTIONS(2500), - [anon_sym_abstract] = ACTIONS(2500), - [anon_sym_interface] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [sym_html_comment] = ACTIONS(5), - }, [776] = { - [ts_builtin_sym_end] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1715), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_default] = ACTIONS(1715), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_namespace] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_typeof] = ACTIONS(1715), - [anon_sym_import] = ACTIONS(1715), - [anon_sym_with] = ACTIONS(1715), - [anon_sym_var] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_switch] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_debugger] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_throw] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1715), - [anon_sym_yield] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_async] = ACTIONS(1715), - [anon_sym_function] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_void] = ACTIONS(1715), - [anon_sym_delete] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1713), - [sym_number] = ACTIONS(1713), - [sym_private_property_identifier] = ACTIONS(1713), - [sym_this] = ACTIONS(1715), - [sym_super] = ACTIONS(1715), - [sym_true] = ACTIONS(1715), - [sym_false] = ACTIONS(1715), - [sym_null] = ACTIONS(1715), - [sym_undefined] = ACTIONS(1715), - [anon_sym_AT] = ACTIONS(1713), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_readonly] = ACTIONS(1715), - [anon_sym_get] = ACTIONS(1715), - [anon_sym_set] = ACTIONS(1715), - [anon_sym_declare] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1715), - [anon_sym_private] = ACTIONS(1715), - [anon_sym_protected] = ACTIONS(1715), - [anon_sym_override] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_any] = ACTIONS(1715), - [anon_sym_number] = ACTIONS(1715), - [anon_sym_boolean] = ACTIONS(1715), - [anon_sym_string] = ACTIONS(1715), - [anon_sym_symbol] = ACTIONS(1715), - [anon_sym_object] = ACTIONS(1715), - [anon_sym_abstract] = ACTIONS(1715), - [anon_sym_interface] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [sym__automatic_semicolon] = ACTIONS(1721), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_debugger] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_void] = ACTIONS(1787), + [anon_sym_delete] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1785), + [sym_number] = ACTIONS(1785), + [sym_private_property_identifier] = ACTIONS(1785), + [sym_this] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_get] = ACTIONS(1787), + [anon_sym_set] = ACTIONS(1787), + [anon_sym_declare] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_protected] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_any] = ACTIONS(1787), + [anon_sym_number] = ACTIONS(1787), + [anon_sym_boolean] = ACTIONS(1787), + [anon_sym_string] = ACTIONS(1787), + [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_object] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [sym__automatic_semicolon] = ACTIONS(1793), [sym_html_comment] = ACTIONS(5), }, [777] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_typeof] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1729), - [anon_sym_with] = ACTIONS(1729), - [anon_sym_var] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_await] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_debugger] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_function] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1727), - [sym_number] = ACTIONS(1727), - [sym_private_property_identifier] = ACTIONS(1727), - [sym_this] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_undefined] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_readonly] = ACTIONS(1729), - [anon_sym_get] = ACTIONS(1729), - [anon_sym_set] = ACTIONS(1729), - [anon_sym_declare] = ACTIONS(1729), - [anon_sym_public] = ACTIONS(1729), - [anon_sym_private] = ACTIONS(1729), - [anon_sym_protected] = ACTIONS(1729), - [anon_sym_override] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_any] = ACTIONS(1729), - [anon_sym_number] = ACTIONS(1729), - [anon_sym_boolean] = ACTIONS(1729), - [anon_sym_string] = ACTIONS(1729), - [anon_sym_symbol] = ACTIONS(1729), - [anon_sym_object] = ACTIONS(1729), - [anon_sym_abstract] = ACTIONS(1729), - [anon_sym_interface] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1735), - [sym_html_comment] = ACTIONS(5), - }, - [778] = { [ts_builtin_sym_end] = ACTIONS(2502), [sym_identifier] = ACTIONS(2504), [anon_sym_export] = ACTIONS(2504), @@ -107731,7 +107708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2504), [sym_html_comment] = ACTIONS(5), }, - [779] = { + [778] = { [ts_builtin_sym_end] = ACTIONS(2506), [sym_identifier] = ACTIONS(2508), [anon_sym_export] = ACTIONS(2508), @@ -107753,6 +107730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2508), [anon_sym_LPAREN] = ACTIONS(2506), [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), [anon_sym_await] = ACTIONS(2508), [anon_sym_while] = ACTIONS(2508), [anon_sym_do] = ACTIONS(2508), @@ -107763,7 +107741,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2508), [anon_sym_throw] = ACTIONS(2508), [anon_sym_case] = ACTIONS(2508), - [anon_sym_finally] = ACTIONS(2508), [anon_sym_yield] = ACTIONS(2508), [anon_sym_LBRACK] = ACTIONS(2506), [anon_sym_DQUOTE] = ACTIONS(2506), @@ -107814,253 +107791,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2508), [sym_html_comment] = ACTIONS(5), }, + [779] = { + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_namespace] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_typeof] = ACTIONS(1845), + [anon_sym_import] = ACTIONS(1845), + [anon_sym_with] = ACTIONS(1845), + [anon_sym_var] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_switch] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_do] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_debugger] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_throw] = ACTIONS(1845), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_class] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_function] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1845), + [anon_sym_using] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_void] = ACTIONS(1845), + [anon_sym_delete] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1843), + [sym_number] = ACTIONS(1843), + [sym_private_property_identifier] = ACTIONS(1843), + [sym_this] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_null] = ACTIONS(1845), + [sym_undefined] = ACTIONS(1845), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_readonly] = ACTIONS(1845), + [anon_sym_get] = ACTIONS(1845), + [anon_sym_set] = ACTIONS(1845), + [anon_sym_declare] = ACTIONS(1845), + [anon_sym_public] = ACTIONS(1845), + [anon_sym_private] = ACTIONS(1845), + [anon_sym_protected] = ACTIONS(1845), + [anon_sym_override] = ACTIONS(1845), + [anon_sym_module] = ACTIONS(1845), + [anon_sym_any] = ACTIONS(1845), + [anon_sym_number] = ACTIONS(1845), + [anon_sym_boolean] = ACTIONS(1845), + [anon_sym_string] = ACTIONS(1845), + [anon_sym_symbol] = ACTIONS(1845), + [anon_sym_object] = ACTIONS(1845), + [anon_sym_abstract] = ACTIONS(1845), + [anon_sym_interface] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [sym__automatic_semicolon] = ACTIONS(1851), + [sym_html_comment] = ACTIONS(5), + }, [780] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [sym__automatic_semicolon] = ACTIONS(1759), + [ts_builtin_sym_end] = ACTIONS(1815), + [sym_identifier] = ACTIONS(1817), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_RBRACE] = ACTIONS(1815), + [anon_sym_typeof] = ACTIONS(1817), + [anon_sym_import] = ACTIONS(1817), + [anon_sym_with] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_switch] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_debugger] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_throw] = ACTIONS(1817), + [anon_sym_case] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_DQUOTE] = ACTIONS(1815), + [anon_sym_SQUOTE] = ACTIONS(1815), + [anon_sym_class] = ACTIONS(1817), + [anon_sym_async] = ACTIONS(1817), + [anon_sym_function] = ACTIONS(1817), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_SLASH] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_void] = ACTIONS(1817), + [anon_sym_delete] = ACTIONS(1817), + [anon_sym_PLUS_PLUS] = ACTIONS(1815), + [anon_sym_DASH_DASH] = ACTIONS(1815), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1815), + [sym_number] = ACTIONS(1815), + [sym_private_property_identifier] = ACTIONS(1815), + [sym_this] = ACTIONS(1817), + [sym_super] = ACTIONS(1817), + [sym_true] = ACTIONS(1817), + [sym_false] = ACTIONS(1817), + [sym_null] = ACTIONS(1817), + [sym_undefined] = ACTIONS(1817), + [anon_sym_AT] = ACTIONS(1815), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(1817), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_any] = ACTIONS(1817), + [anon_sym_number] = ACTIONS(1817), + [anon_sym_boolean] = ACTIONS(1817), + [anon_sym_string] = ACTIONS(1817), + [anon_sym_symbol] = ACTIONS(1817), + [anon_sym_object] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1817), + [anon_sym_interface] = ACTIONS(1817), + [anon_sym_enum] = ACTIONS(1817), + [sym__automatic_semicolon] = ACTIONS(1823), [sym_html_comment] = ACTIONS(5), }, [781] = { - [sym_statement_block] = STATE(911), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), + [ts_builtin_sym_end] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2512), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_type] = ACTIONS(2512), + [anon_sym_namespace] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_import] = ACTIONS(2512), + [anon_sym_with] = ACTIONS(2512), + [anon_sym_var] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_await] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_debugger] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_throw] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_yield] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_class] = ACTIONS(2512), + [anon_sym_async] = ACTIONS(2512), + [anon_sym_function] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_using] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_void] = ACTIONS(2512), + [anon_sym_delete] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2510), + [sym_number] = ACTIONS(2510), + [sym_private_property_identifier] = ACTIONS(2510), + [sym_this] = ACTIONS(2512), + [sym_super] = ACTIONS(2512), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [sym_null] = ACTIONS(2512), + [sym_undefined] = ACTIONS(2512), + [anon_sym_AT] = ACTIONS(2510), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_readonly] = ACTIONS(2512), + [anon_sym_get] = ACTIONS(2512), + [anon_sym_set] = ACTIONS(2512), + [anon_sym_declare] = ACTIONS(2512), + [anon_sym_public] = ACTIONS(2512), + [anon_sym_private] = ACTIONS(2512), + [anon_sym_protected] = ACTIONS(2512), + [anon_sym_override] = ACTIONS(2512), + [anon_sym_module] = ACTIONS(2512), + [anon_sym_any] = ACTIONS(2512), + [anon_sym_number] = ACTIONS(2512), + [anon_sym_boolean] = ACTIONS(2512), + [anon_sym_string] = ACTIONS(2512), + [anon_sym_symbol] = ACTIONS(2512), + [anon_sym_object] = ACTIONS(2512), + [anon_sym_abstract] = ACTIONS(2512), + [anon_sym_interface] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [sym__automatic_semicolon] = ACTIONS(2510), [sym_html_comment] = ACTIONS(5), }, [782] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2510), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1767), + [anon_sym_export] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_namespace] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_typeof] = ACTIONS(1767), + [anon_sym_import] = ACTIONS(1767), + [anon_sym_with] = ACTIONS(1767), + [anon_sym_var] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_switch] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_debugger] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_throw] = ACTIONS(1767), + [anon_sym_case] = ACTIONS(1767), + [anon_sym_yield] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_class] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_using] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_void] = ACTIONS(1767), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1765), + [sym_number] = ACTIONS(1765), + [sym_private_property_identifier] = ACTIONS(1765), + [sym_this] = ACTIONS(1767), + [sym_super] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_null] = ACTIONS(1767), + [sym_undefined] = ACTIONS(1767), + [anon_sym_AT] = ACTIONS(1765), + [anon_sym_static] = ACTIONS(1767), + [anon_sym_readonly] = ACTIONS(1767), + [anon_sym_get] = ACTIONS(1767), + [anon_sym_set] = ACTIONS(1767), + [anon_sym_declare] = ACTIONS(1767), + [anon_sym_public] = ACTIONS(1767), + [anon_sym_private] = ACTIONS(1767), + [anon_sym_protected] = ACTIONS(1767), + [anon_sym_override] = ACTIONS(1767), + [anon_sym_module] = ACTIONS(1767), + [anon_sym_any] = ACTIONS(1767), + [anon_sym_number] = ACTIONS(1767), + [anon_sym_boolean] = ACTIONS(1767), + [anon_sym_string] = ACTIONS(1767), + [anon_sym_symbol] = ACTIONS(1767), + [anon_sym_object] = ACTIONS(1767), + [anon_sym_abstract] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [sym__automatic_semicolon] = ACTIONS(1773), [sym_html_comment] = ACTIONS(5), }, [783] = { @@ -108146,3775 +108206,3775 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [784] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_type] = ACTIONS(2520), + [anon_sym_namespace] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_import] = ACTIONS(2520), + [anon_sym_with] = ACTIONS(2520), + [anon_sym_var] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_await] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_debugger] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_throw] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_class] = ACTIONS(2520), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_using] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_void] = ACTIONS(2520), + [anon_sym_delete] = ACTIONS(2520), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2518), + [sym_number] = ACTIONS(2518), + [sym_private_property_identifier] = ACTIONS(2518), + [sym_this] = ACTIONS(2520), + [sym_super] = ACTIONS(2520), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [sym_null] = ACTIONS(2520), + [sym_undefined] = ACTIONS(2520), + [anon_sym_AT] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_readonly] = ACTIONS(2520), + [anon_sym_get] = ACTIONS(2520), + [anon_sym_set] = ACTIONS(2520), + [anon_sym_declare] = ACTIONS(2520), + [anon_sym_public] = ACTIONS(2520), + [anon_sym_private] = ACTIONS(2520), + [anon_sym_protected] = ACTIONS(2520), + [anon_sym_override] = ACTIONS(2520), + [anon_sym_module] = ACTIONS(2520), + [anon_sym_any] = ACTIONS(2520), + [anon_sym_number] = ACTIONS(2520), + [anon_sym_boolean] = ACTIONS(2520), + [anon_sym_string] = ACTIONS(2520), + [anon_sym_symbol] = ACTIONS(2520), + [anon_sym_object] = ACTIONS(2520), + [anon_sym_abstract] = ACTIONS(2520), + [anon_sym_interface] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), [sym_html_comment] = ACTIONS(5), }, [785] = { - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2522), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2522), - [anon_sym_import] = ACTIONS(2522), - [anon_sym_with] = ACTIONS(2522), - [anon_sym_var] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_yield] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_async] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_private_property_identifier] = ACTIONS(2520), - [sym_this] = ACTIONS(2522), - [sym_super] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_undefined] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_override] = ACTIONS(2522), - [anon_sym_module] = ACTIONS(2522), - [anon_sym_any] = ACTIONS(2522), - [anon_sym_number] = ACTIONS(2522), - [anon_sym_boolean] = ACTIONS(2522), - [anon_sym_string] = ACTIONS(2522), - [anon_sym_symbol] = ACTIONS(2522), - [anon_sym_object] = ACTIONS(2522), - [anon_sym_abstract] = ACTIONS(2522), - [anon_sym_interface] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_namespace] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_await] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_void] = ACTIONS(2524), + [anon_sym_delete] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2522), + [sym_number] = ACTIONS(2522), + [sym_private_property_identifier] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [sym_null] = ACTIONS(2524), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_readonly] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_declare] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_protected] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_any] = ACTIONS(2524), + [anon_sym_number] = ACTIONS(2524), + [anon_sym_boolean] = ACTIONS(2524), + [anon_sym_string] = ACTIONS(2524), + [anon_sym_symbol] = ACTIONS(2524), + [anon_sym_object] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), [sym_html_comment] = ACTIONS(5), }, [786] = { - [ts_builtin_sym_end] = ACTIONS(2524), - [sym_identifier] = ACTIONS(2526), - [anon_sym_export] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_type] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_typeof] = ACTIONS(2526), - [anon_sym_import] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2526), - [anon_sym_var] = ACTIONS(2526), - [anon_sym_let] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_await] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_debugger] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_void] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2524), - [sym_number] = ACTIONS(2524), - [sym_private_property_identifier] = ACTIONS(2524), - [sym_this] = ACTIONS(2526), - [sym_super] = ACTIONS(2526), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_undefined] = ACTIONS(2526), - [anon_sym_AT] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_readonly] = ACTIONS(2526), - [anon_sym_get] = ACTIONS(2526), - [anon_sym_set] = ACTIONS(2526), - [anon_sym_declare] = ACTIONS(2526), - [anon_sym_public] = ACTIONS(2526), - [anon_sym_private] = ACTIONS(2526), - [anon_sym_protected] = ACTIONS(2526), - [anon_sym_override] = ACTIONS(2526), - [anon_sym_module] = ACTIONS(2526), - [anon_sym_any] = ACTIONS(2526), - [anon_sym_number] = ACTIONS(2526), - [anon_sym_boolean] = ACTIONS(2526), - [anon_sym_string] = ACTIONS(2526), - [anon_sym_symbol] = ACTIONS(2526), - [anon_sym_object] = ACTIONS(2526), - [anon_sym_abstract] = ACTIONS(2526), - [anon_sym_interface] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2528), + [anon_sym_export] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_type] = ACTIONS(2528), + [anon_sym_namespace] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_import] = ACTIONS(2528), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_var] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_await] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_debugger] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_throw] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_class] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(2528), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_using] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_SLASH] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_void] = ACTIONS(2528), + [anon_sym_delete] = ACTIONS(2528), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2526), + [sym_number] = ACTIONS(2526), + [sym_private_property_identifier] = ACTIONS(2526), + [sym_this] = ACTIONS(2528), + [sym_super] = ACTIONS(2528), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [sym_null] = ACTIONS(2528), + [sym_undefined] = ACTIONS(2528), + [anon_sym_AT] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_readonly] = ACTIONS(2528), + [anon_sym_get] = ACTIONS(2528), + [anon_sym_set] = ACTIONS(2528), + [anon_sym_declare] = ACTIONS(2528), + [anon_sym_public] = ACTIONS(2528), + [anon_sym_private] = ACTIONS(2528), + [anon_sym_protected] = ACTIONS(2528), + [anon_sym_override] = ACTIONS(2528), + [anon_sym_module] = ACTIONS(2528), + [anon_sym_any] = ACTIONS(2528), + [anon_sym_number] = ACTIONS(2528), + [anon_sym_boolean] = ACTIONS(2528), + [anon_sym_string] = ACTIONS(2528), + [anon_sym_symbol] = ACTIONS(2528), + [anon_sym_object] = ACTIONS(2528), + [anon_sym_abstract] = ACTIONS(2528), + [anon_sym_interface] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), [sym_html_comment] = ACTIONS(5), }, [787] = { - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2530), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_namespace] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_import] = ACTIONS(2530), - [anon_sym_with] = ACTIONS(2530), - [anon_sym_var] = ACTIONS(2530), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_const] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_switch] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_await] = ACTIONS(2530), - [anon_sym_while] = ACTIONS(2530), - [anon_sym_do] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_debugger] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_throw] = ACTIONS(2530), - [anon_sym_case] = ACTIONS(2530), - [anon_sym_yield] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_class] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_function] = ACTIONS(2530), - [anon_sym_new] = ACTIONS(2530), - [anon_sym_using] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_void] = ACTIONS(2530), - [anon_sym_delete] = ACTIONS(2530), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2528), - [sym_number] = ACTIONS(2528), - [sym_private_property_identifier] = ACTIONS(2528), - [sym_this] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_true] = ACTIONS(2530), - [sym_false] = ACTIONS(2530), - [sym_null] = ACTIONS(2530), - [sym_undefined] = ACTIONS(2530), - [anon_sym_AT] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_readonly] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_declare] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_protected] = ACTIONS(2530), - [anon_sym_override] = ACTIONS(2530), - [anon_sym_module] = ACTIONS(2530), - [anon_sym_any] = ACTIONS(2530), - [anon_sym_number] = ACTIONS(2530), - [anon_sym_boolean] = ACTIONS(2530), - [anon_sym_string] = ACTIONS(2530), - [anon_sym_symbol] = ACTIONS(2530), - [anon_sym_object] = ACTIONS(2530), - [anon_sym_abstract] = ACTIONS(2530), - [anon_sym_interface] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_export] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_namespace] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_import] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_var] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_await] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_debugger] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_throw] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_yield] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_class] = ACTIONS(2532), + [anon_sym_async] = ACTIONS(2532), + [anon_sym_function] = ACTIONS(2532), + [anon_sym_new] = ACTIONS(2532), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_void] = ACTIONS(2532), + [anon_sym_delete] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2530), + [sym_number] = ACTIONS(2530), + [sym_private_property_identifier] = ACTIONS(2530), + [sym_this] = ACTIONS(2532), + [sym_super] = ACTIONS(2532), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [sym_null] = ACTIONS(2532), + [sym_undefined] = ACTIONS(2532), + [anon_sym_AT] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_readonly] = ACTIONS(2532), + [anon_sym_get] = ACTIONS(2532), + [anon_sym_set] = ACTIONS(2532), + [anon_sym_declare] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), + [anon_sym_private] = ACTIONS(2532), + [anon_sym_protected] = ACTIONS(2532), + [anon_sym_override] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), + [anon_sym_any] = ACTIONS(2532), + [anon_sym_number] = ACTIONS(2532), + [anon_sym_boolean] = ACTIONS(2532), + [anon_sym_string] = ACTIONS(2532), + [anon_sym_symbol] = ACTIONS(2532), + [anon_sym_object] = ACTIONS(2532), + [anon_sym_abstract] = ACTIONS(2532), + [anon_sym_interface] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), [sym_html_comment] = ACTIONS(5), }, [788] = { - [ts_builtin_sym_end] = ACTIONS(2532), - [sym_identifier] = ACTIONS(2534), - [anon_sym_export] = ACTIONS(2534), - [anon_sym_default] = ACTIONS(2534), - [anon_sym_type] = ACTIONS(2534), - [anon_sym_namespace] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2532), - [anon_sym_typeof] = ACTIONS(2534), - [anon_sym_import] = ACTIONS(2534), - [anon_sym_with] = ACTIONS(2534), - [anon_sym_var] = ACTIONS(2534), - [anon_sym_let] = ACTIONS(2534), - [anon_sym_const] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2534), - [anon_sym_if] = ACTIONS(2534), - [anon_sym_switch] = ACTIONS(2534), - [anon_sym_for] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_await] = ACTIONS(2534), - [anon_sym_while] = ACTIONS(2534), - [anon_sym_do] = ACTIONS(2534), - [anon_sym_try] = ACTIONS(2534), - [anon_sym_break] = ACTIONS(2534), - [anon_sym_continue] = ACTIONS(2534), - [anon_sym_debugger] = ACTIONS(2534), - [anon_sym_return] = ACTIONS(2534), - [anon_sym_throw] = ACTIONS(2534), - [anon_sym_case] = ACTIONS(2534), - [anon_sym_yield] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(2532), - [anon_sym_class] = ACTIONS(2534), - [anon_sym_async] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(2534), - [anon_sym_new] = ACTIONS(2534), - [anon_sym_using] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2532), - [anon_sym_void] = ACTIONS(2534), - [anon_sym_delete] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2532), - [sym_private_property_identifier] = ACTIONS(2532), - [sym_this] = ACTIONS(2534), - [sym_super] = ACTIONS(2534), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_AT] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2534), - [anon_sym_get] = ACTIONS(2534), - [anon_sym_set] = ACTIONS(2534), - [anon_sym_declare] = ACTIONS(2534), - [anon_sym_public] = ACTIONS(2534), - [anon_sym_private] = ACTIONS(2534), - [anon_sym_protected] = ACTIONS(2534), - [anon_sym_override] = ACTIONS(2534), - [anon_sym_module] = ACTIONS(2534), - [anon_sym_any] = ACTIONS(2534), - [anon_sym_number] = ACTIONS(2534), - [anon_sym_boolean] = ACTIONS(2534), - [anon_sym_string] = ACTIONS(2534), - [anon_sym_symbol] = ACTIONS(2534), - [anon_sym_object] = ACTIONS(2534), - [anon_sym_abstract] = ACTIONS(2534), - [anon_sym_interface] = ACTIONS(2534), - [anon_sym_enum] = ACTIONS(2534), + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_import] = ACTIONS(2536), + [anon_sym_with] = ACTIONS(2536), + [anon_sym_var] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_await] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_debugger] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_class] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_void] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2534), + [sym_number] = ACTIONS(2534), + [sym_private_property_identifier] = ACTIONS(2534), + [sym_this] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [sym_null] = ACTIONS(2536), + [sym_undefined] = ACTIONS(2536), + [anon_sym_AT] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), + [anon_sym_object] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_interface] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), [sym_html_comment] = ACTIONS(5), }, [789] = { - [ts_builtin_sym_end] = ACTIONS(2536), - [sym_identifier] = ACTIONS(2538), - [anon_sym_export] = ACTIONS(2538), - [anon_sym_default] = ACTIONS(2538), - [anon_sym_type] = ACTIONS(2538), - [anon_sym_namespace] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2536), - [anon_sym_RBRACE] = ACTIONS(2536), - [anon_sym_typeof] = ACTIONS(2538), - [anon_sym_import] = ACTIONS(2538), - [anon_sym_with] = ACTIONS(2538), - [anon_sym_var] = ACTIONS(2538), - [anon_sym_let] = ACTIONS(2538), - [anon_sym_const] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2536), - [anon_sym_else] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_switch] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2536), - [anon_sym_await] = ACTIONS(2538), - [anon_sym_while] = ACTIONS(2538), - [anon_sym_do] = ACTIONS(2538), - [anon_sym_try] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2538), - [anon_sym_debugger] = ACTIONS(2538), - [anon_sym_return] = ACTIONS(2538), - [anon_sym_throw] = ACTIONS(2538), - [anon_sym_case] = ACTIONS(2538), - [anon_sym_yield] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_DQUOTE] = ACTIONS(2536), - [anon_sym_SQUOTE] = ACTIONS(2536), - [anon_sym_class] = ACTIONS(2538), - [anon_sym_async] = ACTIONS(2538), - [anon_sym_function] = ACTIONS(2538), - [anon_sym_new] = ACTIONS(2538), - [anon_sym_using] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_TILDE] = ACTIONS(2536), - [anon_sym_void] = ACTIONS(2538), - [anon_sym_delete] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2536), - [sym_number] = ACTIONS(2536), - [sym_private_property_identifier] = ACTIONS(2536), - [sym_this] = ACTIONS(2538), - [sym_super] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_null] = ACTIONS(2538), - [sym_undefined] = ACTIONS(2538), - [anon_sym_AT] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2538), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_get] = ACTIONS(2538), - [anon_sym_set] = ACTIONS(2538), - [anon_sym_declare] = ACTIONS(2538), - [anon_sym_public] = ACTIONS(2538), - [anon_sym_private] = ACTIONS(2538), - [anon_sym_protected] = ACTIONS(2538), - [anon_sym_override] = ACTIONS(2538), - [anon_sym_module] = ACTIONS(2538), - [anon_sym_any] = ACTIONS(2538), - [anon_sym_number] = ACTIONS(2538), - [anon_sym_boolean] = ACTIONS(2538), - [anon_sym_string] = ACTIONS(2538), - [anon_sym_symbol] = ACTIONS(2538), - [anon_sym_object] = ACTIONS(2538), - [anon_sym_abstract] = ACTIONS(2538), - [anon_sym_interface] = ACTIONS(2538), - [anon_sym_enum] = ACTIONS(2538), + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1759), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + [anon_sym_var] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_debugger] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_throw] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_class] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_function] = ACTIONS(1759), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_void] = ACTIONS(1759), + [anon_sym_delete] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1757), + [sym_number] = ACTIONS(1757), + [sym_private_property_identifier] = ACTIONS(1757), + [sym_this] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_undefined] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [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(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), [sym_html_comment] = ACTIONS(5), }, [790] = { - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_typeof] = ACTIONS(2542), - [anon_sym_import] = ACTIONS(2542), - [anon_sym_with] = ACTIONS(2542), - [anon_sym_var] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_throw] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_yield] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2542), - [anon_sym_delete] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2540), - [sym_number] = ACTIONS(2540), - [sym_private_property_identifier] = ACTIONS(2540), - [sym_this] = ACTIONS(2542), - [sym_super] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_null] = ACTIONS(2542), - [sym_undefined] = ACTIONS(2542), - [anon_sym_AT] = ACTIONS(2540), - [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), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), + [ts_builtin_sym_end] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1855), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_namespace] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_typeof] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_with] = ACTIONS(1855), + [anon_sym_var] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_await] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_debugger] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_case] = ACTIONS(1855), + [anon_sym_yield] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_function] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_using] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_void] = ACTIONS(1855), + [anon_sym_delete] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1853), + [sym_number] = ACTIONS(1853), + [sym_private_property_identifier] = ACTIONS(1853), + [sym_this] = ACTIONS(1855), + [sym_super] = ACTIONS(1855), + [sym_true] = ACTIONS(1855), + [sym_false] = ACTIONS(1855), + [sym_null] = ACTIONS(1855), + [sym_undefined] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1853), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_readonly] = ACTIONS(1855), + [anon_sym_get] = ACTIONS(1855), + [anon_sym_set] = ACTIONS(1855), + [anon_sym_declare] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_protected] = ACTIONS(1855), + [anon_sym_override] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_any] = ACTIONS(1855), + [anon_sym_number] = ACTIONS(1855), + [anon_sym_boolean] = ACTIONS(1855), + [anon_sym_string] = ACTIONS(1855), + [anon_sym_symbol] = ACTIONS(1855), + [anon_sym_object] = ACTIONS(1855), + [anon_sym_abstract] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), [sym_html_comment] = ACTIONS(5), }, [791] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2544), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_private_property_identifier] = ACTIONS(2544), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2544), - [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_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2540), + [anon_sym_namespace] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_import] = ACTIONS(2540), + [anon_sym_with] = ACTIONS(2540), + [anon_sym_var] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_await] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_debugger] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_throw] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_yield] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_class] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2540), + [anon_sym_using] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_void] = ACTIONS(2540), + [anon_sym_delete] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2538), + [sym_number] = ACTIONS(2538), + [sym_private_property_identifier] = ACTIONS(2538), + [sym_this] = ACTIONS(2540), + [sym_super] = ACTIONS(2540), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [sym_null] = ACTIONS(2540), + [sym_undefined] = ACTIONS(2540), + [anon_sym_AT] = ACTIONS(2538), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_get] = ACTIONS(2540), + [anon_sym_set] = ACTIONS(2540), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2540), + [anon_sym_private] = ACTIONS(2540), + [anon_sym_protected] = ACTIONS(2540), + [anon_sym_override] = ACTIONS(2540), + [anon_sym_module] = ACTIONS(2540), + [anon_sym_any] = ACTIONS(2540), + [anon_sym_number] = ACTIONS(2540), + [anon_sym_boolean] = ACTIONS(2540), + [anon_sym_string] = ACTIONS(2540), + [anon_sym_symbol] = ACTIONS(2540), + [anon_sym_object] = ACTIONS(2540), + [anon_sym_abstract] = ACTIONS(2540), + [anon_sym_interface] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), [sym_html_comment] = ACTIONS(5), }, [792] = { - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_typeof] = ACTIONS(2542), - [anon_sym_import] = ACTIONS(2542), - [anon_sym_with] = ACTIONS(2542), - [anon_sym_var] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_throw] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_yield] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2542), - [anon_sym_delete] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2540), - [sym_number] = ACTIONS(2540), - [sym_private_property_identifier] = ACTIONS(2540), - [sym_this] = ACTIONS(2542), - [sym_super] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_null] = ACTIONS(2542), - [sym_undefined] = ACTIONS(2542), - [anon_sym_AT] = ACTIONS(2540), - [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), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_namespace] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_import] = ACTIONS(2544), + [anon_sym_with] = ACTIONS(2544), + [anon_sym_var] = ACTIONS(2544), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_await] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_try] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_debugger] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_throw] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_yield] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2544), + [anon_sym_async] = ACTIONS(2544), + [anon_sym_function] = ACTIONS(2544), + [anon_sym_new] = ACTIONS(2544), + [anon_sym_using] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_void] = ACTIONS(2544), + [anon_sym_delete] = ACTIONS(2544), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2542), + [sym_number] = ACTIONS(2542), + [sym_private_property_identifier] = ACTIONS(2542), + [sym_this] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [sym_null] = ACTIONS(2544), + [sym_undefined] = ACTIONS(2544), + [anon_sym_AT] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_readonly] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_declare] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_protected] = ACTIONS(2544), + [anon_sym_override] = ACTIONS(2544), + [anon_sym_module] = ACTIONS(2544), + [anon_sym_any] = ACTIONS(2544), + [anon_sym_number] = ACTIONS(2544), + [anon_sym_boolean] = ACTIONS(2544), + [anon_sym_string] = ACTIONS(2544), + [anon_sym_symbol] = ACTIONS(2544), + [anon_sym_object] = ACTIONS(2544), + [anon_sym_abstract] = ACTIONS(2544), + [anon_sym_interface] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), [sym_html_comment] = ACTIONS(5), }, [793] = { - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_typeof] = ACTIONS(2542), - [anon_sym_import] = ACTIONS(2542), - [anon_sym_with] = ACTIONS(2542), - [anon_sym_var] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_throw] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_yield] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2542), - [anon_sym_delete] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2540), - [sym_number] = ACTIONS(2540), - [sym_private_property_identifier] = ACTIONS(2540), - [sym_this] = ACTIONS(2542), - [sym_super] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_null] = ACTIONS(2542), - [sym_undefined] = ACTIONS(2542), - [anon_sym_AT] = ACTIONS(2540), - [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), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_export] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_namespace] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_import] = ACTIONS(2548), + [anon_sym_with] = ACTIONS(2548), + [anon_sym_var] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_await] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_debugger] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_throw] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_yield] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_class] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(2548), + [anon_sym_new] = ACTIONS(2548), + [anon_sym_using] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_void] = ACTIONS(2548), + [anon_sym_delete] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2546), + [sym_number] = ACTIONS(2546), + [sym_private_property_identifier] = ACTIONS(2546), + [sym_this] = ACTIONS(2548), + [sym_super] = ACTIONS(2548), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [sym_null] = ACTIONS(2548), + [sym_undefined] = ACTIONS(2548), + [anon_sym_AT] = ACTIONS(2546), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_readonly] = ACTIONS(2548), + [anon_sym_get] = ACTIONS(2548), + [anon_sym_set] = ACTIONS(2548), + [anon_sym_declare] = ACTIONS(2548), + [anon_sym_public] = ACTIONS(2548), + [anon_sym_private] = ACTIONS(2548), + [anon_sym_protected] = ACTIONS(2548), + [anon_sym_override] = ACTIONS(2548), + [anon_sym_module] = ACTIONS(2548), + [anon_sym_any] = ACTIONS(2548), + [anon_sym_number] = ACTIONS(2548), + [anon_sym_boolean] = ACTIONS(2548), + [anon_sym_string] = ACTIONS(2548), + [anon_sym_symbol] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(2548), + [anon_sym_abstract] = ACTIONS(2548), + [anon_sym_interface] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), [sym_html_comment] = ACTIONS(5), }, [794] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2552), + [anon_sym_export] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_namespace] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_typeof] = ACTIONS(2552), + [anon_sym_import] = ACTIONS(2552), + [anon_sym_with] = ACTIONS(2552), + [anon_sym_var] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_switch] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_await] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_try] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_debugger] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_throw] = ACTIONS(2552), + [anon_sym_case] = ACTIONS(2552), + [anon_sym_yield] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_DQUOTE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_class] = ACTIONS(2552), + [anon_sym_async] = ACTIONS(2552), + [anon_sym_function] = ACTIONS(2552), + [anon_sym_new] = ACTIONS(2552), + [anon_sym_using] = ACTIONS(2552), + [anon_sym_PLUS] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_SLASH] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(2550), + [anon_sym_TILDE] = ACTIONS(2550), + [anon_sym_void] = ACTIONS(2552), + [anon_sym_delete] = ACTIONS(2552), + [anon_sym_PLUS_PLUS] = ACTIONS(2550), + [anon_sym_DASH_DASH] = ACTIONS(2550), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2550), + [sym_number] = ACTIONS(2550), + [sym_private_property_identifier] = ACTIONS(2550), + [sym_this] = ACTIONS(2552), + [sym_super] = ACTIONS(2552), + [sym_true] = ACTIONS(2552), + [sym_false] = ACTIONS(2552), + [sym_null] = ACTIONS(2552), + [sym_undefined] = ACTIONS(2552), + [anon_sym_AT] = ACTIONS(2550), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_get] = ACTIONS(2552), + [anon_sym_set] = ACTIONS(2552), + [anon_sym_declare] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_protected] = ACTIONS(2552), + [anon_sym_override] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2552), + [anon_sym_any] = ACTIONS(2552), + [anon_sym_number] = ACTIONS(2552), + [anon_sym_boolean] = ACTIONS(2552), + [anon_sym_string] = ACTIONS(2552), + [anon_sym_symbol] = ACTIONS(2552), + [anon_sym_object] = ACTIONS(2552), + [anon_sym_abstract] = ACTIONS(2552), + [anon_sym_interface] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), [sym_html_comment] = ACTIONS(5), }, [795] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2550), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [anon_sym_export] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), + [anon_sym_namespace] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_typeof] = ACTIONS(1745), + [anon_sym_import] = ACTIONS(1745), + [anon_sym_with] = ACTIONS(1745), + [anon_sym_var] = ACTIONS(1745), + [anon_sym_let] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_else] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_switch] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_do] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_debugger] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1745), + [anon_sym_yield] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_class] = ACTIONS(1745), + [anon_sym_async] = ACTIONS(1745), + [anon_sym_function] = ACTIONS(1745), + [anon_sym_new] = ACTIONS(1745), + [anon_sym_using] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_SLASH] = ACTIONS(1745), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_void] = ACTIONS(1745), + [anon_sym_delete] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1743), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1743), + [sym_number] = ACTIONS(1743), + [sym_private_property_identifier] = ACTIONS(1743), + [sym_this] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [sym_null] = ACTIONS(1745), + [sym_undefined] = ACTIONS(1745), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_readonly] = ACTIONS(1745), + [anon_sym_get] = ACTIONS(1745), + [anon_sym_set] = ACTIONS(1745), + [anon_sym_declare] = ACTIONS(1745), + [anon_sym_public] = ACTIONS(1745), + [anon_sym_private] = ACTIONS(1745), + [anon_sym_protected] = ACTIONS(1745), + [anon_sym_override] = ACTIONS(1745), + [anon_sym_module] = ACTIONS(1745), + [anon_sym_any] = ACTIONS(1745), + [anon_sym_number] = ACTIONS(1745), + [anon_sym_boolean] = ACTIONS(1745), + [anon_sym_string] = ACTIONS(1745), + [anon_sym_symbol] = ACTIONS(1745), + [anon_sym_object] = ACTIONS(1745), + [anon_sym_abstract] = ACTIONS(1745), + [anon_sym_interface] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), [sym_html_comment] = ACTIONS(5), }, [796] = { - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_identifier] = ACTIONS(2554), - [anon_sym_export] = ACTIONS(2554), - [anon_sym_default] = ACTIONS(2554), - [anon_sym_type] = ACTIONS(2554), - [anon_sym_namespace] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_typeof] = ACTIONS(2554), - [anon_sym_import] = ACTIONS(2554), - [anon_sym_with] = ACTIONS(2554), - [anon_sym_var] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_const] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_switch] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_await] = ACTIONS(2554), - [anon_sym_while] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_debugger] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_throw] = ACTIONS(2554), - [anon_sym_case] = ACTIONS(2554), - [anon_sym_yield] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_DQUOTE] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2552), - [anon_sym_class] = ACTIONS(2554), - [anon_sym_async] = ACTIONS(2554), - [anon_sym_function] = ACTIONS(2554), - [anon_sym_new] = ACTIONS(2554), - [anon_sym_using] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_TILDE] = ACTIONS(2552), - [anon_sym_void] = ACTIONS(2554), - [anon_sym_delete] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2552), - [sym_number] = ACTIONS(2552), - [sym_private_property_identifier] = ACTIONS(2552), - [sym_this] = ACTIONS(2554), - [sym_super] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_null] = ACTIONS(2554), - [sym_undefined] = ACTIONS(2554), - [anon_sym_AT] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_readonly] = ACTIONS(2554), - [anon_sym_get] = ACTIONS(2554), - [anon_sym_set] = ACTIONS(2554), - [anon_sym_declare] = ACTIONS(2554), - [anon_sym_public] = ACTIONS(2554), - [anon_sym_private] = ACTIONS(2554), - [anon_sym_protected] = ACTIONS(2554), - [anon_sym_override] = ACTIONS(2554), - [anon_sym_module] = ACTIONS(2554), - [anon_sym_any] = ACTIONS(2554), - [anon_sym_number] = ACTIONS(2554), - [anon_sym_boolean] = ACTIONS(2554), - [anon_sym_string] = ACTIONS(2554), - [anon_sym_symbol] = ACTIONS(2554), - [anon_sym_object] = ACTIONS(2554), - [anon_sym_abstract] = ACTIONS(2554), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2554), + [ts_builtin_sym_end] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1831), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_namespace] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(1831), + [anon_sym_with] = ACTIONS(1831), + [anon_sym_var] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_switch] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_await] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_debugger] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_throw] = ACTIONS(1831), + [anon_sym_case] = ACTIONS(1831), + [anon_sym_yield] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1829), + [anon_sym_class] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_function] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_using] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1829), + [sym_number] = ACTIONS(1829), + [sym_private_property_identifier] = ACTIONS(1829), + [sym_this] = ACTIONS(1831), + [sym_super] = ACTIONS(1831), + [sym_true] = ACTIONS(1831), + [sym_false] = ACTIONS(1831), + [sym_null] = ACTIONS(1831), + [sym_undefined] = ACTIONS(1831), + [anon_sym_AT] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_readonly] = ACTIONS(1831), + [anon_sym_get] = ACTIONS(1831), + [anon_sym_set] = ACTIONS(1831), + [anon_sym_declare] = ACTIONS(1831), + [anon_sym_public] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1831), + [anon_sym_protected] = ACTIONS(1831), + [anon_sym_override] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_any] = ACTIONS(1831), + [anon_sym_number] = ACTIONS(1831), + [anon_sym_boolean] = ACTIONS(1831), + [anon_sym_string] = ACTIONS(1831), + [anon_sym_symbol] = ACTIONS(1831), + [anon_sym_object] = ACTIONS(1831), + [anon_sym_abstract] = ACTIONS(1831), + [anon_sym_interface] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), [sym_html_comment] = ACTIONS(5), }, [797] = { - [ts_builtin_sym_end] = ACTIONS(2556), - [sym_identifier] = ACTIONS(2558), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_typeof] = ACTIONS(2558), - [anon_sym_import] = ACTIONS(2558), - [anon_sym_with] = ACTIONS(2558), - [anon_sym_var] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_else] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_switch] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_await] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_do] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_debugger] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2558), - [anon_sym_case] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2556), - [anon_sym_class] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_function] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_using] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(2556), - [anon_sym_void] = ACTIONS(2558), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2556), - [sym_number] = ACTIONS(2556), - [sym_private_property_identifier] = ACTIONS(2556), - [sym_this] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_true] = ACTIONS(2558), - [sym_false] = ACTIONS(2558), - [sym_null] = ACTIONS(2558), - [sym_undefined] = ACTIONS(2558), - [anon_sym_AT] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_override] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), - [anon_sym_object] = ACTIONS(2558), - [anon_sym_abstract] = ACTIONS(2558), - [anon_sym_interface] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_await] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_void] = ACTIONS(2516), + [anon_sym_delete] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2514), + [sym_number] = ACTIONS(2514), + [sym_private_property_identifier] = ACTIONS(2514), + [sym_this] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_null] = ACTIONS(2516), + [sym_undefined] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), [sym_html_comment] = ACTIONS(5), }, [798] = { - [ts_builtin_sym_end] = ACTIONS(2560), - [sym_identifier] = ACTIONS(2562), - [anon_sym_export] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_typeof] = ACTIONS(2562), - [anon_sym_import] = ACTIONS(2562), - [anon_sym_with] = ACTIONS(2562), - [anon_sym_var] = ACTIONS(2562), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_debugger] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_yield] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_async] = ACTIONS(2562), - [anon_sym_function] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_void] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2560), - [sym_number] = ACTIONS(2560), - [sym_private_property_identifier] = ACTIONS(2560), - [sym_this] = ACTIONS(2562), - [sym_super] = ACTIONS(2562), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_undefined] = ACTIONS(2562), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_readonly] = ACTIONS(2562), - [anon_sym_get] = ACTIONS(2562), - [anon_sym_set] = ACTIONS(2562), - [anon_sym_declare] = ACTIONS(2562), - [anon_sym_public] = ACTIONS(2562), - [anon_sym_private] = ACTIONS(2562), - [anon_sym_protected] = ACTIONS(2562), - [anon_sym_override] = ACTIONS(2562), - [anon_sym_module] = ACTIONS(2562), - [anon_sym_any] = ACTIONS(2562), - [anon_sym_number] = ACTIONS(2562), - [anon_sym_boolean] = ACTIONS(2562), - [anon_sym_string] = ACTIONS(2562), - [anon_sym_symbol] = ACTIONS(2562), - [anon_sym_object] = ACTIONS(2562), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_interface] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2556), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_namespace] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_import] = ACTIONS(2556), + [anon_sym_with] = ACTIONS(2556), + [anon_sym_var] = ACTIONS(2556), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_await] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_debugger] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_throw] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_yield] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_class] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_void] = ACTIONS(2556), + [anon_sym_delete] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2554), + [sym_number] = ACTIONS(2554), + [sym_private_property_identifier] = ACTIONS(2554), + [sym_this] = ACTIONS(2556), + [sym_super] = ACTIONS(2556), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [sym_null] = ACTIONS(2556), + [sym_undefined] = ACTIONS(2556), + [anon_sym_AT] = ACTIONS(2554), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_readonly] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_declare] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_protected] = ACTIONS(2556), + [anon_sym_override] = ACTIONS(2556), + [anon_sym_module] = ACTIONS(2556), + [anon_sym_any] = ACTIONS(2556), + [anon_sym_number] = ACTIONS(2556), + [anon_sym_boolean] = ACTIONS(2556), + [anon_sym_string] = ACTIONS(2556), + [anon_sym_symbol] = ACTIONS(2556), + [anon_sym_object] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_interface] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), [sym_html_comment] = ACTIONS(5), }, [799] = { - [ts_builtin_sym_end] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2566), - [anon_sym_export] = ACTIONS(2566), - [anon_sym_default] = ACTIONS(2566), - [anon_sym_type] = ACTIONS(2566), - [anon_sym_namespace] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_typeof] = ACTIONS(2566), - [anon_sym_import] = ACTIONS(2566), - [anon_sym_with] = ACTIONS(2566), - [anon_sym_var] = ACTIONS(2566), - [anon_sym_let] = ACTIONS(2566), - [anon_sym_const] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_else] = ACTIONS(2566), - [anon_sym_if] = ACTIONS(2566), - [anon_sym_switch] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_await] = ACTIONS(2566), - [anon_sym_while] = ACTIONS(2566), - [anon_sym_do] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2566), - [anon_sym_break] = ACTIONS(2566), - [anon_sym_continue] = ACTIONS(2566), - [anon_sym_debugger] = ACTIONS(2566), - [anon_sym_return] = ACTIONS(2566), - [anon_sym_throw] = ACTIONS(2566), - [anon_sym_case] = ACTIONS(2566), - [anon_sym_yield] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_class] = ACTIONS(2566), - [anon_sym_async] = ACTIONS(2566), - [anon_sym_function] = ACTIONS(2566), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_using] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_void] = ACTIONS(2566), - [anon_sym_delete] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2564), - [sym_number] = ACTIONS(2564), - [sym_private_property_identifier] = ACTIONS(2564), - [sym_this] = ACTIONS(2566), - [sym_super] = ACTIONS(2566), - [sym_true] = ACTIONS(2566), - [sym_false] = ACTIONS(2566), - [sym_null] = ACTIONS(2566), - [sym_undefined] = ACTIONS(2566), - [anon_sym_AT] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2566), - [anon_sym_readonly] = ACTIONS(2566), - [anon_sym_get] = ACTIONS(2566), - [anon_sym_set] = ACTIONS(2566), - [anon_sym_declare] = ACTIONS(2566), - [anon_sym_public] = ACTIONS(2566), - [anon_sym_private] = ACTIONS(2566), - [anon_sym_protected] = ACTIONS(2566), - [anon_sym_override] = ACTIONS(2566), - [anon_sym_module] = ACTIONS(2566), - [anon_sym_any] = ACTIONS(2566), - [anon_sym_number] = ACTIONS(2566), - [anon_sym_boolean] = ACTIONS(2566), - [anon_sym_string] = ACTIONS(2566), - [anon_sym_symbol] = ACTIONS(2566), - [anon_sym_object] = ACTIONS(2566), - [anon_sym_abstract] = ACTIONS(2566), - [anon_sym_interface] = ACTIONS(2566), - [anon_sym_enum] = ACTIONS(2566), + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_export] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_namespace] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_import] = ACTIONS(2560), + [anon_sym_with] = ACTIONS(2560), + [anon_sym_var] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_await] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_debugger] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_throw] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_class] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_using] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_void] = ACTIONS(2560), + [anon_sym_delete] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2558), + [sym_number] = ACTIONS(2558), + [sym_private_property_identifier] = ACTIONS(2558), + [sym_this] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [sym_null] = ACTIONS(2560), + [sym_undefined] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_readonly] = ACTIONS(2560), + [anon_sym_get] = ACTIONS(2560), + [anon_sym_set] = ACTIONS(2560), + [anon_sym_declare] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_protected] = ACTIONS(2560), + [anon_sym_override] = ACTIONS(2560), + [anon_sym_module] = ACTIONS(2560), + [anon_sym_any] = ACTIONS(2560), + [anon_sym_number] = ACTIONS(2560), + [anon_sym_boolean] = ACTIONS(2560), + [anon_sym_string] = ACTIONS(2560), + [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_object] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_interface] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), [sym_html_comment] = ACTIONS(5), }, [800] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2564), + [anon_sym_export] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_namespace] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_import] = ACTIONS(2564), + [anon_sym_with] = ACTIONS(2564), + [anon_sym_var] = ACTIONS(2564), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_await] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_try] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_debugger] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_throw] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_yield] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_class] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2564), + [anon_sym_function] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(2564), + [anon_sym_using] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_SLASH] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_void] = ACTIONS(2564), + [anon_sym_delete] = ACTIONS(2564), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2562), + [sym_number] = ACTIONS(2562), + [sym_private_property_identifier] = ACTIONS(2562), + [sym_this] = ACTIONS(2564), + [sym_super] = ACTIONS(2564), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [sym_null] = ACTIONS(2564), + [sym_undefined] = ACTIONS(2564), + [anon_sym_AT] = ACTIONS(2562), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_readonly] = ACTIONS(2564), + [anon_sym_get] = ACTIONS(2564), + [anon_sym_set] = ACTIONS(2564), + [anon_sym_declare] = ACTIONS(2564), + [anon_sym_public] = ACTIONS(2564), + [anon_sym_private] = ACTIONS(2564), + [anon_sym_protected] = ACTIONS(2564), + [anon_sym_override] = ACTIONS(2564), + [anon_sym_module] = ACTIONS(2564), + [anon_sym_any] = ACTIONS(2564), + [anon_sym_number] = ACTIONS(2564), + [anon_sym_boolean] = ACTIONS(2564), + [anon_sym_string] = ACTIONS(2564), + [anon_sym_symbol] = ACTIONS(2564), + [anon_sym_object] = ACTIONS(2564), + [anon_sym_abstract] = ACTIONS(2564), + [anon_sym_interface] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), [sym_html_comment] = ACTIONS(5), }, [801] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_export] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_namespace] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_typeof] = ACTIONS(2568), + [anon_sym_import] = ACTIONS(2568), + [anon_sym_with] = ACTIONS(2568), + [anon_sym_var] = ACTIONS(2568), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_else] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), + [anon_sym_switch] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_await] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_do] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_debugger] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_throw] = ACTIONS(2568), + [anon_sym_case] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_class] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(2568), + [anon_sym_new] = ACTIONS(2568), + [anon_sym_using] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_SLASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_TILDE] = ACTIONS(2566), + [anon_sym_void] = ACTIONS(2568), + [anon_sym_delete] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2566), + [sym_number] = ACTIONS(2566), + [sym_private_property_identifier] = ACTIONS(2566), + [sym_this] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_true] = ACTIONS(2568), + [sym_false] = ACTIONS(2568), + [sym_null] = ACTIONS(2568), + [sym_undefined] = ACTIONS(2568), + [anon_sym_AT] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_readonly] = ACTIONS(2568), + [anon_sym_get] = ACTIONS(2568), + [anon_sym_set] = ACTIONS(2568), + [anon_sym_declare] = ACTIONS(2568), + [anon_sym_public] = ACTIONS(2568), + [anon_sym_private] = ACTIONS(2568), + [anon_sym_protected] = ACTIONS(2568), + [anon_sym_override] = ACTIONS(2568), + [anon_sym_module] = ACTIONS(2568), + [anon_sym_any] = ACTIONS(2568), + [anon_sym_number] = ACTIONS(2568), + [anon_sym_boolean] = ACTIONS(2568), + [anon_sym_string] = ACTIONS(2568), + [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_object] = ACTIONS(2568), + [anon_sym_abstract] = ACTIONS(2568), + [anon_sym_interface] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), [sym_html_comment] = ACTIONS(5), }, [802] = { - [ts_builtin_sym_end] = ACTIONS(2572), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2574), - [anon_sym_default] = ACTIONS(2574), - [anon_sym_type] = ACTIONS(2574), - [anon_sym_namespace] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(2574), - [anon_sym_import] = ACTIONS(2574), - [anon_sym_with] = ACTIONS(2574), - [anon_sym_var] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_switch] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_await] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_do] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [anon_sym_break] = ACTIONS(2574), - [anon_sym_continue] = ACTIONS(2574), - [anon_sym_debugger] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(2574), - [anon_sym_throw] = ACTIONS(2574), - [anon_sym_case] = ACTIONS(2574), - [anon_sym_yield] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_function] = ACTIONS(2574), - [anon_sym_new] = ACTIONS(2574), - [anon_sym_using] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2572), - [anon_sym_TILDE] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_delete] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2572), - [sym_number] = ACTIONS(2572), - [sym_private_property_identifier] = ACTIONS(2572), - [sym_this] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_true] = ACTIONS(2574), - [sym_false] = ACTIONS(2574), - [sym_null] = ACTIONS(2574), - [sym_undefined] = ACTIONS(2574), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_readonly] = ACTIONS(2574), - [anon_sym_get] = ACTIONS(2574), - [anon_sym_set] = ACTIONS(2574), - [anon_sym_declare] = ACTIONS(2574), - [anon_sym_public] = ACTIONS(2574), - [anon_sym_private] = ACTIONS(2574), - [anon_sym_protected] = ACTIONS(2574), - [anon_sym_override] = ACTIONS(2574), - [anon_sym_module] = ACTIONS(2574), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2574), - [anon_sym_interface] = ACTIONS(2574), - [anon_sym_enum] = ACTIONS(2574), + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2572), + [anon_sym_export] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_namespace] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(2572), + [anon_sym_import] = ACTIONS(2572), + [anon_sym_with] = ACTIONS(2572), + [anon_sym_var] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_else] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_await] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_try] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_debugger] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2572), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_yield] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_async] = ACTIONS(2572), + [anon_sym_function] = ACTIONS(2572), + [anon_sym_new] = ACTIONS(2572), + [anon_sym_using] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(2572), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2570), + [sym_number] = ACTIONS(2570), + [sym_private_property_identifier] = ACTIONS(2570), + [sym_this] = ACTIONS(2572), + [sym_super] = ACTIONS(2572), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [sym_null] = ACTIONS(2572), + [sym_undefined] = ACTIONS(2572), + [anon_sym_AT] = ACTIONS(2570), + [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_abstract] = ACTIONS(2572), + [anon_sym_interface] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), [sym_html_comment] = ACTIONS(5), }, [803] = { - [ts_builtin_sym_end] = ACTIONS(2560), - [sym_identifier] = ACTIONS(2562), - [anon_sym_export] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_typeof] = ACTIONS(2562), - [anon_sym_import] = ACTIONS(2562), - [anon_sym_with] = ACTIONS(2562), - [anon_sym_var] = ACTIONS(2562), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_debugger] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_yield] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_async] = ACTIONS(2562), - [anon_sym_function] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_void] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2560), - [sym_number] = ACTIONS(2560), - [sym_private_property_identifier] = ACTIONS(2560), - [sym_this] = ACTIONS(2562), - [sym_super] = ACTIONS(2562), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_undefined] = ACTIONS(2562), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_readonly] = ACTIONS(2562), - [anon_sym_get] = ACTIONS(2562), - [anon_sym_set] = ACTIONS(2562), - [anon_sym_declare] = ACTIONS(2562), - [anon_sym_public] = ACTIONS(2562), - [anon_sym_private] = ACTIONS(2562), - [anon_sym_protected] = ACTIONS(2562), - [anon_sym_override] = ACTIONS(2562), - [anon_sym_module] = ACTIONS(2562), - [anon_sym_any] = ACTIONS(2562), - [anon_sym_number] = ACTIONS(2562), - [anon_sym_boolean] = ACTIONS(2562), - [anon_sym_string] = ACTIONS(2562), - [anon_sym_symbol] = ACTIONS(2562), - [anon_sym_object] = ACTIONS(2562), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_interface] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), + [ts_builtin_sym_end] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2576), + [anon_sym_export] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2576), + [anon_sym_namespace] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_typeof] = ACTIONS(2576), + [anon_sym_import] = ACTIONS(2576), + [anon_sym_with] = ACTIONS(2576), + [anon_sym_var] = ACTIONS(2576), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_else] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_await] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_try] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_debugger] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_throw] = ACTIONS(2576), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_yield] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_class] = ACTIONS(2576), + [anon_sym_async] = ACTIONS(2576), + [anon_sym_function] = ACTIONS(2576), + [anon_sym_new] = ACTIONS(2576), + [anon_sym_using] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_SLASH] = ACTIONS(2576), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_void] = ACTIONS(2576), + [anon_sym_delete] = ACTIONS(2576), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2574), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [sym_this] = ACTIONS(2576), + [sym_super] = ACTIONS(2576), + [sym_true] = ACTIONS(2576), + [sym_false] = ACTIONS(2576), + [sym_null] = ACTIONS(2576), + [sym_undefined] = ACTIONS(2576), + [anon_sym_AT] = ACTIONS(2574), + [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), + [anon_sym_abstract] = ACTIONS(2576), + [anon_sym_interface] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), [sym_html_comment] = ACTIONS(5), }, [804] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2576), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_identifier] = ACTIONS(2580), + [anon_sym_export] = ACTIONS(2580), + [anon_sym_default] = ACTIONS(2580), + [anon_sym_type] = ACTIONS(2580), + [anon_sym_namespace] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_typeof] = ACTIONS(2580), + [anon_sym_import] = ACTIONS(2580), + [anon_sym_with] = ACTIONS(2580), + [anon_sym_var] = ACTIONS(2580), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_const] = ACTIONS(2580), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_else] = ACTIONS(2580), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_switch] = ACTIONS(2580), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_await] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), + [anon_sym_do] = ACTIONS(2580), + [anon_sym_try] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2580), + [anon_sym_debugger] = ACTIONS(2580), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_throw] = ACTIONS(2580), + [anon_sym_case] = ACTIONS(2580), + [anon_sym_yield] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_async] = ACTIONS(2580), + [anon_sym_function] = ACTIONS(2580), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_using] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_LT] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_void] = ACTIONS(2580), + [anon_sym_delete] = ACTIONS(2580), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2578), + [sym_number] = ACTIONS(2578), + [sym_private_property_identifier] = ACTIONS(2578), + [sym_this] = ACTIONS(2580), + [sym_super] = ACTIONS(2580), + [sym_true] = ACTIONS(2580), + [sym_false] = ACTIONS(2580), + [sym_null] = ACTIONS(2580), + [sym_undefined] = ACTIONS(2580), + [anon_sym_AT] = ACTIONS(2578), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_readonly] = ACTIONS(2580), + [anon_sym_get] = ACTIONS(2580), + [anon_sym_set] = ACTIONS(2580), + [anon_sym_declare] = ACTIONS(2580), + [anon_sym_public] = ACTIONS(2580), + [anon_sym_private] = ACTIONS(2580), + [anon_sym_protected] = ACTIONS(2580), + [anon_sym_override] = ACTIONS(2580), + [anon_sym_module] = ACTIONS(2580), + [anon_sym_any] = ACTIONS(2580), + [anon_sym_number] = ACTIONS(2580), + [anon_sym_boolean] = ACTIONS(2580), + [anon_sym_string] = ACTIONS(2580), + [anon_sym_symbol] = ACTIONS(2580), + [anon_sym_object] = ACTIONS(2580), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_interface] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2580), [sym_html_comment] = ACTIONS(5), }, [805] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2582), + [sym_identifier] = ACTIONS(2584), + [anon_sym_export] = ACTIONS(2584), + [anon_sym_default] = ACTIONS(2584), + [anon_sym_type] = ACTIONS(2584), + [anon_sym_namespace] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(2584), + [anon_sym_import] = ACTIONS(2584), + [anon_sym_with] = ACTIONS(2584), + [anon_sym_var] = ACTIONS(2584), + [anon_sym_let] = ACTIONS(2584), + [anon_sym_const] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2582), + [anon_sym_else] = ACTIONS(2584), + [anon_sym_if] = ACTIONS(2584), + [anon_sym_switch] = ACTIONS(2584), + [anon_sym_for] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_await] = ACTIONS(2584), + [anon_sym_while] = ACTIONS(2584), + [anon_sym_do] = ACTIONS(2584), + [anon_sym_try] = ACTIONS(2584), + [anon_sym_break] = ACTIONS(2584), + [anon_sym_continue] = ACTIONS(2584), + [anon_sym_debugger] = ACTIONS(2584), + [anon_sym_return] = ACTIONS(2584), + [anon_sym_throw] = ACTIONS(2584), + [anon_sym_case] = ACTIONS(2584), + [anon_sym_yield] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2582), + [anon_sym_SQUOTE] = ACTIONS(2582), + [anon_sym_class] = ACTIONS(2584), + [anon_sym_async] = ACTIONS(2584), + [anon_sym_function] = ACTIONS(2584), + [anon_sym_new] = ACTIONS(2584), + [anon_sym_using] = ACTIONS(2584), + [anon_sym_PLUS] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_SLASH] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2582), + [anon_sym_TILDE] = ACTIONS(2582), + [anon_sym_void] = ACTIONS(2584), + [anon_sym_delete] = ACTIONS(2584), + [anon_sym_PLUS_PLUS] = ACTIONS(2582), + [anon_sym_DASH_DASH] = ACTIONS(2582), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2582), + [sym_number] = ACTIONS(2582), + [sym_private_property_identifier] = ACTIONS(2582), + [sym_this] = ACTIONS(2584), + [sym_super] = ACTIONS(2584), + [sym_true] = ACTIONS(2584), + [sym_false] = ACTIONS(2584), + [sym_null] = ACTIONS(2584), + [sym_undefined] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_readonly] = ACTIONS(2584), + [anon_sym_get] = ACTIONS(2584), + [anon_sym_set] = ACTIONS(2584), + [anon_sym_declare] = ACTIONS(2584), + [anon_sym_public] = ACTIONS(2584), + [anon_sym_private] = ACTIONS(2584), + [anon_sym_protected] = ACTIONS(2584), + [anon_sym_override] = ACTIONS(2584), + [anon_sym_module] = ACTIONS(2584), + [anon_sym_any] = ACTIONS(2584), + [anon_sym_number] = ACTIONS(2584), + [anon_sym_boolean] = ACTIONS(2584), + [anon_sym_string] = ACTIONS(2584), + [anon_sym_symbol] = ACTIONS(2584), + [anon_sym_object] = ACTIONS(2584), + [anon_sym_abstract] = ACTIONS(2584), + [anon_sym_interface] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2584), [sym_html_comment] = ACTIONS(5), }, [806] = { - [ts_builtin_sym_end] = ACTIONS(2580), - [sym_identifier] = ACTIONS(2582), - [anon_sym_export] = ACTIONS(2582), - [anon_sym_default] = ACTIONS(2582), - [anon_sym_type] = ACTIONS(2582), - [anon_sym_namespace] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(2582), - [anon_sym_import] = ACTIONS(2582), - [anon_sym_with] = ACTIONS(2582), - [anon_sym_var] = ACTIONS(2582), - [anon_sym_let] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2582), - [anon_sym_if] = ACTIONS(2582), - [anon_sym_switch] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_await] = ACTIONS(2582), - [anon_sym_while] = ACTIONS(2582), - [anon_sym_do] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2582), - [anon_sym_break] = ACTIONS(2582), - [anon_sym_continue] = ACTIONS(2582), - [anon_sym_debugger] = ACTIONS(2582), - [anon_sym_return] = ACTIONS(2582), - [anon_sym_throw] = ACTIONS(2582), - [anon_sym_case] = ACTIONS(2582), - [anon_sym_yield] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_async] = ACTIONS(2582), - [anon_sym_function] = ACTIONS(2582), - [anon_sym_new] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_PLUS] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_SLASH] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2580), - [anon_sym_TILDE] = ACTIONS(2580), - [anon_sym_void] = ACTIONS(2582), - [anon_sym_delete] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2580), - [sym_private_property_identifier] = ACTIONS(2580), - [sym_this] = ACTIONS(2582), - [sym_super] = ACTIONS(2582), - [sym_true] = ACTIONS(2582), - [sym_false] = ACTIONS(2582), - [sym_null] = ACTIONS(2582), - [sym_undefined] = ACTIONS(2582), - [anon_sym_AT] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_readonly] = ACTIONS(2582), - [anon_sym_get] = ACTIONS(2582), - [anon_sym_set] = ACTIONS(2582), - [anon_sym_declare] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [anon_sym_override] = ACTIONS(2582), - [anon_sym_module] = ACTIONS(2582), - [anon_sym_any] = ACTIONS(2582), - [anon_sym_number] = ACTIONS(2582), - [anon_sym_boolean] = ACTIONS(2582), - [anon_sym_string] = ACTIONS(2582), - [anon_sym_symbol] = ACTIONS(2582), - [anon_sym_object] = ACTIONS(2582), - [anon_sym_abstract] = ACTIONS(2582), - [anon_sym_interface] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2588), + [anon_sym_export] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2588), + [anon_sym_import] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + [anon_sym_var] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_else] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_switch] = ACTIONS(2588), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_await] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_do] = ACTIONS(2588), + [anon_sym_try] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_debugger] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_throw] = ACTIONS(2588), + [anon_sym_case] = ACTIONS(2588), + [anon_sym_yield] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2588), + [anon_sym_async] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_using] = ACTIONS(2588), + [anon_sym_PLUS] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_TILDE] = ACTIONS(2586), + [anon_sym_void] = ACTIONS(2588), + [anon_sym_delete] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2586), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2586), + [sym_number] = ACTIONS(2586), + [sym_private_property_identifier] = ACTIONS(2586), + [sym_this] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_true] = ACTIONS(2588), + [sym_false] = ACTIONS(2588), + [sym_null] = ACTIONS(2588), + [sym_undefined] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_readonly] = ACTIONS(2588), + [anon_sym_get] = ACTIONS(2588), + [anon_sym_set] = ACTIONS(2588), + [anon_sym_declare] = ACTIONS(2588), + [anon_sym_public] = ACTIONS(2588), + [anon_sym_private] = ACTIONS(2588), + [anon_sym_protected] = ACTIONS(2588), + [anon_sym_override] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_any] = ACTIONS(2588), + [anon_sym_number] = ACTIONS(2588), + [anon_sym_boolean] = ACTIONS(2588), + [anon_sym_string] = ACTIONS(2588), + [anon_sym_symbol] = ACTIONS(2588), + [anon_sym_object] = ACTIONS(2588), + [anon_sym_abstract] = ACTIONS(2588), + [anon_sym_interface] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), [sym_html_comment] = ACTIONS(5), }, [807] = { - [ts_builtin_sym_end] = ACTIONS(2584), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_default] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_typeof] = ACTIONS(2586), - [anon_sym_import] = ACTIONS(2586), - [anon_sym_with] = ACTIONS(2586), - [anon_sym_var] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_const] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_switch] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_await] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_do] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_debugger] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_throw] = ACTIONS(2586), - [anon_sym_case] = ACTIONS(2586), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2586), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_void] = ACTIONS(2586), - [anon_sym_delete] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2584), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2584), - [sym_number] = ACTIONS(2584), - [sym_private_property_identifier] = ACTIONS(2584), - [sym_this] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(2584), - [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_abstract] = ACTIONS(2586), - [anon_sym_interface] = ACTIONS(2586), - [anon_sym_enum] = ACTIONS(2586), + [ts_builtin_sym_end] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_default] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_namespace] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2592), + [anon_sym_with] = ACTIONS(2592), + [anon_sym_var] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_else] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_switch] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_await] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_do] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_debugger] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_throw] = ACTIONS(2592), + [anon_sym_case] = ACTIONS(2592), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_function] = ACTIONS(2592), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_using] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_void] = ACTIONS(2592), + [anon_sym_delete] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [sym_this] = ACTIONS(2592), + [sym_super] = ACTIONS(2592), + [sym_true] = ACTIONS(2592), + [sym_false] = ACTIONS(2592), + [sym_null] = ACTIONS(2592), + [sym_undefined] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_declare] = ACTIONS(2592), + [anon_sym_public] = ACTIONS(2592), + [anon_sym_private] = ACTIONS(2592), + [anon_sym_protected] = ACTIONS(2592), + [anon_sym_override] = ACTIONS(2592), + [anon_sym_module] = ACTIONS(2592), + [anon_sym_any] = ACTIONS(2592), + [anon_sym_number] = ACTIONS(2592), + [anon_sym_boolean] = ACTIONS(2592), + [anon_sym_string] = ACTIONS(2592), + [anon_sym_symbol] = ACTIONS(2592), + [anon_sym_object] = ACTIONS(2592), + [anon_sym_abstract] = ACTIONS(2592), + [anon_sym_interface] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), [sym_html_comment] = ACTIONS(5), }, [808] = { - [ts_builtin_sym_end] = ACTIONS(2584), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_default] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_typeof] = ACTIONS(2586), - [anon_sym_import] = ACTIONS(2586), - [anon_sym_with] = ACTIONS(2586), - [anon_sym_var] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_const] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_switch] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_await] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_do] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_debugger] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_throw] = ACTIONS(2586), - [anon_sym_case] = ACTIONS(2586), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2586), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_void] = ACTIONS(2586), - [anon_sym_delete] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2584), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2584), - [sym_number] = ACTIONS(2584), - [sym_private_property_identifier] = ACTIONS(2584), - [sym_this] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(2584), - [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_abstract] = ACTIONS(2586), - [anon_sym_interface] = ACTIONS(2586), - [anon_sym_enum] = ACTIONS(2586), + [ts_builtin_sym_end] = ACTIONS(2594), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_default] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2596), + [anon_sym_import] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2596), + [anon_sym_var] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_const] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_else] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_switch] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_await] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_do] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_debugger] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_throw] = ACTIONS(2596), + [anon_sym_case] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2594), + [anon_sym_class] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_delete] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2594), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_number] = ACTIONS(2594), + [sym_private_property_identifier] = ACTIONS(2594), + [sym_this] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_undefined] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [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), + [anon_sym_abstract] = ACTIONS(2596), + [anon_sym_interface] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), [sym_html_comment] = ACTIONS(5), }, [809] = { - [ts_builtin_sym_end] = ACTIONS(2588), - [sym_identifier] = ACTIONS(2590), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_default] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_typeof] = ACTIONS(2590), - [anon_sym_import] = ACTIONS(2590), - [anon_sym_with] = ACTIONS(2590), - [anon_sym_var] = ACTIONS(2590), - [anon_sym_let] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_switch] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_await] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_do] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_debugger] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_throw] = ACTIONS(2590), - [anon_sym_case] = ACTIONS(2590), - [anon_sym_yield] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_function] = ACTIONS(2590), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_SLASH] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_TILDE] = ACTIONS(2588), - [anon_sym_void] = ACTIONS(2590), - [anon_sym_delete] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2588), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2588), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [sym_this] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_true] = ACTIONS(2590), - [sym_false] = ACTIONS(2590), - [sym_null] = ACTIONS(2590), - [sym_undefined] = ACTIONS(2590), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_readonly] = ACTIONS(2590), - [anon_sym_get] = ACTIONS(2590), - [anon_sym_set] = ACTIONS(2590), - [anon_sym_declare] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_private] = ACTIONS(2590), - [anon_sym_protected] = ACTIONS(2590), - [anon_sym_override] = ACTIONS(2590), - [anon_sym_module] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2590), - [anon_sym_number] = ACTIONS(2590), - [anon_sym_boolean] = ACTIONS(2590), - [anon_sym_string] = ACTIONS(2590), - [anon_sym_symbol] = ACTIONS(2590), - [anon_sym_object] = ACTIONS(2590), - [anon_sym_abstract] = ACTIONS(2590), - [anon_sym_interface] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), + [ts_builtin_sym_end] = ACTIONS(2598), + [sym_identifier] = ACTIONS(2600), + [anon_sym_export] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_namespace] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_typeof] = ACTIONS(2600), + [anon_sym_import] = ACTIONS(2600), + [anon_sym_with] = ACTIONS(2600), + [anon_sym_var] = ACTIONS(2600), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_else] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_switch] = ACTIONS(2600), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_await] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_do] = ACTIONS(2600), + [anon_sym_try] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_debugger] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_throw] = ACTIONS(2600), + [anon_sym_case] = ACTIONS(2600), + [anon_sym_yield] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2598), + [anon_sym_class] = ACTIONS(2600), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2600), + [anon_sym_using] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_SLASH] = ACTIONS(2600), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_TILDE] = ACTIONS(2598), + [anon_sym_void] = ACTIONS(2600), + [anon_sym_delete] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2598), + [sym_number] = ACTIONS(2598), + [sym_private_property_identifier] = ACTIONS(2598), + [sym_this] = ACTIONS(2600), + [sym_super] = ACTIONS(2600), + [sym_true] = ACTIONS(2600), + [sym_false] = ACTIONS(2600), + [sym_null] = ACTIONS(2600), + [sym_undefined] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2598), + [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_abstract] = ACTIONS(2600), + [anon_sym_interface] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), [sym_html_comment] = ACTIONS(5), }, [810] = { - [ts_builtin_sym_end] = ACTIONS(2592), - [sym_identifier] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_type] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_typeof] = ACTIONS(2594), - [anon_sym_import] = ACTIONS(2594), - [anon_sym_with] = ACTIONS(2594), - [anon_sym_var] = ACTIONS(2594), - [anon_sym_let] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_await] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_debugger] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_yield] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_function] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_LT] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2592), - [anon_sym_void] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(2592), - [anon_sym_DASH_DASH] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2592), - [sym_number] = ACTIONS(2592), - [sym_private_property_identifier] = ACTIONS(2592), - [sym_this] = ACTIONS(2594), - [sym_super] = ACTIONS(2594), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [sym_null] = ACTIONS(2594), - [sym_undefined] = ACTIONS(2594), - [anon_sym_AT] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_readonly] = ACTIONS(2594), - [anon_sym_get] = ACTIONS(2594), - [anon_sym_set] = ACTIONS(2594), - [anon_sym_declare] = ACTIONS(2594), - [anon_sym_public] = ACTIONS(2594), - [anon_sym_private] = ACTIONS(2594), - [anon_sym_protected] = ACTIONS(2594), - [anon_sym_override] = ACTIONS(2594), - [anon_sym_module] = ACTIONS(2594), - [anon_sym_any] = ACTIONS(2594), - [anon_sym_number] = ACTIONS(2594), - [anon_sym_boolean] = ACTIONS(2594), - [anon_sym_string] = ACTIONS(2594), - [anon_sym_symbol] = ACTIONS(2594), - [anon_sym_object] = ACTIONS(2594), - [anon_sym_abstract] = ACTIONS(2594), - [anon_sym_interface] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), + [ts_builtin_sym_end] = ACTIONS(2594), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_default] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2596), + [anon_sym_import] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2596), + [anon_sym_var] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_const] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_else] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_switch] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_await] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_do] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_debugger] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_throw] = ACTIONS(2596), + [anon_sym_case] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2594), + [anon_sym_class] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_delete] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2594), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_number] = ACTIONS(2594), + [sym_private_property_identifier] = ACTIONS(2594), + [sym_this] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_undefined] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [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), + [anon_sym_abstract] = ACTIONS(2596), + [anon_sym_interface] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), [sym_html_comment] = ACTIONS(5), }, [811] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_typeof] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_with] = ACTIONS(1875), - [anon_sym_var] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_switch] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_await] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_debugger] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_throw] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1875), - [anon_sym_async] = ACTIONS(1875), - [anon_sym_function] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_using] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_delete] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1873), - [sym_number] = ACTIONS(1873), - [sym_private_property_identifier] = ACTIONS(1873), - [sym_this] = ACTIONS(1875), - [sym_super] = ACTIONS(1875), - [sym_true] = ACTIONS(1875), - [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), - [sym_undefined] = ACTIONS(1875), - [anon_sym_AT] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_readonly] = ACTIONS(1875), - [anon_sym_get] = ACTIONS(1875), - [anon_sym_set] = ACTIONS(1875), - [anon_sym_declare] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [anon_sym_override] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1875), - [anon_sym_number] = ACTIONS(1875), - [anon_sym_boolean] = ACTIONS(1875), - [anon_sym_string] = ACTIONS(1875), - [anon_sym_symbol] = ACTIONS(1875), - [anon_sym_object] = ACTIONS(1875), - [anon_sym_abstract] = ACTIONS(1875), - [anon_sym_interface] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_namespace] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_typeof] = ACTIONS(2604), + [anon_sym_import] = ACTIONS(2604), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_var] = ACTIONS(2604), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_const] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_else] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_await] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_do] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_debugger] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_throw] = ACTIONS(2604), + [anon_sym_case] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2604), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2602), + [anon_sym_class] = ACTIONS(2604), + [anon_sym_async] = ACTIONS(2604), + [anon_sym_function] = ACTIONS(2604), + [anon_sym_new] = ACTIONS(2604), + [anon_sym_using] = ACTIONS(2604), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_void] = ACTIONS(2604), + [anon_sym_delete] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2602), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2602), + [sym_private_property_identifier] = ACTIONS(2602), + [sym_this] = ACTIONS(2604), + [sym_super] = ACTIONS(2604), + [sym_true] = ACTIONS(2604), + [sym_false] = ACTIONS(2604), + [sym_null] = ACTIONS(2604), + [sym_undefined] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_readonly] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_declare] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_override] = ACTIONS(2604), + [anon_sym_module] = ACTIONS(2604), + [anon_sym_any] = ACTIONS(2604), + [anon_sym_number] = ACTIONS(2604), + [anon_sym_boolean] = ACTIONS(2604), + [anon_sym_string] = ACTIONS(2604), + [anon_sym_symbol] = ACTIONS(2604), + [anon_sym_object] = ACTIONS(2604), + [anon_sym_abstract] = ACTIONS(2604), + [anon_sym_interface] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), [sym_html_comment] = ACTIONS(5), }, [812] = { - [ts_builtin_sym_end] = ACTIONS(2596), - [sym_identifier] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_namespace] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_typeof] = ACTIONS(2598), - [anon_sym_import] = ACTIONS(2598), - [anon_sym_with] = ACTIONS(2598), - [anon_sym_var] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_switch] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_await] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_do] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_debugger] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_throw] = ACTIONS(2598), - [anon_sym_case] = ACTIONS(2598), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_function] = ACTIONS(2598), - [anon_sym_new] = ACTIONS(2598), - [anon_sym_using] = ACTIONS(2598), - [anon_sym_PLUS] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2598), - [anon_sym_SLASH] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_void] = ACTIONS(2598), - [anon_sym_delete] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2596), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(2596), - [sym_this] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_true] = ACTIONS(2598), - [sym_false] = ACTIONS(2598), - [sym_null] = ACTIONS(2598), - [sym_undefined] = ACTIONS(2598), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_readonly] = ACTIONS(2598), - [anon_sym_get] = ACTIONS(2598), - [anon_sym_set] = ACTIONS(2598), - [anon_sym_declare] = ACTIONS(2598), - [anon_sym_public] = ACTIONS(2598), - [anon_sym_private] = ACTIONS(2598), - [anon_sym_protected] = ACTIONS(2598), - [anon_sym_override] = ACTIONS(2598), - [anon_sym_module] = ACTIONS(2598), - [anon_sym_any] = ACTIONS(2598), - [anon_sym_number] = ACTIONS(2598), - [anon_sym_boolean] = ACTIONS(2598), - [anon_sym_string] = ACTIONS(2598), - [anon_sym_symbol] = ACTIONS(2598), - [anon_sym_object] = ACTIONS(2598), - [anon_sym_abstract] = ACTIONS(2598), - [anon_sym_interface] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2608), + [anon_sym_export] = ACTIONS(2608), + [anon_sym_default] = ACTIONS(2608), + [anon_sym_type] = ACTIONS(2608), + [anon_sym_namespace] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(2608), + [anon_sym_import] = ACTIONS(2608), + [anon_sym_with] = ACTIONS(2608), + [anon_sym_var] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_await] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_do] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_debugger] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_throw] = ACTIONS(2608), + [anon_sym_case] = ACTIONS(2608), + [anon_sym_yield] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_DQUOTE] = ACTIONS(2606), + [anon_sym_SQUOTE] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2608), + [anon_sym_async] = ACTIONS(2608), + [anon_sym_function] = ACTIONS(2608), + [anon_sym_new] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2608), + [anon_sym_PLUS] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2606), + [anon_sym_void] = ACTIONS(2608), + [anon_sym_delete] = ACTIONS(2608), + [anon_sym_PLUS_PLUS] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2606), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2606), + [sym_number] = ACTIONS(2606), + [sym_private_property_identifier] = ACTIONS(2606), + [sym_this] = ACTIONS(2608), + [sym_super] = ACTIONS(2608), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2608), + [anon_sym_get] = ACTIONS(2608), + [anon_sym_set] = ACTIONS(2608), + [anon_sym_declare] = ACTIONS(2608), + [anon_sym_public] = ACTIONS(2608), + [anon_sym_private] = ACTIONS(2608), + [anon_sym_protected] = ACTIONS(2608), + [anon_sym_override] = ACTIONS(2608), + [anon_sym_module] = ACTIONS(2608), + [anon_sym_any] = ACTIONS(2608), + [anon_sym_number] = ACTIONS(2608), + [anon_sym_boolean] = ACTIONS(2608), + [anon_sym_string] = ACTIONS(2608), + [anon_sym_symbol] = ACTIONS(2608), + [anon_sym_object] = ACTIONS(2608), + [anon_sym_abstract] = ACTIONS(2608), + [anon_sym_interface] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), [sym_html_comment] = ACTIONS(5), }, [813] = { - [ts_builtin_sym_end] = ACTIONS(2600), - [sym_identifier] = ACTIONS(2602), - [anon_sym_export] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_type] = ACTIONS(2602), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_typeof] = ACTIONS(2602), - [anon_sym_import] = ACTIONS(2602), - [anon_sym_with] = ACTIONS(2602), - [anon_sym_var] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_await] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_debugger] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_case] = ACTIONS(2602), - [anon_sym_yield] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2600), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_async] = ACTIONS(2602), - [anon_sym_function] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_SLASH] = ACTIONS(2602), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_TILDE] = ACTIONS(2600), - [anon_sym_void] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_PLUS_PLUS] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(2600), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2600), - [sym_number] = ACTIONS(2600), - [sym_private_property_identifier] = ACTIONS(2600), - [sym_this] = ACTIONS(2602), - [sym_super] = ACTIONS(2602), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_undefined] = ACTIONS(2602), - [anon_sym_AT] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_readonly] = ACTIONS(2602), - [anon_sym_get] = ACTIONS(2602), - [anon_sym_set] = ACTIONS(2602), - [anon_sym_declare] = ACTIONS(2602), - [anon_sym_public] = ACTIONS(2602), - [anon_sym_private] = ACTIONS(2602), - [anon_sym_protected] = ACTIONS(2602), - [anon_sym_override] = ACTIONS(2602), - [anon_sym_module] = ACTIONS(2602), - [anon_sym_any] = ACTIONS(2602), - [anon_sym_number] = ACTIONS(2602), - [anon_sym_boolean] = ACTIONS(2602), - [anon_sym_string] = ACTIONS(2602), - [anon_sym_symbol] = ACTIONS(2602), - [anon_sym_object] = ACTIONS(2602), - [anon_sym_abstract] = ACTIONS(2602), - [anon_sym_interface] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), + [ts_builtin_sym_end] = ACTIONS(2610), + [sym_identifier] = ACTIONS(2612), + [anon_sym_export] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_namespace] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_RBRACE] = ACTIONS(2610), + [anon_sym_typeof] = ACTIONS(2612), + [anon_sym_import] = ACTIONS(2612), + [anon_sym_with] = ACTIONS(2612), + [anon_sym_var] = ACTIONS(2612), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_BANG] = ACTIONS(2610), + [anon_sym_else] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_switch] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(2610), + [anon_sym_await] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_do] = ACTIONS(2612), + [anon_sym_try] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_debugger] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_throw] = ACTIONS(2612), + [anon_sym_case] = ACTIONS(2612), + [anon_sym_yield] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2610), + [anon_sym_DQUOTE] = ACTIONS(2610), + [anon_sym_SQUOTE] = ACTIONS(2610), + [anon_sym_class] = ACTIONS(2612), + [anon_sym_async] = ACTIONS(2612), + [anon_sym_function] = ACTIONS(2612), + [anon_sym_new] = ACTIONS(2612), + [anon_sym_using] = ACTIONS(2612), + [anon_sym_PLUS] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_SLASH] = ACTIONS(2612), + [anon_sym_LT] = ACTIONS(2610), + [anon_sym_TILDE] = ACTIONS(2610), + [anon_sym_void] = ACTIONS(2612), + [anon_sym_delete] = ACTIONS(2612), + [anon_sym_PLUS_PLUS] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(2610), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2610), + [sym_number] = ACTIONS(2610), + [sym_private_property_identifier] = ACTIONS(2610), + [sym_this] = ACTIONS(2612), + [sym_super] = ACTIONS(2612), + [sym_true] = ACTIONS(2612), + [sym_false] = ACTIONS(2612), + [sym_null] = ACTIONS(2612), + [sym_undefined] = ACTIONS(2612), + [anon_sym_AT] = ACTIONS(2610), + [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), + [anon_sym_abstract] = ACTIONS(2612), + [anon_sym_interface] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), [sym_html_comment] = ACTIONS(5), }, [814] = { - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2606), - [anon_sym_export] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_type] = ACTIONS(2606), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_typeof] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_with] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_await] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_debugger] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_case] = ACTIONS(2606), - [anon_sym_yield] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2604), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_async] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_LT] = ACTIONS(2604), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_void] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2604), - [sym_number] = ACTIONS(2604), - [sym_private_property_identifier] = ACTIONS(2604), - [sym_this] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_undefined] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2604), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_readonly] = ACTIONS(2606), - [anon_sym_get] = ACTIONS(2606), - [anon_sym_set] = ACTIONS(2606), - [anon_sym_declare] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_protected] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_module] = ACTIONS(2606), - [anon_sym_any] = ACTIONS(2606), - [anon_sym_number] = ACTIONS(2606), - [anon_sym_boolean] = ACTIONS(2606), - [anon_sym_string] = ACTIONS(2606), - [anon_sym_symbol] = ACTIONS(2606), - [anon_sym_object] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_export] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_type] = ACTIONS(2616), + [anon_sym_namespace] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_typeof] = ACTIONS(2616), + [anon_sym_import] = ACTIONS(2616), + [anon_sym_with] = ACTIONS(2616), + [anon_sym_var] = ACTIONS(2616), + [anon_sym_let] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_else] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_switch] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_await] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_try] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_debugger] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_throw] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(2616), + [anon_sym_yield] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_DQUOTE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2614), + [anon_sym_class] = ACTIONS(2616), + [anon_sym_async] = ACTIONS(2616), + [anon_sym_function] = ACTIONS(2616), + [anon_sym_new] = ACTIONS(2616), + [anon_sym_using] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_LT] = ACTIONS(2614), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_void] = ACTIONS(2616), + [anon_sym_delete] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2614), + [sym_number] = ACTIONS(2614), + [sym_private_property_identifier] = ACTIONS(2614), + [sym_this] = ACTIONS(2616), + [sym_super] = ACTIONS(2616), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [sym_null] = ACTIONS(2616), + [sym_undefined] = ACTIONS(2616), + [anon_sym_AT] = ACTIONS(2614), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_readonly] = ACTIONS(2616), + [anon_sym_get] = ACTIONS(2616), + [anon_sym_set] = ACTIONS(2616), + [anon_sym_declare] = ACTIONS(2616), + [anon_sym_public] = ACTIONS(2616), + [anon_sym_private] = ACTIONS(2616), + [anon_sym_protected] = ACTIONS(2616), + [anon_sym_override] = ACTIONS(2616), + [anon_sym_module] = ACTIONS(2616), + [anon_sym_any] = ACTIONS(2616), + [anon_sym_number] = ACTIONS(2616), + [anon_sym_boolean] = ACTIONS(2616), + [anon_sym_string] = ACTIONS(2616), + [anon_sym_symbol] = ACTIONS(2616), + [anon_sym_object] = ACTIONS(2616), + [anon_sym_abstract] = ACTIONS(2616), + [anon_sym_interface] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), [sym_html_comment] = ACTIONS(5), }, [815] = { - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2610), - [anon_sym_export] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_typeof] = ACTIONS(2610), - [anon_sym_import] = ACTIONS(2610), - [anon_sym_with] = ACTIONS(2610), - [anon_sym_var] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_await] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_debugger] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_function] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_void] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2608), - [sym_number] = ACTIONS(2608), - [sym_private_property_identifier] = ACTIONS(2608), - [sym_this] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_undefined] = ACTIONS(2610), - [anon_sym_AT] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_readonly] = ACTIONS(2610), - [anon_sym_get] = ACTIONS(2610), - [anon_sym_set] = ACTIONS(2610), - [anon_sym_declare] = ACTIONS(2610), - [anon_sym_public] = ACTIONS(2610), - [anon_sym_private] = ACTIONS(2610), - [anon_sym_protected] = ACTIONS(2610), - [anon_sym_override] = ACTIONS(2610), - [anon_sym_module] = ACTIONS(2610), - [anon_sym_any] = ACTIONS(2610), - [anon_sym_number] = ACTIONS(2610), - [anon_sym_boolean] = ACTIONS(2610), - [anon_sym_string] = ACTIONS(2610), - [anon_sym_symbol] = ACTIONS(2610), - [anon_sym_object] = ACTIONS(2610), - [anon_sym_abstract] = ACTIONS(2610), - [anon_sym_interface] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2620), + [anon_sym_export] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2620), + [anon_sym_namespace] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_typeof] = ACTIONS(2620), + [anon_sym_import] = ACTIONS(2620), + [anon_sym_with] = ACTIONS(2620), + [anon_sym_var] = ACTIONS(2620), + [anon_sym_let] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_else] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_switch] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym_await] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_do] = ACTIONS(2620), + [anon_sym_try] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_debugger] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_throw] = ACTIONS(2620), + [anon_sym_case] = ACTIONS(2620), + [anon_sym_yield] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_class] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2620), + [anon_sym_function] = ACTIONS(2620), + [anon_sym_new] = ACTIONS(2620), + [anon_sym_using] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2618), + [anon_sym_TILDE] = ACTIONS(2618), + [anon_sym_void] = ACTIONS(2620), + [anon_sym_delete] = ACTIONS(2620), + [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_DASH_DASH] = ACTIONS(2618), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2618), + [sym_number] = ACTIONS(2618), + [sym_private_property_identifier] = ACTIONS(2618), + [sym_this] = ACTIONS(2620), + [sym_super] = ACTIONS(2620), + [sym_true] = ACTIONS(2620), + [sym_false] = ACTIONS(2620), + [sym_null] = ACTIONS(2620), + [sym_undefined] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2618), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_readonly] = ACTIONS(2620), + [anon_sym_get] = ACTIONS(2620), + [anon_sym_set] = ACTIONS(2620), + [anon_sym_declare] = ACTIONS(2620), + [anon_sym_public] = ACTIONS(2620), + [anon_sym_private] = ACTIONS(2620), + [anon_sym_protected] = ACTIONS(2620), + [anon_sym_override] = ACTIONS(2620), + [anon_sym_module] = ACTIONS(2620), + [anon_sym_any] = ACTIONS(2620), + [anon_sym_number] = ACTIONS(2620), + [anon_sym_boolean] = ACTIONS(2620), + [anon_sym_string] = ACTIONS(2620), + [anon_sym_symbol] = ACTIONS(2620), + [anon_sym_object] = ACTIONS(2620), + [anon_sym_abstract] = ACTIONS(2620), + [anon_sym_interface] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), [sym_html_comment] = ACTIONS(5), }, [816] = { - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2610), - [anon_sym_export] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_typeof] = ACTIONS(2610), - [anon_sym_import] = ACTIONS(2610), - [anon_sym_with] = ACTIONS(2610), - [anon_sym_var] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_await] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_debugger] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_function] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_void] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2608), - [sym_number] = ACTIONS(2608), - [sym_private_property_identifier] = ACTIONS(2608), - [sym_this] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_undefined] = ACTIONS(2610), - [anon_sym_AT] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_readonly] = ACTIONS(2610), - [anon_sym_get] = ACTIONS(2610), - [anon_sym_set] = ACTIONS(2610), - [anon_sym_declare] = ACTIONS(2610), - [anon_sym_public] = ACTIONS(2610), - [anon_sym_private] = ACTIONS(2610), - [anon_sym_protected] = ACTIONS(2610), - [anon_sym_override] = ACTIONS(2610), - [anon_sym_module] = ACTIONS(2610), - [anon_sym_any] = ACTIONS(2610), - [anon_sym_number] = ACTIONS(2610), - [anon_sym_boolean] = ACTIONS(2610), - [anon_sym_string] = ACTIONS(2610), - [anon_sym_symbol] = ACTIONS(2610), - [anon_sym_object] = ACTIONS(2610), - [anon_sym_abstract] = ACTIONS(2610), - [anon_sym_interface] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2624), + [anon_sym_export] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_type] = ACTIONS(2624), + [anon_sym_namespace] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_typeof] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2624), + [anon_sym_with] = ACTIONS(2624), + [anon_sym_var] = ACTIONS(2624), + [anon_sym_let] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_else] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_switch] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_await] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_do] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_debugger] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_throw] = ACTIONS(2624), + [anon_sym_case] = ACTIONS(2624), + [anon_sym_yield] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_DQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_class] = ACTIONS(2624), + [anon_sym_async] = ACTIONS(2624), + [anon_sym_function] = ACTIONS(2624), + [anon_sym_new] = ACTIONS(2624), + [anon_sym_using] = ACTIONS(2624), + [anon_sym_PLUS] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_SLASH] = ACTIONS(2624), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2622), + [anon_sym_void] = ACTIONS(2624), + [anon_sym_delete] = ACTIONS(2624), + [anon_sym_PLUS_PLUS] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2622), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2622), + [sym_number] = ACTIONS(2622), + [sym_private_property_identifier] = ACTIONS(2622), + [sym_this] = ACTIONS(2624), + [sym_super] = ACTIONS(2624), + [sym_true] = ACTIONS(2624), + [sym_false] = ACTIONS(2624), + [sym_null] = ACTIONS(2624), + [sym_undefined] = ACTIONS(2624), + [anon_sym_AT] = ACTIONS(2622), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_readonly] = ACTIONS(2624), + [anon_sym_get] = ACTIONS(2624), + [anon_sym_set] = ACTIONS(2624), + [anon_sym_declare] = ACTIONS(2624), + [anon_sym_public] = ACTIONS(2624), + [anon_sym_private] = ACTIONS(2624), + [anon_sym_protected] = ACTIONS(2624), + [anon_sym_override] = ACTIONS(2624), + [anon_sym_module] = ACTIONS(2624), + [anon_sym_any] = ACTIONS(2624), + [anon_sym_number] = ACTIONS(2624), + [anon_sym_boolean] = ACTIONS(2624), + [anon_sym_string] = ACTIONS(2624), + [anon_sym_symbol] = ACTIONS(2624), + [anon_sym_object] = ACTIONS(2624), + [anon_sym_abstract] = ACTIONS(2624), + [anon_sym_interface] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), [sym_html_comment] = ACTIONS(5), }, [817] = { - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_identifier] = ACTIONS(2614), - [anon_sym_export] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2612), - [anon_sym_typeof] = ACTIONS(2614), - [anon_sym_import] = ACTIONS(2614), - [anon_sym_with] = ACTIONS(2614), - [anon_sym_var] = ACTIONS(2614), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_await] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_debugger] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_function] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_void] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2612), - [sym_number] = ACTIONS(2612), - [sym_private_property_identifier] = ACTIONS(2612), - [sym_this] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_undefined] = ACTIONS(2614), - [anon_sym_AT] = ACTIONS(2612), - [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), - [anon_sym_abstract] = ACTIONS(2614), - [anon_sym_interface] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), + [ts_builtin_sym_end] = ACTIONS(2626), + [sym_identifier] = ACTIONS(2628), + [anon_sym_export] = ACTIONS(2628), + [anon_sym_default] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_namespace] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_typeof] = ACTIONS(2628), + [anon_sym_import] = ACTIONS(2628), + [anon_sym_with] = ACTIONS(2628), + [anon_sym_var] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_const] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_else] = ACTIONS(2628), + [anon_sym_if] = ACTIONS(2628), + [anon_sym_switch] = ACTIONS(2628), + [anon_sym_for] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym_await] = ACTIONS(2628), + [anon_sym_while] = ACTIONS(2628), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_try] = ACTIONS(2628), + [anon_sym_break] = ACTIONS(2628), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_debugger] = ACTIONS(2628), + [anon_sym_return] = ACTIONS(2628), + [anon_sym_throw] = ACTIONS(2628), + [anon_sym_case] = ACTIONS(2628), + [anon_sym_yield] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_DQUOTE] = ACTIONS(2626), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_class] = ACTIONS(2628), + [anon_sym_async] = ACTIONS(2628), + [anon_sym_function] = ACTIONS(2628), + [anon_sym_new] = ACTIONS(2628), + [anon_sym_using] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2628), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_SLASH] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2626), + [anon_sym_TILDE] = ACTIONS(2626), + [anon_sym_void] = ACTIONS(2628), + [anon_sym_delete] = ACTIONS(2628), + [anon_sym_PLUS_PLUS] = ACTIONS(2626), + [anon_sym_DASH_DASH] = ACTIONS(2626), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2626), + [sym_number] = ACTIONS(2626), + [sym_private_property_identifier] = ACTIONS(2626), + [sym_this] = ACTIONS(2628), + [sym_super] = ACTIONS(2628), + [sym_true] = ACTIONS(2628), + [sym_false] = ACTIONS(2628), + [sym_null] = ACTIONS(2628), + [sym_undefined] = ACTIONS(2628), + [anon_sym_AT] = ACTIONS(2626), + [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_abstract] = ACTIONS(2628), + [anon_sym_interface] = ACTIONS(2628), + [anon_sym_enum] = ACTIONS(2628), [sym_html_comment] = ACTIONS(5), }, [818] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2618), - [anon_sym_export] = ACTIONS(2618), - [anon_sym_default] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_namespace] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_typeof] = ACTIONS(2618), - [anon_sym_import] = ACTIONS(2618), - [anon_sym_with] = ACTIONS(2618), - [anon_sym_var] = ACTIONS(2618), - [anon_sym_let] = ACTIONS(2618), - [anon_sym_const] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_else] = ACTIONS(2618), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_switch] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_await] = ACTIONS(2618), - [anon_sym_while] = ACTIONS(2618), - [anon_sym_do] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2618), - [anon_sym_continue] = ACTIONS(2618), - [anon_sym_debugger] = ACTIONS(2618), - [anon_sym_return] = ACTIONS(2618), - [anon_sym_throw] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2618), - [anon_sym_yield] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_class] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_function] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_using] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_void] = ACTIONS(2618), - [anon_sym_delete] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2616), - [sym_number] = ACTIONS(2616), - [sym_private_property_identifier] = ACTIONS(2616), - [sym_this] = ACTIONS(2618), - [sym_super] = ACTIONS(2618), - [sym_true] = ACTIONS(2618), - [sym_false] = ACTIONS(2618), - [sym_null] = ACTIONS(2618), - [sym_undefined] = ACTIONS(2618), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_static] = ACTIONS(2618), - [anon_sym_readonly] = ACTIONS(2618), - [anon_sym_get] = ACTIONS(2618), - [anon_sym_set] = ACTIONS(2618), - [anon_sym_declare] = ACTIONS(2618), - [anon_sym_public] = ACTIONS(2618), - [anon_sym_private] = ACTIONS(2618), - [anon_sym_protected] = ACTIONS(2618), - [anon_sym_override] = ACTIONS(2618), - [anon_sym_module] = ACTIONS(2618), - [anon_sym_any] = ACTIONS(2618), - [anon_sym_number] = ACTIONS(2618), - [anon_sym_boolean] = ACTIONS(2618), - [anon_sym_string] = ACTIONS(2618), - [anon_sym_symbol] = ACTIONS(2618), - [anon_sym_object] = ACTIONS(2618), - [anon_sym_abstract] = ACTIONS(2618), - [anon_sym_interface] = ACTIONS(2618), - [anon_sym_enum] = ACTIONS(2618), + [ts_builtin_sym_end] = ACTIONS(2630), + [sym_identifier] = ACTIONS(2632), + [anon_sym_export] = ACTIONS(2632), + [anon_sym_default] = ACTIONS(2632), + [anon_sym_type] = ACTIONS(2632), + [anon_sym_namespace] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2630), + [anon_sym_RBRACE] = ACTIONS(2630), + [anon_sym_typeof] = ACTIONS(2632), + [anon_sym_import] = ACTIONS(2632), + [anon_sym_with] = ACTIONS(2632), + [anon_sym_var] = ACTIONS(2632), + [anon_sym_let] = ACTIONS(2632), + [anon_sym_const] = ACTIONS(2632), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_else] = ACTIONS(2632), + [anon_sym_if] = ACTIONS(2632), + [anon_sym_switch] = ACTIONS(2632), + [anon_sym_for] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2630), + [anon_sym_await] = ACTIONS(2632), + [anon_sym_while] = ACTIONS(2632), + [anon_sym_do] = ACTIONS(2632), + [anon_sym_try] = ACTIONS(2632), + [anon_sym_break] = ACTIONS(2632), + [anon_sym_continue] = ACTIONS(2632), + [anon_sym_debugger] = ACTIONS(2632), + [anon_sym_return] = ACTIONS(2632), + [anon_sym_throw] = ACTIONS(2632), + [anon_sym_case] = ACTIONS(2632), + [anon_sym_yield] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2630), + [anon_sym_DQUOTE] = ACTIONS(2630), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_class] = ACTIONS(2632), + [anon_sym_async] = ACTIONS(2632), + [anon_sym_function] = ACTIONS(2632), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_using] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(2632), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_SLASH] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_void] = ACTIONS(2632), + [anon_sym_delete] = ACTIONS(2632), + [anon_sym_PLUS_PLUS] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2630), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2630), + [sym_number] = ACTIONS(2630), + [sym_private_property_identifier] = ACTIONS(2630), + [sym_this] = ACTIONS(2632), + [sym_super] = ACTIONS(2632), + [sym_true] = ACTIONS(2632), + [sym_false] = ACTIONS(2632), + [sym_null] = ACTIONS(2632), + [sym_undefined] = ACTIONS(2632), + [anon_sym_AT] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(2632), + [anon_sym_readonly] = ACTIONS(2632), + [anon_sym_get] = ACTIONS(2632), + [anon_sym_set] = ACTIONS(2632), + [anon_sym_declare] = ACTIONS(2632), + [anon_sym_public] = ACTIONS(2632), + [anon_sym_private] = ACTIONS(2632), + [anon_sym_protected] = ACTIONS(2632), + [anon_sym_override] = ACTIONS(2632), + [anon_sym_module] = ACTIONS(2632), + [anon_sym_any] = ACTIONS(2632), + [anon_sym_number] = ACTIONS(2632), + [anon_sym_boolean] = ACTIONS(2632), + [anon_sym_string] = ACTIONS(2632), + [anon_sym_symbol] = ACTIONS(2632), + [anon_sym_object] = ACTIONS(2632), + [anon_sym_abstract] = ACTIONS(2632), + [anon_sym_interface] = ACTIONS(2632), + [anon_sym_enum] = ACTIONS(2632), [sym_html_comment] = ACTIONS(5), }, [819] = { - [ts_builtin_sym_end] = ACTIONS(2620), - [sym_identifier] = ACTIONS(2622), - [anon_sym_export] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_typeof] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_var] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_await] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_debugger] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_throw] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2620), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_using] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2620), - [anon_sym_void] = ACTIONS(2622), - [anon_sym_delete] = ACTIONS(2622), - [anon_sym_PLUS_PLUS] = ACTIONS(2620), - [anon_sym_DASH_DASH] = ACTIONS(2620), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2620), - [sym_number] = ACTIONS(2620), - [sym_private_property_identifier] = ACTIONS(2620), - [sym_this] = ACTIONS(2622), - [sym_super] = ACTIONS(2622), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), - [sym_null] = ACTIONS(2622), - [sym_undefined] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_readonly] = ACTIONS(2622), - [anon_sym_get] = ACTIONS(2622), - [anon_sym_set] = ACTIONS(2622), - [anon_sym_declare] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_protected] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_module] = ACTIONS(2622), - [anon_sym_any] = ACTIONS(2622), - [anon_sym_number] = ACTIONS(2622), - [anon_sym_boolean] = ACTIONS(2622), - [anon_sym_string] = ACTIONS(2622), - [anon_sym_symbol] = ACTIONS(2622), - [anon_sym_object] = ACTIONS(2622), - [anon_sym_abstract] = ACTIONS(2622), - [anon_sym_interface] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), + [ts_builtin_sym_end] = ACTIONS(2634), + [sym_identifier] = ACTIONS(2636), + [anon_sym_export] = ACTIONS(2636), + [anon_sym_default] = ACTIONS(2636), + [anon_sym_type] = ACTIONS(2636), + [anon_sym_namespace] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_typeof] = ACTIONS(2636), + [anon_sym_import] = ACTIONS(2636), + [anon_sym_with] = ACTIONS(2636), + [anon_sym_var] = ACTIONS(2636), + [anon_sym_let] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(2636), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_else] = ACTIONS(2636), + [anon_sym_if] = ACTIONS(2636), + [anon_sym_switch] = ACTIONS(2636), + [anon_sym_for] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2634), + [anon_sym_await] = ACTIONS(2636), + [anon_sym_while] = ACTIONS(2636), + [anon_sym_do] = ACTIONS(2636), + [anon_sym_try] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2636), + [anon_sym_continue] = ACTIONS(2636), + [anon_sym_debugger] = ACTIONS(2636), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_throw] = ACTIONS(2636), + [anon_sym_case] = ACTIONS(2636), + [anon_sym_yield] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2634), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_class] = ACTIONS(2636), + [anon_sym_async] = ACTIONS(2636), + [anon_sym_function] = ACTIONS(2636), + [anon_sym_new] = ACTIONS(2636), + [anon_sym_using] = ACTIONS(2636), + [anon_sym_PLUS] = ACTIONS(2636), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_SLASH] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_TILDE] = ACTIONS(2634), + [anon_sym_void] = ACTIONS(2636), + [anon_sym_delete] = ACTIONS(2636), + [anon_sym_PLUS_PLUS] = ACTIONS(2634), + [anon_sym_DASH_DASH] = ACTIONS(2634), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2634), + [sym_number] = ACTIONS(2634), + [sym_private_property_identifier] = ACTIONS(2634), + [sym_this] = ACTIONS(2636), + [sym_super] = ACTIONS(2636), + [sym_true] = ACTIONS(2636), + [sym_false] = ACTIONS(2636), + [sym_null] = ACTIONS(2636), + [sym_undefined] = ACTIONS(2636), + [anon_sym_AT] = ACTIONS(2634), + [anon_sym_static] = ACTIONS(2636), + [anon_sym_readonly] = ACTIONS(2636), + [anon_sym_get] = ACTIONS(2636), + [anon_sym_set] = ACTIONS(2636), + [anon_sym_declare] = ACTIONS(2636), + [anon_sym_public] = ACTIONS(2636), + [anon_sym_private] = ACTIONS(2636), + [anon_sym_protected] = ACTIONS(2636), + [anon_sym_override] = ACTIONS(2636), + [anon_sym_module] = ACTIONS(2636), + [anon_sym_any] = ACTIONS(2636), + [anon_sym_number] = ACTIONS(2636), + [anon_sym_boolean] = ACTIONS(2636), + [anon_sym_string] = ACTIONS(2636), + [anon_sym_symbol] = ACTIONS(2636), + [anon_sym_object] = ACTIONS(2636), + [anon_sym_abstract] = ACTIONS(2636), + [anon_sym_interface] = ACTIONS(2636), + [anon_sym_enum] = ACTIONS(2636), [sym_html_comment] = ACTIONS(5), }, [820] = { - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_typeof] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_await] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_debugger] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_void] = ACTIONS(2626), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2624), - [sym_number] = ACTIONS(2624), - [sym_private_property_identifier] = ACTIONS(2624), - [sym_this] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_true] = ACTIONS(2626), - [sym_false] = ACTIONS(2626), - [sym_null] = ACTIONS(2626), - [sym_undefined] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2624), - [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), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_typeof] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_debugger] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_void] = ACTIONS(1859), + [anon_sym_delete] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1857), + [sym_number] = ACTIONS(1857), + [sym_private_property_identifier] = ACTIONS(1857), + [sym_this] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [sym_null] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), [sym_html_comment] = ACTIONS(5), }, [821] = { - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_typeof] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_await] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_debugger] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_void] = ACTIONS(2626), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2624), - [sym_number] = ACTIONS(2624), - [sym_private_property_identifier] = ACTIONS(2624), - [sym_this] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_true] = ACTIONS(2626), - [sym_false] = ACTIONS(2626), - [sym_null] = ACTIONS(2626), - [sym_undefined] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2624), - [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), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2640), + [anon_sym_export] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_typeof] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_else] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym_await] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_debugger] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym_DQUOTE] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_async] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_void] = ACTIONS(2640), + [anon_sym_delete] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2638), + [sym_number] = ACTIONS(2638), + [sym_private_property_identifier] = ACTIONS(2638), + [sym_this] = ACTIONS(2640), + [sym_super] = ACTIONS(2640), + [sym_true] = ACTIONS(2640), + [sym_false] = ACTIONS(2640), + [sym_null] = ACTIONS(2640), + [sym_undefined] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2638), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_readonly] = ACTIONS(2640), + [anon_sym_get] = ACTIONS(2640), + [anon_sym_set] = ACTIONS(2640), + [anon_sym_declare] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_protected] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_any] = ACTIONS(2640), + [anon_sym_number] = ACTIONS(2640), + [anon_sym_boolean] = ACTIONS(2640), + [anon_sym_string] = ACTIONS(2640), + [anon_sym_symbol] = ACTIONS(2640), + [anon_sym_object] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), [sym_html_comment] = ACTIONS(5), }, [822] = { - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_identifier] = ACTIONS(2630), - [anon_sym_export] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_type] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_typeof] = ACTIONS(2630), - [anon_sym_import] = ACTIONS(2630), - [anon_sym_with] = ACTIONS(2630), - [anon_sym_var] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_await] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_debugger] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_yield] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_async] = ACTIONS(2630), - [anon_sym_function] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_SLASH] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2628), - [anon_sym_void] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_PLUS_PLUS] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2628), - [sym_number] = ACTIONS(2628), - [sym_private_property_identifier] = ACTIONS(2628), - [sym_this] = ACTIONS(2630), - [sym_super] = ACTIONS(2630), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_undefined] = ACTIONS(2630), - [anon_sym_AT] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_readonly] = ACTIONS(2630), - [anon_sym_get] = ACTIONS(2630), - [anon_sym_set] = ACTIONS(2630), - [anon_sym_declare] = ACTIONS(2630), - [anon_sym_public] = ACTIONS(2630), - [anon_sym_private] = ACTIONS(2630), - [anon_sym_protected] = ACTIONS(2630), - [anon_sym_override] = ACTIONS(2630), - [anon_sym_module] = ACTIONS(2630), - [anon_sym_any] = ACTIONS(2630), - [anon_sym_number] = ACTIONS(2630), - [anon_sym_boolean] = ACTIONS(2630), - [anon_sym_string] = ACTIONS(2630), - [anon_sym_symbol] = ACTIONS(2630), - [anon_sym_object] = ACTIONS(2630), - [anon_sym_abstract] = ACTIONS(2630), - [anon_sym_interface] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_await] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_void] = ACTIONS(2516), + [anon_sym_delete] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2514), + [sym_number] = ACTIONS(2514), + [sym_private_property_identifier] = ACTIONS(2514), + [sym_this] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_null] = ACTIONS(2516), + [sym_undefined] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), [sym_html_comment] = ACTIONS(5), }, [823] = { - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2634), - [anon_sym_export] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_typeof] = ACTIONS(2634), - [anon_sym_import] = ACTIONS(2634), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_var] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_await] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_debugger] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_throw] = ACTIONS(2634), - [anon_sym_case] = ACTIONS(2634), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_async] = ACTIONS(2634), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_SLASH] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_void] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2634), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2632), - [sym_number] = ACTIONS(2632), - [sym_private_property_identifier] = ACTIONS(2632), - [sym_this] = ACTIONS(2634), - [sym_super] = ACTIONS(2634), - [sym_true] = ACTIONS(2634), - [sym_false] = ACTIONS(2634), - [sym_null] = ACTIONS(2634), - [sym_undefined] = ACTIONS(2634), - [anon_sym_AT] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_readonly] = ACTIONS(2634), - [anon_sym_get] = ACTIONS(2634), - [anon_sym_set] = ACTIONS(2634), - [anon_sym_declare] = ACTIONS(2634), - [anon_sym_public] = ACTIONS(2634), - [anon_sym_private] = ACTIONS(2634), - [anon_sym_protected] = ACTIONS(2634), - [anon_sym_override] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_any] = ACTIONS(2634), - [anon_sym_number] = ACTIONS(2634), - [anon_sym_boolean] = ACTIONS(2634), - [anon_sym_string] = ACTIONS(2634), - [anon_sym_symbol] = ACTIONS(2634), - [anon_sym_object] = ACTIONS(2634), - [anon_sym_abstract] = ACTIONS(2634), - [anon_sym_interface] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), + [ts_builtin_sym_end] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2644), + [anon_sym_export] = ACTIONS(2644), + [anon_sym_default] = ACTIONS(2644), + [anon_sym_type] = ACTIONS(2644), + [anon_sym_namespace] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2642), + [anon_sym_RBRACE] = ACTIONS(2642), + [anon_sym_typeof] = ACTIONS(2644), + [anon_sym_import] = ACTIONS(2644), + [anon_sym_with] = ACTIONS(2644), + [anon_sym_var] = ACTIONS(2644), + [anon_sym_let] = ACTIONS(2644), + [anon_sym_const] = ACTIONS(2644), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_else] = ACTIONS(2644), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_switch] = ACTIONS(2644), + [anon_sym_for] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2642), + [anon_sym_await] = ACTIONS(2644), + [anon_sym_while] = ACTIONS(2644), + [anon_sym_do] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2644), + [anon_sym_break] = ACTIONS(2644), + [anon_sym_continue] = ACTIONS(2644), + [anon_sym_debugger] = ACTIONS(2644), + [anon_sym_return] = ACTIONS(2644), + [anon_sym_throw] = ACTIONS(2644), + [anon_sym_case] = ACTIONS(2644), + [anon_sym_yield] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2642), + [anon_sym_DQUOTE] = ACTIONS(2642), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_class] = ACTIONS(2644), + [anon_sym_async] = ACTIONS(2644), + [anon_sym_function] = ACTIONS(2644), + [anon_sym_new] = ACTIONS(2644), + [anon_sym_using] = ACTIONS(2644), + [anon_sym_PLUS] = ACTIONS(2644), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_SLASH] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_TILDE] = ACTIONS(2642), + [anon_sym_void] = ACTIONS(2644), + [anon_sym_delete] = ACTIONS(2644), + [anon_sym_PLUS_PLUS] = ACTIONS(2642), + [anon_sym_DASH_DASH] = ACTIONS(2642), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2642), + [sym_number] = ACTIONS(2642), + [sym_private_property_identifier] = ACTIONS(2642), + [sym_this] = ACTIONS(2644), + [sym_super] = ACTIONS(2644), + [sym_true] = ACTIONS(2644), + [sym_false] = ACTIONS(2644), + [sym_null] = ACTIONS(2644), + [sym_undefined] = ACTIONS(2644), + [anon_sym_AT] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2644), + [anon_sym_readonly] = ACTIONS(2644), + [anon_sym_get] = ACTIONS(2644), + [anon_sym_set] = ACTIONS(2644), + [anon_sym_declare] = ACTIONS(2644), + [anon_sym_public] = ACTIONS(2644), + [anon_sym_private] = ACTIONS(2644), + [anon_sym_protected] = ACTIONS(2644), + [anon_sym_override] = ACTIONS(2644), + [anon_sym_module] = ACTIONS(2644), + [anon_sym_any] = ACTIONS(2644), + [anon_sym_number] = ACTIONS(2644), + [anon_sym_boolean] = ACTIONS(2644), + [anon_sym_string] = ACTIONS(2644), + [anon_sym_symbol] = ACTIONS(2644), + [anon_sym_object] = ACTIONS(2644), + [anon_sym_abstract] = ACTIONS(2644), + [anon_sym_interface] = ACTIONS(2644), + [anon_sym_enum] = ACTIONS(2644), [sym_html_comment] = ACTIONS(5), }, [824] = { - [ts_builtin_sym_end] = ACTIONS(2636), - [sym_identifier] = ACTIONS(2638), - [anon_sym_export] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_type] = ACTIONS(2638), - [anon_sym_namespace] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_typeof] = ACTIONS(2638), - [anon_sym_import] = ACTIONS(2638), - [anon_sym_with] = ACTIONS(2638), - [anon_sym_var] = ACTIONS(2638), - [anon_sym_let] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_await] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_debugger] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_yield] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2638), - [anon_sym_async] = ACTIONS(2638), - [anon_sym_function] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_using] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2636), - [anon_sym_void] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2638), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2636), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(2636), - [sym_this] = ACTIONS(2638), - [sym_super] = ACTIONS(2638), - [sym_true] = ACTIONS(2638), - [sym_false] = ACTIONS(2638), - [sym_null] = ACTIONS(2638), - [sym_undefined] = ACTIONS(2638), - [anon_sym_AT] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_readonly] = ACTIONS(2638), - [anon_sym_get] = ACTIONS(2638), - [anon_sym_set] = ACTIONS(2638), - [anon_sym_declare] = ACTIONS(2638), - [anon_sym_public] = ACTIONS(2638), - [anon_sym_private] = ACTIONS(2638), - [anon_sym_protected] = ACTIONS(2638), - [anon_sym_override] = ACTIONS(2638), - [anon_sym_module] = ACTIONS(2638), - [anon_sym_any] = ACTIONS(2638), - [anon_sym_number] = ACTIONS(2638), - [anon_sym_boolean] = ACTIONS(2638), - [anon_sym_string] = ACTIONS(2638), - [anon_sym_symbol] = ACTIONS(2638), - [anon_sym_object] = ACTIONS(2638), - [anon_sym_abstract] = ACTIONS(2638), - [anon_sym_interface] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_await] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_void] = ACTIONS(2516), + [anon_sym_delete] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2514), + [sym_number] = ACTIONS(2514), + [sym_private_property_identifier] = ACTIONS(2514), + [sym_this] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_null] = ACTIONS(2516), + [sym_undefined] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), [sym_html_comment] = ACTIONS(5), }, [825] = { - [ts_builtin_sym_end] = ACTIONS(2640), - [sym_identifier] = ACTIONS(2642), - [anon_sym_export] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_RBRACE] = ACTIONS(2640), - [anon_sym_typeof] = ACTIONS(2642), - [anon_sym_import] = ACTIONS(2642), - [anon_sym_with] = ACTIONS(2642), - [anon_sym_var] = ACTIONS(2642), - [anon_sym_let] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2640), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_await] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_do] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_debugger] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_throw] = ACTIONS(2642), - [anon_sym_case] = ACTIONS(2642), - [anon_sym_yield] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2642), - [anon_sym_async] = ACTIONS(2642), - [anon_sym_function] = ACTIONS(2642), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2642), - [anon_sym_PLUS] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2640), - [anon_sym_void] = ACTIONS(2642), - [anon_sym_delete] = ACTIONS(2642), - [anon_sym_PLUS_PLUS] = ACTIONS(2640), - [anon_sym_DASH_DASH] = ACTIONS(2640), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2640), - [sym_number] = ACTIONS(2640), - [sym_private_property_identifier] = ACTIONS(2640), - [sym_this] = ACTIONS(2642), - [sym_super] = ACTIONS(2642), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), - [sym_undefined] = ACTIONS(2642), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2642), - [anon_sym_set] = ACTIONS(2642), - [anon_sym_declare] = ACTIONS(2642), - [anon_sym_public] = ACTIONS(2642), - [anon_sym_private] = ACTIONS(2642), - [anon_sym_protected] = ACTIONS(2642), - [anon_sym_override] = ACTIONS(2642), - [anon_sym_module] = ACTIONS(2642), - [anon_sym_any] = ACTIONS(2642), - [anon_sym_number] = ACTIONS(2642), - [anon_sym_boolean] = ACTIONS(2642), - [anon_sym_string] = ACTIONS(2642), - [anon_sym_symbol] = ACTIONS(2642), - [anon_sym_object] = ACTIONS(2642), - [anon_sym_abstract] = ACTIONS(2642), - [anon_sym_interface] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_await] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_void] = ACTIONS(2516), + [anon_sym_delete] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2514), + [sym_number] = ACTIONS(2514), + [sym_private_property_identifier] = ACTIONS(2514), + [sym_this] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_null] = ACTIONS(2516), + [sym_undefined] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), [sym_html_comment] = ACTIONS(5), }, [826] = { - [ts_builtin_sym_end] = ACTIONS(2644), - [sym_identifier] = ACTIONS(2646), - [anon_sym_export] = ACTIONS(2646), - [anon_sym_default] = ACTIONS(2646), - [anon_sym_type] = ACTIONS(2646), - [anon_sym_namespace] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_RBRACE] = ACTIONS(2644), - [anon_sym_typeof] = ACTIONS(2646), - [anon_sym_import] = ACTIONS(2646), - [anon_sym_with] = ACTIONS(2646), - [anon_sym_var] = ACTIONS(2646), - [anon_sym_let] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_switch] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_await] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_do] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_debugger] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_throw] = ACTIONS(2646), - [anon_sym_case] = ACTIONS(2646), - [anon_sym_yield] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2646), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_function] = ACTIONS(2646), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_void] = ACTIONS(2646), - [anon_sym_delete] = ACTIONS(2646), - [anon_sym_PLUS_PLUS] = ACTIONS(2644), - [anon_sym_DASH_DASH] = ACTIONS(2644), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2644), - [sym_number] = ACTIONS(2644), - [sym_private_property_identifier] = ACTIONS(2644), - [sym_this] = ACTIONS(2646), - [sym_super] = ACTIONS(2646), - [sym_true] = ACTIONS(2646), - [sym_false] = ACTIONS(2646), - [sym_null] = ACTIONS(2646), - [sym_undefined] = ACTIONS(2646), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_get] = ACTIONS(2646), - [anon_sym_set] = ACTIONS(2646), - [anon_sym_declare] = ACTIONS(2646), - [anon_sym_public] = ACTIONS(2646), - [anon_sym_private] = ACTIONS(2646), - [anon_sym_protected] = ACTIONS(2646), - [anon_sym_override] = ACTIONS(2646), - [anon_sym_module] = ACTIONS(2646), - [anon_sym_any] = ACTIONS(2646), - [anon_sym_number] = ACTIONS(2646), - [anon_sym_boolean] = ACTIONS(2646), - [anon_sym_string] = ACTIONS(2646), - [anon_sym_symbol] = ACTIONS(2646), - [anon_sym_object] = ACTIONS(2646), - [anon_sym_abstract] = ACTIONS(2646), - [anon_sym_interface] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), + [ts_builtin_sym_end] = ACTIONS(2646), + [sym_identifier] = ACTIONS(2648), + [anon_sym_export] = ACTIONS(2648), + [anon_sym_default] = ACTIONS(2648), + [anon_sym_type] = ACTIONS(2648), + [anon_sym_namespace] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_typeof] = ACTIONS(2648), + [anon_sym_import] = ACTIONS(2648), + [anon_sym_with] = ACTIONS(2648), + [anon_sym_var] = ACTIONS(2648), + [anon_sym_let] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(2648), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_else] = ACTIONS(2648), + [anon_sym_if] = ACTIONS(2648), + [anon_sym_switch] = ACTIONS(2648), + [anon_sym_for] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2646), + [anon_sym_await] = ACTIONS(2648), + [anon_sym_while] = ACTIONS(2648), + [anon_sym_do] = ACTIONS(2648), + [anon_sym_try] = ACTIONS(2648), + [anon_sym_break] = ACTIONS(2648), + [anon_sym_continue] = ACTIONS(2648), + [anon_sym_debugger] = ACTIONS(2648), + [anon_sym_return] = ACTIONS(2648), + [anon_sym_throw] = ACTIONS(2648), + [anon_sym_case] = ACTIONS(2648), + [anon_sym_yield] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_class] = ACTIONS(2648), + [anon_sym_async] = ACTIONS(2648), + [anon_sym_function] = ACTIONS(2648), + [anon_sym_new] = ACTIONS(2648), + [anon_sym_using] = ACTIONS(2648), + [anon_sym_PLUS] = ACTIONS(2648), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2646), + [anon_sym_void] = ACTIONS(2648), + [anon_sym_delete] = ACTIONS(2648), + [anon_sym_PLUS_PLUS] = ACTIONS(2646), + [anon_sym_DASH_DASH] = ACTIONS(2646), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2646), + [sym_number] = ACTIONS(2646), + [sym_private_property_identifier] = ACTIONS(2646), + [sym_this] = ACTIONS(2648), + [sym_super] = ACTIONS(2648), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [sym_null] = ACTIONS(2648), + [sym_undefined] = ACTIONS(2648), + [anon_sym_AT] = ACTIONS(2646), + [anon_sym_static] = ACTIONS(2648), + [anon_sym_readonly] = ACTIONS(2648), + [anon_sym_get] = ACTIONS(2648), + [anon_sym_set] = ACTIONS(2648), + [anon_sym_declare] = ACTIONS(2648), + [anon_sym_public] = ACTIONS(2648), + [anon_sym_private] = ACTIONS(2648), + [anon_sym_protected] = ACTIONS(2648), + [anon_sym_override] = ACTIONS(2648), + [anon_sym_module] = ACTIONS(2648), + [anon_sym_any] = ACTIONS(2648), + [anon_sym_number] = ACTIONS(2648), + [anon_sym_boolean] = ACTIONS(2648), + [anon_sym_string] = ACTIONS(2648), + [anon_sym_symbol] = ACTIONS(2648), + [anon_sym_object] = ACTIONS(2648), + [anon_sym_abstract] = ACTIONS(2648), + [anon_sym_interface] = ACTIONS(2648), + [anon_sym_enum] = ACTIONS(2648), [sym_html_comment] = ACTIONS(5), }, [827] = { - [ts_builtin_sym_end] = ACTIONS(2648), - [sym_identifier] = ACTIONS(2650), - [anon_sym_export] = ACTIONS(2650), - [anon_sym_default] = ACTIONS(2650), - [anon_sym_type] = ACTIONS(2650), - [anon_sym_namespace] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_typeof] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_with] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [anon_sym_let] = ACTIONS(2650), - [anon_sym_const] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_await] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_debugger] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_case] = ACTIONS(2650), - [anon_sym_yield] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_async] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_LT] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2648), - [anon_sym_void] = ACTIONS(2650), - [anon_sym_delete] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2648), - [sym_number] = ACTIONS(2648), - [sym_private_property_identifier] = ACTIONS(2648), - [sym_this] = ACTIONS(2650), - [sym_super] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_null] = ACTIONS(2650), - [sym_undefined] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2648), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_readonly] = ACTIONS(2650), - [anon_sym_get] = ACTIONS(2650), - [anon_sym_set] = ACTIONS(2650), - [anon_sym_declare] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_protected] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_module] = ACTIONS(2650), - [anon_sym_any] = ACTIONS(2650), - [anon_sym_number] = ACTIONS(2650), - [anon_sym_boolean] = ACTIONS(2650), - [anon_sym_string] = ACTIONS(2650), - [anon_sym_symbol] = ACTIONS(2650), - [anon_sym_object] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), + [ts_builtin_sym_end] = ACTIONS(2650), + [sym_identifier] = ACTIONS(2652), + [anon_sym_export] = ACTIONS(2652), + [anon_sym_default] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_namespace] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2650), + [anon_sym_typeof] = ACTIONS(2652), + [anon_sym_import] = ACTIONS(2652), + [anon_sym_with] = ACTIONS(2652), + [anon_sym_var] = ACTIONS(2652), + [anon_sym_let] = ACTIONS(2652), + [anon_sym_const] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2652), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_switch] = ACTIONS(2652), + [anon_sym_for] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym_await] = ACTIONS(2652), + [anon_sym_while] = ACTIONS(2652), + [anon_sym_do] = ACTIONS(2652), + [anon_sym_try] = ACTIONS(2652), + [anon_sym_break] = ACTIONS(2652), + [anon_sym_continue] = ACTIONS(2652), + [anon_sym_debugger] = ACTIONS(2652), + [anon_sym_return] = ACTIONS(2652), + [anon_sym_throw] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2652), + [anon_sym_yield] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym_DQUOTE] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_class] = ACTIONS(2652), + [anon_sym_async] = ACTIONS(2652), + [anon_sym_function] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2652), + [anon_sym_using] = ACTIONS(2652), + [anon_sym_PLUS] = ACTIONS(2652), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_SLASH] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_TILDE] = ACTIONS(2650), + [anon_sym_void] = ACTIONS(2652), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_PLUS_PLUS] = ACTIONS(2650), + [anon_sym_DASH_DASH] = ACTIONS(2650), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2650), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(2650), + [sym_this] = ACTIONS(2652), + [sym_super] = ACTIONS(2652), + [sym_true] = ACTIONS(2652), + [sym_false] = ACTIONS(2652), + [sym_null] = ACTIONS(2652), + [sym_undefined] = ACTIONS(2652), + [anon_sym_AT] = ACTIONS(2650), + [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), + [anon_sym_abstract] = ACTIONS(2652), + [anon_sym_interface] = ACTIONS(2652), + [anon_sym_enum] = ACTIONS(2652), [sym_html_comment] = ACTIONS(5), }, [828] = { - [ts_builtin_sym_end] = ACTIONS(2652), - [sym_identifier] = ACTIONS(2654), - [anon_sym_export] = ACTIONS(2654), - [anon_sym_default] = ACTIONS(2654), - [anon_sym_type] = ACTIONS(2654), - [anon_sym_namespace] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_typeof] = ACTIONS(2654), - [anon_sym_import] = ACTIONS(2654), - [anon_sym_with] = ACTIONS(2654), - [anon_sym_var] = ACTIONS(2654), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_const] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_switch] = ACTIONS(2654), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_await] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_debugger] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_throw] = ACTIONS(2654), - [anon_sym_case] = ACTIONS(2654), - [anon_sym_yield] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_DQUOTE] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_async] = ACTIONS(2654), - [anon_sym_function] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_using] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_SLASH] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_void] = ACTIONS(2654), - [anon_sym_delete] = ACTIONS(2654), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2652), - [sym_number] = ACTIONS(2652), - [sym_private_property_identifier] = ACTIONS(2652), - [sym_this] = ACTIONS(2654), - [sym_super] = ACTIONS(2654), - [sym_true] = ACTIONS(2654), - [sym_false] = ACTIONS(2654), - [sym_null] = ACTIONS(2654), - [sym_undefined] = ACTIONS(2654), - [anon_sym_AT] = ACTIONS(2652), - [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_abstract] = ACTIONS(2654), - [anon_sym_interface] = ACTIONS(2654), - [anon_sym_enum] = ACTIONS(2654), + [ts_builtin_sym_end] = ACTIONS(2654), + [sym_identifier] = ACTIONS(2656), + [anon_sym_export] = ACTIONS(2656), + [anon_sym_default] = ACTIONS(2656), + [anon_sym_type] = ACTIONS(2656), + [anon_sym_namespace] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_typeof] = ACTIONS(2656), + [anon_sym_import] = ACTIONS(2656), + [anon_sym_with] = ACTIONS(2656), + [anon_sym_var] = ACTIONS(2656), + [anon_sym_let] = ACTIONS(2656), + [anon_sym_const] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_if] = ACTIONS(2656), + [anon_sym_switch] = ACTIONS(2656), + [anon_sym_for] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_await] = ACTIONS(2656), + [anon_sym_while] = ACTIONS(2656), + [anon_sym_do] = ACTIONS(2656), + [anon_sym_try] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_debugger] = ACTIONS(2656), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_throw] = ACTIONS(2656), + [anon_sym_case] = ACTIONS(2656), + [anon_sym_yield] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_class] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(2656), + [anon_sym_function] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_using] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_TILDE] = ACTIONS(2654), + [anon_sym_void] = ACTIONS(2656), + [anon_sym_delete] = ACTIONS(2656), + [anon_sym_PLUS_PLUS] = ACTIONS(2654), + [anon_sym_DASH_DASH] = ACTIONS(2654), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2654), + [sym_number] = ACTIONS(2654), + [sym_private_property_identifier] = ACTIONS(2654), + [sym_this] = ACTIONS(2656), + [sym_super] = ACTIONS(2656), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [sym_null] = ACTIONS(2656), + [sym_undefined] = ACTIONS(2656), + [anon_sym_AT] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2656), + [anon_sym_readonly] = ACTIONS(2656), + [anon_sym_get] = ACTIONS(2656), + [anon_sym_set] = ACTIONS(2656), + [anon_sym_declare] = ACTIONS(2656), + [anon_sym_public] = ACTIONS(2656), + [anon_sym_private] = ACTIONS(2656), + [anon_sym_protected] = ACTIONS(2656), + [anon_sym_override] = ACTIONS(2656), + [anon_sym_module] = ACTIONS(2656), + [anon_sym_any] = ACTIONS(2656), + [anon_sym_number] = ACTIONS(2656), + [anon_sym_boolean] = ACTIONS(2656), + [anon_sym_string] = ACTIONS(2656), + [anon_sym_symbol] = ACTIONS(2656), + [anon_sym_object] = ACTIONS(2656), + [anon_sym_abstract] = ACTIONS(2656), + [anon_sym_interface] = ACTIONS(2656), + [anon_sym_enum] = ACTIONS(2656), [sym_html_comment] = ACTIONS(5), }, [829] = { - [ts_builtin_sym_end] = ACTIONS(2656), - [sym_identifier] = ACTIONS(2658), - [anon_sym_export] = ACTIONS(2658), - [anon_sym_default] = ACTIONS(2658), - [anon_sym_type] = ACTIONS(2658), - [anon_sym_namespace] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_typeof] = ACTIONS(2658), - [anon_sym_import] = ACTIONS(2658), - [anon_sym_with] = ACTIONS(2658), - [anon_sym_var] = ACTIONS(2658), - [anon_sym_let] = ACTIONS(2658), - [anon_sym_const] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(2658), - [anon_sym_for] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_await] = ACTIONS(2658), - [anon_sym_while] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2658), - [anon_sym_break] = ACTIONS(2658), - [anon_sym_continue] = ACTIONS(2658), - [anon_sym_debugger] = ACTIONS(2658), - [anon_sym_return] = ACTIONS(2658), - [anon_sym_throw] = ACTIONS(2658), - [anon_sym_case] = ACTIONS(2658), - [anon_sym_yield] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_class] = ACTIONS(2658), - [anon_sym_async] = ACTIONS(2658), - [anon_sym_function] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_using] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_void] = ACTIONS(2658), - [anon_sym_delete] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2656), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2656), - [sym_number] = ACTIONS(2656), - [sym_private_property_identifier] = ACTIONS(2656), - [sym_this] = ACTIONS(2658), - [sym_super] = ACTIONS(2658), - [sym_true] = ACTIONS(2658), - [sym_false] = ACTIONS(2658), - [sym_null] = ACTIONS(2658), - [sym_undefined] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2658), - [anon_sym_readonly] = ACTIONS(2658), - [anon_sym_get] = ACTIONS(2658), - [anon_sym_set] = ACTIONS(2658), - [anon_sym_declare] = ACTIONS(2658), - [anon_sym_public] = ACTIONS(2658), - [anon_sym_private] = ACTIONS(2658), - [anon_sym_protected] = ACTIONS(2658), - [anon_sym_override] = ACTIONS(2658), - [anon_sym_module] = ACTIONS(2658), - [anon_sym_any] = ACTIONS(2658), - [anon_sym_number] = ACTIONS(2658), - [anon_sym_boolean] = ACTIONS(2658), - [anon_sym_string] = ACTIONS(2658), - [anon_sym_symbol] = ACTIONS(2658), - [anon_sym_object] = ACTIONS(2658), - [anon_sym_abstract] = ACTIONS(2658), - [anon_sym_interface] = ACTIONS(2658), - [anon_sym_enum] = ACTIONS(2658), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2658), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [830] = { @@ -112246,62 +112306,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [834] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), + [ts_builtin_sym_end] = ACTIONS(2676), + [sym_identifier] = ACTIONS(2678), + [anon_sym_export] = ACTIONS(2678), + [anon_sym_default] = ACTIONS(2678), + [anon_sym_type] = ACTIONS(2678), + [anon_sym_namespace] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2676), + [anon_sym_typeof] = ACTIONS(2678), + [anon_sym_import] = ACTIONS(2678), + [anon_sym_with] = ACTIONS(2678), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2678), + [anon_sym_const] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_else] = ACTIONS(2678), + [anon_sym_if] = ACTIONS(2678), + [anon_sym_switch] = ACTIONS(2678), + [anon_sym_for] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_await] = ACTIONS(2678), + [anon_sym_while] = ACTIONS(2678), + [anon_sym_do] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2678), + [anon_sym_break] = ACTIONS(2678), + [anon_sym_continue] = ACTIONS(2678), + [anon_sym_debugger] = ACTIONS(2678), + [anon_sym_return] = ACTIONS(2678), + [anon_sym_throw] = ACTIONS(2678), + [anon_sym_case] = ACTIONS(2678), + [anon_sym_yield] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2676), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_class] = ACTIONS(2678), + [anon_sym_async] = ACTIONS(2678), + [anon_sym_function] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2678), + [anon_sym_using] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2678), + [anon_sym_SLASH] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_void] = ACTIONS(2678), + [anon_sym_delete] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2676), + [sym_number] = ACTIONS(2676), + [sym_private_property_identifier] = ACTIONS(2676), + [sym_this] = ACTIONS(2678), + [sym_super] = ACTIONS(2678), + [sym_true] = ACTIONS(2678), + [sym_false] = ACTIONS(2678), + [sym_null] = ACTIONS(2678), + [sym_undefined] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2678), + [anon_sym_readonly] = ACTIONS(2678), + [anon_sym_get] = ACTIONS(2678), + [anon_sym_set] = ACTIONS(2678), + [anon_sym_declare] = ACTIONS(2678), + [anon_sym_public] = ACTIONS(2678), + [anon_sym_private] = ACTIONS(2678), + [anon_sym_protected] = ACTIONS(2678), + [anon_sym_override] = ACTIONS(2678), + [anon_sym_module] = ACTIONS(2678), + [anon_sym_any] = ACTIONS(2678), + [anon_sym_number] = ACTIONS(2678), + [anon_sym_boolean] = ACTIONS(2678), + [anon_sym_string] = ACTIONS(2678), + [anon_sym_symbol] = ACTIONS(2678), + [anon_sym_object] = ACTIONS(2678), + [anon_sym_abstract] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2678), + [anon_sym_enum] = ACTIONS(2678), + [sym_html_comment] = ACTIONS(5), + }, + [835] = { + [ts_builtin_sym_end] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2682), + [anon_sym_export] = ACTIONS(2682), + [anon_sym_default] = ACTIONS(2682), + [anon_sym_type] = ACTIONS(2682), + [anon_sym_namespace] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_typeof] = ACTIONS(2682), + [anon_sym_import] = ACTIONS(2682), + [anon_sym_with] = ACTIONS(2682), + [anon_sym_var] = ACTIONS(2682), + [anon_sym_let] = ACTIONS(2682), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_else] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2682), + [anon_sym_switch] = ACTIONS(2682), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_await] = ACTIONS(2682), + [anon_sym_while] = ACTIONS(2682), + [anon_sym_do] = ACTIONS(2682), + [anon_sym_try] = ACTIONS(2682), + [anon_sym_break] = ACTIONS(2682), + [anon_sym_continue] = ACTIONS(2682), + [anon_sym_debugger] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2682), + [anon_sym_throw] = ACTIONS(2682), + [anon_sym_case] = ACTIONS(2682), + [anon_sym_yield] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2680), + [anon_sym_SQUOTE] = ACTIONS(2680), + [anon_sym_class] = ACTIONS(2682), + [anon_sym_async] = ACTIONS(2682), + [anon_sym_function] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(2682), + [anon_sym_using] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_SLASH] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_delete] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2680), + [sym_number] = ACTIONS(2680), + [sym_private_property_identifier] = ACTIONS(2680), + [sym_this] = ACTIONS(2682), + [sym_super] = ACTIONS(2682), + [sym_true] = ACTIONS(2682), + [sym_false] = ACTIONS(2682), + [sym_null] = ACTIONS(2682), + [sym_undefined] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(2682), + [anon_sym_get] = ACTIONS(2682), + [anon_sym_set] = ACTIONS(2682), + [anon_sym_declare] = ACTIONS(2682), + [anon_sym_public] = ACTIONS(2682), + [anon_sym_private] = ACTIONS(2682), + [anon_sym_protected] = ACTIONS(2682), + [anon_sym_override] = ACTIONS(2682), + [anon_sym_module] = ACTIONS(2682), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2682), + [anon_sym_interface] = ACTIONS(2682), + [anon_sym_enum] = ACTIONS(2682), + [sym_html_comment] = ACTIONS(5), + }, + [836] = { + [ts_builtin_sym_end] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2686), + [anon_sym_export] = ACTIONS(2686), + [anon_sym_default] = ACTIONS(2686), + [anon_sym_type] = ACTIONS(2686), + [anon_sym_namespace] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_typeof] = ACTIONS(2686), + [anon_sym_import] = ACTIONS(2686), + [anon_sym_with] = ACTIONS(2686), + [anon_sym_var] = ACTIONS(2686), + [anon_sym_let] = ACTIONS(2686), + [anon_sym_const] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_else] = ACTIONS(2686), + [anon_sym_if] = ACTIONS(2686), + [anon_sym_switch] = ACTIONS(2686), + [anon_sym_for] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_await] = ACTIONS(2686), + [anon_sym_while] = ACTIONS(2686), + [anon_sym_do] = ACTIONS(2686), + [anon_sym_try] = ACTIONS(2686), + [anon_sym_break] = ACTIONS(2686), + [anon_sym_continue] = ACTIONS(2686), + [anon_sym_debugger] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2686), + [anon_sym_throw] = ACTIONS(2686), + [anon_sym_case] = ACTIONS(2686), + [anon_sym_yield] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2684), + [anon_sym_SQUOTE] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2686), + [anon_sym_async] = ACTIONS(2686), + [anon_sym_function] = ACTIONS(2686), + [anon_sym_new] = ACTIONS(2686), + [anon_sym_using] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_SLASH] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_void] = ACTIONS(2686), + [anon_sym_delete] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2684), + [sym_private_property_identifier] = ACTIONS(2684), + [sym_this] = ACTIONS(2686), + [sym_super] = ACTIONS(2686), + [sym_true] = ACTIONS(2686), + [sym_false] = ACTIONS(2686), + [sym_null] = ACTIONS(2686), + [sym_undefined] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2686), + [anon_sym_readonly] = ACTIONS(2686), + [anon_sym_get] = ACTIONS(2686), + [anon_sym_set] = ACTIONS(2686), + [anon_sym_declare] = ACTIONS(2686), + [anon_sym_public] = ACTIONS(2686), + [anon_sym_private] = ACTIONS(2686), + [anon_sym_protected] = ACTIONS(2686), + [anon_sym_override] = ACTIONS(2686), + [anon_sym_module] = ACTIONS(2686), + [anon_sym_any] = ACTIONS(2686), + [anon_sym_number] = ACTIONS(2686), + [anon_sym_boolean] = ACTIONS(2686), + [anon_sym_string] = ACTIONS(2686), + [anon_sym_symbol] = ACTIONS(2686), + [anon_sym_object] = ACTIONS(2686), + [anon_sym_abstract] = ACTIONS(2686), + [anon_sym_interface] = ACTIONS(2686), + [anon_sym_enum] = ACTIONS(2686), + [sym_html_comment] = ACTIONS(5), + }, + [837] = { + [ts_builtin_sym_end] = ACTIONS(2688), + [sym_identifier] = ACTIONS(2690), + [anon_sym_export] = ACTIONS(2690), + [anon_sym_default] = ACTIONS(2690), + [anon_sym_type] = ACTIONS(2690), + [anon_sym_namespace] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_typeof] = ACTIONS(2690), + [anon_sym_import] = ACTIONS(2690), + [anon_sym_with] = ACTIONS(2690), + [anon_sym_var] = ACTIONS(2690), + [anon_sym_let] = ACTIONS(2690), + [anon_sym_const] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2690), + [anon_sym_if] = ACTIONS(2690), + [anon_sym_switch] = ACTIONS(2690), + [anon_sym_for] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_await] = ACTIONS(2690), + [anon_sym_while] = ACTIONS(2690), + [anon_sym_do] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_debugger] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2690), + [anon_sym_throw] = ACTIONS(2690), + [anon_sym_case] = ACTIONS(2690), + [anon_sym_yield] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2688), + [anon_sym_SQUOTE] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2690), + [anon_sym_function] = ACTIONS(2690), + [anon_sym_new] = ACTIONS(2690), + [anon_sym_using] = ACTIONS(2690), + [anon_sym_PLUS] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2690), + [anon_sym_SLASH] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2688), + [anon_sym_void] = ACTIONS(2690), + [anon_sym_delete] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2688), + [sym_number] = ACTIONS(2688), + [sym_private_property_identifier] = ACTIONS(2688), + [sym_this] = ACTIONS(2690), + [sym_super] = ACTIONS(2690), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2690), + [anon_sym_get] = ACTIONS(2690), + [anon_sym_set] = ACTIONS(2690), + [anon_sym_declare] = ACTIONS(2690), + [anon_sym_public] = ACTIONS(2690), + [anon_sym_private] = ACTIONS(2690), + [anon_sym_protected] = ACTIONS(2690), + [anon_sym_override] = ACTIONS(2690), + [anon_sym_module] = ACTIONS(2690), + [anon_sym_any] = ACTIONS(2690), + [anon_sym_number] = ACTIONS(2690), + [anon_sym_boolean] = ACTIONS(2690), + [anon_sym_string] = ACTIONS(2690), + [anon_sym_symbol] = ACTIONS(2690), + [anon_sym_object] = ACTIONS(2690), + [anon_sym_abstract] = ACTIONS(2690), + [anon_sym_interface] = ACTIONS(2690), + [anon_sym_enum] = ACTIONS(2690), + [sym_html_comment] = ACTIONS(5), + }, + [838] = { + [ts_builtin_sym_end] = ACTIONS(2638), + [sym_identifier] = ACTIONS(2640), + [anon_sym_export] = ACTIONS(2640), + [anon_sym_default] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2638), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_typeof] = ACTIONS(2640), + [anon_sym_import] = ACTIONS(2640), + [anon_sym_with] = ACTIONS(2640), + [anon_sym_var] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_const] = ACTIONS(2640), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_else] = ACTIONS(2640), + [anon_sym_if] = ACTIONS(2640), + [anon_sym_switch] = ACTIONS(2640), + [anon_sym_for] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym_await] = ACTIONS(2640), + [anon_sym_while] = ACTIONS(2640), + [anon_sym_do] = ACTIONS(2640), + [anon_sym_try] = ACTIONS(2640), + [anon_sym_break] = ACTIONS(2640), + [anon_sym_continue] = ACTIONS(2640), + [anon_sym_debugger] = ACTIONS(2640), + [anon_sym_return] = ACTIONS(2640), + [anon_sym_throw] = ACTIONS(2640), + [anon_sym_case] = ACTIONS(2640), + [anon_sym_yield] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2638), + [anon_sym_DQUOTE] = ACTIONS(2638), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_class] = ACTIONS(2640), + [anon_sym_async] = ACTIONS(2640), + [anon_sym_function] = ACTIONS(2640), + [anon_sym_new] = ACTIONS(2640), + [anon_sym_using] = ACTIONS(2640), + [anon_sym_PLUS] = ACTIONS(2640), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_SLASH] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_TILDE] = ACTIONS(2638), + [anon_sym_void] = ACTIONS(2640), + [anon_sym_delete] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2638), + [anon_sym_DASH_DASH] = ACTIONS(2638), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2638), + [sym_number] = ACTIONS(2638), + [sym_private_property_identifier] = ACTIONS(2638), + [sym_this] = ACTIONS(2640), + [sym_super] = ACTIONS(2640), + [sym_true] = ACTIONS(2640), + [sym_false] = ACTIONS(2640), + [sym_null] = ACTIONS(2640), + [sym_undefined] = ACTIONS(2640), + [anon_sym_AT] = ACTIONS(2638), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_readonly] = ACTIONS(2640), + [anon_sym_get] = ACTIONS(2640), + [anon_sym_set] = ACTIONS(2640), + [anon_sym_declare] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_protected] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_any] = ACTIONS(2640), + [anon_sym_number] = ACTIONS(2640), + [anon_sym_boolean] = ACTIONS(2640), + [anon_sym_string] = ACTIONS(2640), + [anon_sym_symbol] = ACTIONS(2640), + [anon_sym_object] = ACTIONS(2640), + [anon_sym_abstract] = ACTIONS(2640), + [anon_sym_interface] = ACTIONS(2640), + [anon_sym_enum] = ACTIONS(2640), + [sym_html_comment] = ACTIONS(5), + }, + [839] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2676), + [anon_sym_RBRACK] = ACTIONS(2692), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -112310,516 +112780,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [835] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_typeof] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_await] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_void] = ACTIONS(2680), - [anon_sym_delete] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2678), - [sym_number] = ACTIONS(2678), - [sym_private_property_identifier] = ACTIONS(2678), - [sym_this] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_null] = ACTIONS(2680), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_readonly] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_declare] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_protected] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_any] = ACTIONS(2680), - [anon_sym_number] = ACTIONS(2680), - [anon_sym_boolean] = ACTIONS(2680), - [anon_sym_string] = ACTIONS(2680), - [anon_sym_symbol] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [sym_html_comment] = ACTIONS(5), - }, - [836] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_typeof] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_await] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_void] = ACTIONS(2680), - [anon_sym_delete] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2678), - [sym_number] = ACTIONS(2678), - [sym_private_property_identifier] = ACTIONS(2678), - [sym_this] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_null] = ACTIONS(2680), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_readonly] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_declare] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_protected] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_any] = ACTIONS(2680), - [anon_sym_number] = ACTIONS(2680), - [anon_sym_boolean] = ACTIONS(2680), - [anon_sym_string] = ACTIONS(2680), - [anon_sym_symbol] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [sym_html_comment] = ACTIONS(5), - }, - [837] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_typeof] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_await] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_void] = ACTIONS(2680), - [anon_sym_delete] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2678), - [sym_number] = ACTIONS(2678), - [sym_private_property_identifier] = ACTIONS(2678), - [sym_this] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_null] = ACTIONS(2680), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_readonly] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_declare] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_protected] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_any] = ACTIONS(2680), - [anon_sym_number] = ACTIONS(2680), - [anon_sym_boolean] = ACTIONS(2680), - [anon_sym_string] = ACTIONS(2680), - [anon_sym_symbol] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [sym_html_comment] = ACTIONS(5), - }, - [838] = { - [ts_builtin_sym_end] = ACTIONS(2682), - [sym_identifier] = ACTIONS(2684), - [anon_sym_export] = ACTIONS(2684), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_namespace] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2682), - [anon_sym_RBRACE] = ACTIONS(2682), - [anon_sym_typeof] = ACTIONS(2684), - [anon_sym_import] = ACTIONS(2684), - [anon_sym_with] = ACTIONS(2684), - [anon_sym_var] = ACTIONS(2684), - [anon_sym_let] = ACTIONS(2684), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2682), - [anon_sym_else] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_switch] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_await] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2684), - [anon_sym_do] = ACTIONS(2684), - [anon_sym_try] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_debugger] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_throw] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2684), - [anon_sym_yield] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2684), - [anon_sym_async] = ACTIONS(2684), - [anon_sym_function] = ACTIONS(2684), - [anon_sym_new] = ACTIONS(2684), - [anon_sym_using] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_SLASH] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2682), - [anon_sym_void] = ACTIONS(2684), - [anon_sym_delete] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2682), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2682), - [sym_number] = ACTIONS(2682), - [sym_private_property_identifier] = ACTIONS(2682), - [sym_this] = ACTIONS(2684), - [sym_super] = ACTIONS(2684), - [sym_true] = ACTIONS(2684), - [sym_false] = ACTIONS(2684), - [sym_null] = ACTIONS(2684), - [sym_undefined] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(2682), - [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_abstract] = ACTIONS(2684), - [anon_sym_interface] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [sym_html_comment] = ACTIONS(5), - }, - [839] = { - [ts_builtin_sym_end] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2688), - [anon_sym_export] = ACTIONS(2688), - [anon_sym_default] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_namespace] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_typeof] = ACTIONS(2688), - [anon_sym_import] = ACTIONS(2688), - [anon_sym_with] = ACTIONS(2688), - [anon_sym_var] = ACTIONS(2688), - [anon_sym_let] = ACTIONS(2688), - [anon_sym_const] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_else] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_switch] = ACTIONS(2688), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2686), - [anon_sym_await] = ACTIONS(2688), - [anon_sym_while] = ACTIONS(2688), - [anon_sym_do] = ACTIONS(2688), - [anon_sym_try] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_debugger] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_throw] = ACTIONS(2688), - [anon_sym_case] = ACTIONS(2688), - [anon_sym_yield] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2686), - [anon_sym_class] = ACTIONS(2688), - [anon_sym_async] = ACTIONS(2688), - [anon_sym_function] = ACTIONS(2688), - [anon_sym_new] = ACTIONS(2688), - [anon_sym_using] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_SLASH] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_void] = ACTIONS(2688), - [anon_sym_delete] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2686), - [sym_number] = ACTIONS(2686), - [sym_private_property_identifier] = ACTIONS(2686), - [sym_this] = ACTIONS(2688), - [sym_super] = ACTIONS(2688), - [sym_true] = ACTIONS(2688), - [sym_false] = ACTIONS(2688), - [sym_null] = ACTIONS(2688), - [sym_undefined] = ACTIONS(2688), - [anon_sym_AT] = ACTIONS(2686), - [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), - [anon_sym_abstract] = ACTIONS(2688), - [anon_sym_interface] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [840] = { - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_export] = ACTIONS(2692), - [anon_sym_default] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_namespace] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_typeof] = ACTIONS(2692), - [anon_sym_import] = ACTIONS(2692), - [anon_sym_with] = ACTIONS(2692), - [anon_sym_var] = ACTIONS(2692), - [anon_sym_let] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2690), - [anon_sym_else] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_switch] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_await] = ACTIONS(2692), - [anon_sym_while] = ACTIONS(2692), - [anon_sym_do] = ACTIONS(2692), - [anon_sym_try] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_debugger] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_throw] = ACTIONS(2692), - [anon_sym_case] = ACTIONS(2692), - [anon_sym_yield] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2692), - [anon_sym_async] = ACTIONS(2692), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_new] = ACTIONS(2692), - [anon_sym_using] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_TILDE] = ACTIONS(2690), - [anon_sym_void] = ACTIONS(2692), - [anon_sym_delete] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2690), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2690), - [sym_number] = ACTIONS(2690), - [sym_private_property_identifier] = ACTIONS(2690), - [sym_this] = ACTIONS(2692), - [sym_super] = ACTIONS(2692), - [sym_true] = ACTIONS(2692), - [sym_false] = ACTIONS(2692), - [sym_null] = ACTIONS(2692), - [sym_undefined] = ACTIONS(2692), - [anon_sym_AT] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2692), - [anon_sym_readonly] = ACTIONS(2692), - [anon_sym_get] = ACTIONS(2692), - [anon_sym_set] = ACTIONS(2692), - [anon_sym_declare] = ACTIONS(2692), - [anon_sym_public] = ACTIONS(2692), - [anon_sym_private] = ACTIONS(2692), - [anon_sym_protected] = ACTIONS(2692), - [anon_sym_override] = ACTIONS(2692), - [anon_sym_module] = ACTIONS(2692), - [anon_sym_any] = ACTIONS(2692), - [anon_sym_number] = ACTIONS(2692), - [anon_sym_boolean] = ACTIONS(2692), - [anon_sym_string] = ACTIONS(2692), - [anon_sym_symbol] = ACTIONS(2692), - [anon_sym_object] = ACTIONS(2692), - [anon_sym_abstract] = ACTIONS(2692), - [anon_sym_interface] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [sym_html_comment] = ACTIONS(5), - }, - [841] = { [ts_builtin_sym_end] = ACTIONS(2694), [sym_identifier] = ACTIONS(2696), [anon_sym_export] = ACTIONS(2696), @@ -112901,7 +112879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2696), [sym_html_comment] = ACTIONS(5), }, - [842] = { + [841] = { [ts_builtin_sym_end] = ACTIONS(2698), [sym_identifier] = ACTIONS(2700), [anon_sym_export] = ACTIONS(2700), @@ -112983,7 +112961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2700), [sym_html_comment] = ACTIONS(5), }, - [843] = { + [842] = { [ts_builtin_sym_end] = ACTIONS(2702), [sym_identifier] = ACTIONS(2704), [anon_sym_export] = ACTIONS(2704), @@ -113065,1729 +113043,1483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2704), [sym_html_comment] = ACTIONS(5), }, + [843] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, [844] = { - [ts_builtin_sym_end] = ACTIONS(2706), - [sym_identifier] = ACTIONS(2708), - [anon_sym_export] = ACTIONS(2708), - [anon_sym_default] = ACTIONS(2708), - [anon_sym_type] = ACTIONS(2708), - [anon_sym_namespace] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_RBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_import] = ACTIONS(2708), - [anon_sym_with] = ACTIONS(2708), - [anon_sym_var] = ACTIONS(2708), - [anon_sym_let] = ACTIONS(2708), - [anon_sym_const] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2706), - [anon_sym_else] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2708), - [anon_sym_switch] = ACTIONS(2708), - [anon_sym_for] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_await] = ACTIONS(2708), - [anon_sym_while] = ACTIONS(2708), - [anon_sym_do] = ACTIONS(2708), - [anon_sym_try] = ACTIONS(2708), - [anon_sym_break] = ACTIONS(2708), - [anon_sym_continue] = ACTIONS(2708), - [anon_sym_debugger] = ACTIONS(2708), - [anon_sym_return] = ACTIONS(2708), - [anon_sym_throw] = ACTIONS(2708), - [anon_sym_case] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_DQUOTE] = ACTIONS(2706), - [anon_sym_SQUOTE] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2708), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_function] = ACTIONS(2708), - [anon_sym_new] = ACTIONS(2708), - [anon_sym_using] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_SLASH] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2706), - [anon_sym_void] = ACTIONS(2708), - [anon_sym_delete] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2706), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2706), - [sym_number] = ACTIONS(2706), - [sym_private_property_identifier] = ACTIONS(2706), - [sym_this] = ACTIONS(2708), - [sym_super] = ACTIONS(2708), - [sym_true] = ACTIONS(2708), - [sym_false] = ACTIONS(2708), - [sym_null] = ACTIONS(2708), - [sym_undefined] = ACTIONS(2708), - [anon_sym_AT] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2708), - [anon_sym_readonly] = ACTIONS(2708), - [anon_sym_get] = ACTIONS(2708), - [anon_sym_set] = ACTIONS(2708), - [anon_sym_declare] = ACTIONS(2708), - [anon_sym_public] = ACTIONS(2708), - [anon_sym_private] = ACTIONS(2708), - [anon_sym_protected] = ACTIONS(2708), - [anon_sym_override] = ACTIONS(2708), - [anon_sym_module] = ACTIONS(2708), - [anon_sym_any] = ACTIONS(2708), - [anon_sym_number] = ACTIONS(2708), - [anon_sym_boolean] = ACTIONS(2708), - [anon_sym_string] = ACTIONS(2708), - [anon_sym_symbol] = ACTIONS(2708), - [anon_sym_object] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2708), - [anon_sym_interface] = ACTIONS(2708), - [anon_sym_enum] = ACTIONS(2708), + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_export] = ACTIONS(2710), + [anon_sym_default] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_namespace] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2710), + [anon_sym_import] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2710), + [anon_sym_var] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_switch] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2708), + [anon_sym_await] = ACTIONS(2710), + [anon_sym_while] = ACTIONS(2710), + [anon_sym_do] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_debugger] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_throw] = ACTIONS(2710), + [anon_sym_case] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_SQUOTE] = ACTIONS(2708), + [anon_sym_class] = ACTIONS(2710), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2710), + [anon_sym_using] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(2710), + [anon_sym_delete] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2708), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2708), + [sym_number] = ACTIONS(2708), + [sym_private_property_identifier] = ACTIONS(2708), + [sym_this] = ACTIONS(2710), + [sym_super] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_null] = ACTIONS(2710), + [sym_undefined] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2710), + [anon_sym_readonly] = ACTIONS(2710), + [anon_sym_get] = ACTIONS(2710), + [anon_sym_set] = ACTIONS(2710), + [anon_sym_declare] = ACTIONS(2710), + [anon_sym_public] = ACTIONS(2710), + [anon_sym_private] = ACTIONS(2710), + [anon_sym_protected] = ACTIONS(2710), + [anon_sym_override] = ACTIONS(2710), + [anon_sym_module] = ACTIONS(2710), + [anon_sym_any] = ACTIONS(2710), + [anon_sym_number] = ACTIONS(2710), + [anon_sym_boolean] = ACTIONS(2710), + [anon_sym_string] = ACTIONS(2710), + [anon_sym_symbol] = ACTIONS(2710), + [anon_sym_object] = ACTIONS(2710), + [anon_sym_abstract] = ACTIONS(2710), + [anon_sym_interface] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), [sym_html_comment] = ACTIONS(5), }, [845] = { - [ts_builtin_sym_end] = ACTIONS(2710), - [sym_identifier] = ACTIONS(2712), - [anon_sym_export] = ACTIONS(2712), - [anon_sym_default] = ACTIONS(2712), - [anon_sym_type] = ACTIONS(2712), - [anon_sym_namespace] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_typeof] = ACTIONS(2712), - [anon_sym_import] = ACTIONS(2712), - [anon_sym_with] = ACTIONS(2712), - [anon_sym_var] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2712), - [anon_sym_const] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_else] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_switch] = ACTIONS(2712), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_await] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_do] = ACTIONS(2712), - [anon_sym_try] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_debugger] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_throw] = ACTIONS(2712), - [anon_sym_case] = ACTIONS(2712), - [anon_sym_yield] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_DQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2712), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(2712), - [anon_sym_new] = ACTIONS(2712), - [anon_sym_using] = ACTIONS(2712), - [anon_sym_PLUS] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_SLASH] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_delete] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2710), - [sym_number] = ACTIONS(2710), - [sym_private_property_identifier] = ACTIONS(2710), - [sym_this] = ACTIONS(2712), - [sym_super] = ACTIONS(2712), - [sym_true] = ACTIONS(2712), - [sym_false] = ACTIONS(2712), - [sym_null] = ACTIONS(2712), - [sym_undefined] = ACTIONS(2712), - [anon_sym_AT] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_readonly] = ACTIONS(2712), - [anon_sym_get] = ACTIONS(2712), - [anon_sym_set] = ACTIONS(2712), - [anon_sym_declare] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2712), - [anon_sym_private] = ACTIONS(2712), - [anon_sym_protected] = ACTIONS(2712), - [anon_sym_override] = ACTIONS(2712), - [anon_sym_module] = ACTIONS(2712), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2712), - [anon_sym_interface] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), + [ts_builtin_sym_end] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2714), + [anon_sym_export] = ACTIONS(2714), + [anon_sym_default] = ACTIONS(2714), + [anon_sym_type] = ACTIONS(2714), + [anon_sym_namespace] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2714), + [anon_sym_import] = ACTIONS(2714), + [anon_sym_with] = ACTIONS(2714), + [anon_sym_var] = ACTIONS(2714), + [anon_sym_let] = ACTIONS(2714), + [anon_sym_const] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_switch] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_await] = ACTIONS(2714), + [anon_sym_while] = ACTIONS(2714), + [anon_sym_do] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_debugger] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_throw] = ACTIONS(2714), + [anon_sym_case] = ACTIONS(2714), + [anon_sym_yield] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_class] = ACTIONS(2714), + [anon_sym_async] = ACTIONS(2714), + [anon_sym_function] = ACTIONS(2714), + [anon_sym_new] = ACTIONS(2714), + [anon_sym_using] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2712), + [anon_sym_void] = ACTIONS(2714), + [anon_sym_delete] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2712), + [sym_number] = ACTIONS(2712), + [sym_private_property_identifier] = ACTIONS(2712), + [sym_this] = ACTIONS(2714), + [sym_super] = ACTIONS(2714), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [sym_null] = ACTIONS(2714), + [sym_undefined] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_readonly] = ACTIONS(2714), + [anon_sym_get] = ACTIONS(2714), + [anon_sym_set] = ACTIONS(2714), + [anon_sym_declare] = ACTIONS(2714), + [anon_sym_public] = ACTIONS(2714), + [anon_sym_private] = ACTIONS(2714), + [anon_sym_protected] = ACTIONS(2714), + [anon_sym_override] = ACTIONS(2714), + [anon_sym_module] = ACTIONS(2714), + [anon_sym_any] = ACTIONS(2714), + [anon_sym_number] = ACTIONS(2714), + [anon_sym_boolean] = ACTIONS(2714), + [anon_sym_string] = ACTIONS(2714), + [anon_sym_symbol] = ACTIONS(2714), + [anon_sym_object] = ACTIONS(2714), + [anon_sym_abstract] = ACTIONS(2714), + [anon_sym_interface] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), [sym_html_comment] = ACTIONS(5), }, [846] = { - [ts_builtin_sym_end] = ACTIONS(2710), - [sym_identifier] = ACTIONS(2712), - [anon_sym_export] = ACTIONS(2712), - [anon_sym_default] = ACTIONS(2712), - [anon_sym_type] = ACTIONS(2712), - [anon_sym_namespace] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_typeof] = ACTIONS(2712), - [anon_sym_import] = ACTIONS(2712), - [anon_sym_with] = ACTIONS(2712), - [anon_sym_var] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2712), - [anon_sym_const] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_else] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_switch] = ACTIONS(2712), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_await] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_do] = ACTIONS(2712), - [anon_sym_try] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_debugger] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_throw] = ACTIONS(2712), - [anon_sym_case] = ACTIONS(2712), - [anon_sym_yield] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_DQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2712), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(2712), - [anon_sym_new] = ACTIONS(2712), - [anon_sym_using] = ACTIONS(2712), - [anon_sym_PLUS] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_SLASH] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_delete] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2710), - [sym_number] = ACTIONS(2710), - [sym_private_property_identifier] = ACTIONS(2710), - [sym_this] = ACTIONS(2712), - [sym_super] = ACTIONS(2712), - [sym_true] = ACTIONS(2712), - [sym_false] = ACTIONS(2712), - [sym_null] = ACTIONS(2712), - [sym_undefined] = ACTIONS(2712), - [anon_sym_AT] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_readonly] = ACTIONS(2712), - [anon_sym_get] = ACTIONS(2712), - [anon_sym_set] = ACTIONS(2712), - [anon_sym_declare] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2712), - [anon_sym_private] = ACTIONS(2712), - [anon_sym_protected] = ACTIONS(2712), - [anon_sym_override] = ACTIONS(2712), - [anon_sym_module] = ACTIONS(2712), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2712), - [anon_sym_interface] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), [sym_html_comment] = ACTIONS(5), }, [847] = { - [ts_builtin_sym_end] = ACTIONS(2714), - [sym_identifier] = ACTIONS(2716), - [anon_sym_export] = ACTIONS(2716), - [anon_sym_default] = ACTIONS(2716), - [anon_sym_type] = ACTIONS(2716), - [anon_sym_namespace] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(2716), - [anon_sym_import] = ACTIONS(2716), - [anon_sym_with] = ACTIONS(2716), - [anon_sym_var] = ACTIONS(2716), - [anon_sym_let] = ACTIONS(2716), - [anon_sym_const] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_else] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2716), - [anon_sym_switch] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_await] = ACTIONS(2716), - [anon_sym_while] = ACTIONS(2716), - [anon_sym_do] = ACTIONS(2716), - [anon_sym_try] = ACTIONS(2716), - [anon_sym_break] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2716), - [anon_sym_debugger] = ACTIONS(2716), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_throw] = ACTIONS(2716), - [anon_sym_case] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_SQUOTE] = ACTIONS(2714), - [anon_sym_class] = ACTIONS(2716), - [anon_sym_async] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2716), - [anon_sym_using] = ACTIONS(2716), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2714), - [anon_sym_void] = ACTIONS(2716), - [anon_sym_delete] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2714), - [anon_sym_DASH_DASH] = ACTIONS(2714), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2714), - [sym_private_property_identifier] = ACTIONS(2714), - [sym_this] = ACTIONS(2716), - [sym_super] = ACTIONS(2716), - [sym_true] = ACTIONS(2716), - [sym_false] = ACTIONS(2716), - [sym_null] = ACTIONS(2716), - [sym_undefined] = ACTIONS(2716), - [anon_sym_AT] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_readonly] = ACTIONS(2716), - [anon_sym_get] = ACTIONS(2716), - [anon_sym_set] = ACTIONS(2716), - [anon_sym_declare] = ACTIONS(2716), - [anon_sym_public] = ACTIONS(2716), - [anon_sym_private] = ACTIONS(2716), - [anon_sym_protected] = ACTIONS(2716), - [anon_sym_override] = ACTIONS(2716), - [anon_sym_module] = ACTIONS(2716), - [anon_sym_any] = ACTIONS(2716), - [anon_sym_number] = ACTIONS(2716), - [anon_sym_boolean] = ACTIONS(2716), - [anon_sym_string] = ACTIONS(2716), - [anon_sym_symbol] = ACTIONS(2716), - [anon_sym_object] = ACTIONS(2716), - [anon_sym_abstract] = ACTIONS(2716), - [anon_sym_interface] = ACTIONS(2716), - [anon_sym_enum] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2720), + [sym_identifier] = ACTIONS(2722), + [anon_sym_export] = ACTIONS(2722), + [anon_sym_default] = ACTIONS(2722), + [anon_sym_type] = ACTIONS(2722), + [anon_sym_namespace] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_RBRACE] = ACTIONS(2720), + [anon_sym_typeof] = ACTIONS(2722), + [anon_sym_import] = ACTIONS(2722), + [anon_sym_with] = ACTIONS(2722), + [anon_sym_var] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_const] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2720), + [anon_sym_else] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2720), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_await] = ACTIONS(2722), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2722), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2722), + [anon_sym_debugger] = ACTIONS(2722), + [anon_sym_return] = ACTIONS(2722), + [anon_sym_throw] = ACTIONS(2722), + [anon_sym_case] = ACTIONS(2722), + [anon_sym_yield] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(2722), + [anon_sym_async] = ACTIONS(2722), + [anon_sym_function] = ACTIONS(2722), + [anon_sym_new] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_TILDE] = ACTIONS(2720), + [anon_sym_void] = ACTIONS(2722), + [anon_sym_delete] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2720), + [anon_sym_DASH_DASH] = ACTIONS(2720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2720), + [sym_number] = ACTIONS(2720), + [sym_private_property_identifier] = ACTIONS(2720), + [sym_this] = ACTIONS(2722), + [sym_super] = ACTIONS(2722), + [sym_true] = ACTIONS(2722), + [sym_false] = ACTIONS(2722), + [sym_null] = ACTIONS(2722), + [sym_undefined] = ACTIONS(2722), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2722), + [anon_sym_readonly] = ACTIONS(2722), + [anon_sym_get] = ACTIONS(2722), + [anon_sym_set] = ACTIONS(2722), + [anon_sym_declare] = ACTIONS(2722), + [anon_sym_public] = ACTIONS(2722), + [anon_sym_private] = ACTIONS(2722), + [anon_sym_protected] = ACTIONS(2722), + [anon_sym_override] = ACTIONS(2722), + [anon_sym_module] = ACTIONS(2722), + [anon_sym_any] = ACTIONS(2722), + [anon_sym_number] = ACTIONS(2722), + [anon_sym_boolean] = ACTIONS(2722), + [anon_sym_string] = ACTIONS(2722), + [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_object] = ACTIONS(2722), + [anon_sym_abstract] = ACTIONS(2722), + [anon_sym_interface] = ACTIONS(2722), + [anon_sym_enum] = ACTIONS(2722), [sym_html_comment] = ACTIONS(5), }, [848] = { - [ts_builtin_sym_end] = ACTIONS(2718), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2720), - [anon_sym_default] = ACTIONS(2720), - [anon_sym_type] = ACTIONS(2720), - [anon_sym_namespace] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(2720), - [anon_sym_import] = ACTIONS(2720), - [anon_sym_with] = ACTIONS(2720), - [anon_sym_var] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2720), - [anon_sym_const] = ACTIONS(2720), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_else] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_switch] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2720), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_await] = ACTIONS(2720), - [anon_sym_while] = ACTIONS(2720), - [anon_sym_do] = ACTIONS(2720), - [anon_sym_try] = ACTIONS(2720), - [anon_sym_break] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2720), - [anon_sym_debugger] = ACTIONS(2720), - [anon_sym_return] = ACTIONS(2720), - [anon_sym_throw] = ACTIONS(2720), - [anon_sym_case] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_SQUOTE] = ACTIONS(2718), - [anon_sym_class] = ACTIONS(2720), - [anon_sym_async] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2720), - [anon_sym_using] = ACTIONS(2720), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_SLASH] = ACTIONS(2720), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_void] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_PLUS_PLUS] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2718), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2718), - [sym_number] = ACTIONS(2718), - [sym_private_property_identifier] = ACTIONS(2718), - [sym_this] = ACTIONS(2720), - [sym_super] = ACTIONS(2720), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_AT] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2720), - [anon_sym_get] = ACTIONS(2720), - [anon_sym_set] = ACTIONS(2720), - [anon_sym_declare] = ACTIONS(2720), - [anon_sym_public] = ACTIONS(2720), - [anon_sym_private] = ACTIONS(2720), - [anon_sym_protected] = ACTIONS(2720), - [anon_sym_override] = ACTIONS(2720), - [anon_sym_module] = ACTIONS(2720), - [anon_sym_any] = ACTIONS(2720), - [anon_sym_number] = ACTIONS(2720), - [anon_sym_boolean] = ACTIONS(2720), - [anon_sym_string] = ACTIONS(2720), - [anon_sym_symbol] = ACTIONS(2720), - [anon_sym_object] = ACTIONS(2720), - [anon_sym_abstract] = ACTIONS(2720), - [anon_sym_interface] = ACTIONS(2720), - [anon_sym_enum] = ACTIONS(2720), + [ts_builtin_sym_end] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2726), + [anon_sym_export] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_namespace] = ACTIONS(2726), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2726), + [anon_sym_import] = ACTIONS(2726), + [anon_sym_with] = ACTIONS(2726), + [anon_sym_var] = ACTIONS(2726), + [anon_sym_let] = ACTIONS(2726), + [anon_sym_const] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_switch] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_await] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_do] = ACTIONS(2726), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_debugger] = ACTIONS(2726), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_throw] = ACTIONS(2726), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [anon_sym_SQUOTE] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2726), + [anon_sym_async] = ACTIONS(2726), + [anon_sym_function] = ACTIONS(2726), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_using] = ACTIONS(2726), + [anon_sym_PLUS] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_delete] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2724), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2724), + [sym_number] = ACTIONS(2724), + [sym_private_property_identifier] = ACTIONS(2724), + [sym_this] = ACTIONS(2726), + [sym_super] = ACTIONS(2726), + [sym_true] = ACTIONS(2726), + [sym_false] = ACTIONS(2726), + [sym_null] = ACTIONS(2726), + [sym_undefined] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2726), + [anon_sym_readonly] = ACTIONS(2726), + [anon_sym_get] = ACTIONS(2726), + [anon_sym_set] = ACTIONS(2726), + [anon_sym_declare] = ACTIONS(2726), + [anon_sym_public] = ACTIONS(2726), + [anon_sym_private] = ACTIONS(2726), + [anon_sym_protected] = ACTIONS(2726), + [anon_sym_override] = ACTIONS(2726), + [anon_sym_module] = ACTIONS(2726), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2726), + [anon_sym_interface] = ACTIONS(2726), + [anon_sym_enum] = ACTIONS(2726), [sym_html_comment] = ACTIONS(5), }, [849] = { - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_export] = ACTIONS(2724), - [anon_sym_default] = ACTIONS(2724), - [anon_sym_type] = ACTIONS(2724), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_typeof] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_with] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [anon_sym_let] = ACTIONS(2724), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2722), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_await] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_debugger] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_case] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_SQUOTE] = ACTIONS(2722), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_async] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_void] = ACTIONS(2724), - [anon_sym_delete] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2722), - [sym_number] = ACTIONS(2722), - [sym_private_property_identifier] = ACTIONS(2722), - [sym_this] = ACTIONS(2724), - [sym_super] = ACTIONS(2724), - [sym_true] = ACTIONS(2724), - [sym_false] = ACTIONS(2724), - [sym_null] = ACTIONS(2724), - [sym_undefined] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2722), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_readonly] = ACTIONS(2724), - [anon_sym_get] = ACTIONS(2724), - [anon_sym_set] = ACTIONS(2724), - [anon_sym_declare] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_protected] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_module] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2724), - [anon_sym_number] = ACTIONS(2724), - [anon_sym_boolean] = ACTIONS(2724), - [anon_sym_string] = ACTIONS(2724), - [anon_sym_symbol] = ACTIONS(2724), - [anon_sym_object] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), + [ts_builtin_sym_end] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_export] = ACTIONS(2730), + [anon_sym_default] = ACTIONS(2730), + [anon_sym_type] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_with] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [anon_sym_let] = ACTIONS(2730), + [anon_sym_const] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_else] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_await] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_debugger] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_case] = ACTIONS(2730), + [anon_sym_yield] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2728), + [anon_sym_SQUOTE] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_void] = ACTIONS(2730), + [anon_sym_delete] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2728), + [sym_private_property_identifier] = ACTIONS(2728), + [sym_this] = ACTIONS(2730), + [sym_super] = ACTIONS(2730), + [sym_true] = ACTIONS(2730), + [sym_false] = ACTIONS(2730), + [sym_null] = ACTIONS(2730), + [sym_undefined] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_readonly] = ACTIONS(2730), + [anon_sym_get] = ACTIONS(2730), + [anon_sym_set] = ACTIONS(2730), + [anon_sym_declare] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_protected] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_module] = ACTIONS(2730), + [anon_sym_any] = ACTIONS(2730), + [anon_sym_number] = ACTIONS(2730), + [anon_sym_boolean] = ACTIONS(2730), + [anon_sym_string] = ACTIONS(2730), + [anon_sym_symbol] = ACTIONS(2730), + [anon_sym_object] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), [sym_html_comment] = ACTIONS(5), }, [850] = { - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_export] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_type] = ACTIONS(2728), - [anon_sym_namespace] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_with] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_else] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_await] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_debugger] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_case] = ACTIONS(2728), - [anon_sym_yield] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2728), - [anon_sym_async] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [anon_sym_void] = ACTIONS(2728), - [anon_sym_delete] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2726), - [sym_number] = ACTIONS(2726), - [sym_private_property_identifier] = ACTIONS(2726), - [sym_this] = ACTIONS(2728), - [sym_super] = ACTIONS(2728), - [sym_true] = ACTIONS(2728), - [sym_false] = ACTIONS(2728), - [sym_null] = ACTIONS(2728), - [sym_undefined] = ACTIONS(2728), - [anon_sym_AT] = ACTIONS(2726), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_readonly] = ACTIONS(2728), - [anon_sym_get] = ACTIONS(2728), - [anon_sym_set] = ACTIONS(2728), - [anon_sym_declare] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_protected] = ACTIONS(2728), - [anon_sym_override] = ACTIONS(2728), - [anon_sym_module] = ACTIONS(2728), - [anon_sym_any] = ACTIONS(2728), - [anon_sym_number] = ACTIONS(2728), - [anon_sym_boolean] = ACTIONS(2728), - [anon_sym_string] = ACTIONS(2728), - [anon_sym_symbol] = ACTIONS(2728), - [anon_sym_object] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), + [ts_builtin_sym_end] = ACTIONS(2732), + [sym_identifier] = ACTIONS(2734), + [anon_sym_export] = ACTIONS(2734), + [anon_sym_default] = ACTIONS(2734), + [anon_sym_type] = ACTIONS(2734), + [anon_sym_namespace] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(2734), + [anon_sym_import] = ACTIONS(2734), + [anon_sym_with] = ACTIONS(2734), + [anon_sym_var] = ACTIONS(2734), + [anon_sym_let] = ACTIONS(2734), + [anon_sym_const] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_else] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2734), + [anon_sym_switch] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_await] = ACTIONS(2734), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_do] = ACTIONS(2734), + [anon_sym_try] = ACTIONS(2734), + [anon_sym_break] = ACTIONS(2734), + [anon_sym_continue] = ACTIONS(2734), + [anon_sym_debugger] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2734), + [anon_sym_throw] = ACTIONS(2734), + [anon_sym_case] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_SQUOTE] = ACTIONS(2732), + [anon_sym_class] = ACTIONS(2734), + [anon_sym_async] = ACTIONS(2734), + [anon_sym_function] = ACTIONS(2734), + [anon_sym_new] = ACTIONS(2734), + [anon_sym_using] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_SLASH] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_TILDE] = ACTIONS(2732), + [anon_sym_void] = ACTIONS(2734), + [anon_sym_delete] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2732), + [anon_sym_DASH_DASH] = ACTIONS(2732), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2732), + [sym_number] = ACTIONS(2732), + [sym_private_property_identifier] = ACTIONS(2732), + [sym_this] = ACTIONS(2734), + [sym_super] = ACTIONS(2734), + [sym_true] = ACTIONS(2734), + [sym_false] = ACTIONS(2734), + [sym_null] = ACTIONS(2734), + [sym_undefined] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2734), + [anon_sym_readonly] = ACTIONS(2734), + [anon_sym_get] = ACTIONS(2734), + [anon_sym_set] = ACTIONS(2734), + [anon_sym_declare] = ACTIONS(2734), + [anon_sym_public] = ACTIONS(2734), + [anon_sym_private] = ACTIONS(2734), + [anon_sym_protected] = ACTIONS(2734), + [anon_sym_override] = ACTIONS(2734), + [anon_sym_module] = ACTIONS(2734), + [anon_sym_any] = ACTIONS(2734), + [anon_sym_number] = ACTIONS(2734), + [anon_sym_boolean] = ACTIONS(2734), + [anon_sym_string] = ACTIONS(2734), + [anon_sym_symbol] = ACTIONS(2734), + [anon_sym_object] = ACTIONS(2734), + [anon_sym_abstract] = ACTIONS(2734), + [anon_sym_interface] = ACTIONS(2734), + [anon_sym_enum] = ACTIONS(2734), [sym_html_comment] = ACTIONS(5), }, [851] = { - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_namespace] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_typeof] = ACTIONS(2732), - [anon_sym_import] = ACTIONS(2732), - [anon_sym_with] = ACTIONS(2732), - [anon_sym_var] = ACTIONS(2732), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_switch] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_await] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_debugger] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_throw] = ACTIONS(2732), - [anon_sym_case] = ACTIONS(2732), - [anon_sym_yield] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2732), - [anon_sym_async] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_using] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_void] = ACTIONS(2732), - [anon_sym_delete] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2730), - [sym_number] = ACTIONS(2730), - [sym_private_property_identifier] = ACTIONS(2730), - [sym_this] = ACTIONS(2732), - [sym_super] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [sym_null] = ACTIONS(2732), - [sym_undefined] = ACTIONS(2732), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_get] = ACTIONS(2732), - [anon_sym_set] = ACTIONS(2732), - [anon_sym_declare] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_protected] = ACTIONS(2732), - [anon_sym_override] = ACTIONS(2732), - [anon_sym_module] = ACTIONS(2732), - [anon_sym_any] = ACTIONS(2732), - [anon_sym_number] = ACTIONS(2732), - [anon_sym_boolean] = ACTIONS(2732), - [anon_sym_string] = ACTIONS(2732), - [anon_sym_symbol] = ACTIONS(2732), - [anon_sym_object] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), + [ts_builtin_sym_end] = ACTIONS(2736), + [sym_identifier] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2738), + [anon_sym_default] = ACTIONS(2738), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_namespace] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_RBRACE] = ACTIONS(2736), + [anon_sym_typeof] = ACTIONS(2738), + [anon_sym_import] = ACTIONS(2738), + [anon_sym_with] = ACTIONS(2738), + [anon_sym_var] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2738), + [anon_sym_const] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2738), + [anon_sym_if] = ACTIONS(2738), + [anon_sym_switch] = ACTIONS(2738), + [anon_sym_for] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2736), + [anon_sym_await] = ACTIONS(2738), + [anon_sym_while] = ACTIONS(2738), + [anon_sym_do] = ACTIONS(2738), + [anon_sym_try] = ACTIONS(2738), + [anon_sym_break] = ACTIONS(2738), + [anon_sym_continue] = ACTIONS(2738), + [anon_sym_debugger] = ACTIONS(2738), + [anon_sym_return] = ACTIONS(2738), + [anon_sym_throw] = ACTIONS(2738), + [anon_sym_case] = ACTIONS(2738), + [anon_sym_yield] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(2736), + [anon_sym_SQUOTE] = ACTIONS(2736), + [anon_sym_class] = ACTIONS(2738), + [anon_sym_async] = ACTIONS(2738), + [anon_sym_function] = ACTIONS(2738), + [anon_sym_new] = ACTIONS(2738), + [anon_sym_using] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2738), + [anon_sym_SLASH] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_void] = ACTIONS(2738), + [anon_sym_delete] = ACTIONS(2738), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2736), + [sym_number] = ACTIONS(2736), + [sym_private_property_identifier] = ACTIONS(2736), + [sym_this] = ACTIONS(2738), + [sym_super] = ACTIONS(2738), + [sym_true] = ACTIONS(2738), + [sym_false] = ACTIONS(2738), + [sym_null] = ACTIONS(2738), + [sym_undefined] = ACTIONS(2738), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_readonly] = ACTIONS(2738), + [anon_sym_get] = ACTIONS(2738), + [anon_sym_set] = ACTIONS(2738), + [anon_sym_declare] = ACTIONS(2738), + [anon_sym_public] = ACTIONS(2738), + [anon_sym_private] = ACTIONS(2738), + [anon_sym_protected] = ACTIONS(2738), + [anon_sym_override] = ACTIONS(2738), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2738), + [anon_sym_number] = ACTIONS(2738), + [anon_sym_boolean] = ACTIONS(2738), + [anon_sym_string] = ACTIONS(2738), + [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_object] = ACTIONS(2738), + [anon_sym_abstract] = ACTIONS(2738), + [anon_sym_interface] = ACTIONS(2738), + [anon_sym_enum] = ACTIONS(2738), [sym_html_comment] = ACTIONS(5), }, [852] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_typeof] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_with] = ACTIONS(1875), - [anon_sym_var] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_switch] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_await] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_debugger] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_throw] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1875), - [anon_sym_async] = ACTIONS(1875), - [anon_sym_function] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_using] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_delete] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1873), - [sym_number] = ACTIONS(1873), - [sym_private_property_identifier] = ACTIONS(1873), - [sym_this] = ACTIONS(1875), - [sym_super] = ACTIONS(1875), - [sym_true] = ACTIONS(1875), - [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), - [sym_undefined] = ACTIONS(1875), - [anon_sym_AT] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_readonly] = ACTIONS(1875), - [anon_sym_get] = ACTIONS(1875), - [anon_sym_set] = ACTIONS(1875), - [anon_sym_declare] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [anon_sym_override] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1875), - [anon_sym_number] = ACTIONS(1875), - [anon_sym_boolean] = ACTIONS(1875), - [anon_sym_string] = ACTIONS(1875), - [anon_sym_symbol] = ACTIONS(1875), - [anon_sym_object] = ACTIONS(1875), - [anon_sym_abstract] = ACTIONS(1875), - [anon_sym_interface] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), + [ts_builtin_sym_end] = ACTIONS(2740), + [sym_identifier] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2742), + [anon_sym_default] = ACTIONS(2742), + [anon_sym_type] = ACTIONS(2742), + [anon_sym_namespace] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(2742), + [anon_sym_import] = ACTIONS(2742), + [anon_sym_with] = ACTIONS(2742), + [anon_sym_var] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_const] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_else] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_switch] = ACTIONS(2742), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_await] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_break] = ACTIONS(2742), + [anon_sym_continue] = ACTIONS(2742), + [anon_sym_debugger] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_throw] = ACTIONS(2742), + [anon_sym_case] = ACTIONS(2742), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_DQUOTE] = ACTIONS(2740), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_class] = ACTIONS(2742), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_function] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(2742), + [anon_sym_using] = ACTIONS(2742), + [anon_sym_PLUS] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_SLASH] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_void] = ACTIONS(2742), + [anon_sym_delete] = ACTIONS(2742), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2740), + [sym_number] = ACTIONS(2740), + [sym_private_property_identifier] = ACTIONS(2740), + [sym_this] = ACTIONS(2742), + [sym_super] = ACTIONS(2742), + [sym_true] = ACTIONS(2742), + [sym_false] = ACTIONS(2742), + [sym_null] = ACTIONS(2742), + [sym_undefined] = ACTIONS(2742), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2742), + [anon_sym_readonly] = ACTIONS(2742), + [anon_sym_get] = ACTIONS(2742), + [anon_sym_set] = ACTIONS(2742), + [anon_sym_declare] = ACTIONS(2742), + [anon_sym_public] = ACTIONS(2742), + [anon_sym_private] = ACTIONS(2742), + [anon_sym_protected] = ACTIONS(2742), + [anon_sym_override] = ACTIONS(2742), + [anon_sym_module] = ACTIONS(2742), + [anon_sym_any] = ACTIONS(2742), + [anon_sym_number] = ACTIONS(2742), + [anon_sym_boolean] = ACTIONS(2742), + [anon_sym_string] = ACTIONS(2742), + [anon_sym_symbol] = ACTIONS(2742), + [anon_sym_object] = ACTIONS(2742), + [anon_sym_abstract] = ACTIONS(2742), + [anon_sym_interface] = ACTIONS(2742), + [anon_sym_enum] = ACTIONS(2742), [sym_html_comment] = ACTIONS(5), }, [853] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1739), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_typeof] = ACTIONS(1739), - [anon_sym_import] = ACTIONS(1739), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_var] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_await] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_debugger] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_function] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_void] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1737), - [sym_number] = ACTIONS(1737), - [sym_private_property_identifier] = ACTIONS(1737), - [sym_this] = ACTIONS(1739), - [sym_super] = ACTIONS(1739), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_undefined] = ACTIONS(1739), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_readonly] = ACTIONS(1739), - [anon_sym_get] = ACTIONS(1739), - [anon_sym_set] = ACTIONS(1739), - [anon_sym_declare] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [anon_sym_override] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_any] = ACTIONS(1739), - [anon_sym_number] = ACTIONS(1739), - [anon_sym_boolean] = ACTIONS(1739), - [anon_sym_string] = ACTIONS(1739), - [anon_sym_symbol] = ACTIONS(1739), - [anon_sym_object] = ACTIONS(1739), - [anon_sym_abstract] = ACTIONS(1739), - [anon_sym_interface] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_namespace] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_with] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_await] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_class] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_using] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_void] = ACTIONS(2700), + [anon_sym_delete] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2698), + [sym_number] = ACTIONS(2698), + [sym_private_property_identifier] = ACTIONS(2698), + [sym_this] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_null] = ACTIONS(2700), + [sym_undefined] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_readonly] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_protected] = ACTIONS(2700), + [anon_sym_override] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2700), + [anon_sym_any] = ACTIONS(2700), + [anon_sym_number] = ACTIONS(2700), + [anon_sym_boolean] = ACTIONS(2700), + [anon_sym_string] = ACTIONS(2700), + [anon_sym_symbol] = ACTIONS(2700), + [anon_sym_object] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), [sym_html_comment] = ACTIONS(5), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_namespace] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_with] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_switch] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_await] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_do] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_debugger] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_throw] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_yield] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [anon_sym_SQUOTE] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2736), - [anon_sym_async] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(2736), - [anon_sym_new] = ACTIONS(2736), - [anon_sym_using] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_void] = ACTIONS(2736), - [anon_sym_delete] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2734), - [sym_number] = ACTIONS(2734), - [sym_private_property_identifier] = ACTIONS(2734), - [sym_this] = ACTIONS(2736), - [sym_super] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_null] = ACTIONS(2736), - [sym_undefined] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_readonly] = ACTIONS(2736), - [anon_sym_get] = ACTIONS(2736), - [anon_sym_set] = ACTIONS(2736), - [anon_sym_declare] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_protected] = ACTIONS(2736), - [anon_sym_override] = ACTIONS(2736), - [anon_sym_module] = ACTIONS(2736), - [anon_sym_any] = ACTIONS(2736), - [anon_sym_number] = ACTIONS(2736), - [anon_sym_boolean] = ACTIONS(2736), - [anon_sym_string] = ACTIONS(2736), - [anon_sym_symbol] = ACTIONS(2736), - [anon_sym_object] = ACTIONS(2736), - [anon_sym_abstract] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), + [ts_builtin_sym_end] = ACTIONS(2744), + [sym_identifier] = ACTIONS(2746), + [anon_sym_export] = ACTIONS(2746), + [anon_sym_default] = ACTIONS(2746), + [anon_sym_type] = ACTIONS(2746), + [anon_sym_namespace] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_RBRACE] = ACTIONS(2744), + [anon_sym_typeof] = ACTIONS(2746), + [anon_sym_import] = ACTIONS(2746), + [anon_sym_with] = ACTIONS(2746), + [anon_sym_var] = ACTIONS(2746), + [anon_sym_let] = ACTIONS(2746), + [anon_sym_const] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_else] = ACTIONS(2746), + [anon_sym_if] = ACTIONS(2746), + [anon_sym_switch] = ACTIONS(2746), + [anon_sym_for] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2744), + [anon_sym_await] = ACTIONS(2746), + [anon_sym_while] = ACTIONS(2746), + [anon_sym_do] = ACTIONS(2746), + [anon_sym_try] = ACTIONS(2746), + [anon_sym_break] = ACTIONS(2746), + [anon_sym_continue] = ACTIONS(2746), + [anon_sym_debugger] = ACTIONS(2746), + [anon_sym_return] = ACTIONS(2746), + [anon_sym_throw] = ACTIONS(2746), + [anon_sym_case] = ACTIONS(2746), + [anon_sym_yield] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_class] = ACTIONS(2746), + [anon_sym_async] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(2746), + [anon_sym_new] = ACTIONS(2746), + [anon_sym_using] = ACTIONS(2746), + [anon_sym_PLUS] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_SLASH] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_TILDE] = ACTIONS(2744), + [anon_sym_void] = ACTIONS(2746), + [anon_sym_delete] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2744), + [anon_sym_DASH_DASH] = ACTIONS(2744), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2744), + [sym_number] = ACTIONS(2744), + [sym_private_property_identifier] = ACTIONS(2744), + [sym_this] = ACTIONS(2746), + [sym_super] = ACTIONS(2746), + [sym_true] = ACTIONS(2746), + [sym_false] = ACTIONS(2746), + [sym_null] = ACTIONS(2746), + [sym_undefined] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2746), + [anon_sym_readonly] = ACTIONS(2746), + [anon_sym_get] = ACTIONS(2746), + [anon_sym_set] = ACTIONS(2746), + [anon_sym_declare] = ACTIONS(2746), + [anon_sym_public] = ACTIONS(2746), + [anon_sym_private] = ACTIONS(2746), + [anon_sym_protected] = ACTIONS(2746), + [anon_sym_override] = ACTIONS(2746), + [anon_sym_module] = ACTIONS(2746), + [anon_sym_any] = ACTIONS(2746), + [anon_sym_number] = ACTIONS(2746), + [anon_sym_boolean] = ACTIONS(2746), + [anon_sym_string] = ACTIONS(2746), + [anon_sym_symbol] = ACTIONS(2746), + [anon_sym_object] = ACTIONS(2746), + [anon_sym_abstract] = ACTIONS(2746), + [anon_sym_interface] = ACTIONS(2746), + [anon_sym_enum] = ACTIONS(2746), [sym_html_comment] = ACTIONS(5), }, [855] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2750), + [anon_sym_export] = ACTIONS(2750), + [anon_sym_default] = ACTIONS(2750), + [anon_sym_type] = ACTIONS(2750), + [anon_sym_namespace] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_typeof] = ACTIONS(2750), + [anon_sym_import] = ACTIONS(2750), + [anon_sym_with] = ACTIONS(2750), + [anon_sym_var] = ACTIONS(2750), + [anon_sym_let] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_else] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_switch] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_await] = ACTIONS(2750), + [anon_sym_while] = ACTIONS(2750), + [anon_sym_do] = ACTIONS(2750), + [anon_sym_try] = ACTIONS(2750), + [anon_sym_break] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2750), + [anon_sym_debugger] = ACTIONS(2750), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_throw] = ACTIONS(2750), + [anon_sym_case] = ACTIONS(2750), + [anon_sym_yield] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [anon_sym_SQUOTE] = ACTIONS(2748), + [anon_sym_class] = ACTIONS(2750), + [anon_sym_async] = ACTIONS(2750), + [anon_sym_function] = ACTIONS(2750), + [anon_sym_new] = ACTIONS(2750), + [anon_sym_using] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_void] = ACTIONS(2750), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2748), + [sym_number] = ACTIONS(2748), + [sym_private_property_identifier] = ACTIONS(2748), + [sym_this] = ACTIONS(2750), + [sym_super] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), + [sym_undefined] = ACTIONS(2750), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2750), + [anon_sym_readonly] = ACTIONS(2750), + [anon_sym_get] = ACTIONS(2750), + [anon_sym_set] = ACTIONS(2750), + [anon_sym_declare] = ACTIONS(2750), + [anon_sym_public] = ACTIONS(2750), + [anon_sym_private] = ACTIONS(2750), + [anon_sym_protected] = ACTIONS(2750), + [anon_sym_override] = ACTIONS(2750), + [anon_sym_module] = ACTIONS(2750), + [anon_sym_any] = ACTIONS(2750), + [anon_sym_number] = ACTIONS(2750), + [anon_sym_boolean] = ACTIONS(2750), + [anon_sym_string] = ACTIONS(2750), + [anon_sym_symbol] = ACTIONS(2750), + [anon_sym_object] = ACTIONS(2750), + [anon_sym_abstract] = ACTIONS(2750), + [anon_sym_interface] = ACTIONS(2750), + [anon_sym_enum] = ACTIONS(2750), [sym_html_comment] = ACTIONS(5), }, [856] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_export] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_typeof] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_with] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_else] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_switch] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_await] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_do] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_debugger] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_throw] = ACTIONS(2740), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_yield] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_async] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(2740), - [anon_sym_using] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_void] = ACTIONS(2740), - [anon_sym_delete] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2738), - [sym_number] = ACTIONS(2738), - [sym_private_property_identifier] = ACTIONS(2738), - [sym_this] = ACTIONS(2740), - [sym_super] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_null] = ACTIONS(2740), - [sym_undefined] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_readonly] = ACTIONS(2740), - [anon_sym_get] = ACTIONS(2740), - [anon_sym_set] = ACTIONS(2740), - [anon_sym_declare] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_protected] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_any] = ACTIONS(2740), - [anon_sym_number] = ACTIONS(2740), - [anon_sym_boolean] = ACTIONS(2740), - [anon_sym_string] = ACTIONS(2740), - [anon_sym_symbol] = ACTIONS(2740), - [anon_sym_object] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), + [ts_builtin_sym_end] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2754), + [anon_sym_export] = ACTIONS(2754), + [anon_sym_default] = ACTIONS(2754), + [anon_sym_type] = ACTIONS(2754), + [anon_sym_namespace] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_RBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(2754), + [anon_sym_import] = ACTIONS(2754), + [anon_sym_with] = ACTIONS(2754), + [anon_sym_var] = ACTIONS(2754), + [anon_sym_let] = ACTIONS(2754), + [anon_sym_const] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_else] = ACTIONS(2754), + [anon_sym_if] = ACTIONS(2754), + [anon_sym_switch] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2754), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_await] = ACTIONS(2754), + [anon_sym_while] = ACTIONS(2754), + [anon_sym_do] = ACTIONS(2754), + [anon_sym_try] = ACTIONS(2754), + [anon_sym_break] = ACTIONS(2754), + [anon_sym_continue] = ACTIONS(2754), + [anon_sym_debugger] = ACTIONS(2754), + [anon_sym_return] = ACTIONS(2754), + [anon_sym_throw] = ACTIONS(2754), + [anon_sym_case] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2754), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_SQUOTE] = ACTIONS(2752), + [anon_sym_class] = ACTIONS(2754), + [anon_sym_async] = ACTIONS(2754), + [anon_sym_function] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2754), + [anon_sym_using] = ACTIONS(2754), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_SLASH] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_void] = ACTIONS(2754), + [anon_sym_delete] = ACTIONS(2754), + [anon_sym_PLUS_PLUS] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2752), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2752), + [sym_number] = ACTIONS(2752), + [sym_private_property_identifier] = ACTIONS(2752), + [sym_this] = ACTIONS(2754), + [sym_super] = ACTIONS(2754), + [sym_true] = ACTIONS(2754), + [sym_false] = ACTIONS(2754), + [sym_null] = ACTIONS(2754), + [sym_undefined] = ACTIONS(2754), + [anon_sym_AT] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2754), + [anon_sym_readonly] = ACTIONS(2754), + [anon_sym_get] = ACTIONS(2754), + [anon_sym_set] = ACTIONS(2754), + [anon_sym_declare] = ACTIONS(2754), + [anon_sym_public] = ACTIONS(2754), + [anon_sym_private] = ACTIONS(2754), + [anon_sym_protected] = ACTIONS(2754), + [anon_sym_override] = ACTIONS(2754), + [anon_sym_module] = ACTIONS(2754), + [anon_sym_any] = ACTIONS(2754), + [anon_sym_number] = ACTIONS(2754), + [anon_sym_boolean] = ACTIONS(2754), + [anon_sym_string] = ACTIONS(2754), + [anon_sym_symbol] = ACTIONS(2754), + [anon_sym_object] = ACTIONS(2754), + [anon_sym_abstract] = ACTIONS(2754), + [anon_sym_interface] = ACTIONS(2754), + [anon_sym_enum] = ACTIONS(2754), [sym_html_comment] = ACTIONS(5), }, [857] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_export] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_typeof] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_with] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_else] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_switch] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_await] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_do] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_debugger] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_throw] = ACTIONS(2740), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_yield] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_async] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(2740), - [anon_sym_using] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_void] = ACTIONS(2740), - [anon_sym_delete] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2738), - [sym_number] = ACTIONS(2738), - [sym_private_property_identifier] = ACTIONS(2738), - [sym_this] = ACTIONS(2740), - [sym_super] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_null] = ACTIONS(2740), - [sym_undefined] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_readonly] = ACTIONS(2740), - [anon_sym_get] = ACTIONS(2740), - [anon_sym_set] = ACTIONS(2740), - [anon_sym_declare] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_protected] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_any] = ACTIONS(2740), - [anon_sym_number] = ACTIONS(2740), - [anon_sym_boolean] = ACTIONS(2740), - [anon_sym_string] = ACTIONS(2740), - [anon_sym_symbol] = ACTIONS(2740), - [anon_sym_object] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), + [ts_builtin_sym_end] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2758), + [anon_sym_export] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_type] = ACTIONS(2758), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_RBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(2758), + [anon_sym_import] = ACTIONS(2758), + [anon_sym_with] = ACTIONS(2758), + [anon_sym_var] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_else] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_switch] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_await] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_do] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_debugger] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_throw] = ACTIONS(2758), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [anon_sym_SQUOTE] = ACTIONS(2756), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2758), + [anon_sym_function] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_using] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_SLASH] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_void] = ACTIONS(2758), + [anon_sym_delete] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2756), + [sym_number] = ACTIONS(2756), + [sym_private_property_identifier] = ACTIONS(2756), + [sym_this] = ACTIONS(2758), + [sym_super] = ACTIONS(2758), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_null] = ACTIONS(2758), + [sym_undefined] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_readonly] = ACTIONS(2758), + [anon_sym_get] = ACTIONS(2758), + [anon_sym_set] = ACTIONS(2758), + [anon_sym_declare] = ACTIONS(2758), + [anon_sym_public] = ACTIONS(2758), + [anon_sym_private] = ACTIONS(2758), + [anon_sym_protected] = ACTIONS(2758), + [anon_sym_override] = ACTIONS(2758), + [anon_sym_module] = ACTIONS(2758), + [anon_sym_any] = ACTIONS(2758), + [anon_sym_number] = ACTIONS(2758), + [anon_sym_boolean] = ACTIONS(2758), + [anon_sym_string] = ACTIONS(2758), + [anon_sym_symbol] = ACTIONS(2758), + [anon_sym_object] = ACTIONS(2758), + [anon_sym_abstract] = ACTIONS(2758), + [anon_sym_interface] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), [sym_html_comment] = ACTIONS(5), }, [858] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), + [ts_builtin_sym_end] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2762), + [anon_sym_export] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_type] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_RBRACE] = ACTIONS(2760), + [anon_sym_typeof] = ACTIONS(2762), + [anon_sym_import] = ACTIONS(2762), + [anon_sym_with] = ACTIONS(2762), + [anon_sym_var] = ACTIONS(2762), + [anon_sym_let] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_else] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_switch] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_await] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_debugger] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_throw] = ACTIONS(2762), + [anon_sym_case] = ACTIONS(2762), + [anon_sym_yield] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_class] = ACTIONS(2762), + [anon_sym_async] = ACTIONS(2762), + [anon_sym_function] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(2762), + [anon_sym_using] = ACTIONS(2762), + [anon_sym_PLUS] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_SLASH] = ACTIONS(2762), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_void] = ACTIONS(2762), + [anon_sym_delete] = ACTIONS(2762), + [anon_sym_PLUS_PLUS] = ACTIONS(2760), + [anon_sym_DASH_DASH] = ACTIONS(2760), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2760), + [sym_number] = ACTIONS(2760), + [sym_private_property_identifier] = ACTIONS(2760), + [sym_this] = ACTIONS(2762), + [sym_super] = ACTIONS(2762), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [sym_null] = ACTIONS(2762), + [sym_undefined] = ACTIONS(2762), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_readonly] = ACTIONS(2762), + [anon_sym_get] = ACTIONS(2762), + [anon_sym_set] = ACTIONS(2762), + [anon_sym_declare] = ACTIONS(2762), + [anon_sym_public] = ACTIONS(2762), + [anon_sym_private] = ACTIONS(2762), + [anon_sym_protected] = ACTIONS(2762), + [anon_sym_override] = ACTIONS(2762), + [anon_sym_module] = ACTIONS(2762), + [anon_sym_any] = ACTIONS(2762), + [anon_sym_number] = ACTIONS(2762), + [anon_sym_boolean] = ACTIONS(2762), + [anon_sym_string] = ACTIONS(2762), + [anon_sym_symbol] = ACTIONS(2762), + [anon_sym_object] = ACTIONS(2762), + [anon_sym_abstract] = ACTIONS(2762), + [anon_sym_interface] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), [sym_html_comment] = ACTIONS(5), }, [859] = { - [ts_builtin_sym_end] = ACTIONS(2746), - [sym_identifier] = ACTIONS(2748), - [anon_sym_export] = ACTIONS(2748), - [anon_sym_default] = ACTIONS(2748), - [anon_sym_type] = ACTIONS(2748), - [anon_sym_namespace] = ACTIONS(2748), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_RBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(2748), - [anon_sym_import] = ACTIONS(2748), - [anon_sym_with] = ACTIONS(2748), - [anon_sym_var] = ACTIONS(2748), - [anon_sym_let] = ACTIONS(2748), - [anon_sym_const] = ACTIONS(2748), - [anon_sym_BANG] = ACTIONS(2746), - [anon_sym_else] = ACTIONS(2748), - [anon_sym_if] = ACTIONS(2748), - [anon_sym_switch] = ACTIONS(2748), - [anon_sym_for] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2746), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_await] = ACTIONS(2748), - [anon_sym_while] = ACTIONS(2748), - [anon_sym_do] = ACTIONS(2748), - [anon_sym_try] = ACTIONS(2748), - [anon_sym_break] = ACTIONS(2748), - [anon_sym_continue] = ACTIONS(2748), - [anon_sym_debugger] = ACTIONS(2748), - [anon_sym_return] = ACTIONS(2748), - [anon_sym_throw] = ACTIONS(2748), - [anon_sym_case] = ACTIONS(2748), - [anon_sym_yield] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_DQUOTE] = ACTIONS(2746), - [anon_sym_SQUOTE] = ACTIONS(2746), - [anon_sym_class] = ACTIONS(2748), - [anon_sym_async] = ACTIONS(2748), - [anon_sym_function] = ACTIONS(2748), - [anon_sym_new] = ACTIONS(2748), - [anon_sym_using] = ACTIONS(2748), - [anon_sym_PLUS] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2748), - [anon_sym_SLASH] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_TILDE] = ACTIONS(2746), - [anon_sym_void] = ACTIONS(2748), - [anon_sym_delete] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2746), - [anon_sym_DASH_DASH] = ACTIONS(2746), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2746), - [sym_number] = ACTIONS(2746), - [sym_private_property_identifier] = ACTIONS(2746), - [sym_this] = ACTIONS(2748), - [sym_super] = ACTIONS(2748), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_undefined] = ACTIONS(2748), - [anon_sym_AT] = ACTIONS(2746), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_readonly] = ACTIONS(2748), - [anon_sym_get] = ACTIONS(2748), - [anon_sym_set] = ACTIONS(2748), - [anon_sym_declare] = ACTIONS(2748), - [anon_sym_public] = ACTIONS(2748), - [anon_sym_private] = ACTIONS(2748), - [anon_sym_protected] = ACTIONS(2748), - [anon_sym_override] = ACTIONS(2748), - [anon_sym_module] = ACTIONS(2748), - [anon_sym_any] = ACTIONS(2748), - [anon_sym_number] = ACTIONS(2748), - [anon_sym_boolean] = ACTIONS(2748), - [anon_sym_string] = ACTIONS(2748), - [anon_sym_symbol] = ACTIONS(2748), - [anon_sym_object] = ACTIONS(2748), - [anon_sym_abstract] = ACTIONS(2748), - [anon_sym_interface] = ACTIONS(2748), - [anon_sym_enum] = ACTIONS(2748), + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1759), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + [anon_sym_var] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_debugger] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_throw] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_class] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_function] = ACTIONS(1759), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_void] = ACTIONS(1759), + [anon_sym_delete] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1757), + [sym_number] = ACTIONS(1757), + [sym_private_property_identifier] = ACTIONS(1757), + [sym_this] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_undefined] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [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(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), [sym_html_comment] = ACTIONS(5), }, [860] = { - [ts_builtin_sym_end] = ACTIONS(2750), - [sym_identifier] = ACTIONS(2752), - [anon_sym_export] = ACTIONS(2752), - [anon_sym_default] = ACTIONS(2752), - [anon_sym_type] = ACTIONS(2752), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_typeof] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2752), - [anon_sym_with] = ACTIONS(2752), - [anon_sym_var] = ACTIONS(2752), - [anon_sym_let] = ACTIONS(2752), - [anon_sym_const] = ACTIONS(2752), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_else] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_switch] = ACTIONS(2752), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_await] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_do] = ACTIONS(2752), - [anon_sym_try] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_debugger] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_throw] = ACTIONS(2752), - [anon_sym_case] = ACTIONS(2752), - [anon_sym_yield] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_DQUOTE] = ACTIONS(2750), - [anon_sym_SQUOTE] = ACTIONS(2750), - [anon_sym_class] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2752), - [anon_sym_function] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(2752), - [anon_sym_using] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2752), - [anon_sym_SLASH] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2750), - [anon_sym_void] = ACTIONS(2752), - [anon_sym_delete] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2750), - [sym_number] = ACTIONS(2750), - [sym_private_property_identifier] = ACTIONS(2750), - [sym_this] = ACTIONS(2752), - [sym_super] = ACTIONS(2752), - [sym_true] = ACTIONS(2752), - [sym_false] = ACTIONS(2752), - [sym_null] = ACTIONS(2752), - [sym_undefined] = ACTIONS(2752), - [anon_sym_AT] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_readonly] = ACTIONS(2752), - [anon_sym_get] = ACTIONS(2752), - [anon_sym_set] = ACTIONS(2752), - [anon_sym_declare] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_protected] = ACTIONS(2752), - [anon_sym_override] = ACTIONS(2752), - [anon_sym_module] = ACTIONS(2752), - [anon_sym_any] = ACTIONS(2752), - [anon_sym_number] = ACTIONS(2752), - [anon_sym_boolean] = ACTIONS(2752), - [anon_sym_string] = ACTIONS(2752), - [anon_sym_symbol] = ACTIONS(2752), - [anon_sym_object] = ACTIONS(2752), - [anon_sym_abstract] = ACTIONS(2752), - [anon_sym_interface] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2766), + [anon_sym_export] = ACTIONS(2766), + [anon_sym_default] = ACTIONS(2766), + [anon_sym_type] = ACTIONS(2766), + [anon_sym_namespace] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_typeof] = ACTIONS(2766), + [anon_sym_import] = ACTIONS(2766), + [anon_sym_with] = ACTIONS(2766), + [anon_sym_var] = ACTIONS(2766), + [anon_sym_let] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_else] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_await] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_debugger] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_throw] = ACTIONS(2766), + [anon_sym_case] = ACTIONS(2766), + [anon_sym_yield] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_class] = ACTIONS(2766), + [anon_sym_async] = ACTIONS(2766), + [anon_sym_function] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2766), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_SLASH] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_void] = ACTIONS(2766), + [anon_sym_delete] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2764), + [sym_number] = ACTIONS(2764), + [sym_private_property_identifier] = ACTIONS(2764), + [sym_this] = ACTIONS(2766), + [sym_super] = ACTIONS(2766), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [sym_null] = ACTIONS(2766), + [sym_undefined] = ACTIONS(2766), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_readonly] = ACTIONS(2766), + [anon_sym_get] = ACTIONS(2766), + [anon_sym_set] = ACTIONS(2766), + [anon_sym_declare] = ACTIONS(2766), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_override] = ACTIONS(2766), + [anon_sym_module] = ACTIONS(2766), + [anon_sym_any] = ACTIONS(2766), + [anon_sym_number] = ACTIONS(2766), + [anon_sym_boolean] = ACTIONS(2766), + [anon_sym_string] = ACTIONS(2766), + [anon_sym_symbol] = ACTIONS(2766), + [anon_sym_object] = ACTIONS(2766), + [anon_sym_abstract] = ACTIONS(2766), + [anon_sym_interface] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), [sym_html_comment] = ACTIONS(5), }, [861] = { - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_export] = ACTIONS(2756), - [anon_sym_default] = ACTIONS(2756), - [anon_sym_type] = ACTIONS(2756), - [anon_sym_namespace] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(2756), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_with] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2756), - [anon_sym_let] = ACTIONS(2756), - [anon_sym_const] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2754), - [anon_sym_else] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_switch] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_await] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_do] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_debugger] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_throw] = ACTIONS(2756), - [anon_sym_case] = ACTIONS(2756), - [anon_sym_yield] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [anon_sym_SQUOTE] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2756), - [anon_sym_async] = ACTIONS(2756), - [anon_sym_function] = ACTIONS(2756), - [anon_sym_new] = ACTIONS(2756), - [anon_sym_using] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2754), - [anon_sym_void] = ACTIONS(2756), - [anon_sym_delete] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2754), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2754), - [sym_number] = ACTIONS(2754), - [sym_private_property_identifier] = ACTIONS(2754), - [sym_this] = ACTIONS(2756), - [sym_super] = ACTIONS(2756), - [sym_true] = ACTIONS(2756), - [sym_false] = ACTIONS(2756), - [sym_null] = ACTIONS(2756), - [sym_undefined] = ACTIONS(2756), - [anon_sym_AT] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_readonly] = ACTIONS(2756), - [anon_sym_get] = ACTIONS(2756), - [anon_sym_set] = ACTIONS(2756), - [anon_sym_declare] = ACTIONS(2756), - [anon_sym_public] = ACTIONS(2756), - [anon_sym_private] = ACTIONS(2756), - [anon_sym_protected] = ACTIONS(2756), - [anon_sym_override] = ACTIONS(2756), - [anon_sym_module] = ACTIONS(2756), - [anon_sym_any] = ACTIONS(2756), - [anon_sym_number] = ACTIONS(2756), - [anon_sym_boolean] = ACTIONS(2756), - [anon_sym_string] = ACTIONS(2756), - [anon_sym_symbol] = ACTIONS(2756), - [anon_sym_object] = ACTIONS(2756), - [anon_sym_abstract] = ACTIONS(2756), - [anon_sym_interface] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [sym_html_comment] = ACTIONS(5), - }, - [862] = { - [ts_builtin_sym_end] = ACTIONS(2758), - [sym_identifier] = ACTIONS(2760), - [anon_sym_export] = ACTIONS(2760), - [anon_sym_default] = ACTIONS(2760), - [anon_sym_type] = ACTIONS(2760), - [anon_sym_namespace] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(2760), - [anon_sym_import] = ACTIONS(2760), - [anon_sym_with] = ACTIONS(2760), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_const] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_else] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2760), - [anon_sym_switch] = ACTIONS(2760), - [anon_sym_for] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_await] = ACTIONS(2760), - [anon_sym_while] = ACTIONS(2760), - [anon_sym_do] = ACTIONS(2760), - [anon_sym_try] = ACTIONS(2760), - [anon_sym_break] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2760), - [anon_sym_debugger] = ACTIONS(2760), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_throw] = ACTIONS(2760), - [anon_sym_case] = ACTIONS(2760), - [anon_sym_yield] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [anon_sym_SQUOTE] = ACTIONS(2758), - [anon_sym_class] = ACTIONS(2760), - [anon_sym_async] = ACTIONS(2760), - [anon_sym_function] = ACTIONS(2760), - [anon_sym_new] = ACTIONS(2760), - [anon_sym_using] = ACTIONS(2760), - [anon_sym_PLUS] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2760), - [anon_sym_SLASH] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_void] = ACTIONS(2760), - [anon_sym_delete] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2758), - [sym_number] = ACTIONS(2758), - [sym_private_property_identifier] = ACTIONS(2758), - [sym_this] = ACTIONS(2760), - [sym_super] = ACTIONS(2760), - [sym_true] = ACTIONS(2760), - [sym_false] = ACTIONS(2760), - [sym_null] = ACTIONS(2760), - [sym_undefined] = ACTIONS(2760), - [anon_sym_AT] = ACTIONS(2758), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_readonly] = ACTIONS(2760), - [anon_sym_get] = ACTIONS(2760), - [anon_sym_set] = ACTIONS(2760), - [anon_sym_declare] = ACTIONS(2760), - [anon_sym_public] = ACTIONS(2760), - [anon_sym_private] = ACTIONS(2760), - [anon_sym_protected] = ACTIONS(2760), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_module] = ACTIONS(2760), - [anon_sym_any] = ACTIONS(2760), - [anon_sym_number] = ACTIONS(2760), - [anon_sym_boolean] = ACTIONS(2760), - [anon_sym_string] = ACTIONS(2760), - [anon_sym_symbol] = ACTIONS(2760), - [anon_sym_object] = ACTIONS(2760), - [anon_sym_abstract] = ACTIONS(2760), - [anon_sym_interface] = ACTIONS(2760), - [anon_sym_enum] = ACTIONS(2760), - [sym_html_comment] = ACTIONS(5), - }, - [863] = { - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_export] = ACTIONS(2764), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_namespace] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_RBRACE] = ACTIONS(2762), - [anon_sym_typeof] = ACTIONS(2764), - [anon_sym_import] = ACTIONS(2764), - [anon_sym_with] = ACTIONS(2764), - [anon_sym_var] = ACTIONS(2764), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_else] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_switch] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_await] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_do] = ACTIONS(2764), - [anon_sym_try] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_debugger] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_throw] = ACTIONS(2764), - [anon_sym_case] = ACTIONS(2764), - [anon_sym_yield] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_DQUOTE] = ACTIONS(2762), - [anon_sym_SQUOTE] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2764), - [anon_sym_async] = ACTIONS(2764), - [anon_sym_function] = ACTIONS(2764), - [anon_sym_new] = ACTIONS(2764), - [anon_sym_using] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_TILDE] = ACTIONS(2762), - [anon_sym_void] = ACTIONS(2764), - [anon_sym_delete] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2762), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2762), - [sym_number] = ACTIONS(2762), - [sym_private_property_identifier] = ACTIONS(2762), - [sym_this] = ACTIONS(2764), - [sym_super] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_null] = ACTIONS(2764), - [sym_undefined] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_readonly] = ACTIONS(2764), - [anon_sym_get] = ACTIONS(2764), - [anon_sym_set] = ACTIONS(2764), - [anon_sym_declare] = ACTIONS(2764), - [anon_sym_public] = ACTIONS(2764), - [anon_sym_private] = ACTIONS(2764), - [anon_sym_protected] = ACTIONS(2764), - [anon_sym_override] = ACTIONS(2764), - [anon_sym_module] = ACTIONS(2764), - [anon_sym_any] = ACTIONS(2764), - [anon_sym_number] = ACTIONS(2764), - [anon_sym_boolean] = ACTIONS(2764), - [anon_sym_string] = ACTIONS(2764), - [anon_sym_symbol] = ACTIONS(2764), - [anon_sym_object] = ACTIONS(2764), - [anon_sym_abstract] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [sym_html_comment] = ACTIONS(5), - }, - [864] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2766), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [865] = { [ts_builtin_sym_end] = ACTIONS(2768), [sym_identifier] = ACTIONS(2770), [anon_sym_export] = ACTIONS(2770), @@ -114869,7 +114601,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2770), [sym_html_comment] = ACTIONS(5), }, - [866] = { + [862] = { + [ts_builtin_sym_end] = ACTIONS(2764), + [sym_identifier] = ACTIONS(2766), + [anon_sym_export] = ACTIONS(2766), + [anon_sym_default] = ACTIONS(2766), + [anon_sym_type] = ACTIONS(2766), + [anon_sym_namespace] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_typeof] = ACTIONS(2766), + [anon_sym_import] = ACTIONS(2766), + [anon_sym_with] = ACTIONS(2766), + [anon_sym_var] = ACTIONS(2766), + [anon_sym_let] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_else] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_switch] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_await] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_do] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_debugger] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_throw] = ACTIONS(2766), + [anon_sym_case] = ACTIONS(2766), + [anon_sym_yield] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_class] = ACTIONS(2766), + [anon_sym_async] = ACTIONS(2766), + [anon_sym_function] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(2766), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_SLASH] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_void] = ACTIONS(2766), + [anon_sym_delete] = ACTIONS(2766), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2764), + [sym_number] = ACTIONS(2764), + [sym_private_property_identifier] = ACTIONS(2764), + [sym_this] = ACTIONS(2766), + [sym_super] = ACTIONS(2766), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [sym_null] = ACTIONS(2766), + [sym_undefined] = ACTIONS(2766), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_readonly] = ACTIONS(2766), + [anon_sym_get] = ACTIONS(2766), + [anon_sym_set] = ACTIONS(2766), + [anon_sym_declare] = ACTIONS(2766), + [anon_sym_public] = ACTIONS(2766), + [anon_sym_private] = ACTIONS(2766), + [anon_sym_protected] = ACTIONS(2766), + [anon_sym_override] = ACTIONS(2766), + [anon_sym_module] = ACTIONS(2766), + [anon_sym_any] = ACTIONS(2766), + [anon_sym_number] = ACTIONS(2766), + [anon_sym_boolean] = ACTIONS(2766), + [anon_sym_string] = ACTIONS(2766), + [anon_sym_symbol] = ACTIONS(2766), + [anon_sym_object] = ACTIONS(2766), + [anon_sym_abstract] = ACTIONS(2766), + [anon_sym_interface] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), + [sym_html_comment] = ACTIONS(5), + }, + [863] = { + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_await] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_void] = ACTIONS(2516), + [anon_sym_delete] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2514), + [sym_number] = ACTIONS(2514), + [sym_private_property_identifier] = ACTIONS(2514), + [sym_this] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_null] = ACTIONS(2516), + [sym_undefined] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [sym_html_comment] = ACTIONS(5), + }, + [864] = { + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_namespace] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_with] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_await] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_class] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_using] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_void] = ACTIONS(2700), + [anon_sym_delete] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2698), + [sym_number] = ACTIONS(2698), + [sym_private_property_identifier] = ACTIONS(2698), + [sym_this] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_null] = ACTIONS(2700), + [sym_undefined] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_readonly] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_protected] = ACTIONS(2700), + [anon_sym_override] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2700), + [anon_sym_any] = ACTIONS(2700), + [anon_sym_number] = ACTIONS(2700), + [anon_sym_boolean] = ACTIONS(2700), + [anon_sym_string] = ACTIONS(2700), + [anon_sym_symbol] = ACTIONS(2700), + [anon_sym_object] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [sym_html_comment] = ACTIONS(5), + }, + [865] = { [ts_builtin_sym_end] = ACTIONS(2772), [sym_identifier] = ACTIONS(2774), [anon_sym_export] = ACTIONS(2774), @@ -114951,335 +114929,581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2774), [sym_html_comment] = ACTIONS(5), }, + [866] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, [867] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_export] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_typeof] = ACTIONS(2778), - [anon_sym_import] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2778), - [anon_sym_var] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_await] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_debugger] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_async] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_void] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2776), - [sym_number] = ACTIONS(2776), - [sym_private_property_identifier] = ACTIONS(2776), - [sym_this] = ACTIONS(2778), - [sym_super] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), - [sym_undefined] = ACTIONS(2778), - [anon_sym_AT] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_readonly] = ACTIONS(2778), - [anon_sym_get] = ACTIONS(2778), - [anon_sym_set] = ACTIONS(2778), - [anon_sym_declare] = ACTIONS(2778), - [anon_sym_public] = ACTIONS(2778), - [anon_sym_private] = ACTIONS(2778), - [anon_sym_protected] = ACTIONS(2778), - [anon_sym_override] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_any] = ACTIONS(2778), - [anon_sym_number] = ACTIONS(2778), - [anon_sym_boolean] = ACTIONS(2778), - [anon_sym_string] = ACTIONS(2778), - [anon_sym_symbol] = ACTIONS(2778), - [anon_sym_object] = ACTIONS(2778), - [anon_sym_abstract] = ACTIONS(2778), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_type] = ACTIONS(2780), + [anon_sym_namespace] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_import] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_var] = ACTIONS(2780), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_await] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_debugger] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_throw] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_class] = ACTIONS(2780), + [anon_sym_async] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(2780), + [anon_sym_using] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_void] = ACTIONS(2780), + [anon_sym_delete] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2778), + [sym_number] = ACTIONS(2778), + [sym_private_property_identifier] = ACTIONS(2778), + [sym_this] = ACTIONS(2780), + [sym_super] = ACTIONS(2780), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [sym_null] = ACTIONS(2780), + [sym_undefined] = ACTIONS(2780), + [anon_sym_AT] = ACTIONS(2778), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_readonly] = ACTIONS(2780), + [anon_sym_get] = ACTIONS(2780), + [anon_sym_set] = ACTIONS(2780), + [anon_sym_declare] = ACTIONS(2780), + [anon_sym_public] = ACTIONS(2780), + [anon_sym_private] = ACTIONS(2780), + [anon_sym_protected] = ACTIONS(2780), + [anon_sym_override] = ACTIONS(2780), + [anon_sym_module] = ACTIONS(2780), + [anon_sym_any] = ACTIONS(2780), + [anon_sym_number] = ACTIONS(2780), + [anon_sym_boolean] = ACTIONS(2780), + [anon_sym_string] = ACTIONS(2780), + [anon_sym_symbol] = ACTIONS(2780), + [anon_sym_object] = ACTIONS(2780), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_interface] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), [sym_html_comment] = ACTIONS(5), }, [868] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_type] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_typeof] = ACTIONS(2782), - [anon_sym_import] = ACTIONS(2782), - [anon_sym_with] = ACTIONS(2782), - [anon_sym_var] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_await] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_debugger] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_async] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_void] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2780), - [sym_number] = ACTIONS(2780), - [sym_private_property_identifier] = ACTIONS(2780), - [sym_this] = ACTIONS(2782), - [sym_super] = ACTIONS(2782), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_null] = ACTIONS(2782), - [sym_undefined] = ACTIONS(2782), - [anon_sym_AT] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_readonly] = ACTIONS(2782), - [anon_sym_get] = ACTIONS(2782), - [anon_sym_set] = ACTIONS(2782), - [anon_sym_declare] = ACTIONS(2782), - [anon_sym_public] = ACTIONS(2782), - [anon_sym_private] = ACTIONS(2782), - [anon_sym_protected] = ACTIONS(2782), - [anon_sym_override] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_any] = ACTIONS(2782), - [anon_sym_number] = ACTIONS(2782), - [anon_sym_boolean] = ACTIONS(2782), - [anon_sym_string] = ACTIONS(2782), - [anon_sym_symbol] = ACTIONS(2782), - [anon_sym_object] = ACTIONS(2782), - [anon_sym_abstract] = ACTIONS(2782), - [anon_sym_interface] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2784), + [anon_sym_export] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_namespace] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_import] = ACTIONS(2784), + [anon_sym_with] = ACTIONS(2784), + [anon_sym_var] = ACTIONS(2784), + [anon_sym_let] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_else] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_await] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_try] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_debugger] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_throw] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_class] = ACTIONS(2784), + [anon_sym_async] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2784), + [anon_sym_using] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_void] = ACTIONS(2784), + [anon_sym_delete] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2782), + [sym_number] = ACTIONS(2782), + [sym_private_property_identifier] = ACTIONS(2782), + [sym_this] = ACTIONS(2784), + [sym_super] = ACTIONS(2784), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [sym_null] = ACTIONS(2784), + [sym_undefined] = ACTIONS(2784), + [anon_sym_AT] = ACTIONS(2782), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_readonly] = ACTIONS(2784), + [anon_sym_get] = ACTIONS(2784), + [anon_sym_set] = ACTIONS(2784), + [anon_sym_declare] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_protected] = ACTIONS(2784), + [anon_sym_override] = ACTIONS(2784), + [anon_sym_module] = ACTIONS(2784), + [anon_sym_any] = ACTIONS(2784), + [anon_sym_number] = ACTIONS(2784), + [anon_sym_boolean] = ACTIONS(2784), + [anon_sym_string] = ACTIONS(2784), + [anon_sym_symbol] = ACTIONS(2784), + [anon_sym_object] = ACTIONS(2784), + [anon_sym_abstract] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), [sym_html_comment] = ACTIONS(5), }, [869] = { - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2786), - [anon_sym_export] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_typeof] = ACTIONS(2786), - [anon_sym_import] = ACTIONS(2786), - [anon_sym_with] = ACTIONS(2786), - [anon_sym_var] = ACTIONS(2786), - [anon_sym_let] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_await] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_debugger] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_async] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_void] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2784), - [sym_number] = ACTIONS(2784), - [sym_private_property_identifier] = ACTIONS(2784), - [sym_this] = ACTIONS(2786), - [sym_super] = ACTIONS(2786), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_null] = ACTIONS(2786), - [sym_undefined] = ACTIONS(2786), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_readonly] = ACTIONS(2786), - [anon_sym_get] = ACTIONS(2786), - [anon_sym_set] = ACTIONS(2786), - [anon_sym_declare] = ACTIONS(2786), - [anon_sym_public] = ACTIONS(2786), - [anon_sym_private] = ACTIONS(2786), - [anon_sym_protected] = ACTIONS(2786), - [anon_sym_override] = ACTIONS(2786), - [anon_sym_module] = ACTIONS(2786), - [anon_sym_any] = ACTIONS(2786), - [anon_sym_number] = ACTIONS(2786), - [anon_sym_boolean] = ACTIONS(2786), - [anon_sym_string] = ACTIONS(2786), - [anon_sym_symbol] = ACTIONS(2786), - [anon_sym_object] = ACTIONS(2786), - [anon_sym_abstract] = ACTIONS(2786), - [anon_sym_interface] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_export] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_namespace] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_typeof] = ACTIONS(2788), + [anon_sym_import] = ACTIONS(2788), + [anon_sym_with] = ACTIONS(2788), + [anon_sym_var] = ACTIONS(2788), + [anon_sym_let] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_await] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_try] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_debugger] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_throw] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_yield] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2788), + [anon_sym_async] = ACTIONS(2788), + [anon_sym_function] = ACTIONS(2788), + [anon_sym_new] = ACTIONS(2788), + [anon_sym_using] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_void] = ACTIONS(2788), + [anon_sym_delete] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2786), + [sym_number] = ACTIONS(2786), + [sym_private_property_identifier] = ACTIONS(2786), + [sym_this] = ACTIONS(2788), + [sym_super] = ACTIONS(2788), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [sym_null] = ACTIONS(2788), + [sym_undefined] = ACTIONS(2788), + [anon_sym_AT] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_get] = ACTIONS(2788), + [anon_sym_set] = ACTIONS(2788), + [anon_sym_declare] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2788), + [anon_sym_private] = ACTIONS(2788), + [anon_sym_protected] = ACTIONS(2788), + [anon_sym_override] = ACTIONS(2788), + [anon_sym_module] = ACTIONS(2788), + [anon_sym_any] = ACTIONS(2788), + [anon_sym_number] = ACTIONS(2788), + [anon_sym_boolean] = ACTIONS(2788), + [anon_sym_string] = ACTIONS(2788), + [anon_sym_symbol] = ACTIONS(2788), + [anon_sym_object] = ACTIONS(2788), + [anon_sym_abstract] = ACTIONS(2788), + [anon_sym_interface] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), [sym_html_comment] = ACTIONS(5), }, [870] = { - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [anon_sym_export] = ACTIONS(2790), - [anon_sym_default] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_typeof] = ACTIONS(2790), - [anon_sym_import] = ACTIONS(2790), - [anon_sym_with] = ACTIONS(2790), - [anon_sym_var] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_else] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_await] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_debugger] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_throw] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2790), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_class] = ACTIONS(2790), - [anon_sym_async] = ACTIONS(2790), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_void] = ACTIONS(2790), - [anon_sym_delete] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2788), - [sym_number] = ACTIONS(2788), - [sym_private_property_identifier] = ACTIONS(2788), - [sym_this] = ACTIONS(2790), - [sym_super] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_null] = ACTIONS(2790), - [sym_undefined] = ACTIONS(2790), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_readonly] = ACTIONS(2790), - [anon_sym_get] = ACTIONS(2790), - [anon_sym_set] = ACTIONS(2790), - [anon_sym_declare] = ACTIONS(2790), - [anon_sym_public] = ACTIONS(2790), - [anon_sym_private] = ACTIONS(2790), - [anon_sym_protected] = ACTIONS(2790), - [anon_sym_override] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2790), - [anon_sym_any] = ACTIONS(2790), - [anon_sym_number] = ACTIONS(2790), - [anon_sym_boolean] = ACTIONS(2790), - [anon_sym_string] = ACTIONS(2790), - [anon_sym_symbol] = ACTIONS(2790), - [anon_sym_object] = ACTIONS(2790), - [anon_sym_abstract] = ACTIONS(2790), - [anon_sym_interface] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_type] = ACTIONS(2780), + [anon_sym_namespace] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_import] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_var] = ACTIONS(2780), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_await] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_debugger] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_throw] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_class] = ACTIONS(2780), + [anon_sym_async] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(2780), + [anon_sym_using] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_void] = ACTIONS(2780), + [anon_sym_delete] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2778), + [sym_number] = ACTIONS(2778), + [sym_private_property_identifier] = ACTIONS(2778), + [sym_this] = ACTIONS(2780), + [sym_super] = ACTIONS(2780), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [sym_null] = ACTIONS(2780), + [sym_undefined] = ACTIONS(2780), + [anon_sym_AT] = ACTIONS(2778), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_readonly] = ACTIONS(2780), + [anon_sym_get] = ACTIONS(2780), + [anon_sym_set] = ACTIONS(2780), + [anon_sym_declare] = ACTIONS(2780), + [anon_sym_public] = ACTIONS(2780), + [anon_sym_private] = ACTIONS(2780), + [anon_sym_protected] = ACTIONS(2780), + [anon_sym_override] = ACTIONS(2780), + [anon_sym_module] = ACTIONS(2780), + [anon_sym_any] = ACTIONS(2780), + [anon_sym_number] = ACTIONS(2780), + [anon_sym_boolean] = ACTIONS(2780), + [anon_sym_string] = ACTIONS(2780), + [anon_sym_symbol] = ACTIONS(2780), + [anon_sym_object] = ACTIONS(2780), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_interface] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), [sym_html_comment] = ACTIONS(5), }, [871] = { + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_type] = ACTIONS(2780), + [anon_sym_namespace] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_import] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_var] = ACTIONS(2780), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_await] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_debugger] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_throw] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_class] = ACTIONS(2780), + [anon_sym_async] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(2780), + [anon_sym_using] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_void] = ACTIONS(2780), + [anon_sym_delete] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2778), + [sym_number] = ACTIONS(2778), + [sym_private_property_identifier] = ACTIONS(2778), + [sym_this] = ACTIONS(2780), + [sym_super] = ACTIONS(2780), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [sym_null] = ACTIONS(2780), + [sym_undefined] = ACTIONS(2780), + [anon_sym_AT] = ACTIONS(2778), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_readonly] = ACTIONS(2780), + [anon_sym_get] = ACTIONS(2780), + [anon_sym_set] = ACTIONS(2780), + [anon_sym_declare] = ACTIONS(2780), + [anon_sym_public] = ACTIONS(2780), + [anon_sym_private] = ACTIONS(2780), + [anon_sym_protected] = ACTIONS(2780), + [anon_sym_override] = ACTIONS(2780), + [anon_sym_module] = ACTIONS(2780), + [anon_sym_any] = ACTIONS(2780), + [anon_sym_number] = ACTIONS(2780), + [anon_sym_boolean] = ACTIONS(2780), + [anon_sym_string] = ACTIONS(2780), + [anon_sym_symbol] = ACTIONS(2780), + [anon_sym_object] = ACTIONS(2780), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_interface] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [sym_html_comment] = ACTIONS(5), + }, + [872] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [873] = { [ts_builtin_sym_end] = ACTIONS(2792), [sym_identifier] = ACTIONS(2794), [anon_sym_export] = ACTIONS(2794), @@ -115361,7 +115585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2794), [sym_html_comment] = ACTIONS(5), }, - [872] = { + [874] = { [ts_builtin_sym_end] = ACTIONS(2796), [sym_identifier] = ACTIONS(2798), [anon_sym_export] = ACTIONS(2798), @@ -115443,7 +115667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2798), [sym_html_comment] = ACTIONS(5), }, - [873] = { + [875] = { [ts_builtin_sym_end] = ACTIONS(2800), [sym_identifier] = ACTIONS(2802), [anon_sym_export] = ACTIONS(2802), @@ -115525,89 +115749,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2802), [sym_html_comment] = ACTIONS(5), }, - [874] = { - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_typeof] = ACTIONS(2806), - [anon_sym_import] = ACTIONS(2806), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_var] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_else] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_await] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_debugger] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2804), - [sym_number] = ACTIONS(2804), - [sym_private_property_identifier] = ACTIONS(2804), - [sym_this] = ACTIONS(2806), - [sym_super] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_undefined] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_readonly] = ACTIONS(2806), - [anon_sym_get] = ACTIONS(2806), - [anon_sym_set] = ACTIONS(2806), - [anon_sym_declare] = ACTIONS(2806), - [anon_sym_public] = ACTIONS(2806), - [anon_sym_private] = ACTIONS(2806), - [anon_sym_protected] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_any] = ACTIONS(2806), - [anon_sym_number] = ACTIONS(2806), - [anon_sym_boolean] = ACTIONS(2806), - [anon_sym_string] = ACTIONS(2806), - [anon_sym_symbol] = ACTIONS(2806), - [anon_sym_object] = ACTIONS(2806), - [anon_sym_abstract] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), + [876] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [875] = { + [877] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [878] = { [ts_builtin_sym_end] = ACTIONS(2808), [sym_identifier] = ACTIONS(2810), [anon_sym_export] = ACTIONS(2810), @@ -115689,7 +115995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2810), [sym_html_comment] = ACTIONS(5), }, - [876] = { + [879] = { [ts_builtin_sym_end] = ACTIONS(2812), [sym_identifier] = ACTIONS(2814), [anon_sym_export] = ACTIONS(2814), @@ -115771,7 +116077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2814), [sym_html_comment] = ACTIONS(5), }, - [877] = { + [880] = { [ts_builtin_sym_end] = ACTIONS(2816), [sym_identifier] = ACTIONS(2818), [anon_sym_export] = ACTIONS(2818), @@ -115853,417 +116159,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2818), [sym_html_comment] = ACTIONS(5), }, - [878] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_export] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_typeof] = ACTIONS(2822), - [anon_sym_import] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_var] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_await] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_debugger] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_throw] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2822), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2822), - [anon_sym_async] = ACTIONS(2822), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_void] = ACTIONS(2822), - [anon_sym_delete] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2820), - [sym_number] = ACTIONS(2820), - [sym_private_property_identifier] = ACTIONS(2820), - [sym_this] = ACTIONS(2822), - [sym_super] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_null] = ACTIONS(2822), - [sym_undefined] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_get] = ACTIONS(2822), - [anon_sym_set] = ACTIONS(2822), - [anon_sym_declare] = ACTIONS(2822), - [anon_sym_public] = ACTIONS(2822), - [anon_sym_private] = ACTIONS(2822), - [anon_sym_protected] = ACTIONS(2822), - [anon_sym_override] = ACTIONS(2822), - [anon_sym_module] = ACTIONS(2822), - [anon_sym_any] = ACTIONS(2822), - [anon_sym_number] = ACTIONS(2822), - [anon_sym_boolean] = ACTIONS(2822), - [anon_sym_string] = ACTIONS(2822), - [anon_sym_symbol] = ACTIONS(2822), - [anon_sym_object] = ACTIONS(2822), - [anon_sym_abstract] = ACTIONS(2822), - [anon_sym_interface] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), + [881] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), + [882] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2824), + [anon_sym_export] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_import] = ACTIONS(2824), + [anon_sym_with] = ACTIONS(2824), + [anon_sym_var] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_await] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_debugger] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_yield] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(2824), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_void] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2822), + [sym_number] = ACTIONS(2822), + [sym_private_property_identifier] = ACTIONS(2822), + [sym_this] = ACTIONS(2824), + [sym_super] = ACTIONS(2824), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [sym_null] = ACTIONS(2824), + [sym_undefined] = ACTIONS(2824), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_readonly] = ACTIONS(2824), + [anon_sym_get] = ACTIONS(2824), + [anon_sym_set] = ACTIONS(2824), + [anon_sym_declare] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_private] = ACTIONS(2824), + [anon_sym_protected] = ACTIONS(2824), + [anon_sym_override] = ACTIONS(2824), + [anon_sym_module] = ACTIONS(2824), + [anon_sym_any] = ACTIONS(2824), + [anon_sym_number] = ACTIONS(2824), + [anon_sym_boolean] = ACTIONS(2824), + [anon_sym_string] = ACTIONS(2824), + [anon_sym_symbol] = ACTIONS(2824), + [anon_sym_object] = ACTIONS(2824), + [anon_sym_abstract] = ACTIONS(2824), + [anon_sym_interface] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), [sym_html_comment] = ACTIONS(5), }, - [880] = { - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2826), - [anon_sym_export] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_typeof] = ACTIONS(2826), - [anon_sym_import] = ACTIONS(2826), - [anon_sym_with] = ACTIONS(2826), - [anon_sym_var] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_else] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_await] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_debugger] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_async] = ACTIONS(2826), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_void] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2824), - [sym_number] = ACTIONS(2824), - [sym_private_property_identifier] = ACTIONS(2824), - [sym_this] = ACTIONS(2826), - [sym_super] = ACTIONS(2826), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_null] = ACTIONS(2826), - [sym_undefined] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_readonly] = ACTIONS(2826), - [anon_sym_get] = ACTIONS(2826), - [anon_sym_set] = ACTIONS(2826), - [anon_sym_declare] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_protected] = ACTIONS(2826), - [anon_sym_override] = ACTIONS(2826), - [anon_sym_module] = ACTIONS(2826), - [anon_sym_any] = ACTIONS(2826), - [anon_sym_number] = ACTIONS(2826), - [anon_sym_boolean] = ACTIONS(2826), - [anon_sym_string] = ACTIONS(2826), - [anon_sym_symbol] = ACTIONS(2826), - [anon_sym_object] = ACTIONS(2826), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_interface] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), + [883] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), [sym_html_comment] = ACTIONS(5), }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_typeof] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2830), - [anon_sym_with] = ACTIONS(2830), - [anon_sym_var] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_else] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_await] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_debugger] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_throw] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_void] = ACTIONS(2830), - [anon_sym_delete] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2828), - [sym_number] = ACTIONS(2828), - [sym_private_property_identifier] = ACTIONS(2828), - [sym_this] = ACTIONS(2830), - [sym_super] = ACTIONS(2830), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_null] = ACTIONS(2830), - [sym_undefined] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_readonly] = ACTIONS(2830), - [anon_sym_get] = ACTIONS(2830), - [anon_sym_set] = ACTIONS(2830), - [anon_sym_declare] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_protected] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_module] = ACTIONS(2830), - [anon_sym_any] = ACTIONS(2830), - [anon_sym_number] = ACTIONS(2830), - [anon_sym_boolean] = ACTIONS(2830), - [anon_sym_string] = ACTIONS(2830), - [anon_sym_symbol] = ACTIONS(2830), - [anon_sym_object] = ACTIONS(2830), - [anon_sym_abstract] = ACTIONS(2830), - [anon_sym_interface] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), + [884] = { + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2832), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2832), + [anon_sym_namespace] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_typeof] = ACTIONS(2832), + [anon_sym_import] = ACTIONS(2832), + [anon_sym_with] = ACTIONS(2832), + [anon_sym_var] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_await] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_debugger] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_throw] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_yield] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2832), + [anon_sym_async] = ACTIONS(2832), + [anon_sym_function] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2832), + [anon_sym_using] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_void] = ACTIONS(2832), + [anon_sym_delete] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2830), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [sym_this] = ACTIONS(2832), + [sym_super] = ACTIONS(2832), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [sym_null] = ACTIONS(2832), + [sym_undefined] = ACTIONS(2832), + [anon_sym_AT] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_get] = ACTIONS(2832), + [anon_sym_set] = ACTIONS(2832), + [anon_sym_declare] = ACTIONS(2832), + [anon_sym_public] = ACTIONS(2832), + [anon_sym_private] = ACTIONS(2832), + [anon_sym_protected] = ACTIONS(2832), + [anon_sym_override] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_any] = ACTIONS(2832), + [anon_sym_number] = ACTIONS(2832), + [anon_sym_boolean] = ACTIONS(2832), + [anon_sym_string] = ACTIONS(2832), + [anon_sym_symbol] = ACTIONS(2832), + [anon_sym_object] = ACTIONS(2832), + [anon_sym_abstract] = ACTIONS(2832), + [anon_sym_interface] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), [sym_html_comment] = ACTIONS(5), }, - [882] = { - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2834), - [anon_sym_export] = ACTIONS(2834), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_typeof] = ACTIONS(2834), - [anon_sym_import] = ACTIONS(2834), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_var] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_else] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_await] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_debugger] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_throw] = ACTIONS(2834), - [anon_sym_case] = ACTIONS(2834), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_async] = ACTIONS(2834), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_void] = ACTIONS(2834), - [anon_sym_delete] = ACTIONS(2834), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2832), - [sym_number] = ACTIONS(2832), - [sym_private_property_identifier] = ACTIONS(2832), - [sym_this] = ACTIONS(2834), - [sym_super] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_null] = ACTIONS(2834), - [sym_undefined] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2834), - [anon_sym_readonly] = ACTIONS(2834), - [anon_sym_get] = ACTIONS(2834), - [anon_sym_set] = ACTIONS(2834), - [anon_sym_declare] = ACTIONS(2834), - [anon_sym_public] = ACTIONS(2834), - [anon_sym_private] = ACTIONS(2834), - [anon_sym_protected] = ACTIONS(2834), - [anon_sym_override] = ACTIONS(2834), - [anon_sym_module] = ACTIONS(2834), - [anon_sym_any] = ACTIONS(2834), - [anon_sym_number] = ACTIONS(2834), - [anon_sym_boolean] = ACTIONS(2834), - [anon_sym_string] = ACTIONS(2834), - [anon_sym_symbol] = ACTIONS(2834), - [anon_sym_object] = ACTIONS(2834), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_interface] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), + [885] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [883] = { + [886] = { [ts_builtin_sym_end] = ACTIONS(2836), [sym_identifier] = ACTIONS(2838), [anon_sym_export] = ACTIONS(2838), @@ -116345,7 +116651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2838), [sym_html_comment] = ACTIONS(5), }, - [884] = { + [887] = { [ts_builtin_sym_end] = ACTIONS(2840), [sym_identifier] = ACTIONS(2842), [anon_sym_export] = ACTIONS(2842), @@ -116427,7 +116733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2842), [sym_html_comment] = ACTIONS(5), }, - [885] = { + [888] = { [ts_builtin_sym_end] = ACTIONS(2844), [sym_identifier] = ACTIONS(2846), [anon_sym_export] = ACTIONS(2846), @@ -116509,7 +116815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2846), [sym_html_comment] = ACTIONS(5), }, - [886] = { + [889] = { [ts_builtin_sym_end] = ACTIONS(2848), [sym_identifier] = ACTIONS(2850), [anon_sym_export] = ACTIONS(2850), @@ -116591,7 +116897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2850), [sym_html_comment] = ACTIONS(5), }, - [887] = { + [890] = { [ts_builtin_sym_end] = ACTIONS(2852), [sym_identifier] = ACTIONS(2854), [anon_sym_export] = ACTIONS(2854), @@ -116673,1565 +116979,1565 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2854), [sym_html_comment] = ACTIONS(5), }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_export] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_namespace] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_typeof] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_var] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_await] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_debugger] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_throw] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_class] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_using] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_void] = ACTIONS(2858), - [anon_sym_delete] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2856), - [sym_number] = ACTIONS(2856), - [sym_private_property_identifier] = ACTIONS(2856), - [sym_this] = ACTIONS(2858), - [sym_super] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_null] = ACTIONS(2858), - [sym_undefined] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_readonly] = ACTIONS(2858), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_declare] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_private] = ACTIONS(2858), - [anon_sym_protected] = ACTIONS(2858), - [anon_sym_override] = ACTIONS(2858), - [anon_sym_module] = ACTIONS(2858), - [anon_sym_any] = ACTIONS(2858), - [anon_sym_number] = ACTIONS(2858), - [anon_sym_boolean] = ACTIONS(2858), - [anon_sym_string] = ACTIONS(2858), - [anon_sym_symbol] = ACTIONS(2858), - [anon_sym_object] = ACTIONS(2858), - [anon_sym_abstract] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), - [sym_html_comment] = ACTIONS(5), - }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_export] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_namespace] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_typeof] = ACTIONS(2862), - [anon_sym_import] = ACTIONS(2862), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_var] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_else] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_await] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_debugger] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_throw] = ACTIONS(2862), - [anon_sym_case] = ACTIONS(2862), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_class] = ACTIONS(2862), - [anon_sym_async] = ACTIONS(2862), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_using] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_void] = ACTIONS(2862), - [anon_sym_delete] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2860), - [sym_number] = ACTIONS(2860), - [sym_private_property_identifier] = ACTIONS(2860), - [sym_this] = ACTIONS(2862), - [sym_super] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_null] = ACTIONS(2862), - [sym_undefined] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_readonly] = ACTIONS(2862), - [anon_sym_get] = ACTIONS(2862), - [anon_sym_set] = ACTIONS(2862), - [anon_sym_declare] = ACTIONS(2862), - [anon_sym_public] = ACTIONS(2862), - [anon_sym_private] = ACTIONS(2862), - [anon_sym_protected] = ACTIONS(2862), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2862), - [anon_sym_any] = ACTIONS(2862), - [anon_sym_number] = ACTIONS(2862), - [anon_sym_boolean] = ACTIONS(2862), - [anon_sym_string] = ACTIONS(2862), - [anon_sym_symbol] = ACTIONS(2862), - [anon_sym_object] = ACTIONS(2862), - [anon_sym_abstract] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), - [sym_html_comment] = ACTIONS(5), - }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_export] = ACTIONS(2866), - [anon_sym_default] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_namespace] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_typeof] = ACTIONS(2866), - [anon_sym_import] = ACTIONS(2866), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_var] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_const] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_else] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_switch] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2864), - [anon_sym_await] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_debugger] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_throw] = ACTIONS(2866), - [anon_sym_case] = ACTIONS(2866), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_class] = ACTIONS(2866), - [anon_sym_async] = ACTIONS(2866), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_using] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_void] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2864), - [sym_number] = ACTIONS(2864), - [sym_private_property_identifier] = ACTIONS(2864), - [sym_this] = ACTIONS(2866), - [sym_super] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), - [sym_null] = ACTIONS(2866), - [sym_undefined] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2866), - [anon_sym_readonly] = ACTIONS(2866), - [anon_sym_get] = ACTIONS(2866), - [anon_sym_set] = ACTIONS(2866), - [anon_sym_declare] = ACTIONS(2866), - [anon_sym_public] = ACTIONS(2866), - [anon_sym_private] = ACTIONS(2866), - [anon_sym_protected] = ACTIONS(2866), - [anon_sym_override] = ACTIONS(2866), - [anon_sym_module] = ACTIONS(2866), - [anon_sym_any] = ACTIONS(2866), - [anon_sym_number] = ACTIONS(2866), - [anon_sym_boolean] = ACTIONS(2866), - [anon_sym_string] = ACTIONS(2866), - [anon_sym_symbol] = ACTIONS(2866), - [anon_sym_object] = ACTIONS(2866), - [anon_sym_abstract] = ACTIONS(2866), - [anon_sym_interface] = ACTIONS(2866), - [anon_sym_enum] = ACTIONS(2866), - [sym_html_comment] = ACTIONS(5), - }, [891] = { - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_export] = ACTIONS(2870), - [anon_sym_default] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_namespace] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_typeof] = ACTIONS(2870), - [anon_sym_import] = ACTIONS(2870), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_var] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_else] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_switch] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_await] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_debugger] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_throw] = ACTIONS(2870), - [anon_sym_case] = ACTIONS(2870), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_class] = ACTIONS(2870), - [anon_sym_async] = ACTIONS(2870), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_void] = ACTIONS(2870), - [anon_sym_delete] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2868), - [sym_number] = ACTIONS(2868), - [sym_private_property_identifier] = ACTIONS(2868), - [sym_this] = ACTIONS(2870), - [sym_super] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_null] = ACTIONS(2870), - [sym_undefined] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_get] = ACTIONS(2870), - [anon_sym_set] = ACTIONS(2870), - [anon_sym_declare] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2870), - [anon_sym_private] = ACTIONS(2870), - [anon_sym_protected] = ACTIONS(2870), - [anon_sym_override] = ACTIONS(2870), - [anon_sym_module] = ACTIONS(2870), - [anon_sym_any] = ACTIONS(2870), - [anon_sym_number] = ACTIONS(2870), - [anon_sym_boolean] = ACTIONS(2870), - [anon_sym_string] = ACTIONS(2870), - [anon_sym_symbol] = ACTIONS(2870), - [anon_sym_object] = ACTIONS(2870), - [anon_sym_abstract] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [892] = { - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_default] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_namespace] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_typeof] = ACTIONS(2874), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_else] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_switch] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_await] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_debugger] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_throw] = ACTIONS(2874), - [anon_sym_case] = ACTIONS(2874), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_DQUOTE] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_class] = ACTIONS(2874), - [anon_sym_async] = ACTIONS(2874), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_void] = ACTIONS(2874), - [anon_sym_delete] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2872), - [sym_number] = ACTIONS(2872), - [sym_private_property_identifier] = ACTIONS(2872), - [sym_this] = ACTIONS(2874), - [sym_super] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_null] = ACTIONS(2874), - [sym_undefined] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_readonly] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2874), - [anon_sym_set] = ACTIONS(2874), - [anon_sym_declare] = ACTIONS(2874), - [anon_sym_public] = ACTIONS(2874), - [anon_sym_private] = ACTIONS(2874), - [anon_sym_protected] = ACTIONS(2874), - [anon_sym_override] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_any] = ACTIONS(2874), - [anon_sym_number] = ACTIONS(2874), - [anon_sym_boolean] = ACTIONS(2874), - [anon_sym_string] = ACTIONS(2874), - [anon_sym_symbol] = ACTIONS(2874), - [anon_sym_object] = ACTIONS(2874), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2860), + [anon_sym_export] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_import] = ACTIONS(2860), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_var] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_await] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_debugger] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_async] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_SLASH] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_void] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2858), + [sym_number] = ACTIONS(2858), + [sym_private_property_identifier] = ACTIONS(2858), + [sym_this] = ACTIONS(2860), + [sym_super] = ACTIONS(2860), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_undefined] = ACTIONS(2860), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_readonly] = ACTIONS(2860), + [anon_sym_get] = ACTIONS(2860), + [anon_sym_set] = ACTIONS(2860), + [anon_sym_declare] = ACTIONS(2860), + [anon_sym_public] = ACTIONS(2860), + [anon_sym_private] = ACTIONS(2860), + [anon_sym_protected] = ACTIONS(2860), + [anon_sym_override] = ACTIONS(2860), + [anon_sym_module] = ACTIONS(2860), + [anon_sym_any] = ACTIONS(2860), + [anon_sym_number] = ACTIONS(2860), + [anon_sym_boolean] = ACTIONS(2860), + [anon_sym_string] = ACTIONS(2860), + [anon_sym_symbol] = ACTIONS(2860), + [anon_sym_object] = ACTIONS(2860), + [anon_sym_abstract] = ACTIONS(2860), + [anon_sym_interface] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), [sym_html_comment] = ACTIONS(5), }, [893] = { - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_export] = ACTIONS(2878), - [anon_sym_default] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_namespace] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_typeof] = ACTIONS(2878), - [anon_sym_import] = ACTIONS(2878), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_var] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_switch] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_await] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_debugger] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_throw] = ACTIONS(2878), - [anon_sym_case] = ACTIONS(2878), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2878), - [anon_sym_async] = ACTIONS(2878), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_void] = ACTIONS(2878), - [anon_sym_delete] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2876), - [sym_number] = ACTIONS(2876), - [sym_private_property_identifier] = ACTIONS(2876), - [sym_this] = ACTIONS(2878), - [sym_super] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_null] = ACTIONS(2878), - [sym_undefined] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_readonly] = ACTIONS(2878), - [anon_sym_get] = ACTIONS(2878), - [anon_sym_set] = ACTIONS(2878), - [anon_sym_declare] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [anon_sym_override] = ACTIONS(2878), - [anon_sym_module] = ACTIONS(2878), - [anon_sym_any] = ACTIONS(2878), - [anon_sym_number] = ACTIONS(2878), - [anon_sym_boolean] = ACTIONS(2878), - [anon_sym_string] = ACTIONS(2878), - [anon_sym_symbol] = ACTIONS(2878), - [anon_sym_object] = ACTIONS(2878), - [anon_sym_abstract] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2864), + [anon_sym_export] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_import] = ACTIONS(2864), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_var] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_await] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_debugger] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_SLASH] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_void] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2862), + [sym_number] = ACTIONS(2862), + [sym_private_property_identifier] = ACTIONS(2862), + [sym_this] = ACTIONS(2864), + [sym_super] = ACTIONS(2864), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [sym_null] = ACTIONS(2864), + [sym_undefined] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_readonly] = ACTIONS(2864), + [anon_sym_get] = ACTIONS(2864), + [anon_sym_set] = ACTIONS(2864), + [anon_sym_declare] = ACTIONS(2864), + [anon_sym_public] = ACTIONS(2864), + [anon_sym_private] = ACTIONS(2864), + [anon_sym_protected] = ACTIONS(2864), + [anon_sym_override] = ACTIONS(2864), + [anon_sym_module] = ACTIONS(2864), + [anon_sym_any] = ACTIONS(2864), + [anon_sym_number] = ACTIONS(2864), + [anon_sym_boolean] = ACTIONS(2864), + [anon_sym_string] = ACTIONS(2864), + [anon_sym_symbol] = ACTIONS(2864), + [anon_sym_object] = ACTIONS(2864), + [anon_sym_abstract] = ACTIONS(2864), + [anon_sym_interface] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), [sym_html_comment] = ACTIONS(5), }, [894] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_export] = ACTIONS(2882), - [anon_sym_default] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_namespace] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_typeof] = ACTIONS(2882), - [anon_sym_import] = ACTIONS(2882), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_var] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_else] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_switch] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_await] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_debugger] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_throw] = ACTIONS(2882), - [anon_sym_case] = ACTIONS(2882), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_DQUOTE] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2882), - [anon_sym_async] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_void] = ACTIONS(2882), - [anon_sym_delete] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2880), - [sym_number] = ACTIONS(2880), - [sym_private_property_identifier] = ACTIONS(2880), - [sym_this] = ACTIONS(2882), - [sym_super] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_null] = ACTIONS(2882), - [sym_undefined] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_readonly] = ACTIONS(2882), - [anon_sym_get] = ACTIONS(2882), - [anon_sym_set] = ACTIONS(2882), - [anon_sym_declare] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_protected] = ACTIONS(2882), - [anon_sym_override] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2882), - [anon_sym_any] = ACTIONS(2882), - [anon_sym_number] = ACTIONS(2882), - [anon_sym_boolean] = ACTIONS(2882), - [anon_sym_string] = ACTIONS(2882), - [anon_sym_symbol] = ACTIONS(2882), - [anon_sym_object] = ACTIONS(2882), - [anon_sym_abstract] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_await] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_debugger] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_void] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2866), + [sym_number] = ACTIONS(2866), + [sym_private_property_identifier] = ACTIONS(2866), + [sym_this] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_undefined] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_readonly] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_protected] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_any] = ACTIONS(2868), + [anon_sym_number] = ACTIONS(2868), + [anon_sym_boolean] = ACTIONS(2868), + [anon_sym_string] = ACTIONS(2868), + [anon_sym_symbol] = ACTIONS(2868), + [anon_sym_object] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), [sym_html_comment] = ACTIONS(5), }, [895] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_export] = ACTIONS(2886), - [anon_sym_default] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_namespace] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_typeof] = ACTIONS(2886), - [anon_sym_import] = ACTIONS(2886), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_var] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_else] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_switch] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_await] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_debugger] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_throw] = ACTIONS(2886), - [anon_sym_case] = ACTIONS(2886), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_DQUOTE] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2886), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_using] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_void] = ACTIONS(2886), - [anon_sym_delete] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2884), - [sym_number] = ACTIONS(2884), - [sym_private_property_identifier] = ACTIONS(2884), - [sym_this] = ACTIONS(2886), - [sym_super] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_null] = ACTIONS(2886), - [sym_undefined] = ACTIONS(2886), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_readonly] = ACTIONS(2886), - [anon_sym_get] = ACTIONS(2886), - [anon_sym_set] = ACTIONS(2886), - [anon_sym_declare] = ACTIONS(2886), - [anon_sym_public] = ACTIONS(2886), - [anon_sym_private] = ACTIONS(2886), - [anon_sym_protected] = ACTIONS(2886), - [anon_sym_override] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2886), - [anon_sym_any] = ACTIONS(2886), - [anon_sym_number] = ACTIONS(2886), - [anon_sym_boolean] = ACTIONS(2886), - [anon_sym_string] = ACTIONS(2886), - [anon_sym_symbol] = ACTIONS(2886), - [anon_sym_object] = ACTIONS(2886), - [anon_sym_abstract] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2872), + [anon_sym_export] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_type] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2872), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_var] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_await] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_debugger] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_async] = ACTIONS(2872), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_SLASH] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2870), + [sym_number] = ACTIONS(2870), + [sym_private_property_identifier] = ACTIONS(2870), + [sym_this] = ACTIONS(2872), + [sym_super] = ACTIONS(2872), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [sym_null] = ACTIONS(2872), + [sym_undefined] = ACTIONS(2872), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_readonly] = ACTIONS(2872), + [anon_sym_get] = ACTIONS(2872), + [anon_sym_set] = ACTIONS(2872), + [anon_sym_declare] = ACTIONS(2872), + [anon_sym_public] = ACTIONS(2872), + [anon_sym_private] = ACTIONS(2872), + [anon_sym_protected] = ACTIONS(2872), + [anon_sym_override] = ACTIONS(2872), + [anon_sym_module] = ACTIONS(2872), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_interface] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), [sym_html_comment] = ACTIONS(5), }, [896] = { - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_typeof] = ACTIONS(2890), - [anon_sym_import] = ACTIONS(2890), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_var] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_else] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_await] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_debugger] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_throw] = ACTIONS(2890), - [anon_sym_case] = ACTIONS(2890), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_DQUOTE] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_class] = ACTIONS(2890), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_using] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_void] = ACTIONS(2890), - [anon_sym_delete] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2888), - [sym_number] = ACTIONS(2888), - [sym_private_property_identifier] = ACTIONS(2888), - [sym_this] = ACTIONS(2890), - [sym_super] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_null] = ACTIONS(2890), - [sym_undefined] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2890), - [anon_sym_set] = ACTIONS(2890), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_override] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [anon_sym_object] = ACTIONS(2890), - [anon_sym_abstract] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_export] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_typeof] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2876), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_await] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_debugger] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_async] = ACTIONS(2876), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_SLASH] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_void] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2874), + [sym_private_property_identifier] = ACTIONS(2874), + [sym_this] = ACTIONS(2876), + [sym_super] = ACTIONS(2876), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_undefined] = ACTIONS(2876), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_readonly] = ACTIONS(2876), + [anon_sym_get] = ACTIONS(2876), + [anon_sym_set] = ACTIONS(2876), + [anon_sym_declare] = ACTIONS(2876), + [anon_sym_public] = ACTIONS(2876), + [anon_sym_private] = ACTIONS(2876), + [anon_sym_protected] = ACTIONS(2876), + [anon_sym_override] = ACTIONS(2876), + [anon_sym_module] = ACTIONS(2876), + [anon_sym_any] = ACTIONS(2876), + [anon_sym_number] = ACTIONS(2876), + [anon_sym_boolean] = ACTIONS(2876), + [anon_sym_string] = ACTIONS(2876), + [anon_sym_symbol] = ACTIONS(2876), + [anon_sym_object] = ACTIONS(2876), + [anon_sym_abstract] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), [sym_html_comment] = ACTIONS(5), }, [897] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_export] = ACTIONS(2894), - [anon_sym_default] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_namespace] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_typeof] = ACTIONS(2894), - [anon_sym_import] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_var] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_switch] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_await] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_debugger] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_throw] = ACTIONS(2894), - [anon_sym_case] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_async] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_using] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_void] = ACTIONS(2894), - [anon_sym_delete] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2892), - [sym_number] = ACTIONS(2892), - [sym_private_property_identifier] = ACTIONS(2892), - [sym_this] = ACTIONS(2894), - [sym_super] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_null] = ACTIONS(2894), - [sym_undefined] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_readonly] = ACTIONS(2894), - [anon_sym_get] = ACTIONS(2894), - [anon_sym_set] = ACTIONS(2894), - [anon_sym_declare] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_protected] = ACTIONS(2894), - [anon_sym_override] = ACTIONS(2894), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_any] = ACTIONS(2894), - [anon_sym_number] = ACTIONS(2894), - [anon_sym_boolean] = ACTIONS(2894), - [anon_sym_string] = ACTIONS(2894), - [anon_sym_symbol] = ACTIONS(2894), - [anon_sym_object] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_export] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_typeof] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2876), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_await] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_debugger] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_async] = ACTIONS(2876), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_SLASH] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_void] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2874), + [sym_private_property_identifier] = ACTIONS(2874), + [sym_this] = ACTIONS(2876), + [sym_super] = ACTIONS(2876), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_undefined] = ACTIONS(2876), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_readonly] = ACTIONS(2876), + [anon_sym_get] = ACTIONS(2876), + [anon_sym_set] = ACTIONS(2876), + [anon_sym_declare] = ACTIONS(2876), + [anon_sym_public] = ACTIONS(2876), + [anon_sym_private] = ACTIONS(2876), + [anon_sym_protected] = ACTIONS(2876), + [anon_sym_override] = ACTIONS(2876), + [anon_sym_module] = ACTIONS(2876), + [anon_sym_any] = ACTIONS(2876), + [anon_sym_number] = ACTIONS(2876), + [anon_sym_boolean] = ACTIONS(2876), + [anon_sym_string] = ACTIONS(2876), + [anon_sym_symbol] = ACTIONS(2876), + [anon_sym_object] = ACTIONS(2876), + [anon_sym_abstract] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), [sym_html_comment] = ACTIONS(5), }, [898] = { - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_export] = ACTIONS(2898), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_namespace] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_typeof] = ACTIONS(2898), - [anon_sym_import] = ACTIONS(2898), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_var] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_else] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_switch] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_await] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_debugger] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_throw] = ACTIONS(2898), - [anon_sym_case] = ACTIONS(2898), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_async] = ACTIONS(2898), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_void] = ACTIONS(2898), - [anon_sym_delete] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2896), - [sym_number] = ACTIONS(2896), - [sym_private_property_identifier] = ACTIONS(2896), - [sym_this] = ACTIONS(2898), - [sym_super] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_null] = ACTIONS(2898), - [sym_undefined] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_readonly] = ACTIONS(2898), - [anon_sym_get] = ACTIONS(2898), - [anon_sym_set] = ACTIONS(2898), - [anon_sym_declare] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [anon_sym_override] = ACTIONS(2898), - [anon_sym_module] = ACTIONS(2898), - [anon_sym_any] = ACTIONS(2898), - [anon_sym_number] = ACTIONS(2898), - [anon_sym_boolean] = ACTIONS(2898), - [anon_sym_string] = ACTIONS(2898), - [anon_sym_symbol] = ACTIONS(2898), - [anon_sym_object] = ACTIONS(2898), - [anon_sym_abstract] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_export] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_typeof] = ACTIONS(2880), + [anon_sym_import] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_var] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_await] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_debugger] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_async] = ACTIONS(2880), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_void] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2878), + [sym_number] = ACTIONS(2878), + [sym_private_property_identifier] = ACTIONS(2878), + [sym_this] = ACTIONS(2880), + [sym_super] = ACTIONS(2880), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_AT] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2880), + [anon_sym_get] = ACTIONS(2880), + [anon_sym_set] = ACTIONS(2880), + [anon_sym_declare] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_protected] = ACTIONS(2880), + [anon_sym_override] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2880), + [anon_sym_any] = ACTIONS(2880), + [anon_sym_number] = ACTIONS(2880), + [anon_sym_boolean] = ACTIONS(2880), + [anon_sym_string] = ACTIONS(2880), + [anon_sym_symbol] = ACTIONS(2880), + [anon_sym_object] = ACTIONS(2880), + [anon_sym_abstract] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), [sym_html_comment] = ACTIONS(5), }, [899] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_export] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_namespace] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_typeof] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [anon_sym_let] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_else] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_await] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_debugger] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_case] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_void] = ACTIONS(2902), - [anon_sym_delete] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2900), - [sym_number] = ACTIONS(2900), - [sym_private_property_identifier] = ACTIONS(2900), - [sym_this] = ACTIONS(2902), - [sym_super] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_null] = ACTIONS(2902), - [sym_undefined] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_readonly] = ACTIONS(2902), - [anon_sym_get] = ACTIONS(2902), - [anon_sym_set] = ACTIONS(2902), - [anon_sym_declare] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_protected] = ACTIONS(2902), - [anon_sym_override] = ACTIONS(2902), - [anon_sym_module] = ACTIONS(2902), - [anon_sym_any] = ACTIONS(2902), - [anon_sym_number] = ACTIONS(2902), - [anon_sym_boolean] = ACTIONS(2902), - [anon_sym_string] = ACTIONS(2902), - [anon_sym_symbol] = ACTIONS(2902), - [anon_sym_object] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_export] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_typeof] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_await] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_debugger] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_void] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2882), + [sym_number] = ACTIONS(2882), + [sym_private_property_identifier] = ACTIONS(2882), + [sym_this] = ACTIONS(2884), + [sym_super] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_null] = ACTIONS(2884), + [sym_undefined] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_readonly] = ACTIONS(2884), + [anon_sym_get] = ACTIONS(2884), + [anon_sym_set] = ACTIONS(2884), + [anon_sym_declare] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_protected] = ACTIONS(2884), + [anon_sym_override] = ACTIONS(2884), + [anon_sym_module] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2884), + [anon_sym_number] = ACTIONS(2884), + [anon_sym_boolean] = ACTIONS(2884), + [anon_sym_string] = ACTIONS(2884), + [anon_sym_symbol] = ACTIONS(2884), + [anon_sym_object] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), [sym_html_comment] = ACTIONS(5), }, [900] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_export] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_namespace] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_typeof] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_else] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_await] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_debugger] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_case] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2904), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_async] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_void] = ACTIONS(2906), - [anon_sym_delete] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2904), - [sym_number] = ACTIONS(2904), - [sym_private_property_identifier] = ACTIONS(2904), - [sym_this] = ACTIONS(2906), - [sym_super] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_null] = ACTIONS(2906), - [sym_undefined] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_readonly] = ACTIONS(2906), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_declare] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_protected] = ACTIONS(2906), - [anon_sym_override] = ACTIONS(2906), - [anon_sym_module] = ACTIONS(2906), - [anon_sym_any] = ACTIONS(2906), - [anon_sym_number] = ACTIONS(2906), - [anon_sym_boolean] = ACTIONS(2906), - [anon_sym_string] = ACTIONS(2906), - [anon_sym_symbol] = ACTIONS(2906), - [anon_sym_object] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2888), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_default] = ACTIONS(2888), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_typeof] = ACTIONS(2888), + [anon_sym_import] = ACTIONS(2888), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_var] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_const] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_else] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_switch] = ACTIONS(2888), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_await] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_break] = ACTIONS(2888), + [anon_sym_continue] = ACTIONS(2888), + [anon_sym_debugger] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_throw] = ACTIONS(2888), + [anon_sym_case] = ACTIONS(2888), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_class] = ACTIONS(2888), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_using] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_void] = ACTIONS(2888), + [anon_sym_delete] = ACTIONS(2888), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2886), + [sym_number] = ACTIONS(2886), + [sym_private_property_identifier] = ACTIONS(2886), + [sym_this] = ACTIONS(2888), + [sym_super] = ACTIONS(2888), + [sym_true] = ACTIONS(2888), + [sym_false] = ACTIONS(2888), + [sym_null] = ACTIONS(2888), + [sym_undefined] = ACTIONS(2888), + [anon_sym_AT] = ACTIONS(2886), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2888), + [anon_sym_set] = ACTIONS(2888), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_override] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [anon_sym_object] = ACTIONS(2888), + [anon_sym_abstract] = ACTIONS(2888), + [anon_sym_interface] = ACTIONS(2888), + [anon_sym_enum] = ACTIONS(2888), [sym_html_comment] = ACTIONS(5), }, [901] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2892), + [anon_sym_export] = ACTIONS(2892), + [anon_sym_default] = ACTIONS(2892), + [anon_sym_type] = ACTIONS(2892), + [anon_sym_namespace] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_typeof] = ACTIONS(2892), + [anon_sym_import] = ACTIONS(2892), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_var] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_const] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_else] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_switch] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_await] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_break] = ACTIONS(2892), + [anon_sym_continue] = ACTIONS(2892), + [anon_sym_debugger] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_throw] = ACTIONS(2892), + [anon_sym_case] = ACTIONS(2892), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2890), + [anon_sym_DQUOTE] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_class] = ACTIONS(2892), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_using] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_void] = ACTIONS(2892), + [anon_sym_delete] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2890), + [sym_number] = ACTIONS(2890), + [sym_private_property_identifier] = ACTIONS(2890), + [sym_this] = ACTIONS(2892), + [sym_super] = ACTIONS(2892), + [sym_true] = ACTIONS(2892), + [sym_false] = ACTIONS(2892), + [sym_null] = ACTIONS(2892), + [sym_undefined] = ACTIONS(2892), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_static] = ACTIONS(2892), + [anon_sym_readonly] = ACTIONS(2892), + [anon_sym_get] = ACTIONS(2892), + [anon_sym_set] = ACTIONS(2892), + [anon_sym_declare] = ACTIONS(2892), + [anon_sym_public] = ACTIONS(2892), + [anon_sym_private] = ACTIONS(2892), + [anon_sym_protected] = ACTIONS(2892), + [anon_sym_override] = ACTIONS(2892), + [anon_sym_module] = ACTIONS(2892), + [anon_sym_any] = ACTIONS(2892), + [anon_sym_number] = ACTIONS(2892), + [anon_sym_boolean] = ACTIONS(2892), + [anon_sym_string] = ACTIONS(2892), + [anon_sym_symbol] = ACTIONS(2892), + [anon_sym_object] = ACTIONS(2892), + [anon_sym_abstract] = ACTIONS(2892), + [anon_sym_interface] = ACTIONS(2892), + [anon_sym_enum] = ACTIONS(2892), [sym_html_comment] = ACTIONS(5), }, [902] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_export] = ACTIONS(2910), - [anon_sym_default] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_namespace] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_typeof] = ACTIONS(2910), - [anon_sym_import] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2910), - [anon_sym_var] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_else] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_switch] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2908), - [anon_sym_await] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_do] = ACTIONS(2910), - [anon_sym_try] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_debugger] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_throw] = ACTIONS(2910), - [anon_sym_case] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_SQUOTE] = ACTIONS(2908), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_async] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2910), - [anon_sym_using] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_void] = ACTIONS(2910), - [anon_sym_delete] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2908), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [sym_this] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_null] = ACTIONS(2910), - [sym_undefined] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_readonly] = ACTIONS(2910), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_protected] = ACTIONS(2910), - [anon_sym_override] = ACTIONS(2910), - [anon_sym_module] = ACTIONS(2910), - [anon_sym_any] = ACTIONS(2910), - [anon_sym_number] = ACTIONS(2910), - [anon_sym_boolean] = ACTIONS(2910), - [anon_sym_string] = ACTIONS(2910), - [anon_sym_symbol] = ACTIONS(2910), - [anon_sym_object] = ACTIONS(2910), - [anon_sym_abstract] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2896), + [anon_sym_export] = ACTIONS(2896), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_type] = ACTIONS(2896), + [anon_sym_namespace] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_typeof] = ACTIONS(2896), + [anon_sym_import] = ACTIONS(2896), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_var] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_else] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_switch] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_await] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2896), + [anon_sym_debugger] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_throw] = ACTIONS(2896), + [anon_sym_case] = ACTIONS(2896), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_DQUOTE] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_class] = ACTIONS(2896), + [anon_sym_async] = ACTIONS(2896), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_using] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_void] = ACTIONS(2896), + [anon_sym_delete] = ACTIONS(2896), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2894), + [sym_number] = ACTIONS(2894), + [sym_private_property_identifier] = ACTIONS(2894), + [sym_this] = ACTIONS(2896), + [sym_super] = ACTIONS(2896), + [sym_true] = ACTIONS(2896), + [sym_false] = ACTIONS(2896), + [sym_null] = ACTIONS(2896), + [sym_undefined] = ACTIONS(2896), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2896), + [anon_sym_set] = ACTIONS(2896), + [anon_sym_declare] = ACTIONS(2896), + [anon_sym_public] = ACTIONS(2896), + [anon_sym_private] = ACTIONS(2896), + [anon_sym_protected] = ACTIONS(2896), + [anon_sym_override] = ACTIONS(2896), + [anon_sym_module] = ACTIONS(2896), + [anon_sym_any] = ACTIONS(2896), + [anon_sym_number] = ACTIONS(2896), + [anon_sym_boolean] = ACTIONS(2896), + [anon_sym_string] = ACTIONS(2896), + [anon_sym_symbol] = ACTIONS(2896), + [anon_sym_object] = ACTIONS(2896), + [anon_sym_abstract] = ACTIONS(2896), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2896), [sym_html_comment] = ACTIONS(5), }, [903] = { - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_export] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_namespace] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_typeof] = ACTIONS(2914), - [anon_sym_import] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2914), - [anon_sym_var] = ACTIONS(2914), - [anon_sym_let] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_await] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_debugger] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_throw] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), - [anon_sym_class] = ACTIONS(2914), - [anon_sym_async] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2914), - [anon_sym_using] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_void] = ACTIONS(2914), - [anon_sym_delete] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2912), - [sym_number] = ACTIONS(2912), - [sym_private_property_identifier] = ACTIONS(2912), - [sym_this] = ACTIONS(2914), - [sym_super] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_undefined] = ACTIONS(2914), - [anon_sym_AT] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_readonly] = ACTIONS(2914), - [anon_sym_get] = ACTIONS(2914), - [anon_sym_set] = ACTIONS(2914), - [anon_sym_declare] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_protected] = ACTIONS(2914), - [anon_sym_override] = ACTIONS(2914), - [anon_sym_module] = ACTIONS(2914), - [anon_sym_any] = ACTIONS(2914), - [anon_sym_number] = ACTIONS(2914), - [anon_sym_boolean] = ACTIONS(2914), - [anon_sym_string] = ACTIONS(2914), - [anon_sym_symbol] = ACTIONS(2914), - [anon_sym_object] = ACTIONS(2914), - [anon_sym_abstract] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_export] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_typeof] = ACTIONS(2900), + [anon_sym_import] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_var] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_await] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_debugger] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_void] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2898), + [sym_number] = ACTIONS(2898), + [sym_private_property_identifier] = ACTIONS(2898), + [sym_this] = ACTIONS(2900), + [sym_super] = ACTIONS(2900), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [sym_null] = ACTIONS(2900), + [sym_undefined] = ACTIONS(2900), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_readonly] = ACTIONS(2900), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_declare] = ACTIONS(2900), + [anon_sym_public] = ACTIONS(2900), + [anon_sym_private] = ACTIONS(2900), + [anon_sym_protected] = ACTIONS(2900), + [anon_sym_override] = ACTIONS(2900), + [anon_sym_module] = ACTIONS(2900), + [anon_sym_any] = ACTIONS(2900), + [anon_sym_number] = ACTIONS(2900), + [anon_sym_boolean] = ACTIONS(2900), + [anon_sym_string] = ACTIONS(2900), + [anon_sym_symbol] = ACTIONS(2900), + [anon_sym_object] = ACTIONS(2900), + [anon_sym_abstract] = ACTIONS(2900), + [anon_sym_interface] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), [sym_html_comment] = ACTIONS(5), }, [904] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_typeof] = ACTIONS(1835), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_var] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_debugger] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_function] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_void] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1833), - [sym_number] = ACTIONS(1833), - [sym_private_property_identifier] = ACTIONS(1833), - [sym_this] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_readonly] = ACTIONS(1835), - [anon_sym_get] = ACTIONS(1835), - [anon_sym_set] = ACTIONS(1835), - [anon_sym_declare] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_private] = ACTIONS(1835), - [anon_sym_protected] = ACTIONS(1835), - [anon_sym_override] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_any] = ACTIONS(1835), - [anon_sym_number] = ACTIONS(1835), - [anon_sym_boolean] = ACTIONS(1835), - [anon_sym_string] = ACTIONS(1835), - [anon_sym_symbol] = ACTIONS(1835), - [anon_sym_object] = ACTIONS(1835), - [anon_sym_abstract] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_export] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_namespace] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_typeof] = ACTIONS(2904), + [anon_sym_import] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_var] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_await] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_debugger] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_class] = ACTIONS(2904), + [anon_sym_async] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_void] = ACTIONS(2904), + [anon_sym_delete] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2902), + [sym_number] = ACTIONS(2902), + [sym_private_property_identifier] = ACTIONS(2902), + [sym_this] = ACTIONS(2904), + [sym_super] = ACTIONS(2904), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [sym_null] = ACTIONS(2904), + [sym_undefined] = ACTIONS(2904), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_readonly] = ACTIONS(2904), + [anon_sym_get] = ACTIONS(2904), + [anon_sym_set] = ACTIONS(2904), + [anon_sym_declare] = ACTIONS(2904), + [anon_sym_public] = ACTIONS(2904), + [anon_sym_private] = ACTIONS(2904), + [anon_sym_protected] = ACTIONS(2904), + [anon_sym_override] = ACTIONS(2904), + [anon_sym_module] = ACTIONS(2904), + [anon_sym_any] = ACTIONS(2904), + [anon_sym_number] = ACTIONS(2904), + [anon_sym_boolean] = ACTIONS(2904), + [anon_sym_string] = ACTIONS(2904), + [anon_sym_symbol] = ACTIONS(2904), + [anon_sym_object] = ACTIONS(2904), + [anon_sym_abstract] = ACTIONS(2904), + [anon_sym_interface] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), [sym_html_comment] = ACTIONS(5), }, [905] = { - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_export] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_namespace] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_typeof] = ACTIONS(2918), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_else] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_await] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_debugger] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_throw] = ACTIONS(2918), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_class] = ACTIONS(2918), - [anon_sym_async] = ACTIONS(2918), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_using] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_void] = ACTIONS(2918), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2916), - [sym_number] = ACTIONS(2916), - [sym_private_property_identifier] = ACTIONS(2916), - [sym_this] = ACTIONS(2918), - [sym_super] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_null] = ACTIONS(2918), - [sym_undefined] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_readonly] = ACTIONS(2918), - [anon_sym_get] = ACTIONS(2918), - [anon_sym_set] = ACTIONS(2918), - [anon_sym_declare] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_protected] = ACTIONS(2918), - [anon_sym_override] = ACTIONS(2918), - [anon_sym_module] = ACTIONS(2918), - [anon_sym_any] = ACTIONS(2918), - [anon_sym_number] = ACTIONS(2918), - [anon_sym_boolean] = ACTIONS(2918), - [anon_sym_string] = ACTIONS(2918), - [anon_sym_symbol] = ACTIONS(2918), - [anon_sym_object] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_export] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), + [anon_sym_namespace] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_typeof] = ACTIONS(2908), + [anon_sym_import] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_var] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_await] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_debugger] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_class] = ACTIONS(2908), + [anon_sym_async] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_using] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_void] = ACTIONS(2908), + [anon_sym_delete] = ACTIONS(2908), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2906), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [sym_this] = ACTIONS(2908), + [sym_super] = ACTIONS(2908), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [sym_null] = ACTIONS(2908), + [sym_undefined] = ACTIONS(2908), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_readonly] = ACTIONS(2908), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2908), + [anon_sym_public] = ACTIONS(2908), + [anon_sym_private] = ACTIONS(2908), + [anon_sym_protected] = ACTIONS(2908), + [anon_sym_override] = ACTIONS(2908), + [anon_sym_module] = ACTIONS(2908), + [anon_sym_any] = ACTIONS(2908), + [anon_sym_number] = ACTIONS(2908), + [anon_sym_boolean] = ACTIONS(2908), + [anon_sym_string] = ACTIONS(2908), + [anon_sym_symbol] = ACTIONS(2908), + [anon_sym_object] = ACTIONS(2908), + [anon_sym_abstract] = ACTIONS(2908), + [anon_sym_interface] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), [sym_html_comment] = ACTIONS(5), }, [906] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_typeof] = ACTIONS(2912), + [anon_sym_import] = ACTIONS(2912), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_var] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_else] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_await] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_debugger] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2912), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_class] = ACTIONS(2912), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_using] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_void] = ACTIONS(2912), + [anon_sym_delete] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2910), + [sym_number] = ACTIONS(2910), + [sym_private_property_identifier] = ACTIONS(2910), + [sym_this] = ACTIONS(2912), + [sym_super] = ACTIONS(2912), + [sym_true] = ACTIONS(2912), + [sym_false] = ACTIONS(2912), + [sym_null] = ACTIONS(2912), + [sym_undefined] = ACTIONS(2912), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_readonly] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2912), + [anon_sym_set] = ACTIONS(2912), + [anon_sym_declare] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_protected] = ACTIONS(2912), + [anon_sym_override] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_any] = ACTIONS(2912), + [anon_sym_number] = ACTIONS(2912), + [anon_sym_boolean] = ACTIONS(2912), + [anon_sym_string] = ACTIONS(2912), + [anon_sym_symbol] = ACTIONS(2912), + [anon_sym_object] = ACTIONS(2912), + [anon_sym_abstract] = ACTIONS(2912), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), [sym_html_comment] = ACTIONS(5), }, [907] = { + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2916), + [anon_sym_export] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_typeof] = ACTIONS(2916), + [anon_sym_import] = ACTIONS(2916), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_var] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_await] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_debugger] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_async] = ACTIONS(2916), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_void] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2914), + [sym_number] = ACTIONS(2914), + [sym_private_property_identifier] = ACTIONS(2914), + [sym_this] = ACTIONS(2916), + [sym_super] = ACTIONS(2916), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [sym_null] = ACTIONS(2916), + [sym_undefined] = ACTIONS(2916), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_readonly] = ACTIONS(2916), + [anon_sym_get] = ACTIONS(2916), + [anon_sym_set] = ACTIONS(2916), + [anon_sym_declare] = ACTIONS(2916), + [anon_sym_public] = ACTIONS(2916), + [anon_sym_private] = ACTIONS(2916), + [anon_sym_protected] = ACTIONS(2916), + [anon_sym_override] = ACTIONS(2916), + [anon_sym_module] = ACTIONS(2916), + [anon_sym_any] = ACTIONS(2916), + [anon_sym_number] = ACTIONS(2916), + [anon_sym_boolean] = ACTIONS(2916), + [anon_sym_string] = ACTIONS(2916), + [anon_sym_symbol] = ACTIONS(2916), + [anon_sym_object] = ACTIONS(2916), + [anon_sym_abstract] = ACTIONS(2916), + [anon_sym_interface] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [sym_html_comment] = ACTIONS(5), + }, + [908] = { + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2916), + [anon_sym_export] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_typeof] = ACTIONS(2916), + [anon_sym_import] = ACTIONS(2916), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_var] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_await] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_debugger] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_async] = ACTIONS(2916), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_void] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2914), + [sym_number] = ACTIONS(2914), + [sym_private_property_identifier] = ACTIONS(2914), + [sym_this] = ACTIONS(2916), + [sym_super] = ACTIONS(2916), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [sym_null] = ACTIONS(2916), + [sym_undefined] = ACTIONS(2916), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_readonly] = ACTIONS(2916), + [anon_sym_get] = ACTIONS(2916), + [anon_sym_set] = ACTIONS(2916), + [anon_sym_declare] = ACTIONS(2916), + [anon_sym_public] = ACTIONS(2916), + [anon_sym_private] = ACTIONS(2916), + [anon_sym_protected] = ACTIONS(2916), + [anon_sym_override] = ACTIONS(2916), + [anon_sym_module] = ACTIONS(2916), + [anon_sym_any] = ACTIONS(2916), + [anon_sym_number] = ACTIONS(2916), + [anon_sym_boolean] = ACTIONS(2916), + [anon_sym_string] = ACTIONS(2916), + [anon_sym_symbol] = ACTIONS(2916), + [anon_sym_object] = ACTIONS(2916), + [anon_sym_abstract] = ACTIONS(2916), + [anon_sym_interface] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [sym_html_comment] = ACTIONS(5), + }, + [909] = { + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2920), + [anon_sym_export] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_type] = ACTIONS(2920), + [anon_sym_namespace] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_typeof] = ACTIONS(2920), + [anon_sym_import] = ACTIONS(2920), + [anon_sym_with] = ACTIONS(2920), + [anon_sym_var] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_await] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_debugger] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_yield] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(2920), + [anon_sym_function] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_void] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2918), + [sym_number] = ACTIONS(2918), + [sym_private_property_identifier] = ACTIONS(2918), + [sym_this] = ACTIONS(2920), + [sym_super] = ACTIONS(2920), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [sym_null] = ACTIONS(2920), + [sym_undefined] = ACTIONS(2920), + [anon_sym_AT] = ACTIONS(2918), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_readonly] = ACTIONS(2920), + [anon_sym_get] = ACTIONS(2920), + [anon_sym_set] = ACTIONS(2920), + [anon_sym_declare] = ACTIONS(2920), + [anon_sym_public] = ACTIONS(2920), + [anon_sym_private] = ACTIONS(2920), + [anon_sym_protected] = ACTIONS(2920), + [anon_sym_override] = ACTIONS(2920), + [anon_sym_module] = ACTIONS(2920), + [anon_sym_any] = ACTIONS(2920), + [anon_sym_number] = ACTIONS(2920), + [anon_sym_boolean] = ACTIONS(2920), + [anon_sym_string] = ACTIONS(2920), + [anon_sym_symbol] = ACTIONS(2920), + [anon_sym_object] = ACTIONS(2920), + [anon_sym_abstract] = ACTIONS(2920), + [anon_sym_interface] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [sym_html_comment] = ACTIONS(5), + }, + [910] = { [ts_builtin_sym_end] = ACTIONS(2922), [sym_identifier] = ACTIONS(2924), [anon_sym_export] = ACTIONS(2924), @@ -118313,7 +118619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2924), [sym_html_comment] = ACTIONS(5), }, - [908] = { + [911] = { [ts_builtin_sym_end] = ACTIONS(2926), [sym_identifier] = ACTIONS(2928), [anon_sym_export] = ACTIONS(2928), @@ -118395,7 +118701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2928), [sym_html_comment] = ACTIONS(5), }, - [909] = { + [912] = { [ts_builtin_sym_end] = ACTIONS(2930), [sym_identifier] = ACTIONS(2932), [anon_sym_export] = ACTIONS(2932), @@ -118477,7 +118783,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2932), [sym_html_comment] = ACTIONS(5), }, - [910] = { + [913] = { + [ts_builtin_sym_end] = ACTIONS(2668), + [sym_identifier] = ACTIONS(2670), + [anon_sym_export] = ACTIONS(2670), + [anon_sym_default] = ACTIONS(2670), + [anon_sym_type] = ACTIONS(2670), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2670), + [anon_sym_import] = ACTIONS(2670), + [anon_sym_with] = ACTIONS(2670), + [anon_sym_var] = ACTIONS(2670), + [anon_sym_let] = ACTIONS(2670), + [anon_sym_const] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2670), + [anon_sym_if] = ACTIONS(2670), + [anon_sym_switch] = ACTIONS(2670), + [anon_sym_for] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_await] = ACTIONS(2670), + [anon_sym_while] = ACTIONS(2670), + [anon_sym_do] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2670), + [anon_sym_continue] = ACTIONS(2670), + [anon_sym_debugger] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2670), + [anon_sym_throw] = ACTIONS(2670), + [anon_sym_case] = ACTIONS(2670), + [anon_sym_yield] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2668), + [anon_sym_SQUOTE] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2670), + [anon_sym_async] = ACTIONS(2670), + [anon_sym_function] = ACTIONS(2670), + [anon_sym_new] = ACTIONS(2670), + [anon_sym_using] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_void] = ACTIONS(2670), + [anon_sym_delete] = ACTIONS(2670), + [anon_sym_PLUS_PLUS] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2668), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2668), + [sym_number] = ACTIONS(2668), + [sym_private_property_identifier] = ACTIONS(2668), + [sym_this] = ACTIONS(2670), + [sym_super] = ACTIONS(2670), + [sym_true] = ACTIONS(2670), + [sym_false] = ACTIONS(2670), + [sym_null] = ACTIONS(2670), + [sym_undefined] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2670), + [anon_sym_readonly] = ACTIONS(2670), + [anon_sym_get] = ACTIONS(2670), + [anon_sym_set] = ACTIONS(2670), + [anon_sym_declare] = ACTIONS(2670), + [anon_sym_public] = ACTIONS(2670), + [anon_sym_private] = ACTIONS(2670), + [anon_sym_protected] = ACTIONS(2670), + [anon_sym_override] = ACTIONS(2670), + [anon_sym_module] = ACTIONS(2670), + [anon_sym_any] = ACTIONS(2670), + [anon_sym_number] = ACTIONS(2670), + [anon_sym_boolean] = ACTIONS(2670), + [anon_sym_string] = ACTIONS(2670), + [anon_sym_symbol] = ACTIONS(2670), + [anon_sym_object] = ACTIONS(2670), + [anon_sym_abstract] = ACTIONS(2670), + [anon_sym_interface] = ACTIONS(2670), + [anon_sym_enum] = ACTIONS(2670), + [sym_html_comment] = ACTIONS(5), + }, + [914] = { [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_export] = ACTIONS(2936), @@ -118559,334 +118947,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2936), [sym_html_comment] = ACTIONS(5), }, - [911] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_namespace] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_var] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_switch] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_debugger] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_function] = ACTIONS(1841), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_delete] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1839), - [sym_number] = ACTIONS(1839), - [sym_private_property_identifier] = ACTIONS(1839), - [sym_this] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_null] = ACTIONS(1841), - [sym_undefined] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(1841), - [anon_sym_abstract] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [sym_html_comment] = ACTIONS(5), - }, - [912] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [sym_html_comment] = ACTIONS(5), - }, - [913] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [sym_html_comment] = ACTIONS(5), - }, - [914] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [sym_html_comment] = ACTIONS(5), - }, [915] = { [ts_builtin_sym_end] = ACTIONS(2938), [sym_identifier] = ACTIONS(2940), @@ -118970,61 +119030,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [916] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_rest_pattern] = STATE(5298), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3846), + [sym_tuple_parameter] = STATE(5480), + [sym_optional_tuple_parameter] = STATE(5480), + [sym_optional_type] = STATE(5480), + [sym_rest_type] = STATE(5480), + [sym__tuple_type_member] = STATE(5480), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2460), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -119033,21 +119093,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [917] = { @@ -119128,468 +119188,776 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [918] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_asserts] = STATE(3818), - [sym_type] = STATE(3279), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_predicate] = STATE(3832), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3163), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_asserts] = STATE(2924), + [sym_type] = STATE(3634), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_predicate] = STATE(2924), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(3539), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(2950), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_asserts] = ACTIONS(2952), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [919] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_asserts] = STATE(3250), - [sym_type] = STATE(3236), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_predicate] = STATE(3250), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3163), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(2950), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_asserts] = ACTIONS(2952), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [920] = { - [sym_identifier] = ACTIONS(2954), - [anon_sym_export] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_namespace] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_typeof] = ACTIONS(2954), - [anon_sym_import] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2954), - [anon_sym_var] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2954), - [anon_sym_const] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_switch] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_await] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2954), - [anon_sym_do] = ACTIONS(2954), - [anon_sym_try] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_debugger] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_throw] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2956), - [anon_sym_class] = ACTIONS(2954), - [anon_sym_async] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2954), - [anon_sym_using] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_void] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2956), - [sym_number] = ACTIONS(2956), - [sym_private_property_identifier] = ACTIONS(2956), - [sym_this] = ACTIONS(2954), - [sym_super] = ACTIONS(2954), - [sym_true] = ACTIONS(2954), - [sym_false] = ACTIONS(2954), - [sym_null] = ACTIONS(2954), - [sym_undefined] = ACTIONS(2954), - [anon_sym_AT] = ACTIONS(2956), - [anon_sym_static] = ACTIONS(2954), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2954), - [anon_sym_set] = ACTIONS(2954), - [anon_sym_declare] = ACTIONS(2954), - [anon_sym_public] = ACTIONS(2954), - [anon_sym_private] = ACTIONS(2954), - [anon_sym_protected] = ACTIONS(2954), - [anon_sym_override] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2954), - [anon_sym_any] = ACTIONS(2954), - [anon_sym_number] = ACTIONS(2954), - [anon_sym_boolean] = ACTIONS(2954), - [anon_sym_string] = ACTIONS(2954), - [anon_sym_symbol] = ACTIONS(2954), - [anon_sym_object] = ACTIONS(2954), - [anon_sym_abstract] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_enum] = ACTIONS(2954), - [sym_html_comment] = ACTIONS(5), - }, - [921] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(5475), - [sym_type] = STATE(3422), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(5225), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2958), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2960), + [sym_this] = ACTIONS(2948), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(2962), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_asserts] = ACTIONS(2950), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [922] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2903), - [sym_type] = STATE(3898), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2903), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3725), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2964), + [919] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_asserts] = STATE(1494), + [sym_type] = STATE(1559), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_predicate] = STATE(1494), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1491), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(2980), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_asserts] = ACTIONS(2990), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [920] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_asserts] = STATE(2980), + [sym_type] = STATE(3816), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_predicate] = STATE(2980), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(3623), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3000), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2980), + [sym_this] = ACTIONS(3016), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_asserts] = ACTIONS(2988), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_asserts] = ACTIONS(3024), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [sym_html_comment] = ACTIONS(5), + }, + [921] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_asserts] = STATE(3802), + [sym_type] = STATE(3325), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_predicate] = STATE(3797), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3176), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(3036), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_asserts] = ACTIONS(3038), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [922] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_asserts] = STATE(4002), + [sym_type] = STATE(3525), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_predicate] = STATE(4021), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3314), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_asserts] = ACTIONS(3082), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, [923] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2988), - [sym_type] = STATE(3829), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2988), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3725), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2512), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_type] = ACTIONS(2512), + [anon_sym_namespace] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_import] = ACTIONS(2512), + [anon_sym_with] = ACTIONS(2512), + [anon_sym_var] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_await] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_debugger] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_throw] = ACTIONS(2512), + [anon_sym_yield] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_class] = ACTIONS(2512), + [anon_sym_async] = ACTIONS(2512), + [anon_sym_function] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_using] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_void] = ACTIONS(2512), + [anon_sym_delete] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2510), + [sym_number] = ACTIONS(2510), + [sym_private_property_identifier] = ACTIONS(2510), + [sym_this] = ACTIONS(2512), + [sym_super] = ACTIONS(2512), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [sym_null] = ACTIONS(2512), + [sym_undefined] = ACTIONS(2512), + [anon_sym_AT] = ACTIONS(2510), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_readonly] = ACTIONS(2512), + [anon_sym_get] = ACTIONS(2512), + [anon_sym_set] = ACTIONS(2512), + [anon_sym_declare] = ACTIONS(2512), + [anon_sym_public] = ACTIONS(2512), + [anon_sym_private] = ACTIONS(2512), + [anon_sym_protected] = ACTIONS(2512), + [anon_sym_override] = ACTIONS(2512), + [anon_sym_module] = ACTIONS(2512), + [anon_sym_any] = ACTIONS(2512), + [anon_sym_number] = ACTIONS(2512), + [anon_sym_boolean] = ACTIONS(2512), + [anon_sym_string] = ACTIONS(2512), + [anon_sym_symbol] = ACTIONS(2512), + [anon_sym_object] = ACTIONS(2512), + [anon_sym_abstract] = ACTIONS(2512), + [anon_sym_interface] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [sym_html_comment] = ACTIONS(5), + }, + [924] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_asserts] = STATE(1509), + [sym_type] = STATE(1510), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_predicate] = STATE(1509), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1491), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(2980), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_asserts] = ACTIONS(2990), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [925] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_asserts] = STATE(5564), + [sym_type] = STATE(3402), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_predicate] = STATE(5571), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(3031), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3092), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2980), + [sym_this] = ACTIONS(3094), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_asserts] = ACTIONS(2988), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [924] = { + [926] = { + [sym_identifier] = ACTIONS(3098), + [anon_sym_export] = ACTIONS(3098), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3100), + [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(3100), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3100), + [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_yield] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [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(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_void] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3100), + [sym_number] = ACTIONS(3100), + [sym_private_property_identifier] = ACTIONS(3100), + [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(3100), + [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), + }, + [927] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_asserts] = STATE(3268), + [sym_type] = STATE(3269), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_predicate] = STATE(3268), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3176), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(3036), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_asserts] = ACTIONS(3038), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [928] = { [sym_identifier] = ACTIONS(2942), [anon_sym_export] = ACTIONS(2942), [anon_sym_type] = ACTIONS(2942), @@ -119666,7 +120034,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, - [925] = { + [929] = { + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_with] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_using] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [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(2450), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [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_abstract] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [sym_html_comment] = ACTIONS(5), + }, + [930] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_asserts] = STATE(3243), + [sym_type] = STATE(3244), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_predicate] = STATE(3243), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3176), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(3036), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_asserts] = ACTIONS(3038), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [931] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_asserts] = STATE(1924), + [sym_type] = STATE(1925), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_predicate] = STATE(1924), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1788), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3130), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_asserts] = ACTIONS(3140), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [932] = { [sym_identifier] = ACTIONS(2942), [anon_sym_export] = ACTIONS(2942), [anon_sym_type] = ACTIONS(2942), @@ -119743,7 +120342,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, - [926] = { + [933] = { + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [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(3152), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3152), + [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_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [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(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3152), + [sym_number] = ACTIONS(3152), + [sym_private_property_identifier] = ACTIONS(3152), + [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(3152), + [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), + }, + [934] = { + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3156), + [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(3156), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [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_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [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(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [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(3156), + [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), + }, + [935] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_asserts] = STATE(1955), + [sym_type] = STATE(1956), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_predicate] = STATE(1955), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1788), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3130), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_asserts] = ACTIONS(3140), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [936] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_asserts] = STATE(2980), + [sym_type] = STATE(3642), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_predicate] = STATE(2980), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(3539), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2948), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_asserts] = ACTIONS(2950), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [937] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_asserts] = STATE(2924), + [sym_type] = STATE(3941), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_predicate] = STATE(2924), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(3623), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3016), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_asserts] = ACTIONS(3024), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [sym_html_comment] = ACTIONS(5), + }, + [938] = { [sym_identifier] = ACTIONS(2942), [anon_sym_export] = ACTIONS(2942), [anon_sym_type] = ACTIONS(2942), @@ -119820,84 +120804,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, - [927] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_asserts] = STATE(1915), - [sym_type] = STATE(1916), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_predicate] = STATE(1915), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1840), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [939] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_asserts] = STATE(3408), + [sym_type] = STATE(3414), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_predicate] = STATE(3408), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3314), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3024), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_asserts] = ACTIONS(3034), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_asserts] = ACTIONS(3082), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [928] = { + [940] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_asserts] = STATE(2980), + [sym_type] = STATE(3100), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_predicate] = STATE(2980), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(3031), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3094), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [941] = { [sym_identifier] = ACTIONS(2942), [anon_sym_export] = ACTIONS(2942), [anon_sym_type] = ACTIONS(2942), @@ -119974,7 +121035,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, - [929] = { + [942] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_asserts] = STATE(3443), + [sym_type] = STATE(3450), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_predicate] = STATE(3443), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3314), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_asserts] = ACTIONS(3082), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [sym_html_comment] = ACTIONS(5), + }, + [943] = { [sym_identifier] = ACTIONS(2942), [anon_sym_export] = ACTIONS(2942), [anon_sym_type] = ACTIONS(2942), @@ -120051,7 +121189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, - [930] = { + [944] = { [sym_identifier] = ACTIONS(2942), [anon_sym_export] = ACTIONS(2942), [anon_sym_type] = ACTIONS(2942), @@ -120128,7 +121266,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, - [931] = { + [945] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_asserts] = STATE(2924), + [sym_type] = STATE(3081), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_predicate] = STATE(2924), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(3031), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3094), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(3096), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [946] = { [sym_identifier] = ACTIONS(2942), [anon_sym_export] = ACTIONS(2942), [anon_sym_type] = ACTIONS(2942), @@ -120205,1363 +121420,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, - [932] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_asserts] = STATE(3381), - [sym_type] = STATE(3382), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_predicate] = STATE(3381), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3280), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3076), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_asserts] = ACTIONS(3086), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [933] = { - [sym_identifier] = ACTIONS(3096), - [anon_sym_export] = ACTIONS(3096), - [anon_sym_type] = ACTIONS(3096), - [anon_sym_namespace] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_typeof] = ACTIONS(3096), - [anon_sym_import] = ACTIONS(3096), - [anon_sym_with] = ACTIONS(3096), - [anon_sym_var] = ACTIONS(3096), - [anon_sym_let] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3098), - [anon_sym_await] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), - [anon_sym_do] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3096), - [anon_sym_break] = ACTIONS(3096), - [anon_sym_continue] = ACTIONS(3096), - [anon_sym_debugger] = ACTIONS(3096), - [anon_sym_return] = ACTIONS(3096), - [anon_sym_throw] = ACTIONS(3096), - [anon_sym_yield] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_DQUOTE] = ACTIONS(3098), - [anon_sym_SQUOTE] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_async] = ACTIONS(3096), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_new] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3096), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_SLASH] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_void] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3098), - [sym_number] = ACTIONS(3098), - [sym_private_property_identifier] = ACTIONS(3098), - [sym_this] = ACTIONS(3096), - [sym_super] = ACTIONS(3096), - [sym_true] = ACTIONS(3096), - [sym_false] = ACTIONS(3096), - [sym_null] = ACTIONS(3096), - [sym_undefined] = ACTIONS(3096), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_readonly] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3096), - [anon_sym_set] = ACTIONS(3096), - [anon_sym_declare] = ACTIONS(3096), - [anon_sym_public] = ACTIONS(3096), - [anon_sym_private] = ACTIONS(3096), - [anon_sym_protected] = ACTIONS(3096), - [anon_sym_override] = ACTIONS(3096), - [anon_sym_module] = ACTIONS(3096), - [anon_sym_any] = ACTIONS(3096), - [anon_sym_number] = ACTIONS(3096), - [anon_sym_boolean] = ACTIONS(3096), - [anon_sym_string] = ACTIONS(3096), - [anon_sym_symbol] = ACTIONS(3096), - [anon_sym_object] = ACTIONS(3096), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_interface] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [sym_html_comment] = ACTIONS(5), - }, - [934] = { - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [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(3102), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [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_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [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(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [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(3102), - [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), - }, - [935] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_asserts] = STATE(3958), - [sym_type] = STATE(3482), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_predicate] = STATE(3959), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3280), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3076), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_asserts] = ACTIONS(3086), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [936] = { - [sym_identifier] = ACTIONS(3104), - [anon_sym_export] = ACTIONS(3104), - [anon_sym_type] = ACTIONS(3104), - [anon_sym_namespace] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(3104), - [anon_sym_with] = ACTIONS(3104), - [anon_sym_var] = ACTIONS(3104), - [anon_sym_let] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3104), - [anon_sym_switch] = ACTIONS(3104), - [anon_sym_for] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3104), - [anon_sym_while] = ACTIONS(3104), - [anon_sym_do] = ACTIONS(3104), - [anon_sym_try] = ACTIONS(3104), - [anon_sym_break] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(3104), - [anon_sym_debugger] = ACTIONS(3104), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_throw] = ACTIONS(3104), - [anon_sym_yield] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_async] = ACTIONS(3104), - [anon_sym_function] = ACTIONS(3104), - [anon_sym_new] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_PLUS] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_SLASH] = ACTIONS(3104), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3104), - [anon_sym_delete] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3104), - [sym_super] = ACTIONS(3104), - [sym_true] = ACTIONS(3104), - [sym_false] = ACTIONS(3104), - [sym_null] = ACTIONS(3104), - [sym_undefined] = ACTIONS(3104), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_readonly] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(3104), - [anon_sym_set] = ACTIONS(3104), - [anon_sym_declare] = ACTIONS(3104), - [anon_sym_public] = ACTIONS(3104), - [anon_sym_private] = ACTIONS(3104), - [anon_sym_protected] = ACTIONS(3104), - [anon_sym_override] = ACTIONS(3104), - [anon_sym_module] = ACTIONS(3104), - [anon_sym_any] = ACTIONS(3104), - [anon_sym_number] = ACTIONS(3104), - [anon_sym_boolean] = ACTIONS(3104), - [anon_sym_string] = ACTIONS(3104), - [anon_sym_symbol] = ACTIONS(3104), - [anon_sym_object] = ACTIONS(3104), - [anon_sym_abstract] = ACTIONS(3104), - [anon_sym_interface] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [sym_html_comment] = ACTIONS(5), - }, - [937] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_asserts] = STATE(3442), - [sym_type] = STATE(3446), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_predicate] = STATE(3442), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3280), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3076), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_asserts] = ACTIONS(3086), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [938] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_asserts] = STATE(3198), - [sym_type] = STATE(3204), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_predicate] = STATE(3198), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3163), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(2950), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_asserts] = ACTIONS(2952), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [939] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_asserts] = STATE(1547), - [sym_type] = STATE(1548), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_predicate] = STATE(1547), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1477), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3136), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_asserts] = ACTIONS(3146), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [940] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_asserts] = STATE(1581), - [sym_type] = STATE(1582), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_predicate] = STATE(1581), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1477), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3136), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_asserts] = ACTIONS(3146), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [941] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2903), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2903), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3505), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(3158), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_asserts] = ACTIONS(3160), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [942] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2988), - [sym_type] = STATE(3068), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2988), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2960), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(2962), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [943] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2988), - [sym_type] = STATE(3752), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2988), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3505), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), + [947] = { + [sym_identifier] = ACTIONS(3158), + [anon_sym_export] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_namespace] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3160), + [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(3160), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [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_yield] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [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(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), [sym_this] = ACTIONS(3158), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_asserts] = ACTIONS(3160), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_super] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_null] = ACTIONS(3158), + [sym_undefined] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3160), + [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_html_comment] = ACTIONS(5), }, - [944] = { - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2452), - [anon_sym_import] = ACTIONS(2452), - [anon_sym_with] = ACTIONS(2452), - [anon_sym_var] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_debugger] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_throw] = ACTIONS(2452), - [anon_sym_yield] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_class] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2452), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_using] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_void] = ACTIONS(2452), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [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(2450), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [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_abstract] = ACTIONS(2452), - [anon_sym_interface] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2452), - [sym_html_comment] = ACTIONS(5), - }, - [945] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2903), - [sym_type] = STATE(3066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2903), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2958), + [948] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3162), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2960), + [sym_this] = ACTIONS(1519), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(2962), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [946] = { - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_typeof] = ACTIONS(2456), - [anon_sym_import] = ACTIONS(2456), - [anon_sym_with] = ACTIONS(2456), - [anon_sym_var] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_switch] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_await] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_debugger] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_throw] = ACTIONS(2456), - [anon_sym_yield] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_class] = ACTIONS(2456), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_using] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_SLASH] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_void] = ACTIONS(2456), - [anon_sym_delete] = ACTIONS(2456), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2454), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [sym_this] = ACTIONS(2456), - [sym_super] = ACTIONS(2456), - [sym_true] = ACTIONS(2456), - [sym_false] = ACTIONS(2456), - [sym_null] = ACTIONS(2456), - [sym_undefined] = ACTIONS(2456), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_readonly] = ACTIONS(2456), - [anon_sym_get] = ACTIONS(2456), - [anon_sym_set] = ACTIONS(2456), - [anon_sym_declare] = ACTIONS(2456), - [anon_sym_public] = ACTIONS(2456), - [anon_sym_private] = ACTIONS(2456), - [anon_sym_protected] = ACTIONS(2456), - [anon_sym_override] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_any] = ACTIONS(2456), - [anon_sym_number] = ACTIONS(2456), - [anon_sym_boolean] = ACTIONS(2456), - [anon_sym_string] = ACTIONS(2456), - [anon_sym_symbol] = ACTIONS(2456), - [anon_sym_object] = ACTIONS(2456), - [anon_sym_abstract] = ACTIONS(2456), - [anon_sym_interface] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), - [sym_html_comment] = ACTIONS(5), - }, - [947] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_asserts] = STATE(1944), - [sym_type] = STATE(1945), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_predicate] = STATE(1944), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1840), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3024), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_asserts] = ACTIONS(3034), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [948] = { - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_COMMA] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_RPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_RBRACK] = ACTIONS(3164), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_EQ_GT] = ACTIONS(3164), - [anon_sym_QMARK_DOT] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [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(3164), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_QMARK] = 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_extends] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [949] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4528), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3166), + [anon_sym_RBRACK] = ACTIONS(3164), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121571,72 +121631,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [950] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4488), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3168), + [anon_sym_GT] = ACTIONS(3166), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121646,72 +121706,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121721,72 +121781,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [952] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4505), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3172), + [anon_sym_RBRACK] = ACTIONS(3170), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121796,72 +121856,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [953] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4527), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3172), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121871,72 +121931,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [954] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3174), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121946,72 +122006,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [955] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3176), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122021,72 +122081,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [956] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4620), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3180), + [anon_sym_RBRACK] = ACTIONS(3178), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122096,672 +122156,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_EQ] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_COLON] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_GT] = ACTIONS(3184), - [anon_sym_DOT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_EQ_GT] = ACTIONS(3184), - [anon_sym_QMARK_DOT] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [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(3184), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_QMARK] = 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_extends] = ACTIONS(3182), - [sym_html_comment] = ACTIONS(5), - }, - [958] = { - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_RPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_RBRACK] = ACTIONS(3188), - [anon_sym_GT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_EQ_GT] = ACTIONS(3188), - [anon_sym_QMARK_DOT] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_PIPE] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [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(3188), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_QMARK] = 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_extends] = ACTIONS(3186), - [sym_html_comment] = ACTIONS(5), - }, - [959] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [960] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3798), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [sym_jsx_identifier] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [961] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [962] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [963] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [964] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [965] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3180), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122771,72 +122231,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [966] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4485), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [958] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4555), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3182), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122846,72 +122306,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [967] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [959] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3208), + [anon_sym_GT] = ACTIONS(3184), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122921,72 +122381,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [968] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4560), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), + [960] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3859), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3186), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3210), + [sym_jsx_identifier] = ACTIONS(3188), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122996,72 +122456,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [969] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [961] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3212), + [anon_sym_GT] = ACTIONS(3190), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123071,72 +122531,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [970] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4525), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [962] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4519), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3214), + [anon_sym_RBRACK] = ACTIONS(3192), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123146,515 +122606,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [971] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1526), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [972] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3193), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [973] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3194), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [974] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3201), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [975] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3202), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [976] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3231), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [977] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5077), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(4221), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(4521), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [963] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3194), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123664,145 +122681,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [978] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3228), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [979] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [964] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3196), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123812,71 +122756,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [980] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2908), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [965] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3198), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123886,71 +122831,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [981] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3064), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [966] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3200), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123960,71 +122906,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [982] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4552), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [967] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3202), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -124033,220 +122980,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [983] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1521), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [968] = { + [sym_identifier] = ACTIONS(3204), + [anon_sym_export] = ACTIONS(3204), + [anon_sym_type] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_namespace] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_typeof] = ACTIONS(3204), + [anon_sym_import] = ACTIONS(3204), + [anon_sym_let] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_await] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3206), + [anon_sym_yield] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3206), + [anon_sym_SQUOTE] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3204), + [anon_sym_async] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3204), + [anon_sym_EQ_GT] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3204), + [anon_sym_using] = ACTIONS(3204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_void] = ACTIONS(3204), + [anon_sym_delete] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3206), + [sym_number] = ACTIONS(3206), + [sym_private_property_identifier] = ACTIONS(3206), + [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(3206), + [anon_sym_static] = ACTIONS(3204), + [anon_sym_readonly] = ACTIONS(3204), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_QMARK] = 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_extends] = ACTIONS(3204), [sym_html_comment] = ACTIONS(5), }, - [984] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1522), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [969] = { + [sym_identifier] = ACTIONS(3208), + [anon_sym_export] = ACTIONS(3208), + [anon_sym_type] = ACTIONS(3208), + [anon_sym_EQ] = ACTIONS(3208), + [anon_sym_namespace] = ACTIONS(3208), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_COMMA] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_typeof] = ACTIONS(3208), + [anon_sym_import] = ACTIONS(3208), + [anon_sym_let] = ACTIONS(3208), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_RPAREN] = ACTIONS(3210), + [anon_sym_await] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3210), + [anon_sym_RBRACK] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_DOT] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3208), + [anon_sym_async] = ACTIONS(3208), + [anon_sym_function] = ACTIONS(3208), + [anon_sym_EQ_GT] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3208), + [anon_sym_using] = ACTIONS(3208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_void] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3210), + [sym_number] = ACTIONS(3210), + [sym_private_property_identifier] = ACTIONS(3210), + [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(3210), + [anon_sym_static] = ACTIONS(3208), + [anon_sym_readonly] = ACTIONS(3208), + [anon_sym_get] = ACTIONS(3208), + [anon_sym_set] = ACTIONS(3208), + [anon_sym_QMARK] = 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_extends] = ACTIONS(3208), [sym_html_comment] = ACTIONS(5), }, - [985] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4603), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [970] = { + [sym_identifier] = ACTIONS(3212), + [anon_sym_export] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_typeof] = ACTIONS(3212), + [anon_sym_import] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_RPAREN] = ACTIONS(3214), + [anon_sym_await] = ACTIONS(3212), + [anon_sym_COLON] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_RBRACK] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_async] = ACTIONS(3212), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_EQ_GT] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_void] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3214), + [sym_number] = ACTIONS(3214), + [sym_private_property_identifier] = ACTIONS(3214), + [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(3214), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_readonly] = ACTIONS(3212), + [anon_sym_get] = ACTIONS(3212), + [anon_sym_set] = ACTIONS(3212), + [anon_sym_QMARK] = 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_extends] = ACTIONS(3212), + [sym_html_comment] = ACTIONS(5), + }, + [971] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3402), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -124255,960 +123279,1330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [986] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1493), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [972] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1536), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, - [987] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1494), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [973] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1615), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, - [988] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4650), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(1527), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(2931), + [974] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1569), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, - [989] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4650), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(1529), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(2931), + [975] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1577), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [976] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3454), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [sym_html_comment] = ACTIONS(5), + }, + [977] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3459), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [sym_html_comment] = ACTIONS(5), + }, + [978] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3467), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [sym_html_comment] = ACTIONS(5), + }, + [979] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4659), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(3470), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3078), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [990] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1959), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), + [980] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4659), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(3483), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3078), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [991] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1960), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), + [981] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3448), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [992] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1553), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [982] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3480), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [993] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1554), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [983] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3389), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [994] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1578), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [984] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3393), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [995] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1579), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [985] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3336), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [996] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1972), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), + [986] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3340), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [997] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [987] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3397), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), [sym_html_comment] = ACTIONS(5), }, - [998] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3067), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [988] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3398), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [sym_html_comment] = ACTIONS(5), + }, + [989] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4567), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -125217,812 +124611,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [999] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1595), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [990] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(4345), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, - [1000] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1596), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [991] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1883), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1001] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1608), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [992] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1575), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, - [1002] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1489), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [993] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1611), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, - [1003] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1973), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [994] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1888), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1004] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3353), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1005] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3355), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1006] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3359), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4683), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(3360), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3082), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1008] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4683), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(3371), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3082), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1009] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [995] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4587), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126032,145 +125056,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1010] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3403), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1011] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3814), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [996] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4594), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126180,219 +125130,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1012] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3279), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1013] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3404), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1014] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4535), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [997] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4595), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126402,71 +125204,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1015] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4310), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [998] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2952), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126475,72 +125277,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1016] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4539), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [999] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3833), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126549,294 +125351,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1017] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4023), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1018] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3427), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [1000] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3834), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1019] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3440), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [1001] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4832), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2963), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1020] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2985), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1002] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4832), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2917), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126846,145 +125574,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1021] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4045), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [1003] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2926), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1022] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3063), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1004] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3948), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126993,146 +125721,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1023] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3424), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [1005] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3807), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1024] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2908), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1006] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3809), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127141,72 +125869,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1025] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3754), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1007] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2978), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127215,146 +125943,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1026] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3330), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [1008] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3815), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1027] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3757), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1009] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127363,72 +126091,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1028] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1010] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3018), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127437,220 +126165,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1029] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3338), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [1011] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3389), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [1012] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1031] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2985), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1013] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3829), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127659,72 +126387,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3749), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1014] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4584), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127733,220 +126461,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1033] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4073), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [1015] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3219), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, - [1034] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4067), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [1016] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3223), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, - [1035] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1017] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2952), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127955,72 +126683,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2963), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1018] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3130), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128029,72 +126757,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1019] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(4041), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, - [1037] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4471), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1020] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1896), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1021] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1897), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1022] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3136), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128104,71 +127054,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1038] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1023] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1598), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [1024] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1601), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [1025] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5154), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2963), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128177,72 +127275,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1039] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3559), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1026] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5154), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2917), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128251,590 +127349,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1040] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4402), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1041] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1876), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [1027] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1900), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1042] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3241), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1043] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3242), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1044] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3246), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1045] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5201), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(3178), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [1028] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5120), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(1901), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(3136), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1046] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5201), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(3255), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [1029] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5120), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(1903), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(3136), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1047] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1030] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4086), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128844,293 +127646,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1048] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3516), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1049] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3517), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [1031] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3859), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1050] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3518), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [1032] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3546), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, - [1051] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4589), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1033] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3843), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129140,71 +127868,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1052] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4594), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1034] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3547), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1035] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3548), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1036] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4629), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129214,71 +128090,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1053] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1037] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(4035), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1038] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(4350), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1039] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2926), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129287,72 +128311,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1054] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2963), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1040] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3635), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129361,72 +128385,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1055] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4509), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1041] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3636), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129435,220 +128459,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1056] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3415), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1057] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3425), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [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(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1058] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4542), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1042] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3637), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129657,220 +128533,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1059] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1562), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1060] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1577), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1061] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4505), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1043] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2978), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129879,72 +128607,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1062] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4514), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1044] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3641), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129953,72 +128681,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1063] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4543), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1045] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3973), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1046] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3018), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130027,72 +128829,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1064] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3422), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1047] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4633), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130101,72 +128903,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1065] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1048] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4626), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130176,219 +128978,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1066] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3188), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1067] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3192), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1068] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2993), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1049] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130397,72 +129051,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1069] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3873), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1050] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3644), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130471,72 +129125,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1070] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3874), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1051] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4630), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130545,72 +129199,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1071] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4817), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2917), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1052] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130620,71 +129274,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1072] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4817), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1053] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1926), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1054] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1927), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1055] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(4454), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1056] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130694,145 +129570,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1073] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1941), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), + [1057] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3330), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [sym_html_comment] = ACTIONS(5), + }, + [1058] = { + [sym_import] = STATE(4649), + [sym_nested_identifier] = STATE(5990), + [sym_string] = STATE(3350), + [sym_formal_parameters] = STATE(5678), + [sym_nested_type_identifier] = STATE(3247), + [sym__type_query_member_expression_in_type_annotation] = STATE(3186), + [sym__type_query_call_expression_in_type_annotation] = STATE(3317), + [sym_type] = STATE(3384), + [sym_constructor_type] = STATE(3359), + [sym_primary_type] = STATE(3380), + [sym_template_literal_type] = STATE(3426), + [sym_infer_type] = STATE(3359), + [sym_conditional_type] = STATE(3426), + [sym_generic_type] = STATE(3426), + [sym_type_query] = STATE(3426), + [sym_index_type_query] = STATE(3426), + [sym_lookup_type] = STATE(3426), + [sym_literal_type] = STATE(3426), + [sym__number] = STATE(3390), + [sym_existential_type] = STATE(3426), + [sym_flow_maybe_type] = STATE(3426), + [sym_parenthesized_type] = STATE(3426), + [sym_predefined_type] = STATE(3426), + [sym_object_type] = STATE(3426), + [sym_type_parameters] = STATE(5390), + [sym_array_type] = STATE(3426), + [sym_tuple_type] = STATE(3426), + [sym_readonly_type] = STATE(3359), + [sym_union_type] = STATE(3426), + [sym_intersection_type] = STATE(3426), + [sym_function_type] = STATE(3359), [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_typeof] = ACTIONS(3046), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_new] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3068), + [sym_number] = ACTIONS(3070), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [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(3080), + [anon_sym_infer] = ACTIONS(3084), + [anon_sym_keyof] = ACTIONS(3086), + [anon_sym_unique] = ACTIONS(3088), + [anon_sym_unknown] = ACTIONS(3066), + [anon_sym_never] = ACTIONS(3066), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [sym_html_comment] = ACTIONS(5), + }, + [1059] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1946), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1074] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2908), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1060] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1947), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1061] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4507), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130841,72 +129939,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1075] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3922), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1062] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3018), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130915,220 +130013,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1076] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1942), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [1063] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1970), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1077] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1982), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [1064] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1971), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1078] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1065] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1983), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1066] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1984), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1067] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131137,72 +130383,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1079] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3809), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1068] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4543), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131212,71 +130458,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1080] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3112), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1069] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3084), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131286,71 +130532,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1081] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4490), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1070] = { + [sym_import] = STATE(4945), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5871), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3482), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4107), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5457), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_typeof] = ACTIONS(3004), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131359,72 +130605,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3022), + [anon_sym_infer] = ACTIONS(3026), + [anon_sym_keyof] = ACTIONS(3028), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), [sym_html_comment] = ACTIONS(5), }, - [1082] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3801), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1071] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3910), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131433,220 +130679,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1083] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1983), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1084] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3189), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1085] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2985), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1072] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4521), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131655,146 +130753,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1086] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3822), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [1073] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3290), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, - [1087] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3790), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1074] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3213), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1075] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3216), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1076] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4866), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(3217), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1077] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4866), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(3221), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1078] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4585), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131804,145 +131198,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1088] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3179), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [1079] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3255), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, - [1089] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2993), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1080] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3256), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1081] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2978), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131952,71 +131420,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1090] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3115), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1082] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3939), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132026,71 +131494,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1091] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1083] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4529), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132100,71 +131568,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1092] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5077), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2917), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1084] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3325), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1085] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1993), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1086] = { + [sym_import] = STATE(5063), + [sym_nested_identifier] = STATE(5869), + [sym_string] = STATE(1876), + [sym_formal_parameters] = STATE(5901), + [sym_nested_type_identifier] = STATE(1827), + [sym__type_query_member_expression_in_type_annotation] = STATE(1833), + [sym__type_query_call_expression_in_type_annotation] = STATE(1878), + [sym_type] = STATE(1994), + [sym_constructor_type] = STATE(1879), + [sym_primary_type] = STATE(1880), + [sym_template_literal_type] = STATE(1875), + [sym_infer_type] = STATE(1879), + [sym_conditional_type] = STATE(1875), + [sym_generic_type] = STATE(1875), + [sym_type_query] = STATE(1875), + [sym_index_type_query] = STATE(1875), + [sym_lookup_type] = STATE(1875), + [sym_literal_type] = STATE(1875), + [sym__number] = STATE(1881), + [sym_existential_type] = STATE(1875), + [sym_flow_maybe_type] = STATE(1875), + [sym_parenthesized_type] = STATE(1875), + [sym_predefined_type] = STATE(1875), + [sym_object_type] = STATE(1875), + [sym_type_parameters] = STATE(5403), + [sym_array_type] = STATE(1875), + [sym_tuple_type] = STATE(1875), + [sym_readonly_type] = STATE(1879), + [sym_union_type] = STATE(1875), + [sym_intersection_type] = STATE(1875), + [sym_function_type] = STATE(1879), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3126), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3228), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [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(3138), + [anon_sym_infer] = ACTIONS(3142), + [anon_sym_keyof] = ACTIONS(3144), + [anon_sym_unique] = ACTIONS(3146), + [anon_sym_unknown] = ACTIONS(3124), + [anon_sym_never] = ACTIONS(3124), + [anon_sym_LBRACE_PIPE] = ACTIONS(3148), + [sym_html_comment] = ACTIONS(5), + }, + [1087] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3263), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1088] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3264), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1089] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3092), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132174,71 +132012,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1093] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5077), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1090] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3278), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1091] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5154), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(4321), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(4548), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132248,71 +132160,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1094] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3858), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1092] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3279), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), + [sym_html_comment] = ACTIONS(5), + }, + [1093] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3837), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132322,71 +132308,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1094] = { + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3282), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, [1095] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4532), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2926), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132396,145 +132456,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1096] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1871), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [sym_import] = STATE(4717), + [sym_nested_identifier] = STATE(5848), + [sym_string] = STATE(3272), + [sym_formal_parameters] = STATE(5655), + [sym_nested_type_identifier] = STATE(3072), + [sym__type_query_member_expression_in_type_annotation] = STATE(3036), + [sym__type_query_call_expression_in_type_annotation] = STATE(3204), + [sym_type] = STATE(3283), + [sym_constructor_type] = STATE(3275), + [sym_primary_type] = STATE(3276), + [sym_template_literal_type] = STATE(3270), + [sym_infer_type] = STATE(3275), + [sym_conditional_type] = STATE(3270), + [sym_generic_type] = STATE(3270), + [sym_type_query] = STATE(3270), + [sym_index_type_query] = STATE(3270), + [sym_lookup_type] = STATE(3270), + [sym_literal_type] = STATE(3270), + [sym__number] = STATE(3281), + [sym_existential_type] = STATE(3270), + [sym_flow_maybe_type] = STATE(3270), + [sym_parenthesized_type] = STATE(3270), + [sym_predefined_type] = STATE(3270), + [sym_object_type] = STATE(3270), + [sym_type_parameters] = STATE(5299), + [sym_array_type] = STATE(3270), + [sym_tuple_type] = STATE(3270), + [sym_readonly_type] = STATE(3275), + [sym_union_type] = STATE(3270), + [sym_intersection_type] = STATE(3270), + [sym_function_type] = STATE(3275), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1027), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_object] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_infer] = ACTIONS(1021), + [anon_sym_keyof] = ACTIONS(1023), + [anon_sym_unique] = ACTIONS(1025), + [anon_sym_unknown] = ACTIONS(1027), + [anon_sym_never] = ACTIONS(1027), + [anon_sym_LBRACE_PIPE] = ACTIONS(1029), [sym_html_comment] = ACTIONS(5), }, [1097] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4424), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3099), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132544,71 +132604,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1098] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3798), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3801), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132618,71 +132678,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1099] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4553), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132691,146 +132751,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1100] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2963), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1101] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3910), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132840,71 +132826,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1101] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1579), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, [1102] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3778), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(2952), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132913,368 +132973,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1103] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1104] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4017), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1105] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1884), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1106] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1885), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1107] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2993), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3742), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1571), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133283,72 +133047,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1108] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3652), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1104] = { + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3743), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1571), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133357,72 +133121,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1109] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3766), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1105] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5121), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2963), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1509), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133431,61 +133195,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1523), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1110] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5089), - [sym_constructor_type] = STATE(2931), + [1106] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5121), + [sym_constructor_type] = STATE(2946), [sym_primary_type] = STATE(2917), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), @@ -133493,10 +133257,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1509), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133507,70 +133271,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1111] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5089), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1107] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1580), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [1108] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4560), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133580,145 +133418,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1112] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1889), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [1109] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1585), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, - [1113] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4564), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1110] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5194), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(1586), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [1111] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(5194), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(1588), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [1112] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3818), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133728,219 +133714,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1114] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4787), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(1890), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1115] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4787), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(1892), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [1113] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3146), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1116] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3800), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [1114] = { + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3147), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133949,220 +133861,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1115] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1610), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), + [sym_html_comment] = ACTIONS(5), + }, + [1116] = { + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1544), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, [1117] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1921), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1542), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, [1118] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1922), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [sym_import] = STATE(5045), + [sym_nested_identifier] = STATE(5687), + [sym_string] = STATE(1556), + [sym_formal_parameters] = STATE(5692), + [sym_nested_type_identifier] = STATE(1484), + [sym__type_query_member_expression_in_type_annotation] = STATE(1485), + [sym__type_query_call_expression_in_type_annotation] = STATE(1564), + [sym_type] = STATE(1495), + [sym_constructor_type] = STATE(1565), + [sym_primary_type] = STATE(1566), + [sym_template_literal_type] = STATE(1549), + [sym_infer_type] = STATE(1565), + [sym_conditional_type] = STATE(1549), + [sym_generic_type] = STATE(1549), + [sym_type_query] = STATE(1549), + [sym_index_type_query] = STATE(1549), + [sym_lookup_type] = STATE(1549), + [sym_literal_type] = STATE(1549), + [sym__number] = STATE(1567), + [sym_existential_type] = STATE(1549), + [sym_flow_maybe_type] = STATE(1549), + [sym_parenthesized_type] = STATE(1549), + [sym_predefined_type] = STATE(1549), + [sym_object_type] = STATE(1549), + [sym_type_parameters] = STATE(5352), + [sym_array_type] = STATE(1549), + [sym_tuple_type] = STATE(1549), + [sym_readonly_type] = STATE(1565), + [sym_union_type] = STATE(1549), + [sym_intersection_type] = STATE(1549), + [sym_function_type] = STATE(1565), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2958), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2976), + [sym_number] = ACTIONS(2978), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_null] = ACTIONS(2982), + [sym_undefined] = ACTIONS(2982), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_object] = ACTIONS(2974), + [anon_sym_abstract] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2992), + [anon_sym_keyof] = ACTIONS(2994), + [anon_sym_unique] = ACTIONS(2996), + [anon_sym_unknown] = ACTIONS(2974), + [anon_sym_never] = ACTIONS(2974), + [anon_sym_LBRACE_PIPE] = ACTIONS(2998), [sym_html_comment] = ACTIONS(5), }, [1119] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4504), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4611), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1571), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134171,72 +134231,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1120] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4508), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4869), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5950), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(2916), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4612), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5598), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134246,71 +134306,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4576), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4625), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1571), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134319,72 +134379,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1122] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4580), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4627), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1571), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134393,72 +134453,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1123] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4583), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(4628), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1571), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134467,72 +134527,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1124] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4595), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_import] = STATE(4793), + [sym_nested_identifier] = STATE(5915), + [sym_string] = STATE(2925), + [sym_formal_parameters] = STATE(5688), + [sym_nested_type_identifier] = STATE(2907), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2911), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(2946), + [sym_primary_type] = STATE(2947), + [sym_template_literal_type] = STATE(2973), + [sym_infer_type] = STATE(2946), + [sym_conditional_type] = STATE(2973), + [sym_generic_type] = STATE(2973), + [sym_type_query] = STATE(2973), + [sym_index_type_query] = STATE(2973), + [sym_lookup_type] = STATE(2973), + [sym_literal_type] = STATE(2973), + [sym__number] = STATE(2964), + [sym_existential_type] = STATE(2973), + [sym_flow_maybe_type] = STATE(2973), + [sym_parenthesized_type] = STATE(2973), + [sym_predefined_type] = STATE(2973), + [sym_object_type] = STATE(2973), + [sym_type_parameters] = STATE(5590), + [sym_array_type] = STATE(2973), + [sym_tuple_type] = STATE(2973), + [sym_readonly_type] = STATE(2946), + [sym_union_type] = STATE(2973), + [sym_intersection_type] = STATE(2973), + [sym_function_type] = STATE(2946), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), + [anon_sym_new] = ACTIONS(1571), [anon_sym_AMP] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134541,51 +134601,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(661), [anon_sym_infer] = ACTIONS(663), [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1125] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), [sym_identifier] = ACTIONS(3232), [anon_sym_export] = ACTIONS(3234), [anon_sym_STAR] = ACTIONS(3236), @@ -134598,14 +134658,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3250), [anon_sym_new] = ACTIONS(3252), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -134631,33 +134691,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1126] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), [sym_identifier] = ACTIONS(3272), [anon_sym_export] = ACTIONS(3274), [anon_sym_STAR] = ACTIONS(3236), @@ -134670,14 +134730,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3278), [anon_sym_new] = ACTIONS(3280), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -134703,465 +134763,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1127] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3294), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3234), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3232), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3252), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [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_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3266), + [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(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1128] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3274), + [sym_export_statement] = STATE(3886), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3886), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3886), + [sym_property_signature] = STATE(3886), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3886), + [sym_index_signature] = STATE(3886), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3294), [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3290), - [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_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3316), + [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(3268), - [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [anon_sym_PIPE_RBRACE] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, [1129] = { - [sym_export_statement] = STATE(3903), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3903), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3903), - [sym_property_signature] = STATE(3903), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3903), - [sym_index_signature] = STATE(3903), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3316), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(5105), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(5105), + [sym_pair] = STATE(5105), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3322), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3320), [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3328), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3336), - [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_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3338), + [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(3268), - [anon_sym_PIPE_RBRACE] = ACTIONS(3338), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1130] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3274), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3294), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3290), - [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_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3316), + [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(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1131] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3316), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3342), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3340), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3348), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3336), - [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_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3358), + [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(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1132] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3316), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3294), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3336), - [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_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3316), + [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(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1133] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), [sym_identifier] = ACTIONS(3232), [anon_sym_export] = ACTIONS(3234), [anon_sym_STAR] = ACTIONS(3236), @@ -135169,19 +135229,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(3232), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3362), [anon_sym_let] = ACTIONS(3232), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3250), [anon_sym_new] = ACTIONS(3252), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -135207,260 +135267,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1134] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4687), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3348), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3294), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3306), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3364), - [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_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3316), + [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(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1135] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3316), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(5105), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(5105), + [sym_pair] = STATE(5105), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4937), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3322), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3320), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3328), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3336), - [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_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3338), + [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(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1136] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4687), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3348), + [sym_export_statement] = STATE(3836), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5101), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(4968), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5101), + [sym_method_definition] = STATE(4968), + [sym_pair] = STATE(4968), + [sym_pair_pattern] = STATE(5101), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3836), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3836), + [sym_property_signature] = STATE(3836), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3836), + [sym_index_signature] = STATE(3836), + [aux_sym_export_statement_repeat1] = STATE(4504), + [aux_sym_object_repeat1] = STATE(4969), + [aux_sym_object_pattern_repeat1] = STATE(5166), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3342), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3340), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3348), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3364), - [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_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3358), + [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(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1137] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_variable_declarator] = STATE(4520), + [sym_object_pattern] = STATE(3652), + [sym_array_pattern] = STATE(3652), + [sym__destructuring_pattern] = STATE(3652), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -135475,63 +135535,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1138] = { - [sym_nested_identifier] = STATE(223), - [sym_string] = STATE(216), - [sym__module] = STATE(245), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3370), + [sym_nested_identifier] = STATE(743), + [sym_string] = STATE(762), + [sym__module] = STATE(874), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -135546,63 +135606,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1139] = { - [sym_nested_identifier] = STATE(223), - [sym_string] = STATE(216), - [sym__module] = STATE(245), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3370), + [sym_nested_identifier] = STATE(219), + [sym_string] = STATE(224), + [sym__module] = STATE(249), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(3376), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3380), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -135617,63 +135677,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1140] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_nested_identifier] = STATE(219), + [sym_string] = STATE(224), + [sym__module] = STATE(249), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(3376), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3380), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -135688,63 +135748,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1141] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3376), + [sym_variable_declarator] = STATE(4520), + [sym_object_pattern] = STATE(3652), + [sym_array_pattern] = STATE(3652), + [sym__destructuring_pattern] = STATE(3652), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -135759,63 +135819,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1142] = { - [sym_nested_identifier] = STATE(223), - [sym_string] = STATE(216), - [sym__module] = STATE(245), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3370), + [sym_nested_identifier] = STATE(219), + [sym_string] = STATE(224), + [sym__module] = STATE(249), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(3376), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3380), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -135830,63 +135890,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1143] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3376), + [sym_nested_identifier] = STATE(743), + [sym_string] = STATE(762), + [sym__module] = STATE(874), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -135901,63 +135961,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1144] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3368), + [sym_nested_identifier] = STATE(743), + [sym_string] = STATE(762), + [sym__module] = STATE(874), + [aux_sym_object_repeat1] = STATE(5034), + [aux_sym_object_pattern_repeat1] = STATE(4664), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -135972,63 +136032,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1145] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_variable_declarator] = STATE(4520), + [sym_object_pattern] = STATE(3652), + [sym_array_pattern] = STATE(3652), + [sym__destructuring_pattern] = STATE(3652), + [aux_sym_object_repeat1] = STATE(4663), + [aux_sym_object_pattern_repeat1] = STATE(4664), [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136043,62 +136103,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1146] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1539), + [sym__module] = STATE(1673), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(222), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136113,62 +136173,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(750), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1147] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1539), + [sym__module] = STATE(1673), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136183,61 +136243,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1148] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1539), + [sym__module] = STATE(1673), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(834), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(834), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136252,60 +136311,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(836), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1149] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1539), + [sym__module] = STATE(1673), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136320,61 +136380,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(750), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1150] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1539), + [sym__module] = STATE(1673), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136389,49 +136450,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1151] = { - [sym_export_statement] = STATE(3828), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(5520), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(5541), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(5520), - [sym_method_definition] = STATE(5541), - [sym_pair] = STATE(5541), - [sym_pair_pattern] = STATE(5520), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3828), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3828), - [sym_property_signature] = STATE(3828), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3828), - [sym_index_signature] = STATE(3828), - [aux_sym_export_statement_repeat1] = STATE(4467), + [sym_export_statement] = STATE(3889), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5314), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(5317), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5314), + [sym_method_definition] = STATE(5317), + [sym_pair] = STATE(5317), + [sym_pair_pattern] = STATE(5314), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3889), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3889), + [sym_property_signature] = STATE(3889), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3889), + [sym_index_signature] = STATE(3889), + [aux_sym_export_statement_repeat1] = STATE(4504), [sym_identifier] = ACTIONS(3384), [anon_sym_export] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(3236), @@ -136443,14 +136503,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3384), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3391), [anon_sym_new] = ACTIONS(3393), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -136475,31 +136535,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1152] = { - [sym_export_statement] = STATE(3920), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(5520), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(5541), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(5520), - [sym_method_definition] = STATE(5541), - [sym_pair] = STATE(5541), - [sym_pair_pattern] = STATE(5520), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3920), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3920), - [sym_property_signature] = STATE(3920), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3920), - [sym_index_signature] = STATE(3920), - [aux_sym_export_statement_repeat1] = STATE(4467), + [sym_export_statement] = STATE(3820), + [sym_object_pattern] = STATE(5724), + [sym_object_assignment_pattern] = STATE(5314), + [sym_array_pattern] = STATE(5724), + [sym__call_signature] = STATE(4436), + [sym__destructuring_pattern] = STATE(5724), + [sym_spread_element] = STATE(5317), + [sym_string] = STATE(3086), + [sym_decorator] = STATE(1322), + [sym_formal_parameters] = STATE(3318), + [sym_rest_pattern] = STATE(5314), + [sym_method_definition] = STATE(5317), + [sym_pair] = STATE(5317), + [sym_pair_pattern] = STATE(5314), + [sym__property_name] = STATE(3086), + [sym_computed_property_name] = STATE(3086), + [sym_method_signature] = STATE(3820), + [sym_accessibility_modifier] = STATE(2736), + [sym_override_modifier] = STATE(2766), + [sym_call_signature] = STATE(3820), + [sym_property_signature] = STATE(3820), + [sym_type_parameters] = STATE(5270), + [sym_construct_signature] = STATE(3820), + [sym_index_signature] = STATE(3820), + [aux_sym_export_statement_repeat1] = STATE(4504), [sym_identifier] = ACTIONS(3384), [anon_sym_export] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(3236), @@ -136511,14 +136571,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3384), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3391), [anon_sym_new] = ACTIONS(3393), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -136543,41 +136603,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1153] = { - [sym_nested_identifier] = STATE(1498), - [sym_string] = STATE(1500), - [sym__module] = STATE(1740), - [sym_identifier] = ACTIONS(3405), + [sym_type_arguments] = STATE(2889), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_EQ] = ACTIONS(3405), + [anon_sym_as] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_in] = ACTIONS(3405), + [anon_sym_COLON] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_RBRACK] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3405), + [anon_sym_DOT] = ACTIONS(3407), + [anon_sym_QMARK_DOT] = ACTIONS(3407), + [anon_sym_PLUS_EQ] = ACTIONS(3407), + [anon_sym_DASH_EQ] = ACTIONS(3407), + [anon_sym_STAR_EQ] = ACTIONS(3407), + [anon_sym_SLASH_EQ] = ACTIONS(3407), + [anon_sym_PERCENT_EQ] = ACTIONS(3407), + [anon_sym_CARET_EQ] = ACTIONS(3407), + [anon_sym_AMP_EQ] = ACTIONS(3407), + [anon_sym_PIPE_EQ] = ACTIONS(3407), + [anon_sym_GT_GT_EQ] = ACTIONS(3407), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3407), + [anon_sym_LT_LT_EQ] = ACTIONS(3407), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3407), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3407), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3407), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_GT_GT_GT] = ACTIONS(3405), + [anon_sym_LT_LT] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_CARET] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_PERCENT] = ACTIONS(3405), + [anon_sym_STAR_STAR] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_LT_EQ] = ACTIONS(3407), + [anon_sym_EQ_EQ] = ACTIONS(3405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3407), + [anon_sym_BANG_EQ] = ACTIONS(3405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3407), + [anon_sym_GT_EQ] = ACTIONS(3407), + [anon_sym_QMARK_QMARK] = ACTIONS(3405), + [anon_sym_instanceof] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3407), + [anon_sym_QMARK] = ACTIONS(3405), + [anon_sym_satisfies] = ACTIONS(3407), + [anon_sym_extends] = ACTIONS(3409), + [anon_sym_implements] = ACTIONS(3407), + [sym__ternary_qmark] = ACTIONS(3407), + [sym_html_comment] = ACTIONS(5), + }, + [1154] = { + [sym_nested_identifier] = STATE(743), + [sym_string] = STATE(762), + [sym__module] = STATE(874), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136592,59 +136719,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1154] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [sym_identifier] = ACTIONS(3376), + [1155] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1539), + [sym__module] = STATE(1673), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(842), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(883), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(883), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136659,59 +136787,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1155] = { - [sym_nested_identifier] = STATE(223), - [sym_string] = STATE(216), - [sym__module] = STATE(245), - [sym_identifier] = ACTIONS(3370), + [1156] = { + [sym_nested_identifier] = STATE(1506), + [sym_string] = STATE(1507), + [sym__module] = STATE(1736), + [sym_identifier] = ACTIONS(3411), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136726,60 +136853,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1156] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [1157] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1539), + [sym__module] = STATE(1673), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136794,58 +136920,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1157] = { - [sym_nested_identifier] = STATE(4574), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [sym_identifier] = ACTIONS(3407), + [1158] = { + [sym_nested_identifier] = STATE(219), + [sym_string] = STATE(224), + [sym__module] = STATE(249), + [sym_identifier] = ACTIONS(3376), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3380), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136860,59 +136987,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1158] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [sym_identifier] = ACTIONS(3368), + [1159] = { + [sym_type_arguments] = STATE(2901), + [anon_sym_STAR] = ACTIONS(3413), + [anon_sym_EQ] = ACTIONS(3413), + [anon_sym_as] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_COMMA] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3413), + [anon_sym_COLON] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_RBRACK] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3413), + [anon_sym_DOT] = ACTIONS(3415), + [anon_sym_QMARK_DOT] = ACTIONS(3415), + [anon_sym_PLUS_EQ] = ACTIONS(3415), + [anon_sym_DASH_EQ] = ACTIONS(3415), + [anon_sym_STAR_EQ] = ACTIONS(3415), + [anon_sym_SLASH_EQ] = ACTIONS(3415), + [anon_sym_PERCENT_EQ] = ACTIONS(3415), + [anon_sym_CARET_EQ] = ACTIONS(3415), + [anon_sym_AMP_EQ] = ACTIONS(3415), + [anon_sym_PIPE_EQ] = ACTIONS(3415), + [anon_sym_GT_GT_EQ] = ACTIONS(3415), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3415), + [anon_sym_LT_LT_EQ] = ACTIONS(3415), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3415), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3415), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3415), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(3413), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_GT_GT_GT] = ACTIONS(3413), + [anon_sym_LT_LT] = ACTIONS(3413), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_CARET] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_PERCENT] = ACTIONS(3413), + [anon_sym_STAR_STAR] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_LT_EQ] = ACTIONS(3415), + [anon_sym_EQ_EQ] = ACTIONS(3413), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3415), + [anon_sym_BANG_EQ] = ACTIONS(3413), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3415), + [anon_sym_GT_EQ] = ACTIONS(3415), + [anon_sym_QMARK_QMARK] = ACTIONS(3413), + [anon_sym_instanceof] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3415), + [anon_sym_QMARK] = ACTIONS(3413), + [anon_sym_satisfies] = ACTIONS(3415), + [anon_sym_extends] = ACTIONS(3417), + [anon_sym_implements] = ACTIONS(3415), + [sym__ternary_qmark] = ACTIONS(3415), + [sym_html_comment] = ACTIONS(5), + }, + [1160] = { + [sym_nested_identifier] = STATE(1506), + [sym_string] = STATE(1507), + [sym__module] = STATE(1736), + [sym_identifier] = ACTIONS(3411), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136927,59 +137121,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1159] = { - [sym_nested_identifier] = STATE(1498), - [sym_string] = STATE(1500), - [sym__module] = STATE(1740), - [sym_identifier] = ACTIONS(3405), + [1161] = { + [sym_nested_identifier] = STATE(1506), + [sym_string] = STATE(1507), + [sym__module] = STATE(1736), + [sym_identifier] = ACTIONS(3411), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(858), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(864), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136994,59 +137188,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1160] = { - [sym_nested_identifier] = STATE(1498), - [sym_string] = STATE(1500), - [sym__module] = STATE(1740), - [sym_identifier] = ACTIONS(3405), + [1162] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1539), + [sym__module] = STATE(1673), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(832), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137061,59 +137255,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1161] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), - [sym_identifier] = ACTIONS(3382), + [1163] = { + [sym_variable_declarator] = STATE(4520), + [sym_object_pattern] = STATE(3652), + [sym_array_pattern] = STATE(3652), + [sym__destructuring_pattern] = STATE(3652), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137128,59 +137322,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1162] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), + [1164] = { + [sym_variable_declarator] = STATE(4520), + [sym_object_pattern] = STATE(3652), + [sym_array_pattern] = STATE(3652), + [sym__destructuring_pattern] = STATE(3652), [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137195,59 +137389,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1163] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), - [sym_identifier] = ACTIONS(3382), + [1165] = { + [sym_nested_identifier] = STATE(743), + [sym_string] = STATE(762), + [sym__module] = STATE(874), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137262,59 +137456,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1164] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [sym_identifier] = ACTIONS(3376), + [1166] = { + [sym_variable_declarator] = STATE(4520), + [sym_object_pattern] = STATE(3652), + [sym_array_pattern] = STATE(3652), + [sym__destructuring_pattern] = STATE(3652), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137329,59 +137523,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1165] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [sym_identifier] = ACTIONS(3376), + [1167] = { + [sym_nested_identifier] = STATE(4562), + [sym_string] = STATE(762), + [sym__module] = STATE(874), + [sym_identifier] = ACTIONS(3419), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137396,59 +137590,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1166] = { - [sym_nested_identifier] = STATE(1498), - [sym_string] = STATE(1500), - [sym__module] = STATE(1740), - [sym_identifier] = ACTIONS(3405), + [1168] = { + [sym_nested_identifier] = STATE(1506), + [sym_string] = STATE(1507), + [sym__module] = STATE(1736), + [sym_identifier] = ACTIONS(3411), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(870), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137463,189 +137657,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 14, - ACTIONS(691), 1, - anon_sym_EQ, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LT, - ACTIONS(3409), 1, - sym_identifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 23, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [93] = 14, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, - anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(881), 1, - anon_sym_of, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 14, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 23, - anon_sym_STAR, - anon_sym_as, - 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, - anon_sym_instanceof, - anon_sym_satisfies, - [186] = 3, + [0] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3411), 23, + ACTIONS(3421), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137669,7 +137705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3413), 39, + ACTIONS(3423), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137709,34 +137745,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [257] = 14, - ACTIONS(691), 1, - anon_sym_EQ, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, + [71] = 14, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LT, - ACTIONS(3409), 1, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3382), 1, sym_identifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -137748,7 +137784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137768,7 +137804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137783,55 +137818,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [350] = 4, - ACTIONS(3419), 1, - anon_sym_extends, + [164] = 13, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(3425), 1, + sym_identifier, + STATE(4520), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3415), 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(3417), 38, + STATE(3465), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137847,25 +137878,10 @@ 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, - [423] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3421), 23, + ACTIONS(120), 23, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137884,54 +137900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3423), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [494] = 4, - ACTIONS(3429), 1, - anon_sym_extends, + [255] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 23, + ACTIONS(3427), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137955,7 +137930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3427), 38, + ACTIONS(3429), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137964,6 +137939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137994,7 +137970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [567] = 3, + [326] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -138062,35 +138038,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [638] = 14, - ACTIONS(3437), 1, + [397] = 14, + ACTIONS(691), 1, anon_sym_EQ, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, anon_sym_LT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(3435), 1, + sym_identifier, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3453), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138106,42 +138093,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, - sym__ternary_qmark, + ACTIONS(120), 23, + anon_sym_STAR, anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [490] = 15, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(222), 1, anon_sym_RBRACK, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 17, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [731] = 14, + anon_sym_instanceof, + anon_sym_satisfies, + [585] = 14, ACTIONS(691), 1, anon_sym_EQ, ACTIONS(701), 1, @@ -138156,16 +138212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2259), 1, anon_sym_LT, - ACTIONS(3409), 1, + ACTIONS(3435), 1, sym_identifier, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -138180,7 +138236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138220,11 +138276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [824] = 3, + [678] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3415), 23, + ACTIONS(3405), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138248,7 +138304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3417), 39, + ACTIONS(3407), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138288,49 +138344,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [895] = 3, + [749] = 14, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_EQ_GT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, + anon_sym_LT, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3443), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3447), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3427), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138346,6 +138388,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(3441), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -138355,12 +138405,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [966] = 3, + ACTIONS(3437), 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, + [842] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3457), 23, + ACTIONS(3413), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138384,7 +138451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3459), 39, + ACTIONS(3415), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138424,11 +138491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1037] = 3, + [913] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 23, + ACTIONS(3459), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138452,7 +138519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3463), 39, + ACTIONS(3461), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138492,27 +138559,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1108] = 12, - ACTIONS(146), 1, + [984] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(939), 1, + ACTIONS(907), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(913), 1, anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -138527,7 +138594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138569,64 +138636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [1197] = 15, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(890), 1, - anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_COLON, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + [1073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 24, + ACTIONS(3463), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138647,29 +138663,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3465), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, - [1292] = 12, - ACTIONS(146), 1, + anon_sym_implements, + [1144] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(814), 1, + ACTIONS(832), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(913), 1, anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -138684,7 +138739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138726,35 +138781,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [1381] = 13, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, + [1233] = 14, + ACTIONS(691), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(881), 1, - anon_sym_of, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(3465), 1, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + ACTIONS(3435), 1, sym_identifier, - STATE(4496), 1, - sym_variable_declarator, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3467), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(158), 13, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138764,7 +138820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138784,6 +138840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138798,17 +138855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1472] = 3, + [1326] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2456), 22, + ACTIONS(2512), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138831,7 +138887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2454), 39, + ACTIONS(2510), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138871,31 +138927,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1542] = 14, + [1396] = 14, ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(146), 1, + anon_sym_COMMA, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_COMMA, + ACTIONS(222), 1, + anon_sym_RBRACK, ACTIONS(890), 1, anon_sym_EQ, ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -138908,7 +138964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138949,50 +139005,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1634] = 14, - ACTIONS(3437), 1, + [1488] = 13, + ACTIONS(691), 1, anon_sym_EQ, - ACTIONS(3449), 1, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3467), 1, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3469), 1, - anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_QMARK_DOT, - ACTIONS(3473), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(3046), 1, - sym_arguments, - STATE(3197), 1, - sym_type_arguments, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3439), 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(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139008,7 +139043,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(3435), 18, + ACTIONS(157), 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(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139018,7 +139071,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, @@ -139027,32 +139082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1726] = 12, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(1505), 1, + [1578] = 13, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(3407), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(933), 1, + anon_sym_EQ, + ACTIONS(3382), 1, sym_identifier, - STATE(781), 1, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, sym_string, - STATE(900), 1, + STATE(1673), 1, sym__module, - STATE(4574), 1, - sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139062,7 +139118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139103,59 +139159,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1814] = 11, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - STATE(4487), 1, - sym_variable_declarator, + [1668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(158), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 24, + ACTIONS(2452), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139176,31 +139186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1900] = 13, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(724), 1, + ACTIONS(2450), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3477), 1, anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3482), 1, - anon_sym_LT, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139216,15 +139216,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(3439), 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, @@ -139234,50 +139225,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 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, - [1990] = 13, - ACTIONS(691), 1, + anon_sym_implements, + [1738] = 12, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, + ACTIONS(3451), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, anon_sym_LT, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(3479), 1, + anon_sym_extends, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3467), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3470), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139293,37 +139265,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(158), 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(120), 20, + ACTIONS(3437), 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, @@ -139332,52 +139283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2080] = 13, - ACTIONS(691), 1, - anon_sym_EQ, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LT, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(158), 17, - sym__automatic_semicolon, + ACTIONS(3441), 18, 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -139388,52 +139302,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 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, - [2170] = 12, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(3370), 1, - sym_identifier, - ACTIONS(3372), 1, + [1826] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(3374), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - STATE(216), 1, - sym_string, - STATE(223), 1, + ACTIONS(919), 1, + anon_sym_EQ_GT, + ACTIONS(925), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, sym_nested_identifier, - STATE(245), 1, + STATE(1539), 1, + sym_string, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 14, sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139444,7 +139337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139485,27 +139378,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2258] = 11, - ACTIONS(909), 1, + [1914] = 11, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(3376), 1, + ACTIONS(3368), 1, sym_identifier, - ACTIONS(3378), 1, + ACTIONS(3370), 1, anon_sym_LBRACE, - ACTIONS(3380), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, - STATE(4496), 1, + STATE(4589), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, + STATE(3652), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(158), 13, + ACTIONS(157), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -139519,7 +139412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139560,13 +139453,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2344] = 5, - ACTIONS(3485), 1, + [2000] = 12, + ACTIONS(939), 1, anon_sym_EQ, + ACTIONS(945), 1, + anon_sym_EQ_GT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3374), 1, + sym_identifier, + STATE(743), 1, + sym_nested_identifier, + STATE(762), 1, + sym_string, + STATE(874), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139582,8 +139504,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(3435), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139604,52 +139527,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2418] = 12, - ACTIONS(909), 1, + [2088] = 12, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(1505), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3368), 1, + ACTIONS(3481), 1, sym_identifier, - STATE(751), 1, + STATE(3530), 1, sym_nested_identifier, - STATE(781), 1, + STATE(3661), 1, sym_string, - STATE(900), 1, + STATE(3964), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -139664,7 +139564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139705,31 +139605,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2506] = 12, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(1583), 1, + [2176] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(3487), 1, + ACTIONS(832), 1, + anon_sym_EQ, + ACTIONS(919), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, sym_identifier, - STATE(3504), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(3657), 1, + STATE(1539), 1, sym_string, - STATE(4416), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 14, sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139740,7 +139640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139781,31 +139681,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2594] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(925), 1, + [2264] = 12, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(3382), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3419), 1, sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, + STATE(762), 1, sym_string, - STATE(1628), 1, + STATE(874), 1, sym__module, + STATE(4562), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139816,7 +139716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139857,29 +139757,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2682] = 13, + [2352] = 13, + ACTIONS(691), 1, + anon_sym_EQ, ACTIONS(697), 1, anon_sym_RBRACE, ACTIONS(701), 1, anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3477), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3482), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4663), 1, aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139895,7 +139795,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(3439), 17, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139913,7 +139813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139934,42 +139834,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2772] = 12, - ACTIONS(67), 1, - anon_sym_DQUOTE, - ACTIONS(69), 1, - anon_sym_SQUOTE, - ACTIONS(909), 1, + [2442] = 5, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(3405), 1, - sym_identifier, - STATE(1498), 1, - sym_nested_identifier, - STATE(1500), 1, - sym_string, - STATE(1740), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 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, + ACTIONS(3441), 24, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + anon_sym_implements, + [2516] = 13, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3487), 1, + anon_sym_LPAREN, + ACTIONS(3490), 1, + anon_sym_EQ_GT, + ACTIONS(3492), 1, + anon_sym_LT, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139985,9 +139941,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(120), 24, - anon_sym_STAR, + ACTIONS(3441), 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(3437), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140004,35 +139977,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2860] = 13, - ACTIONS(146), 1, + [2606] = 13, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(903), 1, + ACTIONS(933), 1, anon_sym_EQ, - ACTIONS(919), 1, + ACTIONS(949), 1, anon_sym_COLON, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 13, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -140046,7 +140016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140087,30 +140057,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2950] = 12, - ACTIONS(3437), 1, + [2696] = 13, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3449), 1, + ACTIONS(3487), 1, + anon_sym_LPAREN, + ACTIONS(3490), 1, anon_sym_EQ_GT, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3492), 1, anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - STATE(2909), 1, - sym_type_arguments, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140126,16 +140095,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(3441), 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(3437), 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, @@ -140144,48 +140134,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3038] = 13, + [2786] = 13, + ACTIONS(691), 1, + anon_sym_EQ, ACTIONS(701), 1, anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, ACTIONS(720), 1, anon_sym_QMARK, ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3477), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3482), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140201,7 +140172,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(3439), 17, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140219,7 +140190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140240,33 +140211,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3128] = 13, - ACTIONS(146), 1, + [2876] = 14, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3451), 1, + anon_sym_EQ_GT, + ACTIONS(3495), 1, + anon_sym_LPAREN, + ACTIONS(3497), 1, + anon_sym_DOT, + ACTIONS(3499), 1, + anon_sym_QMARK_DOT, + ACTIONS(3501), 1, + anon_sym_LT, + STATE(3111), 1, + sym_arguments, + STATE(3225), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3447), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3443), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3441), 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(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 18, + 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, + [2968] = 12, + ACTIONS(67), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(69), 1, anon_sym_SQUOTE, - ACTIONS(895), 1, - anon_sym_COLON, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3382), 1, + ACTIONS(945), 1, + anon_sym_EQ_GT, + ACTIONS(3411), 1, sym_identifier, - STATE(1502), 1, + STATE(1506), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1507), 1, sym_string, - STATE(1628), 1, + STATE(1736), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 13, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140276,7 +140324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140317,29 +140365,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3218] = 13, - ACTIONS(691), 1, + [3056] = 11, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LT, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + STATE(4520), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + STATE(3652), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140355,26 +140415,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(158), 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(120), 20, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140391,30 +140434,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, - [3308] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(814), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3142] = 12, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(3382), 1, + ACTIONS(3376), 1, sym_identifier, - STATE(1502), 1, + ACTIONS(3378), 1, + anon_sym_DQUOTE, + ACTIONS(3380), 1, + anon_sym_SQUOTE, + STATE(219), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(224), 1, sym_string, - STATE(1628), 1, + STATE(249), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -140429,7 +140475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140470,31 +140516,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3396] = 12, - ACTIONS(146), 1, + [3230] = 13, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3487), 1, + anon_sym_LPAREN, + ACTIONS(3490), 1, + anon_sym_EQ_GT, + ACTIONS(3492), 1, + anon_sym_LT, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3441), 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(3437), 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, + [3320] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(814), 1, + ACTIONS(832), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140505,7 +140628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140546,24 +140669,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3484] = 3, + [3408] = 9, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(1685), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2452), 22, + ACTIONS(3503), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3506), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 18, 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, @@ -140573,21 +140721,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2450), 39, + ACTIONS(157), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_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, + [3489] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(933), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 13, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140603,37 +140791,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_satisfies, + [3576] = 8, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3513), 1, + anon_sym_DOT, + ACTIONS(3515), 1, + anon_sym_LT, + STATE(1267), 1, + sym_arguments, + STATE(5367), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3511), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [3554] = 12, - ACTIONS(146), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3509), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [3655] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(814), 1, + ACTIONS(832), 1, anon_sym_EQ, ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 13, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -140647,7 +140921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140688,31 +140962,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3641] = 12, - ACTIONS(146), 1, + [3742] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, + ACTIONS(955), 1, anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 13, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140722,7 +140995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140738,11 +141011,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(120), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140763,27 +141037,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3728] = 12, - ACTIONS(146), 1, + [3829] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(814), 1, + ACTIONS(832), 1, anon_sym_EQ, ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -140796,7 +141070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140838,29 +141112,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3815] = 13, - ACTIONS(146), 1, + [3916] = 13, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(832), 1, anon_sym_EQ, ACTIONS(834), 1, anon_sym_COLON, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -140873,7 +141147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140914,50 +141188,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3904] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3480), 1, + [4005] = 14, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3503), 1, + ACTIONS(832), 1, anon_sym_EQ, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 14, - sym__automatic_semicolon, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140973,67 +141241,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(3435), 17, + ACTIONS(120), 23, anon_sym_STAR, + anon_sym_as, 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, - [3995] = 9, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, - anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3508), 3, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 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_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -141043,55 +141263,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(158), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [4076] = 14, - ACTIONS(3443), 1, + [4096] = 14, + ACTIONS(3445), 1, anon_sym_LPAREN, - ACTIONS(3447), 1, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3451), 1, + ACTIONS(3453), 1, anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3457), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3517), 1, anon_sym_EQ, - ACTIONS(3513), 1, + ACTIONS(3519), 1, anon_sym_EQ_GT, - STATE(2880), 1, + STATE(2898), 1, sym_arguments, - STATE(2987), 1, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(3443), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3445), 3, + ACTIONS(3447), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 14, + ACTIONS(3441), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141106,7 +141308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141122,7 +141324,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(3435), 17, + ACTIONS(3437), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141140,183 +141342,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4167] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(955), 1, - anon_sym_EQ, - ACTIONS(961), 1, + [4187] = 13, + ACTIONS(3451), 1, anon_sym_EQ_GT, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3467), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4254] = 8, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3519), 1, - anon_sym_DOT, ACTIONS(3521), 1, - anon_sym_LT, - STATE(1270), 1, - sym_arguments, - STATE(5556), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3517), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3515), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [4333] = 16, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, + anon_sym_EQ, + ACTIONS(3528), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3531), 1, anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3532), 1, - anon_sym_QMARK, - STATE(2909), 1, + STATE(3215), 1, sym_type_arguments, - STATE(5414), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, + ACTIONS(3470), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3526), 2, + ACTIONS(3524), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3439), 13, + anon_sym_RBRACE, + ACTIONS(3479), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3441), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141330,7 +141383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141346,7 +141399,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(3435), 18, + ACTIONS(3437), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141365,38 +141418,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4428] = 13, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3523), 1, + [4276] = 14, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3535), 1, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3538), 1, + ACTIONS(3451), 1, + anon_sym_EQ_GT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, anon_sym_LT, - STATE(3245), 1, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, + ACTIONS(3447), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3526), 2, - anon_sym_COMMA, + ACTIONS(3443), 4, anon_sym_RBRACE, - ACTIONS(3501), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3439), 13, + ACTIONS(3441), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141406,7 +141460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141422,7 +141476,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(3435), 18, + ACTIONS(3437), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141441,39 +141495,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4517] = 14, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3443), 1, + [4367] = 14, + ACTIONS(3445), 1, anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3451), 1, + anon_sym_DOT, + ACTIONS(3453), 1, anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3457), 1, anon_sym_LT, - STATE(2880), 1, + ACTIONS(3490), 1, + anon_sym_EQ_GT, + ACTIONS(3534), 1, + anon_sym_EQ, + STATE(2898), 1, sym_arguments, - STATE(2987), 1, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(3443), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3439), 13, + ACTIONS(3447), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 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, @@ -141483,7 +141538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141499,11 +141554,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(3435), 18, + ACTIONS(3437), 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, @@ -141518,44 +141572,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4608] = 14, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, + [4458] = 16, + ACTIONS(3451), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(3467), 1, + anon_sym_LBRACK, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_extends, + ACTIONS(3521), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(881), 1, - anon_sym_of, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(3538), 1, + anon_sym_QMARK, + STATE(2958), 1, + sym_type_arguments, + STATE(5418), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(3470), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3524), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3441), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141571,39 +141632,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(120), 23, + ACTIONS(3437), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4699] = 6, - ACTIONS(156), 1, + [4553] = 6, + ACTIONS(3451), 1, anon_sym_EQ_GT, - ACTIONS(842), 1, + ACTIONS(3483), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141619,7 +141675,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(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141641,7 +141697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(158), 21, + ACTIONS(3441), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -141663,23 +141719,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4773] = 8, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3546), 1, + [4627] = 8, + ACTIONS(3451), 1, anon_sym_EQ_GT, - ACTIONS(3548), 1, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(3544), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, + ACTIONS(3541), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141695,7 +141751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141711,7 +141767,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141733,28 +141789,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4851] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1035), 1, + [4705] = 8, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(3550), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(3546), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3441), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -141763,10 +141816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141782,9 +141837,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(120), 24, + ACTIONS(3437), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141805,17 +141859,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4937] = 6, - ACTIONS(3449), 1, + [4783] = 6, + ACTIONS(3556), 1, + anon_sym_AT, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3554), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3552), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [4857] = 15, + ACTIONS(3451), 1, anon_sym_EQ_GT, - ACTIONS(3485), 1, + ACTIONS(3467), 1, + anon_sym_LBRACK, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_extends, + ACTIONS(3521), 1, anon_sym_EQ, + ACTIONS(3524), 1, + anon_sym_RPAREN, + ACTIONS(3544), 1, + anon_sym_QMARK, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3470), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3541), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3441), 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(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141831,7 +141985,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(3435), 21, + ACTIONS(3437), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141841,49 +141995,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 21, - 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, + [4949] = 12, + ACTIONS(3473), 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, - [5011] = 6, - ACTIONS(3437), 1, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_extends, + ACTIONS(3517), 1, anon_sym_EQ, - ACTIONS(3449), 1, + ACTIONS(3519), 1, anon_sym_EQ_GT, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3467), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3470), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141899,8 +142043,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(3435), 21, + ACTIONS(3441), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(3437), 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, + [5035] = 5, + ACTIONS(3409), 1, + anon_sym_extends, + STATE(2889), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3405), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141921,19 +142109,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 21, + ACTIONS(3407), 35, + sym__automatic_semicolon, 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_of, 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, @@ -141943,23 +142145,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5085] = 8, - ACTIONS(220), 1, - anon_sym_EQ, - ACTIONS(225), 1, + [5107] = 8, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(750), 1, + ACTIONS(832), 1, + anon_sym_EQ, + ACTIONS(836), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(223), 5, + ACTIONS(834), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141975,7 +142177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142013,28 +142215,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5163] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, + [5185] = 8, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3548), 1, anon_sym_EQ_GT, - ACTIONS(973), 1, + ACTIONS(3559), 1, anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(3562), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3441), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -142043,10 +142242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142062,9 +142263,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(120), 24, + ACTIONS(3437), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142085,42 +142285,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + [5263] = 5, + ACTIONS(3417), 1, + anon_sym_extends, + STATE(2901), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3413), 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(3415), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, - [5249] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, + [5335] = 15, + ACTIONS(3467), 1, + anon_sym_LBRACK, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_extends, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3548), 1, anon_sym_EQ_GT, - ACTIONS(971), 1, + ACTIONS(3559), 1, anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + ACTIONS(3564), 1, + anon_sym_RPAREN, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(3470), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3562), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3441), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142136,9 +142410,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(120), 24, + ACTIONS(3437), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142147,63 +142420,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5335] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, + [5427] = 12, + ACTIONS(3473), 1, anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_LT, - ACTIONS(3550), 1, - anon_sym_EQ, - ACTIONS(3552), 1, + ACTIONS(3479), 1, + anon_sym_extends, + ACTIONS(3490), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, + ACTIONS(3534), 1, + anon_sym_EQ, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(3467), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, + ACTIONS(3470), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 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(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142219,7 +142468,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(3435), 17, + ACTIONS(3441), 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(3437), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142237,15 +142503,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5425] = 6, - ACTIONS(156), 1, + [5513] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(973), 1, anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142261,8 +142552,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(120), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142283,71 +142575,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(158), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_instanceof, + anon_sym_satisfies, + [5599] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3569), 16, + anon_sym_LBRACE, + anon_sym_BANG, 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [5499] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3567), 43, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(3556), 1, + 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_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [5667] = 12, + ACTIONS(155), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(832), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3571), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 13, - sym__automatic_semicolon, + STATE(4944), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 11, sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, + 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(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142363,46 +142692,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(120), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5589] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(981), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5753] = 8, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(750), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(126), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(157), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -142411,10 +142743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142430,9 +142764,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(120), 24, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142453,29 +142786,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + [5831] = 5, + STATE(2901), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3413), 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(3415), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, - [5675] = 8, - ACTIONS(117), 1, + [5903] = 9, + ACTIONS(219), 1, anon_sym_EQ, - ACTIONS(156), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(750), 1, - anon_sym_QMARK, + ACTIONS(3503), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(126), 5, + ACTIONS(3506), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1685), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(158), 15, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142487,7 +142888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142503,7 +142904,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(120), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142513,9 +142914,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, @@ -142525,40 +142924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5753] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, + [5983] = 6, ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(977), 1, + ACTIONS(832), 1, anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142574,9 +142948,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(120), 24, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142597,41 +142970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5839] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3558), 1, - anon_sym_EQ, - ACTIONS(3560), 1, - anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 13, + ACTIONS(157), 21, 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142641,61 +142992,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3435), 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, - [5929] = 12, - ACTIONS(146), 1, + [6057] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(969), 1, + ACTIONS(1031), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142708,7 +143025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142749,53 +143066,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6015] = 12, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3495), 1, + [6143] = 14, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3503), 1, + ACTIONS(3576), 1, anon_sym_EQ, - STATE(2909), 1, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3443), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3492), 3, + anon_sym_extends, + ACTIONS(3447), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3439), 16, + ACTIONS(3441), 13, 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, @@ -142805,59 +143108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 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, - [6101] = 12, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(881), 1, - anon_sym_of, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3562), 1, - sym_identifier, - ACTIONS(3564), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4623), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(158), 11, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142873,51 +143124,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 23, + ACTIONS(3437), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6187] = 12, - ACTIONS(146), 1, + [6233] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(967), 1, + ACTIONS(1033), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142930,7 +143175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142971,27 +143216,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6273] = 12, - ACTIONS(146), 1, + [6319] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(975), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143004,7 +143249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143045,27 +143290,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6359] = 12, - ACTIONS(146), 1, + [6405] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(979), 1, + ACTIONS(832), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143078,7 +143323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143119,42 +143364,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6445] = 9, - ACTIONS(117), 1, - anon_sym_EQ, - ACTIONS(156), 1, + [6491] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(967), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1683), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(158), 14, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143170,8 +143413,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(120), 19, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143180,7 +143424,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, @@ -143190,49 +143436,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6525] = 15, - ACTIONS(3449), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6577] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3523), 1, + ACTIONS(977), 1, anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_RPAREN, - ACTIONS(3548), 1, - anon_sym_QMARK, - STATE(2909), 1, - sym_type_arguments, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3439), 13, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143248,8 +143487,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(3435), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143258,34 +143498,42 @@ 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, - [6617] = 8, - ACTIONS(225), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6663] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(971), 1, anon_sym_EQ, - ACTIONS(836), 1, - anon_sym_QMARK, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(834), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(158), 15, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -143294,12 +143542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143315,8 +143561,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(120), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143337,48 +143584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6695] = 14, - ACTIONS(3437), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6749] = 6, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_EQ_GT, ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3441), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3439), 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(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143394,7 +143610,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(3435), 18, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143404,101 +143620,61 @@ 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, - [6785] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3572), 16, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(3441), 21, + 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_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3570), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [6853] = 12, - ACTIONS(146), 1, + anon_sym_satisfies, + [6823] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(969), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1539), 1, sym_string, - STATE(1628), 1, + STATE(1673), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143511,7 +143687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143552,49 +143728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6939] = 15, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3546), 1, + [6909] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3548), 1, - anon_sym_QMARK, - ACTIONS(3574), 1, - anon_sym_RPAREN, - STATE(2909), 1, - sym_type_arguments, + ACTIONS(842), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3544), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3439), 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(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143610,7 +143752,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(3435), 18, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143620,32 +143762,57 @@ 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, - [7031] = 8, - ACTIONS(3485), 1, + ACTIONS(157), 21, + 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6983] = 8, + ACTIONS(219), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3579), 1, + ACTIONS(750), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 5, + ACTIONS(222), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -143661,7 +143828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143677,7 +143844,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143699,25 +143866,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7109] = 8, - ACTIONS(3449), 1, + [7061] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3523), 1, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, + ACTIONS(3382), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1539), 1, + sym_string, + STATE(1673), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -143726,12 +143896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143747,8 +143915,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(3435), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143769,30 +143938,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7187] = 12, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3511), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7147] = 14, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3513), 1, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3451), 1, anon_sym_EQ_GT, - STATE(2909), 1, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, + anon_sym_LT, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3492), 3, - anon_sym_GT, + ACTIONS(3447), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3453), 15, + anon_sym_QMARK, + ACTIONS(3443), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3441), 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(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143808,27 +143997,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(3439), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(3435), 17, + ACTIONS(3437), 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, @@ -143843,114 +144016,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7273] = 6, - ACTIONS(3585), 1, - anon_sym_AT, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3583), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3581), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [7347] = 12, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3558), 1, - anon_sym_EQ, - ACTIONS(3560), 1, - anon_sym_EQ_GT, - STATE(2909), 1, + [7237] = 5, + STATE(3116), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, - anon_sym_COMMA, + ACTIONS(3409), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(3492), 3, + anon_sym_PIPE_RBRACE, + ACTIONS(3405), 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(3439), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3407), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143966,64 +144074,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 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, + [7309] = 5, + STATE(3118), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3413), 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, - [7432] = 13, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - ACTIONS(3577), 1, - anon_sym_COLON, - STATE(2909), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3501), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3439), 13, + ACTIONS(3415), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144039,56 +144141,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 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, - [7519] = 14, - ACTIONS(3437), 1, - anon_sym_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, + [7381] = 14, + ACTIONS(3445), 1, + anon_sym_LPAREN, ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3577), 1, - anon_sym_COLON, - STATE(2909), 1, + ACTIONS(3580), 1, + anon_sym_EQ, + ACTIONS(3582), 1, + anon_sym_EQ_GT, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, + ACTIONS(3443), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3447), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3588), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3439), 13, + ACTIONS(3441), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144098,7 +144192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144114,11 +144208,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(3435), 18, + ACTIONS(3437), 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, @@ -144133,16 +144226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7608] = 4, + [7471] = 5, + STATE(2889), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3409), 3, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3425), 22, + ACTIONS(3405), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -144165,12 +144259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 32, + ACTIONS(3407), 33, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144198,24 +144293,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7677] = 9, - ACTIONS(864), 1, + [7543] = 14, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, + anon_sym_LT, + ACTIONS(3584), 1, anon_sym_EQ, - ACTIONS(870), 1, + ACTIONS(3586), 1, anon_sym_EQ_GT, - ACTIONS(1683), 1, - anon_sym_extends, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, + ACTIONS(3443), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3508), 3, + anon_sym_extends, + ACTIONS(3447), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(164), 15, + ACTIONS(3441), 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(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144231,25 +144351,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(158), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 18, + ACTIONS(3437), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144264,19 +144366,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7756] = 3, + [7633] = 7, + ACTIONS(3556), 1, + anon_sym_AT, + ACTIONS(3588), 1, + anon_sym_class, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3594), 16, + ACTIONS(3554), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -144288,8 +144396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3592), 42, + ACTIONS(3552), 40, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -144298,7 +144405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, - anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -144331,85 +144437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [7823] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3425), 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(3427), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [7892] = 8, + [7708] = 8, ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(854), 1, + ACTIONS(870), 1, anon_sym_EQ, - ACTIONS(858), 1, + ACTIONS(872), 1, anon_sym_COLON, - ACTIONS(3409), 1, + ACTIONS(3435), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -144425,7 +144465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144466,13 +144506,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [7969] = 5, - ACTIONS(3437), 1, + [7785] = 7, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3559), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3562), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3441), 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(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144488,7 +144552,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144510,17 +144574,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 21, - sym__ternary_qmark, - anon_sym_as, + [7860] = 7, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(3550), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3546), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(3441), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144532,35 +144604,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8040] = 12, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 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(3554), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7935] = 11, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(3556), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - STATE(2909), 1, - sym_type_arguments, + ACTIONS(750), 1, + anon_sym_QMARK, + ACTIONS(3503), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, + ACTIONS(126), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1685), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3492), 3, - anon_sym_GT, + ACTIONS(3506), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 15, - sym__automatic_semicolon, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144571,7 +144678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144587,10 +144694,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(3435), 17, + ACTIONS(120), 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, @@ -144602,41 +144710,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8125] = 14, - ACTIONS(3443), 1, + [8018] = 14, + ACTIONS(3445), 1, anon_sym_LPAREN, - ACTIONS(3447), 1, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3451), 1, + ACTIONS(3453), 1, anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3457), 1, anon_sym_LT, - ACTIONS(3596), 1, + ACTIONS(3591), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(3593), 1, anon_sym_EQ_GT, - STATE(2880), 1, + STATE(2898), 1, sym_arguments, - STATE(2987), 1, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(3443), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3445), 3, + ACTIONS(3447), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 12, + ACTIONS(3441), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144646,7 +144755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144662,7 +144771,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(3435), 17, + ACTIONS(3437), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144680,27 +144789,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8214] = 7, - ACTIONS(3541), 1, + [8107] = 14, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, + anon_sym_LT, + ACTIONS(3483), 1, anon_sym_EQ, ACTIONS(3548), 1, - anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, + ACTIONS(3447), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3443), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3439), 15, + anon_sym_extends, + ACTIONS(3441), 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, @@ -144710,7 +144829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144726,7 +144845,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(3435), 21, + ACTIONS(3437), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144736,38 +144855,140 @@ 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, - [8289] = 4, - ACTIONS(3419), 1, + [8196] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3597), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3595), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [8263] = 9, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(870), 1, + anon_sym_EQ, + ACTIONS(1685), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3415), 22, + ACTIONS(3503), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3506), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(157), 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(120), 18, 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, @@ -144777,18 +144998,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [8342] = 9, + ACTIONS(858), 1, + anon_sym_EQ, + ACTIONS(864), 1, + anon_sym_EQ_GT, + ACTIONS(1685), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3503), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3506), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144804,6 +145031,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(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144813,26 +145049,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8358] = 4, - ACTIONS(3429), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3425), 22, + ACTIONS(120), 18, 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, @@ -144842,18 +145068,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 35, - sym__automatic_semicolon, + [8421] = 14, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3451), 1, + anon_sym_EQ_GT, + ACTIONS(3467), 1, + anon_sym_LBRACK, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_extends, + ACTIONS(3546), 1, + anon_sym_COLON, + STATE(2958), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3470), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3599), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3441), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - 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(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144869,33 +145124,43 @@ 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, - [8427] = 7, - ACTIONS(3523), 1, + ACTIONS(3437), 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, + [8510] = 8, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(870), 1, anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, + ACTIONS(874), 1, + anon_sym_COLON, + ACTIONS(3435), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(157), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144903,12 +145168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144924,8 +145187,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(3435), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144946,32 +145210,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8502] = 11, - ACTIONS(220), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [8587] = 12, + ACTIONS(3467), 1, + anon_sym_LBRACK, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3576), 1, anon_sym_EQ, - ACTIONS(225), 1, + ACTIONS(3578), 1, anon_sym_EQ_GT, - ACTIONS(750), 1, - anon_sym_QMARK, - ACTIONS(3505), 1, - anon_sym_LBRACK, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(223), 2, + ACTIONS(3479), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1683), 2, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3508), 2, + ACTIONS(3470), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(158), 14, + ACTIONS(3441), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144982,7 +145251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144998,11 +145267,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(120), 19, + ACTIONS(3437), 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, @@ -145014,15 +145282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8585] = 3, + [8672] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 16, + ACTIONS(3605), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -145039,7 +145306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3600), 42, + ACTIONS(3603), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145082,38 +145349,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [8652] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, + [8739] = 13, + ACTIONS(3467), 1, + anon_sym_LBRACK, + ACTIONS(3473), 1, anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_LT, - ACTIONS(3604), 1, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(3606), 1, + ACTIONS(3546), 1, + anon_sym_COLON, + ACTIONS(3548), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, + ACTIONS(3470), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 12, + ACTIONS(3479), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3441), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145123,7 +145388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145139,10 +145404,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(3435), 17, + ACTIONS(3437), 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, @@ -145157,37 +145423,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8741] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, + [8826] = 12, + ACTIONS(3473), 1, anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_LT, - ACTIONS(3485), 1, + ACTIONS(3479), 1, + anon_sym_extends, + ACTIONS(3584), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(3586), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 4, + ACTIONS(3467), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3439), 11, + ACTIONS(3470), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 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, @@ -145197,7 +145461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + anon_sym_implements, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145213,11 +145478,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(3435), 18, + ACTIONS(3437), 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, @@ -145232,37 +145496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8830] = 7, - ACTIONS(3485), 1, + [8911] = 5, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3579), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3439), 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(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145278,7 +145518,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145300,92 +145540,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8905] = 7, - ACTIONS(3585), 1, - anon_sym_AT, - ACTIONS(3608), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3583), 14, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(3441), 21, + 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_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - ACTIONS(3581), 40, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [8980] = 9, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, + anon_sym_satisfies, + [8982] = 12, + ACTIONS(3467), 1, + anon_sym_LBRACK, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3580), 1, anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_extends, + ACTIONS(3582), 1, + anon_sym_EQ_GT, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, + ACTIONS(3479), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3508), 3, + anon_sym_extends, + ACTIONS(3470), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(164), 15, + ACTIONS(3441), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + 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(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145401,13 +145617,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 17, - sym__automatic_semicolon, + ACTIONS(3437), 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, + [9067] = 11, + ACTIONS(219), 1, + anon_sym_EQ, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(750), 1, + anon_sym_QMARK, + ACTIONS(3503), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(222), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1685), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3506), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(157), 14, 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, @@ -145419,10 +145671,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 18, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 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, @@ -145438,35 +145707,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9059] = 12, - ACTIONS(3495), 1, + [9150] = 14, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3550), 1, + ACTIONS(3607), 1, anon_sym_EQ, - ACTIONS(3552), 1, + ACTIONS(3609), 1, anon_sym_EQ_GT, - STATE(2909), 1, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3443), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3492), 3, + anon_sym_extends, + ACTIONS(3447), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 15, + ACTIONS(3441), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145476,8 +145748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145493,7 +145764,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(3435), 17, + ACTIONS(3437), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145511,19 +145782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9144] = 8, + [9239] = 8, ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(854), 1, + ACTIONS(870), 1, anon_sym_EQ, ACTIONS(876), 1, anon_sym_COLON, - ACTIONS(3409), 1, + ACTIONS(3435), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -145539,7 +145810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145580,62 +145851,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [9221] = 4, + [9316] = 7, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 3, + ACTIONS(3541), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3415), 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(3417), 33, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -145645,35 +145881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9290] = 8, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(856), 1, - anon_sym_COLON, - ACTIONS(3409), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145689,9 +145897,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(120), 24, + ACTIONS(3437), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145712,35 +145919,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9367] = 11, - ACTIONS(117), 1, + [9391] = 14, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, + anon_sym_LT, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(156), 1, + ACTIONS(3548), 1, anon_sym_EQ_GT, - ACTIONS(750), 1, - anon_sym_QMARK, - ACTIONS(3505), 1, - anon_sym_LBRACK, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(126), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1683), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3508), 2, + ACTIONS(3447), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(158), 14, + ACTIONS(3443), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3441), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145750,7 +145958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145766,7 +145974,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(120), 19, + ACTIONS(3437), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145782,20 +145990,20 @@ 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, - [9450] = 4, + [9479] = 6, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(3611), 1, + anon_sym_QMARK, + STATE(2901), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 22, + ACTIONS(3413), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145818,13 +146026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 32, + ACTIONS(3415), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -145851,42 +146059,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9519] = 11, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(834), 1, - anon_sym_COLON, - ACTIONS(842), 1, - anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_extends, - ACTIONS(3505), 1, - anon_sym_LBRACK, + [9551] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, + ACTIONS(3405), 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(3611), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(158), 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(3407), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + 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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145902,8 +146113,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 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, + [9617] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3413), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145912,7 +146137,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, @@ -145922,15 +146149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9601] = 6, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(164), 15, + ACTIONS(3415), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145946,17 +146176,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(158), 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, @@ -145966,8 +146185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + [9683] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145988,11 +146212,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9673] = 3, + ACTIONS(3465), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [9749] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 15, + ACTIONS(3511), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -146008,7 +146268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3515), 42, + ACTIONS(3509), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -146051,24 +146311,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [9739] = 9, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(3505), 1, - anon_sym_LBRACK, + [9815] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, + ACTIONS(3427), 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(164), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3429), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [9881] = 6, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(832), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146084,12 +146398,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(158), 16, + ACTIONS(157), 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, @@ -146101,16 +146418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 18, + ACTIONS(120), 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, @@ -146120,29 +146440,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9817] = 10, - ACTIONS(117), 1, + [9953] = 6, + ACTIONS(858), 1, anon_sym_EQ, - ACTIONS(156), 1, + ACTIONS(864), 1, anon_sym_EQ_GT, - ACTIONS(1685), 1, - anon_sym_QMARK, - ACTIONS(3505), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1683), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(158), 14, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(157), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146154,7 +146484,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(120), 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, + [10025] = 6, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(3519), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146170,7 +146530,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(120), 19, + ACTIONS(3441), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146180,7 +146560,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, @@ -146190,11 +146572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9897] = 3, + [10097] = 5, + STATE(2901), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3431), 22, + ACTIONS(3417), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3413), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146217,15 +146604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3433), 35, + ACTIONS(3415), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146253,11 +146637,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9963] = 3, + [10167] = 6, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(870), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(157), 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(120), 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, + [10239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2456), 22, + ACTIONS(3459), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146280,7 +146730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2454), 35, + ACTIONS(3461), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146316,13 +146766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10029] = 5, - ACTIONS(3485), 1, + [10305] = 6, + ACTIONS(3483), 1, anon_sym_EQ, + ACTIONS(3490), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146338,7 +146790,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(3439), 20, + ACTIONS(3441), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146346,7 +146798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146359,7 +146810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146381,80 +146832,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10099] = 3, + [10377] = 8, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(834), 1, + anon_sym_COLON, + ACTIONS(842), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3617), 15, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(883), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3615), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [10165] = 7, - ACTIONS(858), 1, - anon_sym_COLON, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3503), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + anon_sym_satisfies, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146470,26 +146878,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(3439), 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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146511,17 +146900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10239] = 7, - ACTIONS(712), 1, + [10453] = 6, + ACTIONS(3490), 1, anon_sym_EQ_GT, - ACTIONS(854), 1, + ACTIONS(3534), 1, anon_sym_EQ, - ACTIONS(858), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146537,11 +146924,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(158), 18, + ACTIONS(3441), 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, @@ -146556,7 +146944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146578,74 +146966,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10313] = 3, + [10525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3421), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3615), 15, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3423), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [10379] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3613), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [10591] = 5, + STATE(2889), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3415), 22, + ACTIONS(3409), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3405), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146668,15 +147061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 35, + ACTIONS(3407), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146704,11 +147094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10445] = 3, + [10661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 22, + ACTIONS(2452), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146731,7 +147121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 35, + ACTIONS(2450), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146767,47 +147157,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10511] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3485), 1, + [10727] = 9, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(3503), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(1685), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3445), 3, + ACTIONS(3506), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 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(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146823,7 +147190,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(3435), 17, + ACTIONS(157), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146838,28 +147222,34 @@ 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, - [10599] = 8, - ACTIONS(156), 1, + [10805] = 11, + ACTIONS(225), 1, anon_sym_EQ_GT, ACTIONS(834), 1, anon_sym_COLON, ACTIONS(842), 1, anon_sym_EQ, + ACTIONS(1685), 1, + anon_sym_extends, + ACTIONS(3503), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(883), 3, + ACTIONS(3506), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3617), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(158), 15, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146871,7 +147261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146887,7 +147277,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(120), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146897,9 +147287,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, @@ -146909,15 +147297,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10675] = 6, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3513), 1, + [10887] = 7, + ACTIONS(712), 1, anon_sym_EQ_GT, + ACTIONS(870), 1, + anon_sym_EQ, + ACTIONS(872), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146933,14 +147323,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(3439), 19, + ACTIONS(157), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146953,96 +147342,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 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, - [10747] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3457), 22, + ACTIONS(120), 21, 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(3459), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, - [10813] = 3, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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, + [10961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 22, + ACTIONS(2512), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147065,7 +147391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3463), 35, + ACTIONS(2510), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147101,44 +147427,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10879] = 12, - ACTIONS(3437), 1, + [11027] = 9, + ACTIONS(907), 1, anon_sym_EQ, - ACTIONS(3449), 1, + ACTIONS(913), 1, anon_sym_EQ_GT, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, + ACTIONS(1685), 1, anon_sym_extends, - STATE(2909), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_RBRACE, + ACTIONS(3503), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3492), 2, + ACTIONS(3506), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147154,11 +147460,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(3435), 18, + ACTIONS(157), 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(120), 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, @@ -147170,77 +147492,15 @@ 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, - [10963] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3621), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3619), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [11029] = 3, + [11105] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2452), 22, + ACTIONS(3431), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147263,7 +147523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2450), 35, + ACTIONS(3433), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147299,15 +147559,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11095] = 6, - ACTIONS(864), 1, + [11171] = 14, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(3457), 1, + anon_sym_LT, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(870), 1, + ACTIONS(3548), 1, anon_sym_EQ_GT, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3443), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3447), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 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(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147323,57 +147615,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(120), 21, + ACTIONS(3437), 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, - [11167] = 6, - ACTIONS(3480), 1, + [11259] = 9, + ACTIONS(919), 1, anon_sym_EQ_GT, - ACTIONS(3503), 1, + ACTIONS(925), 1, anon_sym_EQ, + ACTIONS(3503), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(1685), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3506), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147389,15 +147666,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(3439), 19, - sym__automatic_semicolon, + ACTIONS(157), 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, @@ -147409,19 +147683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 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, @@ -147431,52 +147702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11239] = 6, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, + [11337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(158), 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(120), 21, + ACTIONS(3421), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147497,15 +147729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11311] = 6, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(164), 15, + ACTIONS(3423), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147521,17 +147756,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(158), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, @@ -147541,46 +147765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 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, - [11383] = 9, - ACTIONS(939), 1, - anon_sym_EQ, - ACTIONS(945), 1, + [11403] = 7, + ACTIONS(874), 1, + anon_sym_COLON, + ACTIONS(3490), 1, anon_sym_EQ_GT, - ACTIONS(1683), 1, - anon_sym_extends, + ACTIONS(3534), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147596,11 +147791,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(158), 16, + ACTIONS(3441), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147612,17 +147810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(120), 18, + ACTIONS(3437), 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, @@ -147632,24 +147832,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11461] = 9, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, + [11477] = 10, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, + ACTIONS(832), 1, + anon_sym_EQ, + ACTIONS(834), 1, + anon_sym_COLON, + ACTIONS(3503), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, + ACTIONS(3506), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(164), 15, + ACTIONS(1685), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(157), 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(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147665,27 +147882,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(158), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 18, + ACTIONS(120), 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, @@ -147701,15 +147902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11539] = 6, - ACTIONS(3480), 1, + [11557] = 7, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3490), 1, anon_sym_EQ_GT, - ACTIONS(3485), 1, + ACTIONS(3534), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147725,12 +147928,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(3439), 19, + ACTIONS(3441), 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, @@ -147745,7 +147947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147767,17 +147969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11611] = 7, - ACTIONS(856), 1, - anon_sym_COLON, - ACTIONS(3480), 1, + [11631] = 7, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3503), 1, + ACTIONS(870), 1, anon_sym_EQ, + ACTIONS(876), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147793,7 +147995,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(3439), 18, + ACTIONS(157), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147812,7 +148014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147834,17 +148036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11685] = 7, - ACTIONS(876), 1, - anon_sym_COLON, - ACTIONS(3480), 1, + [11705] = 7, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3503), 1, + ACTIONS(870), 1, anon_sym_EQ, + ACTIONS(874), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147860,7 +148062,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(3439), 18, + ACTIONS(157), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147879,7 +148081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147901,17 +148103,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11759] = 7, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, + [11779] = 10, + ACTIONS(219), 1, anon_sym_EQ, - ACTIONS(876), 1, - anon_sym_COLON, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1687), 1, + anon_sym_QMARK, + ACTIONS(3503), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3506), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1685), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(157), 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(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147927,26 +148153,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(158), 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(120), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147956,9 +148163,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, @@ -147968,15 +148173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11833] = 6, - ACTIONS(3511), 1, + [11859] = 6, + ACTIONS(3517), 1, anon_sym_EQ, - ACTIONS(3513), 1, + ACTIONS(3519), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147992,7 +148197,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(3439), 19, + ACTIONS(3441), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148012,7 +148217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148034,17 +148239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11905] = 7, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, + [11931] = 5, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(856), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148060,13 +148261,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(158), 18, + ACTIONS(3441), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148079,7 +148282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148101,30 +148304,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11979] = 12, - ACTIONS(3489), 1, + [12001] = 12, + ACTIONS(3467), 1, anon_sym_LBRACK, - ACTIONS(3495), 1, + ACTIONS(3473), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3476), 1, anon_sym_LT, - ACTIONS(3596), 1, + ACTIONS(3607), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(3609), 1, anon_sym_EQ_GT, - STATE(2909), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, + ACTIONS(3479), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3492), 3, + ACTIONS(3470), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3439), 14, + ACTIONS(3441), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148139,7 +148342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148155,7 +148358,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(3435), 17, + ACTIONS(3437), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148173,30 +148376,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12063] = 10, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(834), 1, - anon_sym_COLON, - ACTIONS(3505), 1, + [12085] = 12, + ACTIONS(3467), 1, anon_sym_LBRACK, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3591), 1, + anon_sym_EQ, + ACTIONS(3593), 1, + anon_sym_EQ_GT, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1683), 3, + ACTIONS(3479), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(158), 14, + ACTIONS(3470), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 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, @@ -148207,7 +148414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148223,11 +148430,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(120), 19, + ACTIONS(3437), 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, @@ -148239,49 +148445,20 @@ 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, - [12143] = 12, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3604), 1, - anon_sym_EQ, - ACTIONS(3606), 1, + [12169] = 7, + ACTIONS(872), 1, + anon_sym_COLON, + ACTIONS(3490), 1, anon_sym_EQ_GT, - STATE(2909), 1, - sym_type_arguments, + ACTIONS(3534), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 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(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148297,64 +148474,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(3435), 17, + ACTIONS(3441), 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(3437), 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, - [12227] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3485), 1, + [12243] = 6, + ACTIONS(832), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(864), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3439), 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(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148370,7 +148539,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(3435), 18, + ACTIONS(157), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148380,12 +148569,15 @@ 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, @@ -148393,7 +148585,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3411), 22, + ACTIONS(3623), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3621), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [12381] = 6, + ACTIONS(3409), 1, + anon_sym_extends, + ACTIONS(3625), 1, + anon_sym_QMARK, + STATE(2889), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3405), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148416,16 +148677,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3413), 35, - sym__automatic_semicolon, + ACTIONS(3407), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -148452,29 +148710,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12381] = 9, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, + [12453] = 12, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(3451), 1, + anon_sym_EQ_GT, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3479), 1, + anon_sym_extends, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, + ACTIONS(3467), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3470), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(158), 15, + ACTIONS(3441), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148485,7 +148747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148501,10 +148763,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(120), 18, + ACTIONS(3437), 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, @@ -148516,21 +148779,59 @@ 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, - [12458] = 5, - ACTIONS(3419), 1, + [12537] = 9, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(1685), 1, anon_sym_extends, - ACTIONS(3623), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3415), 22, + ACTIONS(3503), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3506), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(157), 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(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148539,9 +148840,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, @@ -148551,15 +148850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [12614] = 8, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3451), 1, + anon_sym_EQ_GT, + ACTIONS(3627), 1, + anon_sym_in, + ACTIONS(3630), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148575,6 +148878,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(3441), 17, + 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, @@ -148584,15 +148896,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12527] = 5, - ACTIONS(3429), 1, - anon_sym_extends, - ACTIONS(3625), 1, - anon_sym_QMARK, + ACTIONS(3437), 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, + [12689] = 5, + STATE(2889), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 22, + ACTIONS(3409), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3405), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148615,10 +148949,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 32, + ACTIONS(3407), 31, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -148648,39 +148981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12596] = 9, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, + [12758] = 6, + ACTIONS(907), 1, anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_extends, + ACTIONS(913), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(158), 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(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148696,41 +149005,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(120), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12673] = 7, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(3627), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 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, @@ -148738,28 +149018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 24, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148780,16 +149046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [12746] = 4, + [12829] = 5, + STATE(2901), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 2, + ACTIONS(3417), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3425), 22, + ACTIONS(3413), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148812,13 +149078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 32, - sym__automatic_semicolon, + ACTIONS(3415), 31, 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_PLUS_EQ, @@ -148845,33 +149110,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12813] = 12, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3546), 1, + [12898] = 10, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3562), 1, + anon_sym_COMMA, + ACTIONS(3609), 1, anon_sym_EQ_GT, - STATE(2909), 1, - sym_type_arguments, + ACTIONS(3632), 1, + anon_sym_EQ, + ACTIONS(3635), 1, + anon_sym_in, + ACTIONS(3637), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 13, + ACTIONS(3441), 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, @@ -148882,7 +149142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148898,42 +149158,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(3435), 17, + ACTIONS(3437), 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, - [12896] = 7, - ACTIONS(3437), 1, + [12977] = 12, + ACTIONS(3467), 1, + anon_sym_LBRACK, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_LT, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(3577), 1, - anon_sym_COLON, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3629), 3, + ACTIONS(3479), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3439), 15, + anon_sym_extends, + ACTIONS(3470), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 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, @@ -148944,7 +149216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148960,147 +149232,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, + ACTIONS(3437), 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, - [12969] = 6, - ACTIONS(939), 1, + [13060] = 9, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(158), 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(120), 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, - [13040] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3419), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3415), 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(3417), 32, - sym__automatic_semicolon, + ACTIONS(157), 15, 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, @@ -149110,19 +149280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13107] = 8, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149138,27 +149296,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(3439), 17, - 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(3435), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149177,21 +149318,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13182] = 9, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(890), 1, + [13137] = 7, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(895), 1, + ACTIONS(3546), 1, anon_sym_COLON, - ACTIONS(899), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3639), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149207,7 +149346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149223,7 +149362,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(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149245,15 +149384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13259] = 6, - ACTIONS(814), 1, + [13210] = 6, + ACTIONS(832), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(913), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149269,7 +149408,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(158), 18, + ACTIONS(157), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -149310,21 +149449,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13330] = 7, - ACTIONS(909), 1, + [13281] = 7, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(3451), 1, anon_sym_EQ_GT, - ACTIONS(3409), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(3639), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3441), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149332,10 +149472,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149351,9 +149493,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(120), 24, + ACTIONS(3437), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149374,15 +149515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [13403] = 5, - ACTIONS(3511), 1, + [13354] = 8, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(842), 1, anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(3642), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149398,14 +149543,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(3439), 19, - sym__automatic_semicolon, + ACTIONS(157), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149418,77 +149561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 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, - [13472] = 10, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RBRACK, - ACTIONS(3598), 1, - anon_sym_EQ_GT, - ACTIONS(3637), 1, - anon_sym_EQ, - ACTIONS(3640), 1, - anon_sym_in, - ACTIONS(3642), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3439), 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(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3435), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -149509,13 +149582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13551] = 5, - ACTIONS(3503), 1, + [13429] = 5, + ACTIONS(3517), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149531,14 +149604,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(3439), 19, + ACTIONS(3441), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149551,7 +149624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149573,28 +149646,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13620] = 9, - ACTIONS(955), 1, - anon_sym_EQ, - ACTIONS(961), 1, + [13498] = 9, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, + ACTIONS(933), 1, + anon_sym_EQ, + ACTIONS(3503), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, + ACTIONS(1685), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3508), 3, + ACTIONS(3506), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(158), 15, + ACTIONS(157), 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, @@ -149606,7 +149679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149641,37 +149714,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13697] = 6, - ACTIONS(3485), 1, + [13575] = 9, + ACTIONS(955), 1, anon_sym_EQ, - ACTIONS(3552), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, + ACTIONS(3503), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3439), 18, + ACTIONS(1685), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3506), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149683,38 +149747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3435), 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, - [13768] = 6, - ACTIONS(3550), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149730,38 +149763,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(3439), 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(3435), 21, + ACTIONS(120), 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, @@ -149771,19 +149782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13839] = 8, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, + [13652] = 6, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(3644), 1, - anon_sym_of, + ACTIONS(3586), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149799,12 +149806,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(158), 17, + ACTIONS(3441), 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, @@ -149817,9 +149824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 20, + anon_sym_implements, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149838,22 +149847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13914] = 7, - ACTIONS(3437), 1, + [13723] = 7, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3449), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, + ACTIONS(3435), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3629), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149861,12 +149869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149882,73 +149888,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(3435), 21, + ACTIONS(120), 24, 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, - [13987] = 7, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, - anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(158), 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(120), 21, - anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149969,19 +149911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14059] = 8, - ACTIONS(3596), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13796] = 6, + ACTIONS(3584), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(3586), 1, anon_sym_EQ_GT, - ACTIONS(3640), 1, - anon_sym_in, - ACTIONS(3642), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149997,12 +149937,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(3439), 16, + ACTIONS(3441), 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, @@ -150014,9 +149955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + anon_sym_implements, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150035,104 +149978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14133] = 31, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3652), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3654), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3820), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 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, - [14253] = 6, - ACTIONS(3554), 1, + [13867] = 5, + ACTIONS(3534), 1, anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150148,10 +150000,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(3439), 17, + ACTIONS(3441), 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, @@ -150166,7 +150020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150188,15 +150042,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14323] = 6, - ACTIONS(3485), 1, + [13936] = 7, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3556), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, + ACTIONS(3644), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150212,26 +150083,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(3439), 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(3435), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150252,17 +150106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14393] = 7, + anon_sym_instanceof, + anon_sym_satisfies, + [14009] = 7, ACTIONS(895), 1, anon_sym_COLON, ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(903), 1, + ACTIONS(933), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150278,7 +150134,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(158), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150317,44 +150173,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14465] = 4, + [14081] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3654), 1, + anon_sym_async, + ACTIONS(3656), 1, + anon_sym_new, + ACTIONS(3660), 1, + anon_sym_static, + ACTIONS(3662), 1, + anon_sym_readonly, + ACTIONS(3668), 1, + anon_sym_override, + STATE(1322), 1, + sym_decorator, + STATE(2752), 1, + sym_accessibility_modifier, + STATE(2762), 1, + sym_override_modifier, + STATE(3318), 1, + sym_formal_parameters, + STATE(4436), 1, + sym__call_signature, + STATE(4504), 1, + aux_sym_export_statement_repeat1, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3415), 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(3254), 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, - ACTIONS(3417), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3302), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3318), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3658), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3664), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3886), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 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, + [14201] = 6, + ACTIONS(832), 1, + anon_sym_EQ, + ACTIONS(945), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150370,31 +150286,12 @@ 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, - [14531] = 8, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(890), 1, - anon_sym_EQ, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 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, @@ -150407,22 +150304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 21, anon_sym_STAR, anon_sym_BANG, @@ -150445,14 +150326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14605] = 31, + [14271] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -150462,31 +150343,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, + ACTIONS(3656), 1, + anon_sym_new, ACTIONS(3660), 1, + anon_sym_static, + ACTIONS(3662), 1, + anon_sym_readonly, + ACTIONS(3668), 1, + anon_sym_override, + STATE(1322), 1, + sym_decorator, + STATE(2752), 1, + sym_accessibility_modifier, + STATE(2762), 1, + sym_override_modifier, + STATE(3318), 1, + sym_formal_parameters, + STATE(4436), 1, + sym__call_signature, + STATE(4504), 1, + aux_sym_export_statement_repeat1, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3658), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3664), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3672), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3803), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 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, + [14391] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3654), 1, + anon_sym_async, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150494,10 +150464,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, ACTIONS(3674), 2, @@ -150506,15 +150476,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3676), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3878), 6, + STATE(3863), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -150534,14 +150504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14725] = 31, + [14511] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -150551,31 +150521,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150583,10 +150553,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, ACTIONS(3678), 2, @@ -150595,15 +150565,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3680), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3925), 6, + STATE(3943), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -150623,19 +150593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14845] = 8, - ACTIONS(3596), 1, + [14631] = 7, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(3598), 1, - anon_sym_EQ_GT, - ACTIONS(3640), 1, + ACTIONS(3627), 1, anon_sym_in, - ACTIONS(3682), 1, - anon_sym_COLON, + ACTIONS(3630), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150651,12 +150619,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(3439), 16, + ACTIONS(3441), 17, 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, @@ -150668,7 +150637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(3437), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -150689,38 +150658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14919] = 7, - ACTIONS(3437), 1, + [14703] = 8, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, + ACTIONS(899), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3439), 17, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150733,9 +150686,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150754,35 +150724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14991] = 8, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RBRACK, - ACTIONS(3598), 1, - anon_sym_EQ_GT, - ACTIONS(3637), 1, + [14777] = 6, + ACTIONS(3576), 1, anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 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(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150798,7 +150748,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(3435), 21, + ACTIONS(3441), 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(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150820,59 +150788,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15065] = 4, + [14847] = 9, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(832), 1, + anon_sym_EQ, + ACTIONS(3503), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 2, + ACTIONS(1685), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3425), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3506), 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(3427), 31, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -150882,104 +150820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15131] = 31, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3246), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3270), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3906), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 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, - [15251] = 6, - ACTIONS(3558), 1, - anon_sym_EQ, - ACTIONS(3560), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150995,37 +150836,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(3439), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 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, @@ -151035,15 +150855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15321] = 6, - ACTIONS(814), 1, + [14923] = 6, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151059,12 +150879,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(158), 17, + ACTIONS(157), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151099,15 +150919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15391] = 6, - ACTIONS(814), 1, + [14993] = 6, + ACTIONS(3580), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(3582), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151123,12 +150943,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(158), 17, - sym__automatic_semicolon, + ACTIONS(3441), 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, @@ -151141,7 +150961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151163,104 +150983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15461] = 31, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3684), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3686), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3780), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 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, - [15581] = 6, - ACTIONS(3485), 1, + [15063] = 6, + ACTIONS(832), 1, anon_sym_EQ, - ACTIONS(3560), 1, + ACTIONS(919), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151276,7 +151007,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(3439), 17, + ACTIONS(157), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -151294,7 +151025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151316,104 +151047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15651] = 31, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3322), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3338), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3903), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 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, - [15771] = 6, - ACTIONS(925), 1, + [15133] = 8, + ACTIONS(3607), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(3609), 1, anon_sym_EQ_GT, + ACTIONS(3635), 1, + anon_sym_in, + ACTIONS(3637), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151429,13 +151075,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(158), 17, + ACTIONS(3441), 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, @@ -151447,10 +151092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3437), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151469,13 +151113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15841] = 5, - ACTIONS(3550), 1, + [15207] = 6, + ACTIONS(3483), 1, anon_sym_EQ, + ACTIONS(3582), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151491,12 +151137,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(3439), 18, + ACTIONS(3441), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151509,8 +151155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151532,39 +151177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15909] = 9, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, + [15277] = 8, + ACTIONS(3607), 1, anon_sym_EQ, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(3609), 1, + anon_sym_EQ_GT, + ACTIONS(3635), 1, + anon_sym_in, + ACTIONS(3682), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(158), 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(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151580,16 +151205,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 18, + ACTIONS(3441), 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(3437), 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, @@ -151599,15 +151243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15985] = 6, - ACTIONS(909), 1, + [15351] = 5, + ACTIONS(3584), 1, anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151623,12 +151265,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(158), 17, - sym__automatic_semicolon, + ACTIONS(3441), 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, @@ -151641,7 +151283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + anon_sym_implements, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151663,15 +151306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16055] = 6, - ACTIONS(3604), 1, - anon_sym_EQ, - ACTIONS(3606), 1, + [15419] = 7, + ACTIONS(899), 1, anon_sym_EQ_GT, + ACTIONS(933), 1, + anon_sym_EQ, + ACTIONS(949), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151687,12 +151332,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(3439), 16, + ACTIONS(157), 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, @@ -151704,7 +151349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151726,15 +151371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16124] = 6, - ACTIONS(899), 1, + [15491] = 6, + ACTIONS(919), 1, anon_sym_EQ_GT, - ACTIONS(903), 1, + ACTIONS(925), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151750,12 +151395,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(158), 16, + ACTIONS(157), 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, @@ -151789,17 +151435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16193] = 7, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, + [15561] = 8, + ACTIONS(3541), 1, anon_sym_RBRACK, - ACTIONS(3637), 1, + ACTIONS(3562), 1, + anon_sym_COMMA, + ACTIONS(3609), 1, + anon_sym_EQ_GT, + ACTIONS(3632), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151815,7 +151463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151831,7 +151479,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151853,15 +151501,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16264] = 6, - ACTIONS(814), 1, + [15635] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3654), 1, + anon_sym_async, + ACTIONS(3656), 1, + anon_sym_new, + ACTIONS(3660), 1, + anon_sym_static, + ACTIONS(3662), 1, + anon_sym_readonly, + ACTIONS(3668), 1, + anon_sym_override, + STATE(1322), 1, + sym_decorator, + STATE(2752), 1, + sym_accessibility_modifier, + STATE(2762), 1, + sym_override_modifier, + STATE(3318), 1, + sym_formal_parameters, + STATE(4436), 1, + sym__call_signature, + STATE(4504), 1, + aux_sym_export_statement_repeat1, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3658), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3664), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3684), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3686), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3911), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 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, + [15755] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3654), 1, + anon_sym_async, + ACTIONS(3656), 1, + anon_sym_new, + ACTIONS(3660), 1, + anon_sym_static, + ACTIONS(3662), 1, + anon_sym_readonly, + ACTIONS(3668), 1, + anon_sym_override, + STATE(1322), 1, + sym_decorator, + STATE(2752), 1, + sym_accessibility_modifier, + STATE(2762), 1, + sym_override_modifier, + STATE(3318), 1, + sym_formal_parameters, + STATE(4436), 1, + sym__call_signature, + STATE(4504), 1, + aux_sym_export_statement_repeat1, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3246), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3270), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3658), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3664), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3836), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 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, + [15875] = 6, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(899), 1, + ACTIONS(3578), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151877,12 +151703,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(158), 16, + ACTIONS(3441), 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(3437), 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, + [15945] = 7, + ACTIONS(3541), 1, anon_sym_RBRACK, + ACTIONS(3562), 1, + anon_sym_COMMA, + ACTIONS(3632), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151894,7 +151769,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151916,15 +151807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16333] = 6, - ACTIONS(955), 1, + [16016] = 6, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(3609), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151940,12 +151831,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(158), 16, + ACTIONS(3441), 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, @@ -151957,7 +151848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151979,15 +151870,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16402] = 6, - ACTIONS(814), 1, + [16085] = 6, + ACTIONS(3591), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(3593), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152003,7 +151894,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(158), 16, + ACTIONS(3441), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152020,7 +151911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152042,13 +151933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16471] = 5, - ACTIONS(3554), 1, + [16154] = 6, + ACTIONS(3483), 1, anon_sym_EQ, + ACTIONS(3593), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152064,12 +151957,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(3439), 17, - sym__automatic_semicolon, + ACTIONS(3441), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152082,7 +151974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152104,13 +151996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16538] = 5, - ACTIONS(3558), 1, + [16223] = 6, + ACTIONS(955), 1, anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152126,12 +152020,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(3439), 17, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152144,7 +152037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152166,17 +152059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16605] = 7, - ACTIONS(225), 1, + [16292] = 7, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(832), 1, anon_sym_EQ, ACTIONS(834), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152192,7 +152085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152230,15 +152123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16676] = 6, - ACTIONS(3596), 1, + [16363] = 6, + ACTIONS(832), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152254,7 +152147,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(3439), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152271,7 +152164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152293,19 +152186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16745] = 8, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, + [16432] = 8, + ACTIONS(3483), 1, anon_sym_EQ, - ACTIONS(878), 1, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(3627), 1, anon_sym_in, - ACTIONS(3644), 1, + ACTIONS(3630), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152321,7 +152214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152337,7 +152230,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(120), 20, + ACTIONS(3437), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -152358,22 +152251,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16818] = 8, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3546), 1, + [16505] = 6, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3632), 1, + ACTIONS(933), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(157), 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(120), 21, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16574] = 5, + ACTIONS(3576), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3441), 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, @@ -152386,7 +152354,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 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, + [16641] = 5, + ACTIONS(3580), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152402,9 +152398,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(3435), 20, + ACTIONS(3441), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152423,15 +152438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16891] = 6, - ACTIONS(3485), 1, + [16708] = 6, + ACTIONS(3607), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(3609), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152447,7 +152462,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(3439), 16, + ACTIONS(3441), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152464,7 +152479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152486,15 +152501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16960] = 6, - ACTIONS(3485), 1, + [16777] = 6, + ACTIONS(832), 1, anon_sym_EQ, - ACTIONS(3606), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152510,7 +152525,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(3439), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152527,7 +152542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152549,13 +152564,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17029] = 5, - ACTIONS(3604), 1, + [16846] = 8, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(832), 1, anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(3642), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(157), 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(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152571,11 +152608,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, + ACTIONS(120), 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, + [16919] = 6, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(3688), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152588,7 +152653,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152610,14 +152691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17095] = 30, + [16987] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -152627,31 +152708,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152659,24 +152740,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3688), 2, + ACTIONS(3690), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152696,14 +152777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17211] = 30, + [17103] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -152713,31 +152794,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152745,24 +152826,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3690), 2, + ACTIONS(3692), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152782,14 +152863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17327] = 30, + [17219] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -152799,31 +152880,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152831,24 +152912,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3692), 2, + ACTIONS(3694), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152868,14 +152949,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17443] = 30, + [17335] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -152885,31 +152966,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152917,24 +152998,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3694), 2, + ACTIONS(3696), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152954,76 +153035,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17559] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(981), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 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(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 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, - [17627] = 30, + [17451] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -153033,31 +153052,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153065,24 +153084,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3696), 2, + ACTIONS(3698), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -153102,15 +153121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17743] = 6, - ACTIONS(225), 1, + [17567] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(967), 1, + ACTIONS(971), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153126,7 +153145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153164,15 +153183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17811] = 6, - ACTIONS(225), 1, + [17635] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(973), 1, + ACTIONS(832), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153188,7 +153207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153226,15 +153245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17879] = 6, - ACTIONS(225), 1, + [17703] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(969), 1, + ACTIONS(973), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153250,7 +153269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153288,77 +153307,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17947] = 6, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - ACTIONS(3698), 1, - anon_sym_EQ, + [17771] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3654), 1, + anon_sym_async, + ACTIONS(3656), 1, + anon_sym_new, + ACTIONS(3660), 1, + anon_sym_static, + ACTIONS(3662), 1, + anon_sym_readonly, + ACTIONS(3668), 1, + anon_sym_override, + STATE(1322), 1, + sym_decorator, + STATE(2752), 1, + sym_accessibility_modifier, + STATE(2762), 1, + sym_override_modifier, + STATE(3318), 1, + sym_formal_parameters, + STATE(4436), 1, + sym__call_signature, + STATE(4504), 1, + aux_sym_export_statement_repeat1, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 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(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3435), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3254), 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, - [18015] = 6, - ACTIONS(225), 1, + ACTIONS(3658), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3664), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3700), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4263), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 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, + [17887] = 6, + ACTIONS(3548), 1, anon_sym_EQ_GT, - ACTIONS(979), 1, + ACTIONS(3702), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153374,7 +153417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153390,7 +153433,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(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153412,14 +153455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18083] = 30, + [17955] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -153429,31 +153472,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153461,24 +153504,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3700), 2, + ACTIONS(3704), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -153498,14 +153541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18199] = 30, + [18071] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -153515,31 +153558,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153547,362 +153590,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3702), 2, + ACTIONS(3706), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 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, - [18315] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(971), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 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(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 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, - [18383] = 6, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - ACTIONS(3704), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3439), 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(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3435), 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, - [18451] = 6, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - ACTIONS(3706), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3439), 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(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3435), 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, - [18519] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 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(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 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, - [18587] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 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(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(120), 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, - [18655] = 6, - ACTIONS(3546), 1, + sym__property_name, + sym_computed_property_name, + STATE(4263), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 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, + [18187] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3708), 1, + ACTIONS(977), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153918,7 +153651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153934,7 +153667,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153956,14 +153689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18723] = 30, + [18255] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -153973,31 +153706,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154005,24 +153738,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3710), 2, + ACTIONS(3708), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154042,15 +153775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18839] = 6, - ACTIONS(3546), 1, + [18371] = 6, + ACTIONS(3548), 1, anon_sym_EQ_GT, - ACTIONS(3712), 1, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154066,7 +153799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154082,7 +153815,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154104,14 +153837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18907] = 30, + [18439] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154121,31 +153854,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, + ACTIONS(3656), 1, + anon_sym_new, ACTIONS(3660), 1, + anon_sym_static, + ACTIONS(3662), 1, + anon_sym_readonly, + ACTIONS(3668), 1, + anon_sym_override, + STATE(1322), 1, + sym_decorator, + STATE(2752), 1, + sym_accessibility_modifier, + STATE(2762), 1, + sym_override_modifier, + STATE(3318), 1, + sym_formal_parameters, + STATE(4436), 1, + sym__call_signature, + STATE(4504), 1, + aux_sym_export_statement_repeat1, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3658), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3664), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3712), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4263), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 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, + [18555] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3654), 1, + anon_sym_async, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154153,24 +153972,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, ACTIONS(3714), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154190,14 +154009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19023] = 30, + [18671] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154207,31 +154026,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154239,24 +154058,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, ACTIONS(3716), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154276,76 +154095,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19139] = 5, - ACTIONS(3596), 1, - anon_sym_EQ, + [18787] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3654), 1, + anon_sym_async, + ACTIONS(3656), 1, + anon_sym_new, + ACTIONS(3660), 1, + anon_sym_static, + ACTIONS(3662), 1, + anon_sym_readonly, + ACTIONS(3668), 1, + anon_sym_override, + STATE(1322), 1, + sym_decorator, + STATE(2752), 1, + sym_accessibility_modifier, + STATE(2762), 1, + sym_override_modifier, + STATE(3318), 1, + sym_formal_parameters, + STATE(4436), 1, + sym__call_signature, + STATE(4504), 1, + aux_sym_export_statement_repeat1, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3439), 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(3435), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3254), 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, - [19205] = 6, - ACTIONS(3546), 1, + ACTIONS(3658), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3664), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3718), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3082), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4263), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 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, + [18903] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3718), 1, + ACTIONS(1031), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154361,7 +154205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154377,7 +154221,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154399,14 +154243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19273] = 30, + [18971] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154416,31 +154260,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154448,24 +154292,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, ACTIONS(3720), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154485,15 +154329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19389] = 6, - ACTIONS(3485), 1, + [19087] = 6, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(3722), 1, anon_sym_EQ, - ACTIONS(3577), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154509,7 +154353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154525,7 +154369,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154547,15 +154391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19457] = 6, - ACTIONS(225), 1, + [19155] = 6, + ACTIONS(3548), 1, anon_sym_EQ_GT, - ACTIONS(975), 1, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154571,7 +154415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154587,7 +154431,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(120), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154609,14 +154453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19525] = 30, + [19223] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154626,31 +154470,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154658,24 +154502,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3722), 2, + ACTIONS(3726), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154695,14 +154539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19641] = 30, + [19339] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154712,31 +154556,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154744,24 +154588,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3724), 2, + ACTIONS(3728), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154781,15 +154625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19757] = 6, - ACTIONS(225), 1, + [19455] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(977), 1, + ACTIONS(975), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154805,7 +154649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154843,14 +154687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19825] = 30, + [19523] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154860,31 +154704,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154892,24 +154736,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3726), 2, + ACTIONS(3730), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154929,17 +154773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19941] = 7, - ACTIONS(3485), 1, + [19639] = 6, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(3732), 1, anon_sym_EQ, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154955,7 +154797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154971,9 +154813,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(3435), 20, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154992,15 +154835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20011] = 6, - ACTIONS(3546), 1, + [19707] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3728), 1, + ACTIONS(969), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155016,7 +154859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155032,7 +154875,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155054,15 +154897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20079] = 6, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - ACTIONS(3730), 1, + [19775] = 6, + ACTIONS(3483), 1, anon_sym_EQ, + ACTIONS(3546), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155078,7 +154921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155094,7 +154937,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155116,187 +154959,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20147] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, + [19843] = 7, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_in, + ACTIONS(3630), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 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, + [19913] = 6, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(3734), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3254), 2, + ACTIONS(3441), 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(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 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(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3732), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 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, - [20263] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - ACTIONS(3244), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19981] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1033), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 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(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, anon_sym_STAR, - ACTIONS(3656), 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, + [20049] = 6, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(3736), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 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, + [20117] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(967), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3254), 2, + ACTIONS(157), 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(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 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(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3734), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 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, - [20379] = 6, - ACTIONS(3546), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20185] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3736), 1, + ACTIONS(1035), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155312,7 +155294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155328,7 +155310,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155350,100 +155332,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20447] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, + [20253] = 6, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(3738), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 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(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 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(3244), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20321] = 6, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 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(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3437), 21, anon_sym_STAR, - ACTIONS(3656), 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, + [20389] = 5, + ACTIONS(3607), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3441), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, + 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(3437), 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, + [20455] = 5, + ACTIONS(3591), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3254), 2, + ACTIONS(3455), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3441), 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(3437), 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(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3738), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 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, - [20563] = 30, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20521] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -155453,31 +155595,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155485,24 +155627,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, ACTIONS(3740), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155522,75 +155664,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20679] = 6, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3439), 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(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3435), 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, - [20747] = 5, - ACTIONS(3698), 1, + [20637] = 5, + ACTIONS(3738), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155606,7 +155686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155622,7 +155702,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155644,13 +155724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20812] = 5, - ACTIONS(3736), 1, + [20702] = 5, + ACTIONS(3722), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155666,7 +155746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155682,7 +155762,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155704,13 +155784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20877] = 5, - ACTIONS(3712), 1, + [20767] = 5, + ACTIONS(3702), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155726,7 +155806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155742,7 +155822,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155764,13 +155844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20942] = 5, - ACTIONS(3728), 1, + [20832] = 5, + ACTIONS(3688), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155786,7 +155866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155802,7 +155882,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155824,13 +155904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21007] = 5, - ACTIONS(3718), 1, + [20897] = 5, + ACTIONS(3732), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155846,7 +155926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155862,7 +155942,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155884,13 +155964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21072] = 5, - ACTIONS(3708), 1, + [20962] = 5, + ACTIONS(3734), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155906,7 +155986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155922,7 +156002,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155944,13 +156024,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21137] = 5, - ACTIONS(3704), 1, + [21027] = 5, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155966,7 +156046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155982,7 +156062,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156004,13 +156084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21202] = 5, - ACTIONS(3706), 1, + [21092] = 5, + ACTIONS(3736), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156026,7 +156106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156042,7 +156122,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156064,13 +156144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21267] = 5, - ACTIONS(3730), 1, + [21157] = 5, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3441), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156086,7 +156166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3455), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156102,7 +156182,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(3435), 21, + ACTIONS(3437), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156124,14 +156204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21332] = 29, + [21222] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156141,31 +156221,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156173,21 +156253,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3828), 6, + STATE(3820), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156207,14 +156287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21444] = 29, + [21334] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156224,31 +156304,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156256,21 +156336,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3830), 6, + STATE(3928), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156290,14 +156370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21556] = 29, + [21446] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156307,31 +156387,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156339,21 +156419,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3886), 6, + STATE(4263), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156373,14 +156453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21668] = 29, + [21558] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156390,31 +156470,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156422,21 +156502,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3920), 6, + STATE(3805), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156456,14 +156536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21780] = 29, + [21670] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156473,31 +156553,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156505,21 +156585,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3871), 6, + STATE(3917), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156539,14 +156619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21892] = 29, + [21782] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156556,31 +156636,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156588,21 +156668,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(3889), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156622,14 +156702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22004] = 29, + [21894] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156639,31 +156719,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3658), 1, + ACTIONS(3654), 1, anon_sym_async, - ACTIONS(3660), 1, + ACTIONS(3656), 1, anon_sym_new, - ACTIONS(3664), 1, + ACTIONS(3660), 1, anon_sym_static, - ACTIONS(3666), 1, + ACTIONS(3662), 1, anon_sym_readonly, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(2726), 1, + STATE(2752), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2762), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4436), 1, sym__call_signature, - STATE(4467), 1, + STATE(4504), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156671,21 +156751,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3658), 2, sym_number, sym_private_property_identifier, - ACTIONS(3668), 2, + ACTIONS(3664), 2, anon_sym_get, anon_sym_set, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3769), 6, + STATE(3950), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156705,7 +156785,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22116] = 33, + [22006] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3744), 1, + anon_sym_RBRACE, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + STATE(2435), 1, + aux_sym_export_statement_repeat1, + STATE(2618), 1, + sym_method_definition, + STATE(2692), 1, + sym_accessibility_modifier, + STATE(2761), 1, + sym_override_modifier, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1447), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3062), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4886), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 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, + [22117] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3652), 1, + anon_sym_LBRACK, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3766), 1, + anon_sym_RBRACE, + ACTIONS(3768), 1, + anon_sym_SEMI, + STATE(2435), 1, + aux_sym_export_statement_repeat1, + STATE(2618), 1, + sym_method_definition, + STATE(2692), 1, + sym_accessibility_modifier, + STATE(2761), 1, + sym_override_modifier, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1446), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3062), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4886), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 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, + [22228] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -156734,42 +156978,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_module, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4174), 1, sym_declaration, - STATE(4399), 1, + STATE(4179), 1, sym_internal_module, - STATE(4587), 1, + STATE(4268), 1, + aux_sym_export_statement_repeat1, + STATE(4580), 1, sym_export_clause, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, - STATE(5325), 1, + STATE(5344), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -156777,7 +157021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(3987), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -156791,46 +157035,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [22235] = 29, - ACTIONS(1583), 1, + [22347] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3764), 1, - anon_sym_RBRACE, - ACTIONS(3766), 1, - anon_sym_SEMI, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - STATE(2382), 1, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(3792), 1, + anon_sym_SEMI, + STATE(2435), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2618), 1, sym_method_definition, - STATE(2685), 1, + STATE(2692), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2761), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -156838,24 +157082,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1449), 2, + STATE(1441), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4886), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -156873,75 +157117,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22346] = 29, - ACTIONS(1583), 1, + [22458] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3794), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, + anon_sym_SEMI, + STATE(2435), 1, + aux_sym_export_statement_repeat1, + STATE(2618), 1, + sym_method_definition, + STATE(2692), 1, + sym_accessibility_modifier, + STATE(2761), 1, + sym_override_modifier, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1453), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3062), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4886), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 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, + [22569] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_module, + ACTIONS(3798), 1, + anon_sym_RBRACE, + STATE(1322), 1, + sym_decorator, + STATE(4174), 1, + sym_declaration, + STATE(4179), 1, + sym_internal_module, + STATE(4268), 1, + aux_sym_export_statement_repeat1, + STATE(4580), 1, + sym_export_clause, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + STATE(5344), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3987), 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, + [22688] = 29, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3807), 1, + anon_sym_RBRACE, + ACTIONS(3809), 1, + anon_sym_SEMI, + ACTIONS(3812), 1, + anon_sym_LBRACK, + ACTIONS(3815), 1, + anon_sym_DQUOTE, + ACTIONS(3818), 1, + anon_sym_SQUOTE, + ACTIONS(3821), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3830), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3833), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3836), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3842), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3848), 1, + anon_sym_override, + ACTIONS(3851), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3854), 1, anon_sym_accessor, - ACTIONS(3786), 1, - anon_sym_RBRACE, - ACTIONS(3788), 1, - anon_sym_SEMI, - STATE(2382), 1, + STATE(2435), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2618), 1, sym_method_definition, - STATE(2685), 1, + STATE(2692), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2761), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3254), 2, + ACTIONS(3824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3827), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3839), 2, anon_sym_get, anon_sym_set, - STATE(1448), 2, + STATE(1446), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3670), 3, + ACTIONS(3845), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4886), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3646), 13, + ACTIONS(3801), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -156955,46 +157367,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22457] = 29, - ACTIONS(1583), 1, + [22799] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3788), 1, + ACTIONS(3768), 1, anon_sym_SEMI, - ACTIONS(3790), 1, + ACTIONS(3857), 1, anon_sym_RBRACE, - STATE(2382), 1, + STATE(2435), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2618), 1, sym_method_definition, - STATE(2685), 1, + STATE(2692), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2761), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157002,24 +157414,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1448), 2, + STATE(1446), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4886), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157037,46 +157449,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22568] = 29, - ACTIONS(1583), 1, + [22910] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3792), 1, + ACTIONS(3859), 1, anon_sym_RBRACE, - ACTIONS(3794), 1, + ACTIONS(3861), 1, anon_sym_SEMI, - STATE(2382), 1, + STATE(2435), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2618), 1, sym_method_definition, - STATE(2685), 1, + STATE(2692), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2761), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157084,24 +157496,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1455), 2, + STATE(1454), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4886), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157119,46 +157531,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22679] = 29, - ACTIONS(1583), 1, + [23021] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3796), 1, + ACTIONS(3863), 1, anon_sym_RBRACE, - ACTIONS(3798), 1, + ACTIONS(3865), 1, anon_sym_SEMI, - STATE(2382), 1, + STATE(2435), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2618), 1, sym_method_definition, - STATE(2685), 1, + STATE(2692), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2761), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157166,24 +157578,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1442), 2, + STATE(1452), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4886), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157201,7 +157613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22790] = 33, + [23132] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -157230,42 +157642,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_module, - ACTIONS(3800), 1, + ACTIONS(3867), 1, anon_sym_RBRACE, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4174), 1, sym_declaration, - STATE(4399), 1, + STATE(4179), 1, sym_internal_module, - STATE(4587), 1, + STATE(4268), 1, + aux_sym_export_statement_repeat1, + STATE(4580), 1, sym_export_clause, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5325), 1, + STATE(5034), 1, + aux_sym_object_repeat1, + STATE(5344), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157273,7 +157685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(3987), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157287,7 +157699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [22909] = 33, + [23251] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -157316,42 +157728,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_module, - ACTIONS(3803), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4174), 1, sym_declaration, - STATE(4399), 1, + STATE(4179), 1, sym_internal_module, - STATE(4587), 1, + STATE(4268), 1, + aux_sym_export_statement_repeat1, + STATE(4580), 1, sym_export_clause, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4663), 1, aux_sym_object_repeat1, - STATE(5325), 1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5344), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157359,7 +157771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(3987), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157373,128 +157785,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23028] = 29, - ACTIONS(3809), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_RBRACE, - ACTIONS(3814), 1, - anon_sym_SEMI, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_DQUOTE, - ACTIONS(3823), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_async, - ACTIONS(3835), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_static, - ACTIONS(3841), 1, - anon_sym_readonly, - ACTIONS(3847), 1, - anon_sym_declare, - ACTIONS(3853), 1, - anon_sym_override, - ACTIONS(3856), 1, - anon_sym_abstract, - ACTIONS(3859), 1, - anon_sym_accessor, - STATE(2382), 1, - aux_sym_export_statement_repeat1, - STATE(2617), 1, - sym_method_definition, - STATE(2685), 1, - sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, - sym_override_modifier, - STATE(4526), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3832), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3844), 2, - anon_sym_get, - anon_sym_set, - STATE(1448), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3850), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3003), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5020), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3806), 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, - [23139] = 29, - ACTIONS(1583), 1, + [23370] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3788), 1, + ACTIONS(3768), 1, anon_sym_SEMI, - ACTIONS(3862), 1, + ACTIONS(3873), 1, anon_sym_RBRACE, - STATE(2382), 1, + STATE(2435), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2618), 1, sym_method_definition, - STATE(2685), 1, + STATE(2692), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2761), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157502,24 +157832,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1448), 2, + STATE(1446), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4886), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157537,214 +157867,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23250] = 29, - ACTIONS(1583), 1, + [23481] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(3762), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_async, - ACTIONS(3772), 1, - anon_sym_AT, - ACTIONS(3774), 1, - anon_sym_static, - ACTIONS(3776), 1, - anon_sym_readonly, - ACTIONS(3780), 1, - anon_sym_declare, - ACTIONS(3782), 1, - anon_sym_abstract, - ACTIONS(3784), 1, - anon_sym_accessor, - ACTIONS(3864), 1, - anon_sym_RBRACE, - ACTIONS(3866), 1, - anon_sym_SEMI, - STATE(2382), 1, - aux_sym_export_statement_repeat1, - STATE(2617), 1, - sym_method_definition, - STATE(2685), 1, - sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, - sym_override_modifier, - STATE(4526), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3770), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3778), 2, - anon_sym_get, - anon_sym_set, - STATE(1452), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3003), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5020), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3646), 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, - [23361] = 33, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2348), 1, - anon_sym_namespace, - ACTIONS(2350), 1, - anon_sym_import, - ACTIONS(2352), 1, - anon_sym_var, - ACTIONS(2354), 1, - anon_sym_let, - ACTIONS(2356), 1, - anon_sym_const, - ACTIONS(2358), 1, - anon_sym_class, - ACTIONS(2360), 1, - anon_sym_async, - ACTIONS(2362), 1, - anon_sym_function, - ACTIONS(2364), 1, - anon_sym_declare, - ACTIONS(2368), 1, - anon_sym_abstract, - ACTIONS(2372), 1, - anon_sym_interface, - ACTIONS(2374), 1, - anon_sym_enum, ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3744), 1, - anon_sym_default, - ACTIONS(3746), 1, - anon_sym_type, ACTIONS(3748), 1, - anon_sym_EQ, - ACTIONS(3750), 1, - anon_sym_as, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3760), 1, - anon_sym_module, - ACTIONS(3868), 1, - anon_sym_RBRACE, - STATE(1290), 1, - sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, - sym_declaration, - STATE(4399), 1, - sym_internal_module, - STATE(4587), 1, - sym_export_clause, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - STATE(5325), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4393), 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, - [23480] = 29, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3762), 1, - anon_sym_STAR, - ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3788), 1, + ACTIONS(3768), 1, anon_sym_SEMI, - ACTIONS(3871), 1, + ACTIONS(3875), 1, anon_sym_RBRACE, - STATE(2382), 1, + STATE(2435), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2618), 1, sym_method_definition, - STATE(2685), 1, + STATE(2692), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2761), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157752,24 +157914,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1448), 2, + STATE(1446), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4886), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157787,46 +157949,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23591] = 29, - ACTIONS(1583), 1, + [23592] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3873), 1, - anon_sym_RBRACE, - ACTIONS(3875), 1, + ACTIONS(3768), 1, anon_sym_SEMI, - STATE(2382), 1, + ACTIONS(3877), 1, + anon_sym_RBRACE, + STATE(2435), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2618), 1, sym_method_definition, - STATE(2685), 1, + STATE(2692), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2761), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2769), 1, + sym_decorator, + STATE(4634), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157834,24 +157996,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1443), 2, + STATE(1446), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3670), 3, + ACTIONS(3666), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4886), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157869,7 +158031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23702] = 33, + [23703] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -157898,42 +158060,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_module, - ACTIONS(3877), 1, + ACTIONS(3879), 1, anon_sym_RBRACE, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4174), 1, sym_declaration, - STATE(4399), 1, + STATE(4179), 1, sym_internal_module, - STATE(4587), 1, + STATE(4268), 1, + aux_sym_export_statement_repeat1, + STATE(4580), 1, sym_export_clause, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, - STATE(5325), 1, + STATE(5344), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157941,7 +158103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(3987), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157955,89 +158117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23821] = 29, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3762), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_async, - ACTIONS(3772), 1, - anon_sym_AT, - ACTIONS(3774), 1, - anon_sym_static, - ACTIONS(3776), 1, - anon_sym_readonly, - ACTIONS(3780), 1, - anon_sym_declare, - ACTIONS(3782), 1, - anon_sym_abstract, - ACTIONS(3784), 1, - anon_sym_accessor, - ACTIONS(3788), 1, - anon_sym_SEMI, - ACTIONS(3880), 1, - anon_sym_RBRACE, - STATE(2382), 1, - aux_sym_export_statement_repeat1, - STATE(2617), 1, - sym_method_definition, - STATE(2685), 1, - sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, - sym_override_modifier, - STATE(4526), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3770), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3778), 2, - anon_sym_get, - anon_sym_set, - STATE(1448), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3003), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5020), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3646), 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, - [23932] = 25, + [23822] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -158062,14 +158142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3900), 1, anon_sym_override, - STATE(2732), 1, + STATE(2748), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, + STATE(4969), 1, aux_sym_object_repeat1, + STATE(5166), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -158083,19 +158163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3595), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, + STATE(4968), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5891), 3, + STATE(5101), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5724), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -158114,7 +158194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24034] = 25, + [23924] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -158139,14 +158219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3916), 1, anon_sym_override, - STATE(2732), 1, + STATE(2748), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, + STATE(4969), 1, aux_sym_object_repeat1, + STATE(5166), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -158160,19 +158240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3595), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, + STATE(4968), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5891), 3, + STATE(5101), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5724), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -158191,7 +158271,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24136] = 25, + [24026] = 13, + ACTIONS(828), 1, + anon_sym_BQUOTE, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(3928), 1, + anon_sym_QMARK_DOT, + ACTIONS(3930), 1, + anon_sym_LT, + STATE(1534), 1, + sym_type_arguments, + STATE(1684), 1, + sym_template_string, + STATE(1715), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3918), 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(3920), 27, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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_satisfies, + anon_sym_implements, + [24104] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -158206,54 +158351,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3920), 1, + ACTIONS(3934), 1, anon_sym_RBRACE, - ACTIONS(3922), 1, + ACTIONS(3936), 1, anon_sym_async, - ACTIONS(3924), 1, + ACTIONS(3938), 1, anon_sym_static, - ACTIONS(3926), 1, + ACTIONS(3940), 1, anon_sym_readonly, - ACTIONS(3932), 1, + ACTIONS(3946), 1, anon_sym_override, - STATE(2732), 1, + STATE(2748), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, + STATE(4969), 1, aux_sym_object_repeat1, + STATE(5166), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3928), 2, + ACTIONS(3942), 2, anon_sym_get, anon_sym_set, - ACTIONS(3930), 3, + ACTIONS(3944), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3595), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, + STATE(4968), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5891), 3, + STATE(5101), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5724), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3918), 14, + ACTIONS(3932), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158268,72 +158413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24238] = 13, - ACTIONS(830), 1, - anon_sym_BQUOTE, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(3944), 1, - anon_sym_QMARK_DOT, - ACTIONS(3946), 1, - anon_sym_LT, - STATE(1558), 1, - sym_type_arguments, - STATE(1620), 1, - sym_template_string, - STATE(1650), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3934), 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(3936), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - 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_satisfies, - anon_sym_implements, - [24316] = 25, + [24206] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -158358,14 +158438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3962), 1, anon_sym_override, - STATE(2732), 1, + STATE(2748), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, + STATE(4969), 1, aux_sym_object_repeat1, + STATE(5166), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -158379,19 +158459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3595), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, + STATE(4968), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5891), 3, + STATE(5101), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5724), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -158410,7 +158490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24418] = 25, + [24308] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -158435,13 +158515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3978), 1, anon_sym_override, - STATE(2732), 1, + STATE(2748), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4618), 1, + STATE(4969), 1, aux_sym_object_repeat1, - STATE(4622), 1, + STATE(5166), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -158456,19 +158536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3595), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4687), 3, + STATE(4968), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5891), 3, + STATE(5101), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5724), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -158487,7 +158567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24520] = 25, + [24410] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -158512,14 +158592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3994), 1, anon_sym_override, - STATE(2732), 1, + STATE(2748), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, + STATE(4937), 1, aux_sym_object_repeat1, + STATE(5166), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -158533,19 +158613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3595), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, + STATE(5101), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4841), 3, + STATE(5105), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5891), 3, + STATE(5724), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -158564,21 +158644,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24622] = 8, - ACTIONS(3938), 1, + [24512] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3788), 1, + anon_sym_module, + STATE(1322), 1, + sym_decorator, + STATE(4174), 1, + sym_declaration, + STATE(4179), 1, + sym_internal_module, + STATE(4268), 1, + aux_sym_export_statement_repeat1, + STATE(4580), 1, + sym_export_clause, + STATE(5344), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3996), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3946), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3987), 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, + [24623] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1827), 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(1825), 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_SEMI, + anon_sym_of, + anon_sym_while, + 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, + [24680] = 8, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3930), 1, anon_sym_LT, ACTIONS(4000), 1, anon_sym_DOT, - STATE(1537), 1, + STATE(1599), 1, sym_arguments, - STATE(1538), 1, + STATE(1600), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3447), 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(3443), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, + [24747] = 8, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3930), 1, + anon_sym_LT, + ACTIONS(4006), 1, + anon_sym_DOT, + STATE(1602), 1, + sym_arguments, + STATE(1603), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 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(4004), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, + [24814] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1879), 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(1877), 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_SEMI, + anon_sym_of, + anon_sym_while, + 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, + [24871] = 8, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3930), 1, + anon_sym_LT, + ACTIONS(4012), 1, + anon_sym_DOT, + STATE(1604), 1, + sym_arguments, + STATE(1605), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4008), 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(4010), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, + [24938] = 7, + ACTIONS(3930), 1, + anon_sym_LT, + ACTIONS(4016), 1, + anon_sym_DOT, + ACTIONS(4018), 1, + anon_sym_is, + STATE(1584), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3996), 12, + ACTIONS(4014), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158591,12 +159035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3998), 31, + ACTIONS(3479), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -158623,7 +159068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24689] = 30, + [25003] = 29, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -158652,45 +159097,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, - anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_module, - STATE(1290), 1, + ACTIONS(4020), 1, + anon_sym_EQ, + STATE(1322), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4174), 1, sym_declaration, - STATE(4399), 1, + STATE(4179), 1, sym_internal_module, - STATE(4587), 1, + STATE(4268), 1, + aux_sym_export_statement_repeat1, + STATE(4580), 1, sym_export_clause, - STATE(5325), 1, + STATE(5344), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, + ACTIONS(3786), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3758), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(3987), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158704,19 +159148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24800] = 7, - ACTIONS(3946), 1, + [25112] = 5, + ACTIONS(4026), 1, anon_sym_LT, - ACTIONS(4008), 1, - anon_sym_DOT, - ACTIONS(4010), 1, - anon_sym_is, - STATE(1525), 1, + STATE(1498), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4006), 12, + ACTIONS(4022), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158729,7 +159169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 32, + ACTIONS(4024), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -158742,6 +159182,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, @@ -158762,21 +159203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24865] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + [25172] = 5, + ACTIONS(4029), 1, anon_sym_LT, - ACTIONS(4012), 1, - anon_sym_DOT, - STATE(1535), 1, - sym_arguments, - STATE(1536), 1, + STATE(1497), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 12, + ACTIONS(3611), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158789,18 +159224,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3441), 31, + ACTIONS(3417), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158821,11 +159258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24932] = 3, + [25232] = 5, + ACTIONS(4036), 1, + anon_sym_LT, + STATE(1503), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1807), 14, + ACTIONS(4032), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158836,24 +159277,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, - anon_sym_QMARK, - ACTIONS(1805), 34, - sym__automatic_semicolon, + ACTIONS(4034), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -158874,22 +159312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [24989] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, - anon_sym_LT, - ACTIONS(4018), 1, - anon_sym_DOT, - STATE(1539), 1, - sym_type_arguments, - STATE(1609), 1, - sym_arguments, + anon_sym_implements, + [25292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4014), 12, + ACTIONS(3204), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158900,20 +159328,24 @@ 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(4016), 31, + anon_sym_QMARK, + ACTIONS(3206), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158934,91 +159366,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25056] = 29, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2240), 1, + [25348] = 22, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(2348), 1, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(4041), 1, + anon_sym_async, + ACTIONS(4043), 1, + anon_sym_static, + ACTIONS(4045), 1, + anon_sym_readonly, + ACTIONS(4051), 1, + anon_sym_override, + STATE(2748), 1, + sym_accessibility_modifier, + STATE(2757), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3388), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4047), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4049), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3595), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5314), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5317), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5724), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4039), 14, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2350), 1, - anon_sym_import, - ACTIONS(2352), 1, - anon_sym_var, - ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2356), 1, - anon_sym_const, - ACTIONS(2358), 1, - anon_sym_class, - ACTIONS(2360), 1, - anon_sym_async, - ACTIONS(2362), 1, - anon_sym_function, - ACTIONS(2364), 1, + anon_sym_new, + sym_identifier, anon_sym_declare, - ACTIONS(2368), 1, - anon_sym_abstract, - ACTIONS(2372), 1, - anon_sym_interface, - ACTIONS(2374), 1, - anon_sym_enum, - ACTIONS(3742), 1, - anon_sym_STAR, - ACTIONS(3744), 1, - anon_sym_default, - ACTIONS(3746), 1, - anon_sym_type, - ACTIONS(3750), 1, - anon_sym_as, - ACTIONS(3760), 1, anon_sym_module, - ACTIONS(4020), 1, - anon_sym_EQ, - STATE(1290), 1, - sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, - sym_declaration, - STATE(4399), 1, - sym_internal_module, - STATE(4587), 1, - sym_export_clause, - STATE(5325), 1, - sym_namespace_export, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [25442] = 9, + ACTIONS(828), 1, + anon_sym_BQUOTE, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(3928), 1, + anon_sym_QMARK_DOT, + STATE(1684), 1, + sym_template_string, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 9, - sym__automatic_semicolon, + ACTIONS(1761), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1763), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4393), 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, - [25165] = 3, + 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, + anon_sym_implements, + [25510] = 4, + ACTIONS(4018), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 14, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159032,21 +159517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1843), 34, - sym__automatic_semicolon, + ACTIONS(4055), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159067,24 +159550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [25222] = 9, - ACTIONS(830), 1, - anon_sym_BQUOTE, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(3944), 1, - anon_sym_QMARK_DOT, - STATE(1620), 1, - sym_template_string, - STATE(5072), 1, - sym_optional_chain, + anon_sym_implements, + [25568] = 5, + ACTIONS(1659), 1, + anon_sym_EQ, + ACTIONS(4057), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159098,7 +159573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 28, + ACTIONS(1653), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159109,7 +159584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159125,13 +159603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [25290] = 3, + [25628] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 14, + ACTIONS(1827), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159146,7 +159625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1843), 33, + ACTIONS(1825), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159180,13 +159659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25346] = 4, - ACTIONS(4010), 1, - anon_sym_is, + [25684] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4022), 13, + ACTIONS(3208), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159200,7 +159677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4024), 33, + anon_sym_QMARK, + ACTIONS(3210), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159234,11 +159712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25404] = 3, + [25740] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3162), 14, + ACTIONS(1879), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159253,7 +159731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(3164), 33, + ACTIONS(1877), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159287,13 +159765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25460] = 4, - ACTIONS(4010), 1, - anon_sym_is, + [25796] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4026), 13, + ACTIONS(1687), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159307,7 +159783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4028), 33, + ACTIONS(1685), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159341,11 +159817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25518] = 3, + anon_sym_is, + [25852] = 6, + ACTIONS(3930), 1, + anon_sym_LT, + ACTIONS(4016), 1, + anon_sym_DOT, + STATE(1584), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1807), 14, + ACTIONS(4014), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159356,11 +159839,63 @@ 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(3479), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [25914] = 5, + ACTIONS(3930), 1, anon_sym_LT, + STATE(1591), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4059), 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, - anon_sym_QMARK, - ACTIONS(1805), 33, + ACTIONS(4061), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159394,13 +159929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25574] = 4, - ACTIONS(4034), 1, - anon_sym_is, + [25974] = 6, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_DOT, + STATE(1592), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 13, + ACTIONS(4063), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159414,20 +159953,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 33, + ACTIONS(4065), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159448,11 +159985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25632] = 3, + [26036] = 5, + ACTIONS(4073), 1, + anon_sym_LT, + STATE(1499), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1685), 13, + ACTIONS(4069), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159463,10 +160004,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(1683), 34, + ACTIONS(4071), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159500,84 +160040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [25688] = 22, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, - anon_sym_LBRACK, - ACTIONS(4038), 1, - anon_sym_async, - ACTIONS(4040), 1, - anon_sym_static, - ACTIONS(4042), 1, - anon_sym_readonly, - ACTIONS(4048), 1, - anon_sym_override, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2743), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3388), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3890), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4044), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4046), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3705), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5520), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5541), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4036), 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, - [25782] = 3, + [26096] = 5, + ACTIONS(4080), 1, + anon_sym_LT, + STATE(1500), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3182), 14, + ACTIONS(4076), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159588,11 +160059,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3184), 33, + ACTIONS(4078), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159626,15 +160095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25838] = 5, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4050), 1, - sym__automatic_semicolon, + [26156] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1661), 13, + ACTIONS(4083), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159648,7 +160113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 32, + ACTIONS(4085), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159680,18 +160145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [25898] = 6, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(4056), 1, - anon_sym_DOT, - STATE(1532), 1, - sym_arguments, + anon_sym_is, + [26212] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4052), 13, + ACTIONS(3212), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159705,18 +160166,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4054), 31, + anon_sym_QMARK, + ACTIONS(3214), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159737,11 +160201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25960] = 3, + [26268] = 4, + ACTIONS(4018), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3186), 14, + ACTIONS(4087), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159755,8 +160221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3188), 33, + ACTIONS(4089), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159790,17 +160255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26016] = 6, - ACTIONS(3946), 1, - anon_sym_LT, - ACTIONS(4008), 1, - anon_sym_DOT, - STATE(1525), 1, - sym_type_arguments, + [26326] = 4, + ACTIONS(4091), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4006), 12, + ACTIONS(4059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159811,9 +160272,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(3501), 32, + ACTIONS(4061), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159826,6 +160288,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, @@ -159846,15 +160309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26078] = 5, - ACTIONS(3946), 1, + [26384] = 5, + ACTIONS(4093), 1, anon_sym_LT, - STATE(1531), 1, + STATE(1496), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 12, + ACTIONS(3625), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159867,7 +160330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 33, + ACTIONS(3409), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159901,11 +160364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26138] = 3, + [26444] = 5, + ACTIONS(4100), 1, + anon_sym_QMARK, + ACTIONS(4102), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4058), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159919,7 +160386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4060), 34, + ACTIONS(4098), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159928,7 +160395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -159951,14 +160417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26194] = 3, + [26503] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4062), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159972,7 +160436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4064), 33, + ACTIONS(4106), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160006,73 +160470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26249] = 7, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(2326), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4066), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4069), 3, - anon_sym_GT, + [26558] = 6, + ACTIONS(4112), 1, anon_sym_AMP, + ACTIONS(4114), 1, anon_sym_PIPE, - ACTIONS(1663), 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(1667), 29, - 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_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, - [26312] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4116), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4072), 11, + ACTIONS(4108), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160084,7 +160492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4074), 32, + ACTIONS(4110), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160117,65 +160525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [26373] = 5, - ACTIONS(4086), 1, - anon_sym_QMARK, - ACTIONS(4088), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4084), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_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, - [26432] = 3, + [26619] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4090), 13, + ACTIONS(4118), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160189,7 +160543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4092), 33, + ACTIONS(4120), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160223,11 +160577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26487] = 3, + [26674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4026), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160241,7 +160595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4028), 33, + ACTIONS(4124), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160275,84 +160629,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26542] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [26729] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4094), 11, + ACTIONS(4126), 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(4096), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [26603] = 6, - ACTIONS(4076), 1, anon_sym_AMP, - ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4098), 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(4100), 32, + ACTIONS(4128), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160384,45 +160679,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26664] = 7, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, + [26784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, + ACTIONS(4130), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4132), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [26839] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 28, + ACTIONS(4136), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160440,23 +160783,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26727] = 7, - ACTIONS(4104), 1, + [26894] = 7, + ACTIONS(1659), 1, anon_sym_EQ, - ACTIONS(4114), 1, + ACTIONS(2326), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 2, + ACTIONS(4138), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4111), 3, + ACTIONS(4141), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4102), 10, + ACTIONS(1657), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160467,7 +160811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 29, + ACTIONS(1661), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160497,17 +160841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [26790] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(4118), 1, - anon_sym_DOT, - STATE(1736), 1, - sym_statement_block, + [26957] = 5, + ACTIONS(4144), 1, + anon_sym_QMARK, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160521,18 +160863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 30, - sym__automatic_semicolon, + ACTIONS(4098), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, + 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, @@ -160551,18 +160894,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [26851] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(4120), 1, - anon_sym_DOT, - STATE(1736), 1, - sym_statement_block, + anon_sym_implements, + [27016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(4148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160576,18 +160913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 30, - sym__automatic_semicolon, + ACTIONS(4150), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160606,12 +160945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [26912] = 3, + anon_sym_extends, + anon_sym_implements, + [27071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4152), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160625,7 +160965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4124), 33, + ACTIONS(4154), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160659,15 +160999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26967] = 5, - ACTIONS(4116), 1, + [27126] = 6, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(1736), 1, + ACTIONS(4158), 1, + anon_sym_DOT, + STATE(1749), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160681,7 +161023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 31, + ACTIONS(1665), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160693,7 +161035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_while, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160713,17 +161054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [27026] = 6, - ACTIONS(4126), 1, + [27187] = 6, + ACTIONS(4156), 1, anon_sym_LBRACE, - ACTIONS(4128), 1, + ACTIONS(4160), 1, anon_sym_DOT, - STATE(1639), 1, + STATE(1749), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160737,18 +161078,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 30, + ACTIONS(1665), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160767,18 +161108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [27087] = 6, - ACTIONS(4126), 1, + anon_sym_PIPE_RBRACE, + [27248] = 5, + ACTIONS(4156), 1, anon_sym_LBRACE, - ACTIONS(4130), 1, - anon_sym_DOT, - STATE(1639), 1, + STATE(1749), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160792,9 +161131,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 30, + ACTIONS(1665), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [27307] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4162), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4164), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -160804,6 +161194,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, @@ -160822,16 +161213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27148] = 5, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym_statement_block, + [27362] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160845,9 +161233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 31, + ACTIONS(4168), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -160876,40 +161265,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27207] = 5, + [27417] = 6, + ACTIONS(4112), 1, + anon_sym_AMP, + ACTIONS(4114), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 3, + ACTIONS(4166), 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(4168), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4134), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 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, + [27478] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 30, + ACTIONS(2342), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160930,14 +161372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27266] = 4, - ACTIONS(4050), 1, - sym__automatic_semicolon, + [27533] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1661), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160951,7 +161392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 32, + ACTIONS(4172), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160983,16 +161424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [27323] = 5, - ACTIONS(4136), 1, - anon_sym_QMARK, - ACTIONS(4138), 1, anon_sym_extends, + anon_sym_implements, + [27588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161006,7 +161444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 31, + ACTIONS(4176), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161015,6 +161453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -161037,12 +161476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27382] = 3, + [27643] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161056,7 +161496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4142), 33, + ACTIONS(4172), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161090,11 +161530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27437] = 3, + [27698] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161108,7 +161548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 33, + ACTIONS(4176), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161142,11 +161582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27492] = 3, + [27753] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161160,7 +161600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4146), 33, + ACTIONS(4180), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161194,11 +161634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27547] = 3, + [27808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4022), 13, + ACTIONS(4182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161212,7 +161652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4024), 33, + ACTIONS(4184), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161246,15 +161686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27602] = 5, - ACTIONS(830), 1, - anon_sym_BQUOTE, - STATE(1620), 1, - sym_template_string, + [27863] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(4182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161268,7 +161704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 31, + ACTIONS(4184), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161298,15 +161734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27661] = 4, - ACTIONS(4152), 1, - anon_sym_DOT, + [27918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4148), 13, + ACTIONS(4182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161320,7 +161756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4150), 32, + ACTIONS(4184), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161333,6 +161769,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, @@ -161353,11 +161790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27718] = 3, + [27973] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161371,7 +161808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 33, + ACTIONS(4188), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161405,13 +161842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27773] = 4, - ACTIONS(4158), 1, - anon_sym_LBRACK, + [28028] = 5, + ACTIONS(828), 1, + anon_sym_BQUOTE, + STATE(1684), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161425,7 +161864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 32, + ACTIONS(1763), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161436,6 +161875,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, @@ -161454,15 +161894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27830] = 3, + [28087] = 5, + ACTIONS(3922), 1, + anon_sym_LPAREN, + STATE(1654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, + ACTIONS(4190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161476,13 +161918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4162), 33, + ACTIONS(4192), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -161508,13 +161949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27885] = 3, + [28146] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2328), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161528,7 +161968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2326), 33, + ACTIONS(4188), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161562,13 +162002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27940] = 4, - ACTIONS(4012), 1, - anon_sym_DOT, + [28201] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 13, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161582,7 +162020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3441), 32, + ACTIONS(4055), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161595,6 +162033,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, @@ -161615,13 +162054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27997] = 4, - ACTIONS(4168), 1, - anon_sym_DOT, + [28256] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 13, + ACTIONS(4194), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161635,7 +162072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4166), 32, + ACTIONS(4196), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161648,6 +162085,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, @@ -161668,11 +162106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28054] = 3, + [28311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(4198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161686,7 +162124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 33, + ACTIONS(4200), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161720,11 +162158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28109] = 3, + [28366] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4174), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161738,7 +162176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4114), 33, + ACTIONS(4188), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161772,11 +162210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28164] = 3, + [28421] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161790,7 +162228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4178), 33, + ACTIONS(4204), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161824,18 +162262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28219] = 4, - ACTIONS(4076), 1, - anon_sym_AMP, + [28476] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 12, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161843,7 +162280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4182), 33, + ACTIONS(4204), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161877,11 +162314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28276] = 3, + [28531] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 13, + ACTIONS(4206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161895,7 +162332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4132), 33, + ACTIONS(4208), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161929,11 +162366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28331] = 3, + [28586] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161947,7 +162384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4186), 33, + ACTIONS(4212), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161981,11 +162418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28386] = 3, + [28641] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161999,7 +162436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4190), 33, + ACTIONS(4204), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162033,29 +162470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28441] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [28696] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4192), 11, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4194), 32, + ACTIONS(4216), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162087,41 +162520,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [28502] = 6, - ACTIONS(4156), 1, anon_sym_extends, - ACTIONS(4158), 1, - anon_sym_LBRACK, + anon_sym_implements, + [28751] = 5, + ACTIONS(3922), 1, + anon_sym_LPAREN, + STATE(1646), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4196), 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(4198), 31, + ACTIONS(4220), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162143,13 +162576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28563] = 4, - ACTIONS(4204), 1, - anon_sym_extends, + [28810] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4200), 13, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162163,7 +162594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4202), 32, + ACTIONS(4224), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162195,14 +162626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28620] = 4, - ACTIONS(4158), 1, - anon_sym_LBRACK, + [28865] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4206), 13, + ACTIONS(4226), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162216,7 +162646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4208), 32, + ACTIONS(4228), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162227,6 +162657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162249,11 +162680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28677] = 3, + [28920] = 6, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4232), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162267,10 +162704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4138), 33, + ACTIONS(1665), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162280,7 +162716,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, @@ -162299,13 +162734,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28732] = 3, + [28981] = 6, + ACTIONS(4230), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162319,10 +162759,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4212), 33, + ACTIONS(1665), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162332,7 +162771,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, @@ -162351,13 +162789,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, - [28787] = 3, + [29042] = 5, + ACTIONS(4230), 1, + anon_sym_LBRACE, + STATE(1625), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162371,10 +162812,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4216), 33, + ACTIONS(1665), 31, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162403,17 +162843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28842] = 5, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1660), 1, - sym_arguments, + [29101] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162427,12 +162862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 31, + ACTIONS(4200), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -162458,12 +162894,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, - [28901] = 3, + [29156] = 4, + ACTIONS(4057), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2336), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162477,7 +162916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2334), 33, + ACTIONS(1653), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162509,13 +162948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28956] = 3, + [29213] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 13, + ACTIONS(4236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162529,7 +162967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4088), 33, + ACTIONS(4238), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162563,17 +163001,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29011] = 3, + [29268] = 7, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(3443), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3447), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 10, 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(3441), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [29331] = 4, + ACTIONS(4112), 1, anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4240), 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, @@ -162581,7 +163076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4224), 33, + ACTIONS(4242), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162615,11 +163110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29066] = 3, + [29388] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(2332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162633,7 +163128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 33, + ACTIONS(2330), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162667,11 +163162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29121] = 3, + [29443] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4230), 13, + ACTIONS(4244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162685,7 +163180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 33, + ACTIONS(4246), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162719,11 +163214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29176] = 3, + [29498] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 13, + ACTIONS(4248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162737,7 +163232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4236), 33, + ACTIONS(4250), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162771,11 +163266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29231] = 3, + [29553] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162789,7 +163284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4240), 33, + ACTIONS(4254), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162823,11 +163318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29286] = 3, + [29608] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162841,7 +163336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4244), 33, + ACTIONS(4061), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162875,11 +163370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29341] = 3, + [29663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162893,7 +163388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4248), 33, + ACTIONS(4254), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162927,13 +163422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29396] = 4, - ACTIONS(4254), 1, - anon_sym_DOT, + [29718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162947,7 +163440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4252), 32, + ACTIONS(4212), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162960,6 +163453,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, @@ -162980,11 +163474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29453] = 3, + [29773] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 13, + ACTIONS(4252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162998,7 +163492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3419), 33, + ACTIONS(4254), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163032,11 +163526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29508] = 3, + [29828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3625), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163050,7 +163544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3429), 33, + ACTIONS(4258), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163084,39 +163578,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29563] = 4, - ACTIONS(4257), 1, - anon_sym_DOT, + [29883] = 7, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(4272), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4266), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4269), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4260), 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(4252), 32, + ACTIONS(4264), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163135,13 +163633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29620] = 3, + [29946] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163155,7 +163652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4262), 33, + ACTIONS(4258), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163189,29 +163686,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29675] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [30001] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 11, + ACTIONS(4274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4262), 32, + ACTIONS(4276), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163243,12 +163736,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, - [29736] = 3, + [30056] = 4, + ACTIONS(3483), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163262,7 +163758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4266), 33, + ACTIONS(3441), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163294,13 +163790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29791] = 3, + [30113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163314,7 +163809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4270), 33, + ACTIONS(4258), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163348,25 +163843,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29846] = 3, + [30168] = 6, + ACTIONS(4112), 1, + anon_sym_AMP, + ACTIONS(4114), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, + ACTIONS(4104), 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(4274), 33, + ACTIONS(4106), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163398,13 +163897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29901] = 3, + [30229] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 13, + ACTIONS(4278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163418,7 +163916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4278), 33, + ACTIONS(4280), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163452,11 +163950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29956] = 3, + [30284] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4087), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163470,7 +163968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4282), 33, + ACTIONS(4089), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163504,18 +164002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30011] = 4, - ACTIONS(4076), 1, - anon_sym_AMP, + [30339] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 12, + ACTIONS(4278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163523,7 +164020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4286), 33, + ACTIONS(4280), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163557,38 +164054,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30068] = 4, - ACTIONS(4288), 1, - sym__automatic_semicolon, + [30394] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 13, + ACTIONS(4282), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4284), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(1809), 32, + ACTIONS(3441), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163610,11 +164108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30125] = 3, + [30453] = 4, + ACTIONS(4290), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, + ACTIONS(4286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163628,7 +164128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4292), 33, + ACTIONS(4288), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163641,7 +164141,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, @@ -163662,13 +164161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30180] = 4, - ACTIONS(3485), 1, - anon_sym_EQ, + [30510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163682,7 +164179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 32, + ACTIONS(4294), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163714,16 +164211,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, - [30237] = 5, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1629), 1, - sym_arguments, + [30565] = 4, + ACTIONS(4296), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 13, + ACTIONS(4292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163737,17 +164233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4296), 31, + ACTIONS(4294), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163768,12 +164264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30296] = 3, + [30622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2340), 13, + ACTIONS(4298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163787,7 +164284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2338), 33, + ACTIONS(4300), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163821,11 +164318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30351] = 3, + [30677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163839,7 +164336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4300), 33, + ACTIONS(4280), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163873,9 +164370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30406] = 4, - ACTIONS(4032), 1, - anon_sym_extends, + [30732] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -163893,7 +164388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4304), 32, + ACTIONS(4304), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163925,30 +164420,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, - [30463] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, + [30787] = 4, + ACTIONS(4061), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 11, + ACTIONS(4306), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4304), 32, + ACTIONS(4308), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163981,11 +164475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30524] = 3, + [30844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 13, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163999,7 +164493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4308), 33, + ACTIONS(4312), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164033,11 +164527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30579] = 3, + [30899] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(2328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164051,7 +164545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 33, + ACTIONS(2326), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164085,11 +164579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30634] = 3, + [30954] = 4, + ACTIONS(4000), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(3447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164103,7 +164599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4316), 33, + ACTIONS(3443), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164116,7 +164612,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, @@ -164137,11 +164632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30689] = 3, + [31011] = 4, + ACTIONS(4318), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164155,7 +164652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 33, + ACTIONS(4316), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164168,7 +164665,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, @@ -164189,25 +164685,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30744] = 3, + [31068] = 6, + ACTIONS(4112), 1, + anon_sym_AMP, + ACTIONS(4114), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(4306), 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(4316), 33, + ACTIONS(4308), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164239,13 +164739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30799] = 3, + [31129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164259,7 +164758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 33, + ACTIONS(4322), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164293,25 +164792,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30854] = 3, + [31184] = 6, + ACTIONS(4112), 1, + anon_sym_AMP, + ACTIONS(4114), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(4324), 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(4324), 33, + ACTIONS(4326), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164343,13 +164846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30909] = 3, + [31245] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164363,7 +164865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 33, + ACTIONS(4272), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164397,11 +164899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30964] = 3, + [31300] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164415,7 +164917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4324), 33, + ACTIONS(4332), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164449,17 +164951,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31019] = 3, + [31355] = 4, + ACTIONS(4112), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4334), 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, @@ -164467,7 +164970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4328), 33, + ACTIONS(4336), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164501,11 +165004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31074] = 3, + [31412] = 4, + ACTIONS(4338), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164519,7 +165024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4332), 33, + ACTIONS(1809), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164551,13 +165056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31129] = 3, + [31469] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164571,7 +165075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4328), 33, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164605,11 +165109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31184] = 3, + [31524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164623,7 +165127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4332), 33, + ACTIONS(4342), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164657,11 +165161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31239] = 3, + [31579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 13, + ACTIONS(4344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164675,7 +165179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4336), 33, + ACTIONS(4346), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164709,17 +165213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31294] = 6, - ACTIONS(4076), 1, + [31634] = 6, + ACTIONS(4112), 1, anon_sym_AMP, - ACTIONS(4078), 1, + ACTIONS(4114), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4116), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 11, + ACTIONS(4348), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164731,7 +165235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4340), 32, + ACTIONS(4350), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164764,25 +165268,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31355] = 3, + [31695] = 6, + ACTIONS(4294), 1, + anon_sym_extends, + ACTIONS(4296), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4292), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4352), 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(4344), 33, + ACTIONS(4354), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164793,7 +165302,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, @@ -164814,31 +165322,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31410] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, + [31756] = 4, + ACTIONS(4360), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 11, + ACTIONS(4356), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4348), 32, + ACTIONS(4358), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164871,11 +165376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31471] = 3, + [31813] = 4, + ACTIONS(4296), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164889,7 +165396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4352), 33, + ACTIONS(4364), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164900,7 +165407,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, @@ -164923,11 +165429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31526] = 3, + [31870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 13, + ACTIONS(2336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164941,7 +165447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4356), 33, + ACTIONS(2334), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164975,29 +165481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31581] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [31925] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 11, + ACTIONS(4100), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4356), 32, + ACTIONS(4102), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165029,12 +165531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31642] = 3, + [31980] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2332), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165048,7 +165551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2330), 33, + ACTIONS(4368), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165082,11 +165585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31697] = 3, + [32035] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165100,7 +165603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 33, + ACTIONS(4372), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165134,11 +165637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31752] = 3, + [32090] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165152,7 +165655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 33, + ACTIONS(4376), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165186,11 +165689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31807] = 3, + [32145] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165204,7 +165707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 33, + ACTIONS(4380), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165238,11 +165741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31862] = 3, + [32200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165256,7 +165759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 33, + ACTIONS(4384), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165290,11 +165793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31917] = 3, + [32255] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(2340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165308,7 +165811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 33, + ACTIONS(2338), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165342,11 +165845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31972] = 3, + [32310] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4152), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165360,7 +165863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 33, + ACTIONS(4154), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165394,25 +165897,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32027] = 3, + [32365] = 6, + ACTIONS(4112), 1, + anon_sym_AMP, + ACTIONS(4114), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4386), 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(4368), 33, + ACTIONS(4388), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165444,13 +165951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32082] = 3, + [32426] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165464,7 +165970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 33, + ACTIONS(4146), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165498,11 +166004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32137] = 3, + [32481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165516,7 +166022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 33, + ACTIONS(4392), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165550,25 +166056,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32192] = 3, + [32536] = 6, + ACTIONS(4112), 1, + anon_sym_AMP, + ACTIONS(4114), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4394), 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(4372), 33, + ACTIONS(4396), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165600,13 +166110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32247] = 3, + [32597] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165620,7 +166129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4376), 33, + ACTIONS(4400), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165654,11 +166163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32302] = 3, + [32652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165672,7 +166181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4380), 33, + ACTIONS(4404), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165706,11 +166215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32357] = 3, + [32707] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165724,7 +166233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4384), 33, + ACTIONS(4408), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165758,11 +166267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32412] = 3, + [32762] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2344), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165776,7 +166285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2342), 33, + ACTIONS(4412), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165810,11 +166319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32467] = 3, + [32817] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4414), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165828,7 +166337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4388), 33, + ACTIONS(4416), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165862,11 +166371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32522] = 3, + [32872] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165880,7 +166389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 33, + ACTIONS(4384), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165914,11 +166423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32577] = 3, + [32927] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4418), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165932,7 +166441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 33, + ACTIONS(4420), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165966,11 +166475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32632] = 3, + [32982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4422), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165984,7 +166493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 33, + ACTIONS(4424), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166018,11 +166527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32687] = 3, + [33037] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166036,7 +166545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 33, + ACTIONS(4428), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166070,11 +166579,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32742] = 3, + [33092] = 6, + ACTIONS(4112), 1, + anon_sym_AMP, + ACTIONS(4114), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4430), 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(4432), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [33153] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4434), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166088,7 +166652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 33, + ACTIONS(4436), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166122,11 +166686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32797] = 3, + [33208] = 4, + ACTIONS(4442), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166140,7 +166706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 33, + ACTIONS(4440), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166153,7 +166719,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, @@ -166174,11 +166739,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32852] = 3, + [33265] = 4, + ACTIONS(4445), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(4438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166192,7 +166759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 33, + ACTIONS(4440), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166205,7 +166772,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, @@ -166226,11 +166792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32907] = 3, + [33322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(4448), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166244,7 +166810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 33, + ACTIONS(4450), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166278,11 +166844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32962] = 3, + [33377] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(1769), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166296,7 +166862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 33, + ACTIONS(1771), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166328,13 +166894,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33017] = 3, + [33431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166348,7 +166913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4404), 33, + ACTIONS(1743), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166380,13 +166945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33072] = 3, + [33485] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(4452), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166400,7 +166964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4408), 33, + ACTIONS(4454), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166432,15 +166996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33127] = 4, - ACTIONS(4104), 1, - anon_sym_EQ, + [33539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4102), 13, + ACTIONS(4456), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166454,7 +167015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 31, + ACTIONS(4458), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166463,6 +167024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -166486,11 +167048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33183] = 3, + [33593] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4460), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166504,7 +167066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 32, + ACTIONS(4462), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166537,70 +167099,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33237] = 11, - ACTIONS(3938), 1, + [33647] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4420), 1, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4464), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [33307] = 3, + [33757] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166614,7 +167196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 32, + ACTIONS(4098), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166647,11 +167229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33361] = 3, + [33811] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4512), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166665,7 +167247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 32, + ACTIONS(4514), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166698,11 +167280,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33415] = 3, + [33865] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4514), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [33975] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 13, + ACTIONS(1859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166716,7 +167377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 32, + ACTIONS(1857), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166749,11 +167410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33469] = 3, + [34029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1693), 13, + ACTIONS(4516), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166767,7 +167428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 32, + ACTIONS(4518), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166800,78 +167461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33523] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 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, - [33609] = 3, + [34083] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166885,7 +167479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 32, + ACTIONS(1809), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166918,62 +167512,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33663] = 3, + [34137] = 18, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4464), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 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(4447), 32, + ACTIONS(4520), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [33717] = 3, + [34221] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4524), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166987,7 +167596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 32, + ACTIONS(4526), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167020,11 +167629,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33771] = 3, + [34275] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4526), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [34385] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4528), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167038,7 +167726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 32, + ACTIONS(4530), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167071,11 +167759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33825] = 3, + [34439] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(4532), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167089,7 +167777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 32, + ACTIONS(4534), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167122,78 +167810,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33879] = 31, - ACTIONS(3938), 1, + [34493] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4455), 7, + ACTIONS(4534), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -167201,248 +167889,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [33989] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [34603] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4536), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4501), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [34099] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4503), 7, + ACTIONS(4538), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [34209] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4505), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [34319] = 3, + anon_sym_satisfies, + anon_sym_implements, + [34657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 13, + ACTIONS(4540), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167456,7 +167958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1819), 32, + ACTIONS(4542), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167489,11 +167991,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34373] = 3, + [34711] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4554), 1, + anon_sym_readonly, + STATE(2774), 1, + sym_override_modifier, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 13, + ACTIONS(4552), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4556), 2, + anon_sym_get, + anon_sym_set, + STATE(3138), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 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, + [34797] = 4, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167507,7 +168078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 32, + ACTIONS(4264), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167516,7 +168087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -167540,11 +168110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34427] = 3, + [34853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 13, + ACTIONS(4558), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167558,7 +168128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4509), 32, + ACTIONS(4560), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167591,11 +168161,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34481] = 3, + [34907] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 13, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4560), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [35017] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167609,7 +168258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4513), 32, + ACTIONS(1867), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167642,11 +168291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34535] = 3, + [35071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4515), 13, + ACTIONS(4562), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167660,7 +168309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4517), 32, + ACTIONS(4564), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167693,78 +168342,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34589] = 31, - ACTIONS(3938), 1, + [35125] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4519), 7, + ACTIONS(4566), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -167772,11 +168421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [34699] = 3, + [35235] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4521), 13, + ACTIONS(4568), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167790,7 +168439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4523), 32, + ACTIONS(4570), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167823,11 +168472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34753] = 3, + [35289] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167841,7 +168490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 32, + ACTIONS(4574), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167874,11 +168523,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34807] = 3, + [35343] = 4, + ACTIONS(4578), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 13, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167892,7 +168543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4527), 32, + ACTIONS(4580), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167901,7 +168552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -167925,11 +168575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34861] = 3, + [35399] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(4582), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167943,7 +168593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1699), 32, + ACTIONS(4584), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167971,16 +168621,174 @@ 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [35453] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4586), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [35563] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4588), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [34915] = 3, + [35673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167994,7 +168802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 32, + ACTIONS(3441), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168027,39 +168835,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34969] = 6, - ACTIONS(4186), 1, - anon_sym_extends, + [35727] = 4, + ACTIONS(1659), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4532), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4423), 10, + ACTIONS(1657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 29, + ACTIONS(1661), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168081,11 +168887,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35029] = 3, + [35783] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3798), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4554), 1, + anon_sym_readonly, + STATE(2774), 1, + sym_override_modifier, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4552), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4556), 2, + anon_sym_get, + anon_sym_set, + STATE(3138), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 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, + [35869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 13, + ACTIONS(1819), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168099,7 +168972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 32, + ACTIONS(1821), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168132,123 +169005,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35083] = 13, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(4535), 1, + [35923] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4541), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4543), 1, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1859), 1, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(2090), 1, + STATE(1622), 1, sym_arguments, - STATE(2315), 1, - sym_template_string, - STATE(4753), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3934), 12, + ACTIONS(4464), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3936), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - 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(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [35157] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1811), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1809), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4590), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [35211] = 3, + [36033] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 13, + ACTIONS(4592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168262,7 +169102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1791), 32, + ACTIONS(4594), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168295,11 +169135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35265] = 3, + [36087] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(4596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168313,7 +169153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 32, + ACTIONS(4598), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168346,11 +169186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35319] = 3, + [36141] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 13, + ACTIONS(1779), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168364,7 +169204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4547), 32, + ACTIONS(1781), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168397,11 +169237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35373] = 3, + [36195] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 13, + ACTIONS(4600), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168415,7 +169255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 32, + ACTIONS(4602), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168448,11 +169288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35427] = 3, + [36249] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168466,7 +169306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 32, + ACTIONS(1763), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168499,11 +169339,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35481] = 3, + [36303] = 13, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4604), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4549), 13, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168514,47 +169375,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(4551), 32, + ACTIONS(4520), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [35535] = 3, + [36377] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 13, + ACTIONS(1873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168568,19 +169418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4555), 32, + ACTIONS(1871), 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_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168600,12 +169450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35589] = 3, + anon_sym_PIPE_RBRACE, + [36431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4557), 13, + ACTIONS(1807), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168619,19 +169469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4559), 32, + ACTIONS(1805), 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_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168651,12 +169501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35643] = 3, + anon_sym_PIPE_RBRACE, + [36485] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4561), 13, + ACTIONS(1727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168670,7 +169520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4563), 32, + ACTIONS(1729), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168703,11 +169553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35697] = 3, + [36539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4565), 13, + ACTIONS(1721), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168721,7 +169571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4567), 32, + ACTIONS(1719), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168754,11 +169604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35751] = 3, + [36593] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4569), 13, + ACTIONS(4607), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168772,7 +169622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 32, + ACTIONS(4609), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168805,11 +169655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35805] = 3, + [36647] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 13, + ACTIONS(1737), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168823,7 +169673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4575), 32, + ACTIONS(1739), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168856,90 +169706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35859] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4577), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [35969] = 3, + [36701] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4579), 13, + ACTIONS(1751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168953,7 +169724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4581), 32, + ACTIONS(1753), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168986,156 +169757,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36023] = 31, - ACTIONS(3938), 1, + [36755] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4581), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [36133] = 18, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 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(4583), 19, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4611), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, 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_BQUOTE, - anon_sym_satisfies, - [36217] = 3, + [36865] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4587), 13, + ACTIONS(4613), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169149,7 +169854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4589), 32, + ACTIONS(4615), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169182,47 +169887,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36271] = 19, - ACTIONS(1583), 1, + [36919] = 19, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(3867), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, + ACTIONS(4550), 1, anon_sym_async, - ACTIONS(4437), 1, + ACTIONS(4554), 1, anon_sym_readonly, - STATE(2748), 1, + STATE(2774), 1, sym_override_modifier, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4552), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(4556), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3138), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -169249,11 +169954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [36357] = 3, + [37005] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4591), 13, + ACTIONS(4617), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169267,7 +169972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4593), 32, + ACTIONS(4619), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169300,32 +170005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36411] = 13, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [37059] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169336,36 +170020,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(4583), 22, + ACTIONS(4623), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [36485] = 3, + anon_sym_implements, + [37113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(4625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169379,7 +170074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4600), 32, + ACTIONS(4627), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169412,196 +170107,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36539] = 25, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_BANG, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [37167] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1855), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 13, + ACTIONS(1853), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [36637] = 26, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_BANG, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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, - [36737] = 16, - ACTIONS(3938), 1, + anon_sym_implements, + [37221] = 11, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, + ACTIONS(4633), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4629), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 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(4583), 21, + ACTIONS(4631), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169615,70 +170205,78 @@ 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_BQUOTE, anon_sym_satisfies, - [36817] = 22, - ACTIONS(3938), 1, + [37291] = 25, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4481), 1, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4583), 14, + ACTIONS(4520), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169689,67 +170287,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [36909] = 23, - ACTIONS(3938), 1, + [37389] = 26, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4469), 1, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4481), 1, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 14, + ACTIONS(4520), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169758,17 +170360,34 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, anon_sym_satisfies, - [37003] = 3, + [37489] = 12, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4640), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4636), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169779,24 +170398,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(1865), 32, + ACTIONS(4638), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -169810,16 +170422,13 @@ 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, - [37057] = 3, + [37561] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(4643), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169833,7 +170442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4604), 32, + ACTIONS(4645), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169866,104 +170475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37111] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 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, - [37197] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [37615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4647), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -169972,257 +170489,179 @@ 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(4583), 21, + ACTIONS(4649), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [37275] = 16, - ACTIONS(3938), 1, + anon_sym_implements, + [37669] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4483), 1, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4595), 1, + ACTIONS(4604), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4464), 2, 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(4583), 20, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - 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, - anon_sym_BQUOTE, - [37355] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_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(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37409] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1877), 13, - anon_sym_STAR, + ACTIONS(4522), 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(1879), 32, + ACTIONS(4520), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [37463] = 6, - ACTIONS(4146), 1, - anon_sym_extends, + [37749] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4554), 1, + anon_sym_readonly, + STATE(2774), 1, + sym_override_modifier, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 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(3439), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4552), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4556), 2, + anon_sym_get, + anon_sym_set, + STATE(3138), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - 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, - [37523] = 4, - ACTIONS(4614), 1, - anon_sym_EQ, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 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, + [37835] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4612), 13, + ACTIONS(4625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170236,7 +170675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 31, + ACTIONS(4627), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170245,6 +170684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -170268,20 +170708,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37579] = 6, - ACTIONS(4024), 1, + [37889] = 6, + ACTIONS(4342), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4618), 2, + ACTIONS(4651), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4621), 3, + ACTIONS(4654), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4643), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170292,7 +170732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 29, + ACTIONS(4645), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170322,11 +170762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37639] = 3, + [37949] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4624), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170340,7 +170780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 32, + ACTIONS(4098), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170373,307 +170813,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37693] = 20, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4583), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - 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_BQUOTE, - anon_sym_satisfies, - [37781] = 27, - ACTIONS(3938), 1, + [38003] = 22, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_BANG, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [37883] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1717), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1719), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37937] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4628), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_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(4498), 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, - [37991] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4632), 13, - anon_sym_STAR, + ACTIONS(4522), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4634), 32, + ACTIONS(4520), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [38045] = 3, + [38095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 13, + ACTIONS(4657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170687,7 +170901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4638), 32, + ACTIONS(4659), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170720,11 +170934,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38099] = 3, + [38149] = 13, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4667), 1, + anon_sym_QMARK_DOT, + ACTIONS(4669), 1, + anon_sym_LT, + STATE(1871), 1, + sym_type_arguments, + STATE(2073), 1, + sym_template_string, + STATE(2334), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 13, + ACTIONS(3918), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170735,24 +170969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4642), 32, + ACTIONS(3920), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_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, @@ -170768,14 +170994,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_satisfies, + [38223] = 23, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4520), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38153] = 3, + [38317] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4644), 13, + ACTIONS(4671), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170789,7 +171084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4646), 32, + ACTIONS(4673), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170822,169 +171117,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38207] = 31, - ACTIONS(3938), 1, + [38371] = 24, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4642), 7, + ACTIONS(4520), 13, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [38317] = 31, - ACTIONS(3938), 1, + anon_sym_satisfies, + [38467] = 15, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4604), 1, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4520), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4648), 7, + anon_sym_BQUOTE, + anon_sym_satisfies, + [38545] = 16, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4604), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 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(4520), 20, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, 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, anon_sym_BQUOTE, - [38427] = 3, + [38625] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 13, + ACTIONS(1873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170998,7 +171334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4652), 32, + ACTIONS(1871), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171031,11 +171367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38481] = 3, + [38679] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(4675), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171049,7 +171385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 32, + ACTIONS(4677), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171082,11 +171418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38535] = 3, + [38733] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4658), 13, + ACTIONS(1837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171100,7 +171436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4660), 32, + ACTIONS(1839), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171133,11 +171469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38589] = 3, + [38787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 13, + ACTIONS(4679), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171151,7 +171487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4664), 32, + ACTIONS(4681), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171184,11 +171520,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38643] = 3, + [38841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4666), 13, + ACTIONS(4683), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171202,7 +171538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4668), 32, + ACTIONS(4685), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171235,11 +171571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38697] = 3, + [38895] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3879), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4554), 1, + anon_sym_readonly, + STATE(2774), 1, + sym_override_modifier, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 13, + ACTIONS(4552), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4556), 2, + anon_sym_get, + anon_sym_set, + STATE(3138), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 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, + [38981] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1807), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171253,7 +171656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 32, + ACTIONS(1805), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171286,13 +171689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38751] = 4, - ACTIONS(1665), 1, - anon_sym_EQ, + [39035] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1663), 13, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171306,7 +171707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 31, + ACTIONS(1801), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171315,6 +171716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -171338,11 +171740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38807] = 3, + [39089] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4670), 13, + ACTIONS(4687), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171356,7 +171758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4672), 32, + ACTIONS(4689), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171389,36 +171791,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38861] = 3, + [39143] = 6, + ACTIONS(4276), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1739), 13, + ACTIONS(4691), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(1737), 32, + ACTIONS(3441), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -171440,11 +171845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38915] = 3, + [39203] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(4697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171458,19 +171863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1699), 32, - sym__automatic_semicolon, + ACTIONS(4699), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171490,31 +171895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [38969] = 12, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4678), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_implements, + [39257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(4701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171525,17 +171911,24 @@ 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(4676), 23, + ACTIONS(4588), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -171549,13 +171942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39041] = 3, + anon_sym_implements, + [39311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 13, + ACTIONS(4703), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171569,19 +171965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1791), 32, - sym__automatic_semicolon, + ACTIONS(4705), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171601,12 +171997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39095] = 3, + anon_sym_implements, + [39365] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1725), 13, + ACTIONS(1847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171620,7 +172016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1723), 32, + ACTIONS(1849), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171653,36 +172049,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39149] = 3, + [39419] = 6, + ACTIONS(4089), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 13, + ACTIONS(4707), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4710), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(4683), 32, + ACTIONS(3441), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -171704,11 +172103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39203] = 3, + [39479] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 13, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171722,7 +172121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 32, + ACTIONS(1695), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171755,11 +172154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39257] = 3, + [39533] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4685), 13, + ACTIONS(1789), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171773,7 +172172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4687), 32, + ACTIONS(1791), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171806,11 +172205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39311] = 3, + [39587] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4689), 13, + ACTIONS(1831), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171824,7 +172223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4691), 32, + ACTIONS(1829), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171857,11 +172256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39365] = 3, + [39641] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(4713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171875,7 +172274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1709), 32, + ACTIONS(4715), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171908,11 +172307,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39419] = 3, + [39695] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4685), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [39805] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 13, + ACTIONS(4717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171926,7 +172404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 32, + ACTIONS(4719), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171959,37 +172437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39473] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4701), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [39859] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4721), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -171998,16 +172452,24 @@ 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(4699), 21, + ACTIONS(4723), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172021,12 +172483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [39551] = 3, + anon_sym_satisfies, + anon_sym_implements, + [39913] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 13, + ACTIONS(4725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172040,7 +172506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4706), 32, + ACTIONS(4727), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172073,90 +172539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39605] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [39967] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [39715] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1745), 13, + ACTIONS(4625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172170,7 +172557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 32, + ACTIONS(4627), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172199,82 +172586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [39769] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 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, - [39855] = 3, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40021] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4710), 13, + ACTIONS(4729), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172288,7 +172608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4712), 32, + ACTIONS(4731), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172321,11 +172641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39909] = 3, + [40075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 13, + ACTIONS(4733), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172339,7 +172659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4716), 32, + ACTIONS(4735), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172372,78 +172692,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39963] = 31, - ACTIONS(3938), 1, + [40129] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4716), 7, + ACTIONS(4737), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -172451,80 +172771,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40073] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, + [40239] = 15, + ACTIONS(3922), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4743), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 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, - [40159] = 3, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4739), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -172533,24 +172810,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(4720), 32, + ACTIONS(4741), 21, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172564,67 +172833,155 @@ 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, - [40213] = 3, + [40317] = 20, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4722), 13, + ACTIONS(4464), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4522), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 32, + ACTIONS(4520), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_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_BQUOTE, + anon_sym_satisfies, + [40405] = 27, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, anon_sym_PERCENT, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_BANG, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4520), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40267] = 3, + [40507] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4726), 13, + ACTIONS(4746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172638,7 +172995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4728), 32, + ACTIONS(4748), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172671,78 +173028,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40321] = 31, - ACTIONS(3938), 1, + [40561] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4728), 7, + ACTIONS(4750), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -172750,11 +173107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40431] = 3, + [40671] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4730), 13, + ACTIONS(4752), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172768,7 +173125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4732), 32, + ACTIONS(4754), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172801,78 +173158,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40485] = 31, - ACTIONS(3938), 1, + [40725] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4756), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4758), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40779] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4732), 7, + ACTIONS(4760), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -172880,90 +173288,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40595] = 31, - ACTIONS(3938), 1, + [40889] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4762), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4764), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_implements, + [40943] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4766), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4768), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4734), 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40997] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4770), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4772), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40705] = 3, + anon_sym_satisfies, + anon_sym_implements, + [41051] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 13, + ACTIONS(4774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172977,7 +173459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 32, + ACTIONS(4776), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173010,111 +173492,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40759] = 24, - ACTIONS(3938), 1, + [41105] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4469), 1, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4481), 1, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 13, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4778), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, 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, - [40855] = 15, - ACTIONS(1505), 1, + [41214] = 16, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(3798), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4780), 1, anon_sym_LBRACK, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4552), 2, sym_number, sym_private_property_identifier, - ACTIONS(4740), 2, + ACTIONS(4556), 2, anon_sym_get, anon_sym_set, - STATE(3890), 3, + STATE(3138), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173122,12 +173612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -173144,11 +173633,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [40932] = 3, + [41293] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 13, + ACTIONS(4262), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4782), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173162,17 +173660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 31, - sym__automatic_semicolon, + ACTIONS(4264), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -173193,63 +173685,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [40985] = 16, - ACTIONS(1583), 1, + [41350] = 16, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4742), 1, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(4787), 1, + anon_sym_static, + ACTIONS(4789), 1, + anon_sym_readonly, + ACTIONS(4791), 1, + anon_sym_abstract, + ACTIONS(4793), 1, + anon_sym_accessor, + STATE(2728), 1, + sym_accessibility_modifier, + STATE(2821), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4785), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3329), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, + ACTIONS(3646), 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, @@ -173257,11 +173748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41064] = 3, + [41429] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 13, + ACTIONS(1855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173275,7 +173766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 31, + ACTIONS(1853), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -173307,211 +173798,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [41117] = 15, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4740), 2, - anon_sym_get, - anon_sym_set, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, + [41482] = 8, + ACTIONS(4661), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4669), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 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, - [41194] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, + STATE(1913), 1, sym_arguments, - STATE(5072), 1, - sym_optional_chain, + STATE(1914), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(3447), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4744), 6, + ACTIONS(3443), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [41303] = 16, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4742), 1, + anon_sym_of, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 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, - [41382] = 4, - ACTIONS(4746), 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, + [41545] = 4, + ACTIONS(4797), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, @@ -173561,84 +173904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [41437] = 17, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4748), 1, - anon_sym_STAR, - ACTIONS(4750), 1, - anon_sym_LBRACE, - ACTIONS(4752), 1, - anon_sym_async, - ACTIONS(4756), 1, - anon_sym_readonly, - ACTIONS(4760), 1, - sym__automatic_semicolon, - STATE(2674), 1, - sym_statement_block, - STATE(2746), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4758), 2, - anon_sym_get, - anon_sym_set, - STATE(3017), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + [41600] = 8, + ACTIONS(4661), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4669), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 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, - [41518] = 5, + ACTIONS(4799), 1, + anon_sym_DOT, + STATE(1915), 1, + sym_arguments, + STATE(1916), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1665), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4763), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1663), 13, + ACTIONS(4002), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173649,16 +173929,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(1667), 24, + ACTIONS(4004), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173677,11 +173958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [41575] = 3, + anon_sym_extends, + [41663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173695,7 +173977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 31, + ACTIONS(1809), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -173727,52 +174009,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [41628] = 16, - ACTIONS(1583), 1, + [41716] = 8, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4669), 1, + anon_sym_LT, + ACTIONS(4801), 1, + anon_sym_DOT, + STATE(1917), 1, + sym_arguments, + STATE(1918), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4008), 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(4010), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + 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, + [41779] = 15, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3867), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4768), 1, - anon_sym_static, - ACTIONS(4770), 1, - anon_sym_readonly, - ACTIONS(4772), 1, - anon_sym_abstract, - ACTIONS(4774), 1, - anon_sym_accessor, - STATE(2698), 1, - sym_accessibility_modifier, - STATE(2799), 1, - sym_override_modifier, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4766), 2, + ACTIONS(4805), 2, sym_number, sym_private_property_identifier, - ACTIONS(3670), 3, + ACTIONS(4807), 2, + anon_sym_get, + anon_sym_set, + STATE(3862), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 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, - STATE(3394), 3, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41856] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4805), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4807), 2, + anon_sym_get, + anon_sym_set, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173780,9 +174174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -173790,93 +174188,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41707] = 7, - ACTIONS(3437), 1, + [41933] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4146), 1, - anon_sym_extends, + ACTIONS(4803), 1, + anon_sym_LBRACK, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 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(3439), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(4805), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4807), 2, + anon_sym_get, + anon_sym_set, + STATE(3862), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - 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, - [41768] = 15, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 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, + [42010] = 15, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3879), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4805), 2, sym_number, sym_private_property_identifier, - ACTIONS(4740), 2, + ACTIONS(4807), 2, anon_sym_get, anon_sym_set, - STATE(3890), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173906,11 +174312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41845] = 3, + [42087] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 13, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173924,7 +174330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 31, + ACTIONS(1743), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -173956,41 +174362,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [41898] = 16, - ACTIONS(1583), 1, + [42140] = 16, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3800), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4433), 1, + ACTIONS(4550), 1, anon_sym_async, - ACTIONS(4742), 1, + ACTIONS(4780), 1, anon_sym_LBRACK, - STATE(5129), 1, + STATE(4663), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4552), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(4556), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3138), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174019,65 +174425,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41977] = 7, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4776), 1, - anon_sym_DOT, - ACTIONS(4778), 1, - anon_sym_is, - STATE(1888), 1, - sym_type_arguments, + [42219] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3867), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4780), 1, + anon_sym_LBRACK, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4006), 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(3501), 28, + ACTIONS(4552), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4556), 2, + anon_sym_get, + anon_sym_set, + STATE(3138), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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, - [42038] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 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, + [42298] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1725), 13, + ACTIONS(1859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174091,7 +174506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1723), 31, + ACTIONS(1857), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174123,39 +174538,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42091] = 15, - ACTIONS(1505), 1, + [42351] = 16, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3879), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4780), 1, anon_sym_LBRACK, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4552), 2, sym_number, sym_private_property_identifier, - ACTIONS(4740), 2, + ACTIONS(4556), 2, anon_sym_get, anon_sym_set, - STATE(3890), 3, + STATE(3138), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174163,12 +174580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -174185,21 +174601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42168] = 8, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4780), 1, - anon_sym_DOT, - STATE(1901), 1, - sym_arguments, - STATE(1902), 1, - sym_type_arguments, + [42430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 12, + ACTIONS(1721), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174210,72 +174616,22 @@ 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(3441), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, - 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, - [42231] = 8, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4782), 1, - anon_sym_DOT, - STATE(1903), 1, - sym_arguments, - STATE(1904), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3996), 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(3998), 27, + ACTIONS(1719), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_while, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174294,17 +174650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42294] = 8, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4543), 1, + anon_sym_PIPE_RBRACE, + [42483] = 7, + ACTIONS(4669), 1, anon_sym_LT, - ACTIONS(4784), 1, + ACTIONS(4809), 1, anon_sym_DOT, - STATE(1905), 1, - sym_arguments, - STATE(1906), 1, + ACTIONS(4811), 1, + anon_sym_is, + STATE(1867), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -174322,12 +174676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4016), 27, + ACTIONS(3479), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -174350,52 +174705,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [42357] = 16, - ACTIONS(1583), 1, + [42544] = 15, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3798), 1, + anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4792), 1, - anon_sym_abstract, - ACTIONS(4794), 1, - anon_sym_accessor, - STATE(2690), 1, - sym_accessibility_modifier, - STATE(2817), 1, - sym_override_modifier, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4786), 2, + ACTIONS(4805), 2, sym_number, sym_private_property_identifier, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3312), 3, + ACTIONS(4807), 2, + anon_sym_get, + anon_sym_set, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174403,9 +174753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -174413,13 +174767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42436] = 4, - ACTIONS(4796), 1, + [42621] = 4, + ACTIONS(4813), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1661), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174433,7 +174787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 30, + ACTIONS(1653), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -174464,11 +174818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42491] = 3, + [42676] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1739), 13, + ACTIONS(1659), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4815), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174482,17 +174845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 31, - sym__automatic_semicolon, + ACTIONS(1661), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -174513,40 +174870,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42544] = 15, - ACTIONS(1505), 1, + [42733] = 16, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4780), 1, anon_sym_LBRACK, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4552), 2, sym_number, sym_private_property_identifier, - ACTIONS(4740), 2, + ACTIONS(4556), 2, anon_sym_get, anon_sym_set, - STATE(3890), 3, + STATE(3138), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174554,12 +174912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -174576,62 +174933,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42621] = 16, - ACTIONS(1583), 1, + [42812] = 16, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4742), 1, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(4820), 1, + anon_sym_static, + ACTIONS(4822), 1, + anon_sym_readonly, + ACTIONS(4824), 1, + anon_sym_abstract, + ACTIONS(4826), 1, + anon_sym_accessor, + STATE(2729), 1, + sym_accessibility_modifier, + STATE(2813), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4818), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3405), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, + ACTIONS(3646), 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, @@ -174639,49 +174996,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42700] = 16, - ACTIONS(1583), 1, + [42891] = 17, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4433), 1, + ACTIONS(4830), 1, + anon_sym_LBRACE, + ACTIONS(4832), 1, anon_sym_async, - ACTIONS(4742), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(4836), 1, + anon_sym_readonly, + ACTIONS(4840), 1, + sym__automatic_semicolon, + STATE(2681), 1, + sym_statement_block, + STATE(2754), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4834), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(4838), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, + ACTIONS(3786), 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(3646), 20, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174689,12 +175049,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, @@ -174702,39 +175060,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42779] = 5, + [42972] = 7, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(4276), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4798), 5, + ACTIONS(4691), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4102), 13, + anon_sym_LBRACK, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(4106), 24, + ACTIONS(3441), 27, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174754,20 +175114,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42836] = 5, + [43033] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, + ACTIONS(4578), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4801), 5, + ACTIONS(4843), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4612), 13, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174781,7 +175141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 24, + ACTIONS(4580), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -174806,23 +175166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42893] = 9, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - STATE(2315), 1, - sym_template_string, - STATE(4753), 1, - sym_optional_chain, + [43090] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(1831), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174836,66 +175184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 24, + ACTIONS(1829), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, 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, - [42957] = 8, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4066), 1, + anon_sym_while, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4069), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4804), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2326), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1663), 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(1667), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174915,328 +175215,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43019] = 18, - ACTIONS(4418), 1, + anon_sym_PIPE_RBRACE, + [43143] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4854), 1, + anon_sym_AMP_AMP, + ACTIONS(4856), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, + anon_sym_CARET, + ACTIONS(4866), 1, + anon_sym_PIPE, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4874), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4882), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, + sym__ternary_qmark, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [43101] = 7, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2326), 2, + ACTIONS(4560), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4069), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1663), 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(1667), 26, - sym__ternary_qmark, - anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [43161] = 18, - ACTIONS(4418), 1, + [43251] = 24, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, + anon_sym_CARET, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4874), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, - 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(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [43243] = 7, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4114), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4108), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4111), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4102), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 26, + ACTIONS(4520), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - [43303] = 8, - ACTIONS(4104), 1, + [43345] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3879), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4108), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4838), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4114), 4, + ACTIONS(4805), 2, + sym_number, + sym_private_property_identifier, + STATE(3862), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4102), 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_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 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, - [43365] = 7, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4108), 1, - anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43417] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 2, + ACTIONS(4578), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4890), 5, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4111), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4102), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 26, + ACTIONS(4580), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, 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, @@ -175256,148 +175473,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43425] = 16, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [43473] = 7, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4846), 1, - anon_sym_LT, - ACTIONS(4849), 1, - anon_sym_satisfies, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 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(4583), 18, - 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [43503] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3186), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4694), 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(3188), 30, + ACTIONS(4276), 6, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, anon_sym_extends, anon_sym_PIPE_RBRACE, - [43555] = 4, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, + ACTIONS(3437), 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(3439), 29, + ACTIONS(3441), 22, 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_AMP_AMP, @@ -175417,324 +175526,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43609] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [43533] = 35, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(4894), 1, + anon_sym_RPAREN, + STATE(1522), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1622), 1, sym_arguments, - STATE(4753), 1, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, + STATE(5707), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4642), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [43717] = 31, - ACTIONS(4418), 1, + [43649] = 20, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4874), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4708), 5, + ACTIONS(4522), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4520), 14, 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_BQUOTE, - [43825] = 31, - ACTIONS(4418), 1, + anon_sym_satisfies, + [43735] = 15, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4896), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4522), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + 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(4889), 2, + ACTIONS(4520), 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4716), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [43933] = 13, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [44005] = 13, - ACTIONS(4418), 1, + anon_sym_satisfies, + [43811] = 16, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4834), 1, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4846), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4896), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4522), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -175745,10 +175777,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 20, + ACTIONS(4520), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -175765,306 +175796,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [44077] = 13, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [43889] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(1659), 2, + anon_sym_EQ, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [44149] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4899), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1657), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4728), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [44257] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(1661), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 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(4863), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4648), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44365] = 25, - ACTIONS(4418), 1, + anon_sym_satisfies, + [43945] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4585), 1, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4826), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4905), 1, + anon_sym_AMP_AMP, + ACTIONS(4907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4909), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4857), 1, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - STATE(1976), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4611), 5, 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_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [44461] = 6, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, + [44053] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 5, + ACTIONS(4102), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3435), 13, + anon_sym_extends, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176078,10 +175947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4098), 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, @@ -176102,331 +175974,534 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44519] = 24, - ACTIONS(4418), 1, + [44107] = 12, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4937), 1, anon_sym_LT, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4636), 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, - ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4638), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [44177] = 15, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4940), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4739), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + 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(4867), 2, + ACTIONS(4741), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + 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, - ACTIONS(4863), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4583), 11, + anon_sym_BQUOTE, + [44253] = 7, + ACTIONS(1659), 1, + anon_sym_EQ, + ACTIONS(2326), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4141), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1657), 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(1661), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, - [44613] = 31, - ACTIONS(4418), 1, + [44313] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4501), 5, + ACTIONS(4760), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [44721] = 31, - ACTIONS(4418), 1, + [44421] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4732), 5, + ACTIONS(4590), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [44829] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [44529] = 4, + ACTIONS(4811), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4053), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4055), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4537), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [44583] = 35, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(4943), 1, + anon_sym_RPAREN, + STATE(1522), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1622), 1, sym_arguments, - STATE(4753), 1, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, + STATE(5836), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4503), 5, - sym__automatic_semicolon, + [44699] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4554), 1, + anon_sym_readonly, + STATE(2774), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3996), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [44937] = 12, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + anon_sym_RBRACE, + ACTIONS(4552), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4556), 2, + anon_sym_get, + anon_sym_set, + STATE(3138), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4895), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 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, + [44777] = 5, + ACTIONS(4945), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1952), 1, sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(4076), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176439,13 +176514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 21, + ACTIONS(4078), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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, @@ -176459,39 +176539,20 @@ 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, - [45007] = 15, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4898), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_extends, + [44833] = 4, + ACTIONS(4811), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4087), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -176500,14 +176561,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(4699), 19, + ACTIONS(4089), 29, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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, @@ -176521,191 +176589,234 @@ 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, - [45083] = 31, - ACTIONS(4418), 1, + anon_sym_satisfies, + anon_sym_extends, + [44887] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4805), 2, + sym_number, + sym_private_property_identifier, + STATE(3862), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44959] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4708), 5, + ACTIONS(4737), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [45191] = 31, - ACTIONS(4418), 1, + [45067] = 11, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4948), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4629), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + 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(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4505), 5, + ACTIONS(4631), 23, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, 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, - [45299] = 14, - ACTIONS(1583), 1, + anon_sym_satisfies, + [45135] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4903), 1, + ACTIONS(4953), 1, anon_sym_static, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_readonly, - ACTIONS(4907), 1, + ACTIONS(4957), 1, anon_sym_abstract, - ACTIONS(4909), 1, + ACTIONS(4959), 1, anon_sym_accessor, - STATE(2800), 1, + STATE(2822), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4901), 2, + ACTIONS(4951), 2, sym_number, sym_private_property_identifier, - STATE(3473), 3, + STATE(3486), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -176736,40 +176847,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45373] = 7, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(2326), 1, - anon_sym_extends, + [45209] = 4, + ACTIONS(4961), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4066), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4069), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1663), 10, + ACTIONS(4059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 26, + ACTIONS(4061), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -176789,103 +176896,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45433] = 20, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_extends, + [45263] = 7, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(4272), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, + ACTIONS(4266), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4269), 3, anon_sym_GT, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4260), 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(4583), 14, + ACTIONS(4264), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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, - [45519] = 15, - ACTIONS(4418), 1, + [45323] = 12, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4846), 1, + ACTIONS(4963), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4636), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -176894,9 +176983,10 @@ 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(4583), 19, + ACTIONS(4638), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176908,6 +176998,8 @@ 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, @@ -176916,70 +177008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45595] = 13, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [45667] = 3, + [45393] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3162), 13, + ACTIONS(4146), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176993,15 +177031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3164), 30, - sym__automatic_semicolon, + ACTIONS(4098), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177022,112 +177058,114 @@ 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, - [45719] = 35, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3938), 1, + [45447] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4874), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4888), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(4913), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1987), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2134), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4893), 1, sym_optional_chain, - STATE(5910), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45835] = 11, - ACTIONS(4418), 1, + ACTIONS(4468), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45555] = 15, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4915), 1, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4966), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4739), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -177138,13 +177176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 23, + ACTIONS(4741), 19, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -177158,189 +177195,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [45631] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4905), 1, + anon_sym_AMP_AMP, + ACTIONS(4907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4915), 1, + anon_sym_CARET, + ACTIONS(4917), 1, + anon_sym_PIPE, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4919), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4931), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4927), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4526), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [45903] = 35, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3938), 1, + [45739] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4874), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4888), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(4918), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1987), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2134), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4893), 1, sym_optional_chain, - STATE(5804), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46019] = 26, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4514), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45847] = 8, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(4266), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4585), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4269), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4969), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4272), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4260), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4826), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4832), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4264), 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, - ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 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, + [45909] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1687), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_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(4853), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1685), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + anon_sym_extends, + anon_sym_is, + [45961] = 35, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4857), 1, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - STATE(1976), 1, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(4973), 1, + anon_sym_RPAREN, + STATE(1522), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1622), 1, sym_arguments, - STATE(4753), 1, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, + STATE(5827), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + [46077] = 11, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4975), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4629), 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(4631), 23, 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_BQUOTE, anon_sym_satisfies, - [46117] = 13, - ACTIONS(4418), 1, + [46145] = 9, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4667), 1, + anon_sym_QMARK_DOT, + STATE(2073), 1, + sym_template_string, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1761), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1763), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [46209] = 13, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4818), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4920), 1, + ACTIONS(4896), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177353,13 +177684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 20, + ACTIONS(4520), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -177370,200 +177701,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46281] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4854), 1, + anon_sym_AMP_AMP, + ACTIONS(4856), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, + anon_sym_CARET, + ACTIONS(4866), 1, + anon_sym_PIPE, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4846), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4868), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4878), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4880), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + ACTIONS(4566), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [46189] = 27, - ACTIONS(4418), 1, + [46389] = 18, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(4810), 1, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4874), 1, anon_sym_LT, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4522), 7, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4520), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - 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_BQUOTE, anon_sym_satisfies, - [46289] = 31, - ACTIONS(4418), 1, + [46471] = 25, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4501), 5, + ACTIONS(4520), 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_QMARK_QMARK, anon_sym_BQUOTE, - [46397] = 14, - ACTIONS(1583), 1, + anon_sym_satisfies, + [46567] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_static, - ACTIONS(4927), 1, - anon_sym_readonly, - ACTIONS(4929), 1, - anon_sym_abstract, - ACTIONS(4931), 1, - anon_sym_accessor, - STATE(2782), 1, - sym_override_modifier, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(4805), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177571,12 +177960,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, @@ -177584,210 +177976,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46471] = 31, - ACTIONS(4418), 1, + [46639] = 26, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4716), 5, + ACTIONS(4520), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [46579] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4104), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4933), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4102), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 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, - [46635] = 25, - ACTIONS(4418), 1, + [46737] = 27, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(4810), 1, + ACTIONS(4854), 1, + anon_sym_AMP_AMP, + ACTIONS(4856), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4879), 1, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - STATE(1976), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4520), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [46731] = 3, + [46837] = 6, + ACTIONS(4669), 1, + anon_sym_LT, + ACTIONS(4809), 1, + anon_sym_DOT, + STATE(1867), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3182), 13, + ACTIONS(4014), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177798,10 +178142,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(3184), 30, + ACTIONS(3479), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177811,7 +178154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177831,114 +178173,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [46783] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [46895] = 6, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3559), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(3562), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3437), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(3441), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4642), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46891] = 4, - ACTIONS(4778), 1, - anon_sym_is, + anon_sym_satisfies, + [46953] = 8, + ACTIONS(1659), 1, + anon_sym_EQ, + ACTIONS(4138), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4026), 13, + ACTIONS(4141), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4978), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2326), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1657), 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(4028), 29, - sym__automatic_semicolon, + ACTIONS(1661), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -177958,619 +178279,556 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [46945] = 31, - ACTIONS(4418), 1, + [47015] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4648), 5, + ACTIONS(4586), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [47053] = 35, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(4935), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, - STATE(5791), 1, - sym_type_annotation, + [47123] = 6, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(3550), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(3546), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3437), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(3441), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47169] = 31, - ACTIONS(4418), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47181] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4728), 5, + ACTIONS(4750), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [47277] = 16, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [47289] = 7, + ACTIONS(1659), 1, + anon_sym_EQ, + ACTIONS(4138), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4920), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 11, - anon_sym_STAR, - anon_sym_in, + ACTIONS(2326), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4141), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1657), 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(4583), 18, - sym__automatic_semicolon, + ACTIONS(1661), 26, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47355] = 31, - ACTIONS(4418), 1, + anon_sym_satisfies, + [47349] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4732), 5, + ACTIONS(4534), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [47463] = 31, - ACTIONS(4418), 1, + [47457] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4734), 5, + ACTIONS(4611), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [47571] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [47565] = 7, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(4266), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4272), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4269), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4260), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4264), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4734), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47679] = 31, - ACTIONS(4418), 1, + anon_sym_satisfies, + [47625] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4519), 5, + ACTIONS(4534), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [47787] = 4, - ACTIONS(4941), 1, + [47733] = 4, + ACTIONS(4986), 1, sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4937), 16, + ACTIONS(4982), 16, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -178587,7 +178845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(4939), 26, + ACTIONS(4984), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -178614,413 +178872,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47841] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1685), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1683), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [47787] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4663), 1, anon_sym_LBRACK, + ACTIONS(4665), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4905), 1, anon_sym_AMP_AMP, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4915), 1, anon_sym_CARET, + ACTIONS(4917), 1, + anon_sym_PIPE, + ACTIONS(4921), 1, anon_sym_PERCENT, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 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, - anon_sym_is, - [47893] = 6, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3435), 13, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4903), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4911), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 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(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4927), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4685), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [47951] = 31, - ACTIONS(4418), 1, + [47895] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_static, + ACTIONS(4992), 1, + anon_sym_readonly, + ACTIONS(4994), 1, + anon_sym_abstract, + ACTIONS(4996), 1, + anon_sym_accessor, + STATE(2791), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4988), 2, + sym_number, + sym_private_property_identifier, + STATE(3468), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 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, + [47969] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4581), 5, + ACTIONS(4750), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [48059] = 3, + [48077] = 16, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4896), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4058), 13, + ACTIONS(4846), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4868), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 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(4060), 30, + ACTIONS(4520), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - anon_sym_extends, - anon_sym_is, - [48111] = 31, - ACTIONS(4418), 1, + [48155] = 27, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4519), 5, + ACTIONS(4520), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [48219] = 26, - ACTIONS(4418), 1, + anon_sym_satisfies, + [48255] = 22, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(4810), 1, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4874), 1, anon_sym_LT, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4520), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48317] = 15, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [48345] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3204), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3206), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4537), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4943), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [48397] = 5, + ACTIONS(4669), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1905), 1, sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4059), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -179031,12 +179359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 19, + ACTIONS(4061), 29, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, @@ -179050,21 +179384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48393] = 5, + anon_sym_satisfies, + anon_sym_extends, + [48453] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1665), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4946), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1663), 13, + ACTIONS(4083), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179078,10 +179407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 23, + ACTIONS(4085), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -179102,155 +179436,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [48449] = 20, - ACTIONS(4418), 1, + anon_sym_extends, + anon_sym_is, + [48505] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4905), 1, + anon_sym_AMP_AMP, + ACTIONS(4907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4909), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4915), 1, + anon_sym_CARET, + ACTIONS(4917), 1, + anon_sym_PIPE, + ACTIONS(4921), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4925), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4933), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4863), 3, + ACTIONS(4929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4931), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4583), 14, + ACTIONS(4566), 5, 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_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [48535] = 16, - ACTIONS(4418), 1, + [48613] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4854), 1, + anon_sym_AMP_AMP, + ACTIONS(4856), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, + anon_sym_CARET, + ACTIONS(4866), 1, + anon_sym_PIPE, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4920), 1, + ACTIONS(4874), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4882), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, + sym__ternary_qmark, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 8, - anon_sym_BANG, + ACTIONS(4852), 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(4583), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4868), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4878), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4588), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [48613] = 11, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4948), 1, + [48721] = 5, + ACTIONS(4998), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1953), 1, sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4032), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179263,13 +179613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 23, + ACTIONS(4034), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, @@ -179287,93 +179642,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [48681] = 31, - ACTIONS(4418), 1, + anon_sym_extends, + [48777] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 5, + ACTIONS(4560), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [48789] = 4, + [48885] = 6, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(5001), 1, + anon_sym_DOT, + STATE(1906), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4082), 13, + ACTIONS(4063), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179387,15 +179744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 26, + ACTIONS(4065), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179414,70 +179771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [48843] = 7, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4146), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 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(3439), 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, - [48903] = 6, - ACTIONS(4543), 1, + [48943] = 5, + ACTIONS(5003), 1, anon_sym_LT, - ACTIONS(4776), 1, - anon_sym_DOT, - STATE(1888), 1, + STATE(1948), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4006), 12, + ACTIONS(3625), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179490,7 +179793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 28, + ACTIONS(3409), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179500,6 +179803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179519,30 +179823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [48961] = 12, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4951), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [48999] = 4, + ACTIONS(3439), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179553,15 +179840,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(4676), 21, - sym__automatic_semicolon, + ACTIONS(3441), 29, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -179575,317 +179869,297 @@ 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, - [49031] = 31, - ACTIONS(4418), 1, + [49053] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4503), 5, + ACTIONS(4760), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [49139] = 31, - ACTIONS(4418), 1, + [49161] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4505), 5, + ACTIONS(4737), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [49247] = 22, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, + [49269] = 5, + ACTIONS(5006), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1949), 1, sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(3611), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3417), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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, - [49337] = 31, - ACTIONS(4418), 1, + anon_sym_extends, + [49325] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4455), 5, + ACTIONS(4685), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [49445] = 4, + [49433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4082), 13, + ACTIONS(3208), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179899,13 +180173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 26, + ACTIONS(3210), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -179926,21 +180202,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [49499] = 6, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3579), 1, - anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [49485] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 5, + ACTIONS(4262), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5009), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3435), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179954,7 +180231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4264), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -179978,82 +180255,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [49557] = 23, - ACTIONS(4418), 1, + [49541] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4905), 1, + anon_sym_AMP_AMP, + ACTIONS(4907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4909), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4915), 1, + anon_sym_CARET, + ACTIONS(4917), 1, + anon_sym_PIPE, + ACTIONS(4921), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4925), 1, anon_sym_LT, - ACTIONS(4879), 1, - anon_sym_AMP, - STATE(1976), 1, + ACTIONS(4933), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4808), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 12, + ACTIONS(4588), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [49649] = 4, - ACTIONS(4778), 1, - anon_sym_is, + [49649] = 5, + ACTIONS(5011), 1, + anon_sym_LT, + STATE(1950), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4022), 13, + ACTIONS(4022), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180064,7 +180351,6 @@ 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(4024), 29, @@ -180097,107 +180383,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [49703] = 27, - ACTIONS(4418), 1, + [49705] = 23, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(4826), 1, + ACTIONS(4858), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4870), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4874), 1, anon_sym_LT, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4520), 12, 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_BQUOTE, anon_sym_satisfies, - [49803] = 13, + [49797] = 13, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3798), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4805), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180229,201 +180511,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [49875] = 4, - ACTIONS(4954), 1, - anon_sym_is, + [49869] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4905), 1, + anon_sym_AMP_AMP, + ACTIONS(4907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4915), 1, + anon_sym_CARET, + ACTIONS(4917), 1, + anon_sym_PIPE, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 13, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4903), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4911), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4927), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4468), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [49929] = 31, - ACTIONS(4418), 1, + [49977] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 5, + ACTIONS(4514), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [50037] = 13, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + [50085] = 18, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4911), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4919), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4522), 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(4520), 17, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + 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_BQUOTE, + anon_sym_satisfies, + [50167] = 6, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(3544), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [50109] = 5, - ACTIONS(4543), 1, - anon_sym_LT, - STATE(1894), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 12, + ACTIONS(3541), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180434,17 +180754,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(4032), 29, - sym__automatic_semicolon, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -180465,18 +180781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [50165] = 6, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1895), 1, - sym_arguments, + [50225] = 5, + ACTIONS(5014), 1, + anon_sym_LT, + STATE(1951), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4052), 13, + ACTIONS(4069), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180487,18 +180800,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(4054), 27, + ACTIONS(4071), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -180518,249 +180832,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50223] = 16, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, + [50281] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4854), 1, + anon_sym_AMP_AMP, + ACTIONS(4856), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, + anon_sym_CARET, + ACTIONS(4866), 1, + anon_sym_PIPE, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, + ACTIONS(4846), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4868), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4878), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4880), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4526), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 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, - [50301] = 31, - ACTIONS(4418), 1, + anon_sym_BQUOTE, + [50389] = 13, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(5017), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 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(4520), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + 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_BQUOTE, + anon_sym_satisfies, + [50461] = 25, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4581), 5, + ACTIONS(4520), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [50409] = 24, - ACTIONS(4418), 1, + anon_sym_satisfies, + [50557] = 26, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, + ACTIONS(4905), 1, + anon_sym_AMP_AMP, + ACTIONS(4909), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4915), 1, + anon_sym_CARET, + ACTIONS(4917), 1, + anon_sym_PIPE, + ACTIONS(4921), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4925), 1, anon_sym_LT, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4808), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4520), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [50503] = 16, - ACTIONS(4418), 1, + [50655] = 16, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4832), 1, + ACTIONS(4921), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4846), 1, + ACTIONS(5017), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 8, + ACTIONS(4522), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -180769,13 +181153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, + ACTIONS(4520), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -180789,332 +181173,510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [50581] = 22, - ACTIONS(4418), 1, + [50733] = 22, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4909), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4921), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4925), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, + ACTIONS(4522), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4863), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 12, + ACTIONS(4520), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [50671] = 23, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4857), 1, - anon_sym_AMP, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [50823] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, + ACTIONS(3212), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 12, + ACTIONS(3214), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, - [50763] = 35, - ACTIONS(3530), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [50875] = 35, + ACTIONS(3536), 1, anon_sym_COLON, - ACTIONS(3938), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(4958), 1, + ACTIONS(5020), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, - STATE(5616), 1, + STATE(5756), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50879] = 31, - ACTIONS(4418), 1, + [50991] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3867), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4805), 2, + sym_number, + sym_private_property_identifier, + STATE(3862), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51063] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, + ACTIONS(4929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4931), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4927), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4586), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [51171] = 23, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4903), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4911), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4919), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4455), 5, + ACTIONS(4520), 12, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [50987] = 15, - ACTIONS(4418), 1, + anon_sym_satisfies, + [51263] = 24, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4915), 1, + anon_sym_CARET, + ACTIONS(4921), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4920), 1, + ACTIONS(4925), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4822), 2, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4919), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4931), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4927), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4520), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51357] = 15, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 10, + ACTIONS(4901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -181125,7 +181687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, + ACTIONS(4520), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181145,22 +181707,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [51063] = 5, + [51433] = 16, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(5017), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4960), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4612), 13, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -181169,64 +181748,177 @@ 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(4616), 23, + ACTIONS(4520), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + 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, - [51119] = 15, - ACTIONS(3938), 1, + [51511] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4962), 1, + ACTIONS(4905), 1, + anon_sym_AMP_AMP, + ACTIONS(4907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, + anon_sym_AMP, + ACTIONS(4915), 1, + anon_sym_CARET, + ACTIONS(4917), 1, + anon_sym_PIPE, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4933), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(1987), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2134), 1, sym_arguments, - STATE(5072), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4919), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4931), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4927), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4590), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [51619] = 20, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4903), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4911), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4919), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4927), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4522), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4520), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + 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_BQUOTE, + anon_sym_satisfies, + [51705] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4344), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -181235,12 +181927,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(4699), 18, + ACTIONS(4346), 29, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, @@ -181254,35 +181955,38 @@ 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_implements, - [51194] = 12, - ACTIONS(1583), 1, + anon_sym_satisfies, + anon_sym_extends, + [51756] = 12, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4742), 1, + ACTIONS(4780), 1, anon_sym_LBRACK, - ACTIONS(4748), 1, + ACTIONS(4793), 1, + anon_sym_abstract, + ACTIONS(4828), 1, anon_sym_STAR, - ACTIONS(4752), 1, + ACTIONS(4832), 1, anon_sym_async, - ACTIONS(4774), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, + ACTIONS(4834), 2, sym_number, sym_private_property_identifier, - ACTIONS(4758), 2, + ACTIONS(4838), 2, anon_sym_get, anon_sym_set, - STATE(3017), 3, + STATE(3048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -181313,18 +182017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [51263] = 4, + [51825] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1938), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 11, + ACTIONS(3786), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -181336,7 +182040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1936), 25, + ACTIONS(1956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181362,18 +182066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [51316] = 6, - ACTIONS(1665), 1, + [51878] = 6, + ACTIONS(1659), 1, anon_sym_EQ, - ACTIONS(1669), 1, + ACTIONS(1663), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1659), 2, + ACTIONS(1653), 2, anon_sym_else, anon_sym_while, - ACTIONS(1663), 13, + ACTIONS(1657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181387,7 +182091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 25, + ACTIONS(1661), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -181413,15 +182117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51373] = 5, - ACTIONS(4535), 1, + [51935] = 5, + ACTIONS(4661), 1, anon_sym_LPAREN, - STATE(2108), 1, + STATE(2131), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181435,7 +182139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4296), 27, + ACTIONS(4220), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181463,7 +182167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51428] = 19, + [51990] = 19, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(722), 1, @@ -181478,17 +182182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - STATE(2756), 1, + STATE(2772), 1, sym_override_modifier, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -181499,11 +182203,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -181527,89 +182231,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [51511] = 33, - ACTIONS(4418), 1, + [52073] = 33, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - ACTIONS(4967), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4478), 1, + STATE(4572), 1, aux_sym_sequence_expression_repeat1, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4969), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5026), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4863), 3, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51622] = 3, + [52184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 13, + ACTIONS(4244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181623,7 +182327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4142), 29, + ACTIONS(4246), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181653,11 +182357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51673] = 3, + [52235] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 13, + ACTIONS(4059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181671,7 +182375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 29, + ACTIONS(4061), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181701,11 +182405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51724] = 3, + [52286] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 13, + ACTIONS(4274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181719,7 +182423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4146), 29, + ACTIONS(4276), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181749,11 +182453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51775] = 3, + [52337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4022), 13, + ACTIONS(4087), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181767,7 +182471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4024), 29, + ACTIONS(4089), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181797,13 +182501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51826] = 4, - ACTIONS(4971), 1, + [52388] = 4, + ACTIONS(5028), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4148), 13, + ACTIONS(4286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181817,7 +182521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4150), 28, + ACTIONS(4288), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181846,11 +182550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51879] = 3, + [52441] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181864,7 +182568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 29, + ACTIONS(4294), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181894,13 +182598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51930] = 4, - ACTIONS(4973), 1, + [52492] = 4, + ACTIONS(5030), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181914,7 +182618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 28, + ACTIONS(4294), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181943,11 +182647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51983] = 3, + [52545] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, + ACTIONS(4298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181961,7 +182665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4162), 29, + ACTIONS(4300), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181991,13 +182695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52034] = 4, - ACTIONS(4032), 1, + [52596] = 4, + ACTIONS(4061), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 13, + ACTIONS(4306), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182011,7 +182715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4304), 28, + ACTIONS(4308), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182040,17 +182744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52087] = 6, - ACTIONS(4975), 1, + [52649] = 6, + ACTIONS(5032), 1, anon_sym_AMP, - ACTIONS(4977), 1, + ACTIONS(5034), 1, anon_sym_PIPE, - ACTIONS(4979), 1, + ACTIONS(5036), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 11, + ACTIONS(4306), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182062,7 +182766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4304), 28, + ACTIONS(4308), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182091,15 +182795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52144] = 5, + [52706] = 5, ACTIONS(87), 1, anon_sym_BQUOTE, - STATE(2315), 1, + STATE(2073), 1, sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182113,7 +182817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 27, + ACTIONS(1763), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182141,71 +182845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [52199] = 6, - ACTIONS(4146), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 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(3439), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [52256] = 6, - ACTIONS(4024), 1, + [52761] = 6, + ACTIONS(4276), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4618), 2, + ACTIONS(4691), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4621), 3, + ACTIONS(4694), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3437), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182216,7 +182869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(3441), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182243,22 +182896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52313] = 7, - ACTIONS(3503), 1, - anon_sym_EQ, - ACTIONS(4146), 1, + [52818] = 6, + ACTIONS(4089), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, + ACTIONS(4707), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4609), 3, + ACTIONS(4710), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3437), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182269,13 +182920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, + ACTIONS(3441), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182295,21 +182947,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52372] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, + [52875] = 7, + ACTIONS(3534), 1, + anon_sym_EQ, + ACTIONS(4276), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 11, + ACTIONS(4691), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -182317,16 +182973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4340), 28, + ACTIONS(3441), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182346,25 +182999,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52429] = 3, + [52934] = 6, + ACTIONS(5032), 1, + anon_sym_AMP, + ACTIONS(5034), 1, + anon_sym_PIPE, + ACTIONS(5036), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2328), 13, + ACTIONS(4430), 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(2326), 29, + ACTIONS(4432), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182393,14 +183050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52480] = 4, - ACTIONS(4780), 1, - anon_sym_DOT, + [52991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 13, + ACTIONS(2328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182414,7 +183068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3441), 28, + ACTIONS(2326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182424,6 +183078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182443,13 +183098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52533] = 4, - ACTIONS(4981), 1, + [53042] = 4, + ACTIONS(4795), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 13, + ACTIONS(3447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182463,7 +183118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4166), 28, + ACTIONS(3443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182492,11 +183147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52586] = 3, + [53095] = 4, + ACTIONS(5038), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182510,7 +183167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 29, + ACTIONS(4316), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182520,7 +183177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182540,41 +183196,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52637] = 9, - ACTIONS(4024), 1, - anon_sym_extends, - ACTIONS(4618), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_RPAREN, + [53148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4983), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4985), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4322), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182594,26 +183243,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52700] = 9, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, - ACTIONS(4606), 1, + anon_sym_extends, + [53199] = 9, + ACTIONS(4089), 1, + anon_sym_extends, + ACTIONS(4707), 1, anon_sym_LBRACK, + ACTIONS(5045), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4146), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4609), 2, + ACTIONS(4710), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(5040), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5042), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182625,7 +183275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -182648,34 +183298,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52763] = 3, + [53262] = 9, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4174), 13, + ACTIONS(3541), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4276), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(4114), 29, - sym__automatic_semicolon, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182695,12 +183352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52814] = 3, + [53325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 13, + ACTIONS(4328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182714,7 +183370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4178), 29, + ACTIONS(4272), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182744,18 +183400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52865] = 4, - ACTIONS(4975), 1, - anon_sym_AMP, + [53376] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 12, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -182763,7 +183418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4182), 29, + ACTIONS(4332), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182793,17 +183448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52918] = 3, + [53427] = 4, + ACTIONS(5032), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 13, + ACTIONS(4334), 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, @@ -182811,7 +183467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4132), 29, + ACTIONS(4336), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182841,11 +183497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52969] = 3, + [53480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182859,7 +183515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4186), 29, + ACTIONS(4282), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182889,11 +183545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53020] = 3, + [53531] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182907,7 +183563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4190), 29, + ACTIONS(4342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182937,17 +183593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53071] = 6, - ACTIONS(4975), 1, + [53582] = 6, + ACTIONS(5032), 1, anon_sym_AMP, - ACTIONS(4977), 1, + ACTIONS(5034), 1, anon_sym_PIPE, - ACTIONS(4979), 1, + ACTIONS(5036), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4192), 11, + ACTIONS(4348), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182959,7 +183615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4194), 28, + ACTIONS(4350), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182988,18 +183644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53128] = 6, - ACTIONS(4156), 1, + [53639] = 6, + ACTIONS(4294), 1, anon_sym_extends, - ACTIONS(4973), 1, + ACTIONS(5030), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 2, + ACTIONS(4292), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4196), 11, + ACTIONS(4352), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183011,7 +183667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4198), 27, + ACTIONS(4354), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183039,13 +183695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53185] = 4, - ACTIONS(4992), 1, + [53696] = 4, + ACTIONS(5049), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4200), 13, + ACTIONS(4356), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183059,7 +183715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4202), 28, + ACTIONS(4358), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183088,13 +183744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53238] = 4, - ACTIONS(4973), 1, + [53749] = 4, + ACTIONS(5030), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4206), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183108,7 +183764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4208), 28, + ACTIONS(4364), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183137,11 +183793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53291] = 3, + [53802] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(4100), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183155,7 +183811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4138), 29, + ACTIONS(4102), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183185,11 +183841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53342] = 3, + [53853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183203,7 +183859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4212), 29, + ACTIONS(4368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183233,11 +183889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53393] = 3, + [53904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183251,7 +183907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4216), 29, + ACTIONS(4372), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183281,11 +183937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53444] = 3, + [53955] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4090), 13, + ACTIONS(4194), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183299,7 +183955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4092), 29, + ACTIONS(4196), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183329,293 +183985,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53495] = 33, - ACTIONS(4418), 1, + [54006] = 33, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - ACTIONS(4994), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(4997), 1, + ACTIONS(5054), 1, anon_sym_RBRACE, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4999), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5056), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4863), 3, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53606] = 33, - ACTIONS(4418), 1, + [54117] = 33, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - ACTIONS(4994), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(4997), 1, + ACTIONS(5054), 1, anon_sym_RBRACE, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 2, + ACTIONS(4750), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53717] = 33, - ACTIONS(4418), 1, + [54228] = 33, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - ACTIONS(4997), 1, + ACTIONS(5054), 1, anon_sym_RBRACE, - ACTIONS(5001), 1, + ACTIONS(5058), 1, anon_sym_COMMA, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4577), 2, + ACTIONS(4468), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53828] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2336), 13, - anon_sym_STAR, + [54339] = 33, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4854), 1, + anon_sym_AMP_AMP, + ACTIONS(4856), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4858), 1, anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, + ACTIONS(4864), 1, + anon_sym_CARET, + ACTIONS(4866), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2334), 29, - sym__automatic_semicolon, + ACTIONS(4882), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - anon_sym_as, + ACTIONS(5061), 1, anon_sym_COMMA, + ACTIONS(5064), 1, anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4468), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4846), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 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(4868), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4878), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [53879] = 3, + ACTIONS(4876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 13, + ACTIONS(2340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183629,7 +184315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4088), 29, + ACTIONS(2338), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183659,11 +184345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53930] = 3, + [54501] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183677,7 +184363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4224), 29, + ACTIONS(4146), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183707,11 +184393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53981] = 3, + [54552] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183725,7 +184411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 29, + ACTIONS(4392), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183755,11 +184441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54032] = 3, + [54603] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4230), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183773,7 +184459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183803,11 +184489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54083] = 3, + [54654] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183821,7 +184507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4408), 29, + ACTIONS(4404), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183851,11 +184537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54134] = 3, + [54705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183869,7 +184555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4236), 29, + ACTIONS(4408), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183899,11 +184585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54185] = 3, + [54756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183917,7 +184603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4240), 29, + ACTIONS(4412), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183947,11 +184633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54236] = 3, + [54807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4414), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183965,7 +184651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4244), 29, + ACTIONS(4416), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183995,89 +184681,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54287] = 33, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, + [54858] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4418), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4420), 29, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(5004), 1, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5007), 1, anon_sym_RBRACE, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4577), 2, - sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, + 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, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 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(4863), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54398] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54909] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4434), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184091,7 +184747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4248), 29, + ACTIONS(4436), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184121,13 +184777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54449] = 4, - ACTIONS(4254), 1, + [54960] = 4, + ACTIONS(4442), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184141,7 +184797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4252), 28, + ACTIONS(4440), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184170,11 +184826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54502] = 3, + [55013] = 4, + ACTIONS(4445), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 13, + ACTIONS(4438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184188,7 +184846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3419), 29, + ACTIONS(4440), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184198,7 +184856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184218,11 +184875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54553] = 3, + [55066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3625), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184236,7 +184893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3429), 29, + ACTIONS(4106), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184266,27 +184923,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54604] = 4, - ACTIONS(4257), 1, - anon_sym_DOT, + [55117] = 6, + ACTIONS(5032), 1, + anon_sym_AMP, + ACTIONS(5034), 1, + anon_sym_PIPE, + ACTIONS(5036), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4104), 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(4252), 28, + ACTIONS(4106), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184296,6 +184955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184314,12 +184974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [54657] = 3, + [55174] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184333,7 +184992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4262), 29, + ACTIONS(4428), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184363,29 +185022,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54708] = 6, - ACTIONS(4975), 1, + [55225] = 4, + ACTIONS(5032), 1, anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 11, + ACTIONS(4240), 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(4262), 28, + ACTIONS(4242), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184414,11 +185070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54765] = 3, + anon_sym_extends, + [55278] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 13, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184432,7 +185089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4266), 29, + ACTIONS(4312), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184462,11 +185119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54816] = 3, + [55329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 13, + ACTIONS(4206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184480,7 +185137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4270), 29, + ACTIONS(4208), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184510,11 +185167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54867] = 3, + [55380] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, + ACTIONS(2336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184528,7 +185185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4274), 29, + ACTIONS(2334), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184558,11 +185215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54918] = 3, + [55431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 13, + ACTIONS(4374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184576,7 +185233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4278), 29, + ACTIONS(4376), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184606,11 +185263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54969] = 3, + [55482] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184624,7 +185281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4282), 29, + ACTIONS(4380), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184654,18 +185311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55020] = 4, - ACTIONS(4975), 1, - anon_sym_AMP, + [55533] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 12, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184673,7 +185329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4286), 29, + ACTIONS(4384), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184703,11 +185359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55073] = 3, + [55584] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, + ACTIONS(4152), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184721,7 +185377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4292), 29, + ACTIONS(4154), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184751,11 +185407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55124] = 3, + [55635] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4062), 13, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184769,7 +185425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4064), 29, + ACTIONS(4384), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184799,11 +185455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55175] = 3, + [55686] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2340), 13, + ACTIONS(4152), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184817,7 +185473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2338), 29, + ACTIONS(4154), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184847,11 +185503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55226] = 3, + [55737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184865,7 +185521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4300), 29, + ACTIONS(4172), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184895,11 +185551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55277] = 3, + [55788] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184913,7 +185569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4308), 29, + ACTIONS(4176), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184943,11 +185599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55328] = 3, + [55839] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184961,7 +185617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 29, + ACTIONS(4172), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184991,11 +185647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55379] = 3, + [55890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185009,7 +185665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4316), 29, + ACTIONS(4176), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185039,11 +185695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55430] = 3, + [55941] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185057,7 +185713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 29, + ACTIONS(4200), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185087,11 +185743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55481] = 3, + [55992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185105,7 +185761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4316), 29, + ACTIONS(4212), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185135,11 +185791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55532] = 3, + [56043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185153,7 +185809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 29, + ACTIONS(4200), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185183,11 +185839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55583] = 3, + [56094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185201,7 +185857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4324), 29, + ACTIONS(4212), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185231,11 +185887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55634] = 3, + [56145] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4422), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185249,7 +185905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 29, + ACTIONS(4424), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185279,11 +185935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55685] = 3, + [56196] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(4236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185297,7 +185953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4324), 29, + ACTIONS(4238), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185327,25 +185983,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55736] = 3, + [56247] = 6, + ACTIONS(5032), 1, + anon_sym_AMP, + ACTIONS(5034), 1, + anon_sym_PIPE, + ACTIONS(5036), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4108), 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(4328), 29, + ACTIONS(4110), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185374,12 +186034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55787] = 3, + [56304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4118), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185393,7 +186052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4332), 29, + ACTIONS(4120), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185423,11 +186082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55838] = 3, + [56355] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185441,7 +186100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4328), 29, + ACTIONS(4124), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185471,11 +186130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55889] = 3, + [56406] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185489,7 +186148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4332), 29, + ACTIONS(4128), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185519,11 +186178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55940] = 3, + [56457] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 13, + ACTIONS(4130), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185537,7 +186196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4336), 29, + ACTIONS(4132), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185567,11 +186226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55991] = 3, + [56508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4134), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185585,7 +186244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4344), 29, + ACTIONS(4136), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185615,29 +186274,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56042] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [56559] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 11, + ACTIONS(4148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4348), 28, + ACTIONS(4150), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185666,11 +186321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56099] = 3, + anon_sym_extends, + [56610] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 13, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185684,7 +186340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4352), 29, + ACTIONS(4164), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185714,11 +186370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56150] = 3, + [56661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 13, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185732,7 +186388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4356), 29, + ACTIONS(4168), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185762,17 +186418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56201] = 6, - ACTIONS(4975), 1, + [56712] = 6, + ACTIONS(5032), 1, anon_sym_AMP, - ACTIONS(4977), 1, + ACTIONS(5034), 1, anon_sym_PIPE, - ACTIONS(4979), 1, + ACTIONS(5036), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 11, + ACTIONS(4166), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185784,7 +186440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4356), 28, + ACTIONS(4168), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185813,11 +186469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56258] = 3, + [56769] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185831,7 +186487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4124), 29, + ACTIONS(4216), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185861,11 +186517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56309] = 3, + [56820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2332), 13, + ACTIONS(2344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185879,7 +186535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2330), 29, + ACTIONS(2342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185909,11 +186565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56360] = 3, + [56871] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185927,7 +186583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 29, + ACTIONS(4180), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185957,11 +186613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56411] = 3, + [56922] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185975,7 +186631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 29, + ACTIONS(4184), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186005,11 +186661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56462] = 3, + [56973] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186023,7 +186679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 29, + ACTIONS(4184), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186053,11 +186709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56513] = 3, + [57024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186071,7 +186727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 29, + ACTIONS(4184), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186101,11 +186757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56564] = 3, + [57075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186119,7 +186775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 29, + ACTIONS(4188), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186149,11 +186805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56615] = 3, + [57126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186167,7 +186823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 29, + ACTIONS(4188), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186197,11 +186853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56666] = 3, + [57177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186215,7 +186871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 29, + ACTIONS(4188), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186245,11 +186901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56717] = 3, + [57228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186263,7 +186919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 29, + ACTIONS(4204), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186293,11 +186949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56768] = 3, + [57279] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186311,7 +186967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 29, + ACTIONS(4204), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186341,11 +186997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56819] = 3, + [57330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186359,7 +187015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 29, + ACTIONS(4204), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186389,11 +187045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56870] = 3, + [57381] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 13, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186407,7 +187063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4376), 29, + ACTIONS(4224), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186437,11 +187093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56921] = 3, + [57432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 13, + ACTIONS(4226), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186455,7 +187111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4380), 29, + ACTIONS(4228), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186485,11 +187141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56972] = 3, + [57483] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4448), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186503,7 +187159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4384), 29, + ACTIONS(4450), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186533,11 +187189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57023] = 3, + [57534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2344), 13, + ACTIONS(2332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186551,7 +187207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2342), 29, + ACTIONS(2330), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186581,11 +187237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57074] = 3, + [57585] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186599,7 +187255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4388), 29, + ACTIONS(4250), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186629,11 +187285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57125] = 3, + [57636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186647,7 +187303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 29, + ACTIONS(4254), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186677,11 +187333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57176] = 3, + [57687] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186695,7 +187351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 29, + ACTIONS(4254), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186725,11 +187381,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57227] = 3, + [57738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186743,7 +187399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 29, + ACTIONS(4254), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186773,11 +187429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57278] = 3, + [57789] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186791,7 +187447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 29, + ACTIONS(4258), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186821,27 +187477,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57329] = 11, - ACTIONS(3938), 1, + [57840] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4256), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4258), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5009), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [57891] = 11, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5066), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4629), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186854,7 +187558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 22, + ACTIONS(4631), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -186877,11 +187581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57396] = 3, + [57958] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186895,7 +187599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 29, + ACTIONS(4280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186925,11 +187629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57447] = 3, + [58009] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(4278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186943,7 +187647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 29, + ACTIONS(4280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186973,11 +187677,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57498] = 3, + [58060] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(4278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186991,7 +187695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 29, + ACTIONS(4280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187021,59 +187725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57549] = 3, + [58111] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4400), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_extends, - [57600] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4402), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187087,7 +187743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4404), 29, + ACTIONS(4304), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187117,17 +187773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57651] = 6, - ACTIONS(4975), 1, + [58162] = 6, + ACTIONS(5032), 1, anon_sym_AMP, - ACTIONS(4977), 1, + ACTIONS(5034), 1, anon_sym_PIPE, - ACTIONS(4979), 1, + ACTIONS(5036), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4072), 11, + ACTIONS(4324), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187139,7 +187795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4074), 28, + ACTIONS(4326), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187168,15 +187824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57708] = 5, - ACTIONS(1665), 1, + [58219] = 5, + ACTIONS(1659), 1, anon_sym_EQ, - ACTIONS(4796), 1, + ACTIONS(4813), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1661), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187190,7 +187846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 27, + ACTIONS(1653), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -187218,10 +187874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57763] = 19, + [58274] = 19, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(724), 1, anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, @@ -187233,17 +187889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - STATE(2756), 1, + STATE(2772), 1, sym_override_modifier, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -187254,11 +187910,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -187282,15 +187938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [57846] = 5, - ACTIONS(4535), 1, + [58357] = 5, + ACTIONS(4661), 1, anon_sym_LPAREN, - STATE(2088), 1, + STATE(2324), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187304,7 +187960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 27, + ACTIONS(4192), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187332,20 +187988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57901] = 6, - ACTIONS(4618), 1, + [58412] = 6, + ACTIONS(4707), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 2, + ACTIONS(4089), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4621), 3, + ACTIONS(4710), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3437), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187356,7 +188012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(3441), 26, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -187383,103 +188039,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57958] = 32, - ACTIONS(4418), 1, + [58469] = 32, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(4873), 1, + ACTIONS(4903), 1, anon_sym_GT, - ACTIONS(4875), 1, + ACTIONS(4905), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4907), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4909), 1, + anon_sym_GT_GT, + ACTIONS(4913), 1, anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4915), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4921), 1, + anon_sym_PERCENT, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + anon_sym_LT, + ACTIONS(4933), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5014), 1, + ACTIONS(5071), 1, anon_sym_in, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4911), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4887), 2, + ACTIONS(4929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4931), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4927), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5012), 4, + ACTIONS(5069), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - [58067] = 9, + [58578] = 9, ACTIONS(2326), 1, anon_sym_extends, - ACTIONS(4066), 1, + ACTIONS(4138), 1, anon_sym_LBRACK, - ACTIONS(5017), 1, + ACTIONS(5074), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1665), 2, + ACTIONS(1659), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4069), 2, + ACTIONS(4141), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4946), 2, + ACTIONS(4899), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1663), 11, + ACTIONS(1657), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187491,7 +188147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 22, + ACTIONS(1661), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187514,26 +188170,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58130] = 9, - ACTIONS(4108), 1, + [58641] = 9, + ACTIONS(4266), 1, anon_sym_LBRACK, - ACTIONS(4114), 1, + ACTIONS(4272), 1, anon_sym_extends, - ACTIONS(5020), 1, + ACTIONS(5077), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 2, + ACTIONS(4262), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4111), 2, + ACTIONS(4269), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4933), 2, + ACTIONS(5009), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4102), 11, + ACTIONS(4260), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187545,7 +188201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, + ACTIONS(4264), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187568,11 +188224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58193] = 3, + [58704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4026), 13, + ACTIONS(4053), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187586,7 +188242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4028), 29, + ACTIONS(4055), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187616,17 +188272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58244] = 6, - ACTIONS(4975), 1, + [58755] = 6, + ACTIONS(5032), 1, anon_sym_AMP, - ACTIONS(4977), 1, + ACTIONS(5034), 1, anon_sym_PIPE, - ACTIONS(4979), 1, + ACTIONS(5036), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4094), 11, + ACTIONS(4386), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187638,7 +188294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 28, + ACTIONS(4388), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187667,17 +188323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58301] = 6, - ACTIONS(4975), 1, + [58812] = 6, + ACTIONS(5032), 1, anon_sym_AMP, - ACTIONS(4977), 1, + ACTIONS(5034), 1, anon_sym_PIPE, - ACTIONS(4979), 1, + ACTIONS(5036), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4098), 11, + ACTIONS(4394), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187689,7 +188345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4100), 28, + ACTIONS(4396), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187718,63 +188374,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58358] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, + [58869] = 14, + ACTIONS(165), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(5023), 1, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, anon_sym_RBRACE, - STATE(2756), 1, - sym_override_modifier, - STATE(5131), 1, + STATE(4970), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5086), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, + STATE(4967), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5724), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5968), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 18, + ACTIONS(5080), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -187782,58 +188433,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58441] = 14, - ACTIONS(166), 1, - anon_sym_DOT_DOT_DOT, + [58942] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5029), 1, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5088), 1, anon_sym_RBRACE, - STATE(4849), 1, + STATE(2772), 1, + sym_override_modifier, + STATE(4664), 1, aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5031), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(4834), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5957), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5025), 23, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, @@ -187841,20 +188497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58514] = 6, - ACTIONS(4606), 1, + [59025] = 6, + ACTIONS(4691), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, + ACTIONS(4276), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4609), 3, + ACTIONS(4694), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3437), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187865,7 +188521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(3441), 26, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -187892,37 +188548,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58571] = 14, - ACTIONS(1583), 1, + [59082] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(5035), 1, + ACTIONS(5092), 1, anon_sym_async, - ACTIONS(5039), 1, + ACTIONS(5096), 1, anon_sym_readonly, - STATE(2755), 1, + STATE(2776), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5094), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(5098), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -187951,33 +188607,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58644] = 12, - ACTIONS(1583), 1, + [59155] = 12, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4959), 1, anon_sym_abstract, - ACTIONS(5033), 1, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(5035), 1, + ACTIONS(5092), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5094), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(5098), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -188008,37 +188664,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58713] = 14, - ACTIONS(1583), 1, + [59224] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, + ACTIONS(5100), 1, anon_sym_STAR, - ACTIONS(5045), 1, + ACTIONS(5102), 1, anon_sym_async, - ACTIONS(5049), 1, + ACTIONS(5106), 1, anon_sym_readonly, - STATE(2760), 1, + STATE(2755), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5047), 2, + ACTIONS(5104), 2, sym_number, sym_private_property_identifier, - ACTIONS(5051), 2, + ACTIONS(5108), 2, anon_sym_get, anon_sym_set, - STATE(3012), 3, + STATE(3030), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -188067,33 +188723,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58786] = 12, - ACTIONS(1583), 1, + [59297] = 12, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, + ACTIONS(5100), 1, anon_sym_STAR, - ACTIONS(5045), 1, + ACTIONS(5102), 1, anon_sym_async, - ACTIONS(5055), 1, + ACTIONS(5112), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, + ACTIONS(5108), 2, anon_sym_get, anon_sym_set, - ACTIONS(5053), 2, + ACTIONS(5110), 2, sym_number, sym_private_property_identifier, - STATE(3015), 3, + STATE(3032), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -188124,18 +188780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58855] = 7, - ACTIONS(3469), 1, + [59366] = 7, + ACTIONS(3497), 1, anon_sym_DOT, - ACTIONS(3471), 1, + ACTIONS(3499), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, + ACTIONS(3447), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3441), 7, + ACTIONS(3443), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -188143,7 +188799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188155,7 +188811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 20, + ACTIONS(3441), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188176,14 +188832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58914] = 5, + [59425] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 2, + ACTIONS(4284), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4132), 7, + ACTIONS(4282), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -188191,7 +188847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188203,7 +188859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188226,20 +188882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58969] = 6, - ACTIONS(4529), 1, + [59480] = 6, + ACTIONS(4651), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 2, + ACTIONS(4342), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4532), 3, + ACTIONS(4654), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4423), 10, + ACTIONS(4643), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188250,7 +188906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 26, + ACTIONS(4645), 26, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -188277,37 +188933,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59026] = 14, - ACTIONS(1583), 1, + [59537] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5057), 1, + ACTIONS(5114), 1, anon_sym_STAR, - ACTIONS(5059), 1, + ACTIONS(5116), 1, anon_sym_async, - ACTIONS(5063), 1, + ACTIONS(5120), 1, anon_sym_readonly, - STATE(2766), 1, + STATE(2763), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5061), 2, + ACTIONS(5118), 2, sym_number, sym_private_property_identifier, - ACTIONS(5065), 2, + ACTIONS(5122), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3137), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -188336,26 +188992,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [59099] = 9, - ACTIONS(4024), 1, + [59610] = 9, + ACTIONS(4089), 1, anon_sym_extends, - ACTIONS(4618), 1, + ACTIONS(4707), 1, anon_sym_LBRACK, - ACTIONS(5069), 1, + ACTIONS(5126), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4710), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4983), 2, + ACTIONS(5040), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5067), 2, + ACTIONS(5124), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188367,7 +189023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188390,26 +189046,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59162] = 9, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3548), 1, + [59673] = 9, + ACTIONS(3544), 1, anon_sym_QMARK, - ACTIONS(4606), 1, + ACTIONS(3559), 1, + anon_sym_EQ, + ACTIONS(4691), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3562), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4146), 2, + ACTIONS(4276), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(4609), 2, + ACTIONS(4694), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188421,7 +189077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188444,77 +189100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59225] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(2756), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [59308] = 4, - ACTIONS(4614), 1, + [59736] = 4, + ACTIONS(4578), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4612), 13, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188528,7 +189120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 28, + ACTIONS(4580), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188557,26 +189149,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59361] = 9, + [59789] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5129), 1, + anon_sym_RBRACE, + STATE(2772), 1, + sym_override_modifier, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [59872] = 9, ACTIONS(2326), 1, anon_sym_extends, - ACTIONS(4066), 1, + ACTIONS(4138), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, + ACTIONS(4978), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1665), 2, + ACTIONS(1659), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4069), 2, + ACTIONS(4141), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4763), 2, + ACTIONS(4815), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1663), 11, + ACTIONS(1657), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188588,7 +189244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 22, + ACTIONS(1661), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188611,26 +189267,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59424] = 9, - ACTIONS(4108), 1, + [59935] = 9, + ACTIONS(4266), 1, anon_sym_LBRACK, - ACTIONS(4114), 1, + ACTIONS(4272), 1, anon_sym_extends, - ACTIONS(4838), 1, + ACTIONS(4969), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 2, + ACTIONS(4262), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4111), 2, + ACTIONS(4269), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4798), 2, + ACTIONS(4782), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4102), 11, + ACTIONS(4260), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188642,7 +189298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, + ACTIONS(4264), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188665,16 +189321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59487] = 4, + [59998] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 4, + ACTIONS(4102), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4082), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188688,7 +189344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 25, + ACTIONS(4098), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -188714,16 +189370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59540] = 4, + [60051] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 4, + ACTIONS(4146), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4082), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188737,7 +189393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 25, + ACTIONS(4098), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -188763,7 +189419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59593] = 19, + [60104] = 19, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(1505), 1, @@ -188776,19 +189432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(5131), 1, anon_sym_RBRACE, - STATE(2756), 1, + STATE(2772), 1, sym_override_modifier, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -188799,11 +189455,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -188827,27 +189483,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [59676] = 10, - ACTIONS(1665), 1, + [60187] = 10, + ACTIONS(1659), 1, anon_sym_EQ, ACTIONS(2326), 1, anon_sym_extends, ACTIONS(2328), 1, anon_sym_QMARK, - ACTIONS(4066), 1, + ACTIONS(4138), 1, anon_sym_LBRACK, - ACTIONS(4946), 1, + ACTIONS(4899), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, + ACTIONS(4141), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4804), 2, + ACTIONS(4978), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1663), 11, + ACTIONS(1657), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188859,7 +189515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 22, + ACTIONS(1661), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188882,27 +189538,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59741] = 10, - ACTIONS(4104), 1, + [60252] = 10, + ACTIONS(4262), 1, anon_sym_EQ, - ACTIONS(4108), 1, + ACTIONS(4266), 1, anon_sym_LBRACK, - ACTIONS(4114), 1, + ACTIONS(4272), 1, anon_sym_extends, - ACTIONS(4174), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4933), 1, + ACTIONS(5009), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4269), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4838), 2, + ACTIONS(4969), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(4102), 11, + ACTIONS(4260), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188914,7 +189570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, + ACTIONS(4264), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188937,23 +189593,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59806] = 6, + [60317] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, + ACTIONS(4694), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4606), 3, + ACTIONS(4691), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4146), 4, + ACTIONS(4276), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188965,7 +189621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188988,23 +189644,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59863] = 6, + [60374] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4654), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4529), 3, + ACTIONS(4651), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4186), 4, + ACTIONS(4342), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4423), 11, + ACTIONS(4643), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189016,7 +189672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 22, + ACTIONS(4645), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -189039,23 +189695,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59920] = 6, + [60431] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4710), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4618), 3, + ACTIONS(4707), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4024), 4, + ACTIONS(4089), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189067,7 +189723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -189090,13 +189746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59977] = 4, - ACTIONS(3485), 1, + [60488] = 4, + ACTIONS(3483), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189110,7 +189766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 28, + ACTIONS(3441), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189139,8 +189795,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60030] = 14, - ACTIONS(166), 1, + [60541] = 7, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3443), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3447), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(3441), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [60600] = 14, + ACTIONS(165), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1505), 1, anon_sym_DQUOTE, @@ -189150,31 +189858,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(5078), 1, + ACTIONS(5135), 1, anon_sym_RBRACE, - STATE(4622), 1, + STATE(5166), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5031), 2, + ACTIONS(5086), 2, sym_number, sym_private_property_identifier, - STATE(4665), 3, + STATE(5101), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5891), 3, + STATE(5724), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(5957), 3, + STATE(5968), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5076), 23, + ACTIONS(5133), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -189198,23 +189906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60103] = 7, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, + [60673] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(4282), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3445), 3, + ACTIONS(4284), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3437), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189225,55 +189929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [60162] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4132), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4134), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 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(3439), 26, + ACTIONS(3441), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189300,20 +189956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60217] = 6, - ACTIONS(4186), 1, + [60728] = 6, + ACTIONS(4342), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, + ACTIONS(4651), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4532), 3, + ACTIONS(4654), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4423), 10, + ACTIONS(4643), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189324,7 +189980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 26, + ACTIONS(4645), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189351,13 +190007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60274] = 4, - ACTIONS(4138), 1, + [60785] = 4, + ACTIONS(4102), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189371,7 +190027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 28, + ACTIONS(4098), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189400,89 +190056,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60327] = 31, - ACTIONS(3938), 1, + [60838] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5080), 4, + ACTIONS(5137), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [60434] = 4, - ACTIONS(1665), 1, + [60945] = 4, + ACTIONS(1659), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1663), 13, + ACTIONS(1657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189496,7 +190152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 28, + ACTIONS(1661), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189525,10 +190181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60487] = 19, + [60998] = 19, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(724), 1, + ACTIONS(697), 1, anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, @@ -189540,17 +190196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - STATE(2756), 1, + STATE(2772), 1, sym_override_modifier, - STATE(5129), 1, + STATE(4663), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -189561,11 +190217,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -189589,37 +190245,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60570] = 14, - ACTIONS(1583), 1, + [61081] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5139), 1, anon_sym_STAR, - ACTIONS(5084), 1, + ACTIONS(5141), 1, anon_sym_async, - ACTIONS(5088), 1, + ACTIONS(5145), 1, anon_sym_readonly, - STATE(2754), 1, + STATE(2764), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5086), 2, + ACTIONS(5143), 2, sym_number, sym_private_property_identifier, - ACTIONS(5090), 2, + ACTIONS(5147), 2, anon_sym_get, anon_sym_set, - STATE(3004), 3, + STATE(3051), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189648,33 +190304,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60643] = 12, - ACTIONS(1583), 1, + [61154] = 12, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5139), 1, anon_sym_STAR, - ACTIONS(5084), 1, + ACTIONS(5141), 1, anon_sym_async, - ACTIONS(5094), 1, + ACTIONS(5151), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5147), 2, anon_sym_get, anon_sym_set, - ACTIONS(5092), 2, + ACTIONS(5149), 2, sym_number, sym_private_property_identifier, - STATE(3006), 3, + STATE(3053), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189705,37 +190361,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60712] = 14, - ACTIONS(1583), 1, + [61223] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5153), 1, anon_sym_STAR, - ACTIONS(5098), 1, + ACTIONS(5155), 1, anon_sym_async, - ACTIONS(5102), 1, + ACTIONS(5159), 1, anon_sym_readonly, - STATE(2742), 1, + STATE(2778), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5100), 2, + ACTIONS(5157), 2, sym_number, sym_private_property_identifier, - ACTIONS(5104), 2, + ACTIONS(5161), 2, anon_sym_get, anon_sym_set, - STATE(3069), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -189764,26 +190420,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60785] = 9, - ACTIONS(4024), 1, + [61296] = 9, + ACTIONS(4089), 1, anon_sym_extends, - ACTIONS(4618), 1, + ACTIONS(4707), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, + ACTIONS(5167), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, + ACTIONS(4710), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5106), 2, + ACTIONS(5163), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5108), 2, + ACTIONS(5165), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189795,7 +190451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -189818,22 +190474,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60848] = 7, - ACTIONS(3511), 1, + [61359] = 7, + ACTIONS(3517), 1, anon_sym_EQ, - ACTIONS(4146), 1, + ACTIONS(4276), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, + ACTIONS(4691), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4609), 3, + ACTIONS(4694), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3437), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189844,7 +190500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, + ACTIONS(3441), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189870,34 +190526,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60907] = 12, + [61418] = 12, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4427), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, + ACTIONS(3996), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4738), 2, + ACTIONS(4805), 2, sym_number, sym_private_property_identifier, - ACTIONS(4740), 2, + ACTIONS(4807), 2, anon_sym_get, anon_sym_set, - STATE(3890), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -189927,36 +190583,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60976] = 13, - ACTIONS(1583), 1, + [61487] = 13, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4427), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4433), 1, + ACTIONS(4550), 1, anon_sym_async, - ACTIONS(4742), 1, + ACTIONS(4780), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, + ACTIONS(3996), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4435), 2, + ACTIONS(4552), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(4556), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3138), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -189985,37 +190641,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [61047] = 14, - ACTIONS(1583), 1, + [61558] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5113), 1, + ACTIONS(5170), 1, anon_sym_STAR, - ACTIONS(5115), 1, + ACTIONS(5172), 1, anon_sym_async, - ACTIONS(5119), 1, + ACTIONS(5176), 1, anon_sym_readonly, - STATE(2764), 1, + STATE(2770), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 2, + ACTIONS(5174), 2, sym_number, sym_private_property_identifier, - ACTIONS(5121), 2, + ACTIONS(5178), 2, anon_sym_get, anon_sym_set, - STATE(3075), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -190044,13 +190700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [61120] = 4, - ACTIONS(4088), 1, + [61631] = 4, + ACTIONS(4146), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190064,7 +190720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 28, + ACTIONS(4098), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190093,169 +190749,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61173] = 33, - ACTIONS(4418), 1, + [61684] = 33, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - ACTIONS(4967), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4478), 1, + STATE(4572), 1, aux_sym_sequence_expression_repeat1, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5123), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5180), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4863), 3, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61284] = 33, - ACTIONS(4418), 1, + [61795] = 33, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4854), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4864), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4866), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, sym__ternary_qmark, - ACTIONS(4967), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4478), 1, + STATE(4572), 1, aux_sym_sequence_expression_repeat1, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4846), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5125), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5182), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4863), 3, + ACTIONS(4876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61395] = 4, - ACTIONS(4104), 1, + [61906] = 4, + ACTIONS(4262), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4102), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190269,7 +190925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 28, + ACTIONS(4264), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190298,425 +190954,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61448] = 31, - ACTIONS(3938), 1, + [61959] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5188), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5216), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5218), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4455), 4, + ACTIONS(4685), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61555] = 31, - ACTIONS(3938), 1, + [62066] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5188), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5216), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5218), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4501), 4, + ACTIONS(4750), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61662] = 31, - ACTIONS(3938), 1, + [62173] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5188), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5216), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5218), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4519), 4, + ACTIONS(4737), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61769] = 31, - ACTIONS(3938), 1, + [62280] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5188), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5216), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5218), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 4, + ACTIONS(4468), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61876] = 31, - ACTIONS(3938), 1, + [62387] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5188), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5216), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5218), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4581), 4, + ACTIONS(4514), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61983] = 18, - ACTIONS(3938), 1, + [62494] = 18, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, + ACTIONS(4522), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -190724,7 +191380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(4520), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -190741,32 +191397,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62064] = 13, - ACTIONS(3938), 1, + [62575] = 13, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5163), 1, + ACTIONS(5220), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190779,7 +191435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, + ACTIONS(4520), 19, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -190799,66 +191455,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62135] = 25, - ACTIONS(3938), 1, + [62646] = 25, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4520), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -190869,68 +191525,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62230] = 26, - ACTIONS(3938), 1, + [62741] = 26, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5131), 1, + ACTIONS(5188), 1, anon_sym_AMP_AMP, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4520), 9, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -190940,40 +191596,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62327] = 16, - ACTIONS(3938), 1, + [62838] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5163), 1, + ACTIONS(5220), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 8, + ACTIONS(4522), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -190982,7 +191638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(4520), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -191001,62 +191657,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62404] = 22, - ACTIONS(3938), 1, + [62915] = 22, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, + ACTIONS(4522), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4520), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -191068,63 +191724,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62493] = 23, - ACTIONS(3938), 1, + [63004] = 23, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4522), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4520), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -191136,65 +191792,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62584] = 24, - ACTIONS(3938), 1, + [63095] = 24, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4522), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4520), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -191205,37 +191861,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62677] = 15, - ACTIONS(3938), 1, + [63188] = 15, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5163), 1, + ACTIONS(5220), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 10, + ACTIONS(4522), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -191246,7 +191902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(4520), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -191265,38 +191921,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62752] = 16, - ACTIONS(3938), 1, + [63263] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5163), 1, + ACTIONS(5220), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4522), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -191308,7 +191964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4520), 17, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -191326,58 +191982,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_implements, - [62829] = 20, - ACTIONS(3938), 1, + [63340] = 20, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, + ACTIONS(4522), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 13, + ACTIONS(4520), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -191391,70 +192047,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62914] = 27, - ACTIONS(3938), 1, + [63425] = 27, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5131), 1, + ACTIONS(5188), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5210), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4520), 8, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -191463,715 +192119,1727 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [63013] = 31, - ACTIONS(3938), 1, + [63524] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4588), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [63631] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5188), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5192), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(5196), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5198), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5200), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5204), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5206), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5208), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5216), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5218), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5186), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5194), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4590), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [63738] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4526), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [63845] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4534), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [63952] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4560), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [64059] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4586), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [64166] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4611), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [64273] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4566), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [64380] = 32, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4854), 1, + anon_sym_AMP_AMP, + ACTIONS(4856), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, + anon_sym_CARET, + ACTIONS(4866), 1, + anon_sym_PIPE, + ACTIONS(4870), 1, + anon_sym_PERCENT, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4846), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4868), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4878), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4880), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5054), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5223), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64489] = 12, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5225), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4636), 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(4638), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [64558] = 15, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5228), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4739), 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(4741), 18, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_implements, + [64633] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [64740] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4256), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4258), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + anon_sym_extends, + [64791] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4701), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4588), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [64841] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1795), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1799), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1801), 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, + [64893] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4098), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(5153), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64943] = 7, + ACTIONS(4274), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4276), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4691), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3437), 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(3441), 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, - ACTIONS(4642), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [63120] = 31, - ACTIONS(3938), 1, + anon_sym_satisfies, + [65001] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5231), 1, + anon_sym_RBRACE, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4648), 4, - anon_sym_LBRACE, + [65111] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4677), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63227] = 31, - ACTIONS(3938), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65161] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4756), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(4758), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(5153), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4716), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [63334] = 31, - ACTIONS(3938), 1, + anon_sym_satisfies, + [65211] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5233), 1, + anon_sym_SEMI, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4728), 4, - anon_sym_LBRACE, + [65321] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1689), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63441] = 31, - ACTIONS(3938), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1693), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1695), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65373] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(1785), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1789), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4732), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63548] = 31, - ACTIONS(3938), 1, + ACTIONS(1791), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65425] = 8, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(4274), 1, + anon_sym_QMARK, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4276), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3437), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(3441), 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(5153), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4503), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [63655] = 31, - ACTIONS(3938), 1, + anon_sym_satisfies, + [65485] = 5, + ACTIONS(5235), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1861), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1865), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1867), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4762), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4505), 4, - anon_sym_LBRACE, + ACTIONS(4764), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63762] = 31, - ACTIONS(3938), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65589] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5237), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5239), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4734), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63869] = 32, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(3441), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 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(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65643] = 7, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(3447), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3443), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3437), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + 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(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4997), 2, + ACTIONS(3441), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5166), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4863), 3, + anon_sym_LPAREN, + 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, - [63978] = 12, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5168), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65701] = 5, + ACTIONS(1731), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(1723), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192182,13 +193850,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(4676), 20, + ACTIONS(1729), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192202,90 +193875,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [64047] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [65755] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4284), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4282), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_extends, + ACTIONS(3437), 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(3441), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65809] = 7, + ACTIONS(4340), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4342), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4654), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4651), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4643), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(4645), 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(5153), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4708), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64154] = 3, + anon_sym_satisfies, + [65867] = 5, + ACTIONS(1741), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(1733), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1737), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192299,15 +194002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 29, - sym__automatic_semicolon, + ACTIONS(1739), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -192328,96 +194028,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [64205] = 33, - ACTIONS(3938), 1, + [65921] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1815), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1819), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1821), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5171), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + [65973] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1775), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1779), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(1781), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64315] = 5, - ACTIONS(5173), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66025] = 5, + ACTIONS(5241), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1813), 4, + ACTIONS(1723), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1817), 13, + ACTIONS(1727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192431,7 +194149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1819), 23, + ACTIONS(1729), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192455,18 +194173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64369] = 5, - ACTIONS(5175), 1, + [66079] = 5, + ACTIONS(5243), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 4, + ACTIONS(1733), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1827), 13, + ACTIONS(1737), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192480,7 +194198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 23, + ACTIONS(1739), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192504,146 +194222,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64423] = 31, - ACTIONS(3938), 1, + [66133] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5245), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5247), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66187] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5245), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5247), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4497), 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(3441), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5131), 1, + [66241] = 33, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1614), 1, - sym_arguments, - STATE(2561), 1, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5249), 1, + anon_sym_SEMI, + STATE(1522), 1, sym_type_arguments, - STATE(5072), 1, + STATE(1622), 1, + sym_arguments, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5177), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [64529] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_STAR, + [66351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5181), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5183), 2, - anon_sym_get, - anon_sym_set, - STATE(3893), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(1799), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1801), 28, 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, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 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, - [64593] = 4, + 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, + [66401] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 5, + ACTIONS(1747), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1853), 13, + ACTIONS(1751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192657,7 +194468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 23, + ACTIONS(1753), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192681,17 +194492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64645] = 4, + [66453] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + ACTIONS(1765), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1863), 13, + ACTIONS(1769), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192705,7 +194516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 23, + ACTIONS(1771), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192729,18 +194540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64697] = 5, - ACTIONS(5185), 1, - sym__automatic_semicolon, + [66505] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1713), 4, + ACTIONS(5245), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5247), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1717), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192754,7 +194565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1719), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192778,18 +194589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64751] = 5, + [66559] = 5, + ACTIONS(5251), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5189), 3, + ACTIONS(1833), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192803,7 +194614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1839), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192827,17 +194638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64805] = 4, + [66613] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1727), 5, + ACTIONS(1843), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1731), 13, + ACTIONS(1847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192851,7 +194662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 23, + ACTIONS(1849), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192875,18 +194686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64857] = 5, + [66665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5189), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4703), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192900,42 +194704,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4705), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [66715] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 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(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [64911] = 5, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5253), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [66821] = 5, + ACTIONS(1755), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5189), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(1747), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192949,10 +194831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1753), 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, @@ -192973,11 +194857,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64965] = 3, + [66875] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5088), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [66949] = 5, + ACTIONS(1773), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4670), 13, + ACTIONS(1765), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1769), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192991,15 +194939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4672), 28, - sym__automatic_semicolon, + ACTIONS(1771), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -193020,24 +194965,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65015] = 15, + [67003] = 16, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5023), 1, + ACTIONS(5088), 1, anon_sym_RBRACE, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -193048,21 +194995,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 21, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -193079,45 +195025,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65089] = 11, - ACTIONS(1583), 1, + [67079] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5191), 1, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(5193), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5195), 2, + ACTIONS(5255), 2, sym_number, sym_private_property_identifier, - ACTIONS(5197), 2, + ACTIONS(5257), 2, anon_sym_get, anon_sym_set, - STATE(3111), 3, + STATE(3927), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -193134,46 +195079,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65155] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, + [67143] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(5092), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5094), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(5098), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -193194,181 +195134,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65231] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [67209] = 4, + ACTIONS(5259), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4982), 17, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_as, + anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5199), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [65337] = 33, - ACTIONS(1928), 1, + anon_sym_satisfies, + ACTIONS(4984), 23, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(4819), 1, - aux_sym_array_repeat1, - STATE(5072), 1, - sym_optional_chain, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [67261] = 7, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4276), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(3441), 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, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65447] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67319] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(5261), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5203), 2, + ACTIONS(5263), 2, sym_number, sym_private_property_identifier, - ACTIONS(5205), 2, + ACTIONS(5265), 2, anon_sym_get, anon_sym_set, - STATE(3853), 3, + STATE(3844), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -193400,31 +195287,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65511] = 11, - ACTIONS(1583), 1, + [67383] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(5100), 1, anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5267), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(5269), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -193434,11 +195319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -193455,206 +195341,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65577] = 4, - ACTIONS(5207), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4937), 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(4939), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + [67447] = 32, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4663), 1, anon_sym_LBRACK, + ACTIONS(4665), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4750), 1, + anon_sym_COMMA, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4854), 1, anon_sym_AMP_AMP, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, anon_sym_CARET, + ACTIONS(4866), 1, + anon_sym_PIPE, + ACTIONS(4870), 1, anon_sym_PERCENT, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [65629] = 3, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(4888), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4846), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4852), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 28, + ACTIONS(4880), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5056), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, + ACTIONS(4876), 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, - [65679] = 7, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(4606), 1, + [67555] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, + ACTIONS(5273), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5275), 2, + anon_sym_get, + anon_sym_set, + STATE(3839), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 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(3439), 24, - 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(2314), 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, + [67619] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, anon_sym_PERCENT, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4508), 1, anon_sym_satisfies, - [65737] = 5, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4983), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5067), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4464), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 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(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [65791] = 3, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5069), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [67725] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5277), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5279), 2, + anon_sym_get, + anon_sym_set, + STATE(3819), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 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, + [67789] = 5, + ACTIONS(1697), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4549), 13, + ACTIONS(1689), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193668,15 +195623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4551), 28, - sym__automatic_semicolon, + ACTIONS(1695), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -193697,44 +195649,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65841] = 10, - ACTIONS(1505), 1, + [67843] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4780), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, + ACTIONS(5114), 1, anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5118), 2, sym_number, sym_private_property_identifier, - ACTIONS(5211), 2, + ACTIONS(5122), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3137), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -193751,11 +195704,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65905] = 3, + [67909] = 5, + ACTIONS(1793), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 13, + ACTIONS(1785), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1789), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193769,15 +195727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4555), 28, - sym__automatic_semicolon, + ACTIONS(1791), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -193798,11 +195753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65955] = 3, + [67963] = 7, + ACTIONS(5281), 1, + anon_sym_LPAREN, + ACTIONS(5284), 1, + anon_sym_COLON, + ACTIONS(5286), 1, + anon_sym_LT, + ACTIONS(5289), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4557), 13, + ACTIONS(3437), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193813,18 +195776,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(4559), 28, + ACTIONS(3441), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -193845,87 +195804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66005] = 32, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4501), 1, - anon_sym_COMMA, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4999), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66113] = 3, + [68021] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4591), 13, + ACTIONS(4683), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193939,7 +195822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4593), 28, + ACTIONS(4685), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193968,16 +195851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66163] = 5, - ACTIONS(1769), 1, - sym__automatic_semicolon, + [68071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1761), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1765), 13, + ACTIONS(4516), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193991,12 +195869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 25, + ACTIONS(4518), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194017,11 +195898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66217] = 3, + [68121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4561), 13, + ACTIONS(4524), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194035,7 +195916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4563), 28, + ACTIONS(4526), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194064,174 +195945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66267] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5057), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5213), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5215), 2, - anon_sym_get, - anon_sym_set, - STATE(3827), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 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, - [66331] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4748), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5217), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5219), 2, - anon_sym_get, - anon_sym_set, - STATE(3834), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [66395] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4742), 1, - anon_sym_LBRACK, - ACTIONS(5057), 1, - anon_sym_STAR, - ACTIONS(5059), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5065), 2, - anon_sym_get, - anon_sym_set, - STATE(3055), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 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, - [66461] = 3, + [68171] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 13, + ACTIONS(4528), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194245,7 +195963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4664), 28, + ACTIONS(4530), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194274,86 +195992,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66511] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [68221] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4532), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 3, + ACTIONS(4534), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4863), 3, + 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, - [66617] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68271] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(4558), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194367,7 +196057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 28, + ACTIONS(4560), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194396,11 +196086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66667] = 3, + [68321] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4710), 13, + ACTIONS(4562), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194414,7 +196104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4712), 28, + ACTIONS(4564), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194443,11 +196133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66717] = 3, + [68371] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 13, + ACTIONS(4456), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194461,7 +196151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4716), 28, + ACTIONS(4458), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194490,11 +196180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66767] = 3, + [68421] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(4582), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194508,7 +196198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 28, + ACTIONS(4584), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194537,11 +196227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66817] = 3, + [68471] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4726), 13, + ACTIONS(4613), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194555,7 +196245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4728), 28, + ACTIONS(4615), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194584,24 +196274,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66867] = 15, + [68521] = 15, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5072), 1, + ACTIONS(5129), 1, anon_sym_RBRACE, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -194612,11 +196302,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -194643,19 +196333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66941] = 7, - ACTIONS(5221), 1, - anon_sym_LPAREN, - ACTIONS(5224), 1, - anon_sym_COLON, - ACTIONS(5226), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_QMARK, + [68595] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 12, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194666,14 +196348,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(4527), 25, + ACTIONS(4098), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194694,7 +196380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66999] = 16, + [68645] = 16, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(1505), 1, @@ -194703,17 +196389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2316), 1, anon_sym_async, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5072), 1, + ACTIONS(5129), 1, anon_sym_RBRACE, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -194724,11 +196410,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -194746,240 +196432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67075] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4730), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4732), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [67125] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4693), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4695), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [67175] = 6, - ACTIONS(4146), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4606), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3435), 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(3439), 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, - [67231] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5231), 1, - anon_sym_RBRACK, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67341] = 3, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68721] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 13, + ACTIONS(4625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194993,7 +196458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4509), 28, + ACTIONS(4627), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195022,34 +196487,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67391] = 3, + [68771] = 6, + ACTIONS(4276), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4521), 13, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4691), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3437), 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(4523), 28, - sym__automatic_semicolon, + ACTIONS(3441), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195069,16 +196537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67441] = 5, - ACTIONS(1697), 1, - sym__automatic_semicolon, + [68827] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1693), 13, + ACTIONS(4774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195092,12 +196555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 25, + ACTIONS(4776), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195118,11 +196584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67495] = 3, + [68877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195136,7 +196602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 28, + ACTIONS(4627), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195165,91 +196631,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67545] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5233), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5235), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5237), 2, - anon_sym_get, - anon_sym_set, - STATE(3916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [67609] = 6, - ACTIONS(4186), 1, - anon_sym_extends, + [68927] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4529), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4423), 11, + ACTIONS(4671), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 24, + ACTIONS(4673), 28, + 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_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195269,16 +196678,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67665] = 5, - ACTIONS(1721), 1, - sym__automatic_semicolon, + [68977] = 33, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5291), 1, + anon_sym_RBRACE, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1713), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1717), 13, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69087] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4460), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195292,12 +196773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1719), 25, + ACTIONS(4462), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195318,36 +196802,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67719] = 5, - ACTIONS(1803), 1, - sym__automatic_semicolon, + [69137] = 6, + ACTIONS(4342), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1799), 13, + ACTIONS(4654), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4651), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4643), 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(1801), 25, + ACTIONS(4645), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195367,11 +196852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67773] = 3, + [69193] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4624), 13, + ACTIONS(4512), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195385,7 +196870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 28, + ACTIONS(4514), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195414,11 +196899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67823] = 3, + [69243] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4679), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195432,7 +196917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 28, + ACTIONS(4681), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195461,11 +196946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67873] = 3, + [69293] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(4625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195479,7 +196964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 28, + ACTIONS(4627), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195508,24 +196993,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67923] = 15, + [69343] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5139), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5293), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5295), 2, + anon_sym_get, + anon_sym_set, + STATE(3830), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [69407] = 15, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(5131), 1, anon_sym_RBRACE, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -195536,11 +197075,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -195567,16 +197106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67997] = 5, - ACTIONS(1735), 1, - sym__automatic_semicolon, + [69481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1727), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1731), 13, + ACTIONS(4600), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195590,12 +197124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 25, + ACTIONS(4602), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195616,7 +197153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68051] = 16, + [69531] = 16, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(1505), 1, @@ -195625,17 +197162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2316), 1, anon_sym_async, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(5131), 1, anon_sym_RBRACE, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -195646,11 +197183,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -195676,28 +197213,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68127] = 9, - ACTIONS(3752), 1, + [69607] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3800), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5129), 1, + STATE(4663), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1938), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -195705,7 +197242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -195729,28 +197266,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68189] = 9, - ACTIONS(3752), 1, + [69669] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3800), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5129), 1, + STATE(4663), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, + ACTIONS(1940), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -195758,7 +197295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -195782,246 +197319,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68251] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4681), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4683), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [68301] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4423), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4425), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [69731] = 15, + ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(722), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 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, - [68351] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1877), 13, + ACTIONS(5022), 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(1879), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [68401] = 3, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4443), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [68451] = 4, - ACTIONS(5207), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4937), 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_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4939), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [68503] = 7, - ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(2314), 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, + [69805] = 7, + ACTIONS(1659), 1, anon_sym_EQ, - ACTIONS(4066), 1, + ACTIONS(4138), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -196029,11 +197389,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2326), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4069), 3, + ACTIONS(4141), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1663), 10, + ACTIONS(1657), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196044,7 +197404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 24, + ACTIONS(1661), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196069,85 +197429,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68561] = 7, - ACTIONS(4104), 1, + [69863] = 7, + ACTIONS(4262), 1, anon_sym_EQ, - ACTIONS(4108), 1, + ACTIONS(4266), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 2, + ACTIONS(4272), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4111), 3, + ACTIONS(4269), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4102), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 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, - [68619] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4565), 13, + ACTIONS(4260), 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(4567), 28, + ACTIONS(4264), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196167,28 +197480,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68669] = 9, - ACTIONS(3752), 1, + [69921] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3867), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1938), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -196196,7 +197509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196220,28 +197533,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68731] = 9, - ACTIONS(3752), 1, + [69983] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3867), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, + ACTIONS(1940), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -196249,7 +197562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196273,75 +197586,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68793] = 7, - ACTIONS(5239), 1, + [70045] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, - ACTIONS(5242), 1, anon_sym_COLON, - ACTIONS(5244), 1, anon_sym_LT, - ACTIONS(5247), 1, anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 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(3439), 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68851] = 8, - ACTIONS(1665), 1, + ACTIONS(2314), 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, + [70121] = 8, + ACTIONS(1659), 1, anon_sym_EQ, - ACTIONS(4066), 1, + ACTIONS(4138), 1, anon_sym_LBRACK, - ACTIONS(4946), 1, + ACTIONS(4899), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, + ACTIONS(4141), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(2326), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(1663), 11, + ACTIONS(1657), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196353,7 +197675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 22, + ACTIONS(1661), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -196376,24 +197698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68911] = 8, - ACTIONS(4104), 1, + [70181] = 8, + ACTIONS(4262), 1, anon_sym_EQ, - ACTIONS(4108), 1, + ACTIONS(4266), 1, anon_sym_LBRACK, - ACTIONS(4933), 1, + ACTIONS(5009), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 2, + ACTIONS(4269), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4114), 3, + ACTIONS(4272), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4102), 11, + ACTIONS(4260), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196405,7 +197727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, + ACTIONS(4264), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -196428,28 +197750,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68971] = 9, - ACTIONS(3752), 1, + [70241] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1938), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -196457,7 +197779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196481,28 +197803,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69033] = 9, - ACTIONS(3752), 1, + [70303] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, + ACTIONS(1940), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -196510,7 +197832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196534,28 +197856,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69095] = 9, - ACTIONS(3752), 1, + [70365] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3879), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1938), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -196563,7 +197885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196587,28 +197909,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69157] = 9, - ACTIONS(3752), 1, + [70427] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3879), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, + ACTIONS(1940), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -196616,7 +197938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196640,28 +197962,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69219] = 9, - ACTIONS(3752), 1, + [70489] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3798), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1938), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -196669,7 +197991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196693,28 +198015,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69281] = 9, - ACTIONS(3752), 1, + [70551] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3798), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, + ACTIONS(1940), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -196722,7 +198044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196746,11 +198068,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69343] = 3, + [70613] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + ACTIONS(5297), 1, + anon_sym_RBRACK, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + STATE(5179), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70723] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5299), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5301), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5303), 2, + anon_sym_get, + anon_sym_set, + STATE(3852), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 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, + [70787] = 5, + ACTIONS(1803), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4569), 13, + ACTIONS(1795), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196764,15 +198222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 28, - sym__automatic_semicolon, + ACTIONS(1801), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196793,242 +198248,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69393] = 33, - ACTIONS(3938), 1, + [70841] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5249), 1, - anon_sym_RBRACE, - STATE(1533), 1, + ACTIONS(5305), 1, + anon_sym_RBRACK, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, + STATE(5049), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69503] = 33, - ACTIONS(1928), 1, + [70951] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5307), 1, + anon_sym_STAR, + ACTIONS(5309), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5311), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5313), 2, + anon_sym_get, + anon_sym_set, + STATE(3142), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3938), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5251), 1, - anon_sym_RBRACK, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - STATE(5161), 1, - aux_sym_array_repeat1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 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, + [71017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4572), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4574), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69613] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71067] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(5253), 1, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5315), 1, anon_sym_RBRACK, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(4619), 1, - aux_sym_array_repeat1, - STATE(5072), 1, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69723] = 3, + [71177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 13, + ACTIONS(4687), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197042,7 +198522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 28, + ACTIONS(4689), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197071,88 +198551,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69773] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5255), 1, - anon_sym_RBRACE, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + [71227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4729), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4731), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69883] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71277] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4632), 13, + ACTIONS(4733), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197166,7 +198616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4634), 28, + ACTIONS(4735), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197195,190 +198645,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69933] = 31, - ACTIONS(4418), 1, + [71327] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4455), 3, + ACTIONS(4685), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70039] = 31, - ACTIONS(4418), 1, + [71433] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4501), 3, + ACTIONS(4750), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70145] = 9, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3577), 1, - anon_sym_COLON, - ACTIONS(4146), 1, - anon_sym_extends, - ACTIONS(4606), 1, + [71539] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5188), 1, + anon_sym_AMP_AMP, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5192), 1, + anon_sym_GT_GT, + ACTIONS(5196), 1, + anon_sym_AMP, + ACTIONS(5198), 1, + anon_sym_CARET, + ACTIONS(5200), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_PERCENT, + ACTIONS(5206), 1, + anon_sym_STAR_STAR, + ACTIONS(5208), 1, + anon_sym_LT, + ACTIONS(5216), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5218), 1, + sym__ternary_qmark, + STATE(1622), 1, + sym_arguments, + STATE(2493), 1, + sym_type_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5293), 2, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5186), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5194), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5202), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5214), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5210), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5353), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3435), 11, + anon_sym_implements, + [71645] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5040), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5042), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197398,163 +198919,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70207] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5297), 1, - anon_sym_RBRACK, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70317] = 31, - ACTIONS(4418), 1, + [71699] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4519), 3, + ACTIONS(4737), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70423] = 3, + [71805] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 13, + ACTIONS(4766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197568,7 +199012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4547), 28, + ACTIONS(4768), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197597,11 +199041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70473] = 3, + [71855] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4587), 13, + ACTIONS(4647), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197615,7 +199059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4589), 28, + ACTIONS(4649), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197644,242 +199088,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70523] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4598), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4600), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [70573] = 31, - ACTIONS(4418), 1, + [71905] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4577), 3, + ACTIONS(4468), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70679] = 31, - ACTIONS(4418), 1, + [72011] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4581), 3, + ACTIONS(4514), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70785] = 18, - ACTIONS(4418), 1, + [72117] = 18, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, + ACTIONS(4522), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -197887,7 +199284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(4520), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197903,109 +199300,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [70865] = 33, + [72197] = 33, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(5299), 1, + ACTIONS(5355), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(4826), 1, - aux_sym_array_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, + STATE(5138), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70975] = 13, - ACTIONS(4418), 1, + [72307] = 13, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5301), 1, + ACTIONS(5357), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198018,7 +199415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(4520), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198037,143 +199434,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [71045] = 33, - ACTIONS(3938), 1, + [72377] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5304), 1, + ACTIONS(5360), 1, anon_sym_RBRACK, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71155] = 25, - ACTIONS(4418), 1, + [72487] = 25, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4520), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198183,68 +199580,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [71249] = 26, - ACTIONS(4418), 1, + [72581] = 26, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4520), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198253,40 +199650,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [71345] = 16, - ACTIONS(4418), 1, + [72677] = 16, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5301), 1, + ACTIONS(5357), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 8, + ACTIONS(4522), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -198295,7 +199692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4520), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198313,62 +199710,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [71421] = 22, - ACTIONS(4418), 1, + [72753] = 22, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, + ACTIONS(4522), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4520), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198379,63 +199776,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [71509] = 23, - ACTIONS(4418), 1, + [72841] = 23, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, + ACTIONS(4522), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4520), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198446,65 +199843,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [71599] = 24, - ACTIONS(4418), 1, + [72931] = 24, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, + ACTIONS(4522), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4520), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198514,37 +199911,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [71691] = 15, - ACTIONS(4418), 1, + [73023] = 15, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5301), 1, + ACTIONS(5357), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 10, + ACTIONS(4522), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -198555,7 +199952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4520), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198573,73 +199970,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [71765] = 16, - ACTIONS(4418), 1, + [73097] = 16, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5301), 1, + ACTIONS(5357), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 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(4583), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [71841] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4636), 13, + ACTIONS(4522), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -198648,139 +200011,77 @@ 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(4638), 28, + ACTIONS(4520), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - [71891] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4983), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4985), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + [73173] = 20, + ACTIONS(4474), 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, - [71945] = 20, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, + ACTIONS(4522), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 12, + ACTIONS(4520), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198793,70 +200094,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [72029] = 27, - ACTIONS(4418), 1, + [73257] = 27, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, + ACTIONS(4520), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198864,856 +200165,687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [72127] = 33, - ACTIONS(3938), 1, + [73355] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5306), 1, + ACTIONS(5362), 1, anon_sym_RBRACE, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72237] = 31, - ACTIONS(4418), 1, + [73465] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4642), 3, + ACTIONS(4588), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72343] = 31, - ACTIONS(4418), 1, + [73571] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4648), 3, + ACTIONS(4590), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72449] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4685), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4687), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, + ACTIONS(5343), 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, - [72499] = 31, - ACTIONS(4418), 1, + [73677] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4716), 3, + ACTIONS(4526), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72605] = 31, - ACTIONS(4418), 1, + [73783] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4728), 3, + ACTIONS(4534), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72711] = 31, - ACTIONS(4418), 1, + [73889] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4732), 3, + ACTIONS(4560), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72817] = 31, - ACTIONS(4418), 1, + [73995] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4503), 3, + ACTIONS(4586), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72923] = 31, - ACTIONS(4418), 1, + [74101] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4505), 3, + ACTIONS(4611), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73029] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4689), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4691), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [73079] = 33, - ACTIONS(3938), 1, + [74207] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5308), 1, + ACTIONS(5364), 1, anon_sym_RBRACK, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73189] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5285), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73295] = 12, - ACTIONS(166), 1, + [74317] = 12, + ACTIONS(165), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1505), 1, anon_sym_DQUOTE, @@ -199726,25 +200858,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5031), 2, + ACTIONS(5086), 2, sym_number, sym_private_property_identifier, - ACTIONS(5312), 2, + ACTIONS(5368), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(5520), 3, + STATE(5314), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5891), 3, + STATE(5724), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(5957), 3, + STATE(5968), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5310), 23, + ACTIONS(5366), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199768,58 +200900,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [73363] = 3, + [74385] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(5321), 1, + anon_sym_AMP_AMP, + ACTIONS(5323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5325), 1, + anon_sym_GT_GT, + ACTIONS(5329), 1, + anon_sym_AMP, + ACTIONS(5331), 1, + anon_sym_CARET, + ACTIONS(5333), 1, + anon_sym_PIPE, + ACTIONS(5337), 1, + anon_sym_PERCENT, + ACTIONS(5339), 1, + anon_sym_STAR_STAR, + ACTIONS(5341), 1, + anon_sym_LT, + ACTIONS(5349), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5351), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5317), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5327), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1709), 28, + ACTIONS(5347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4566), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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_BQUOTE, + ACTIONS(5343), 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, - [73413] = 3, + [74491] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1745), 13, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199833,7 +200993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 28, + ACTIONS(1695), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199862,11 +201022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73463] = 3, + [74541] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 13, + ACTIONS(1789), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199880,7 +201040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 28, + ACTIONS(1791), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199909,11 +201069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73513] = 3, + [74591] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1693), 13, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199927,7 +201087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 28, + ACTIONS(1867), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199956,11 +201116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73563] = 3, + [74641] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 13, + ACTIONS(1819), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199974,7 +201134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4513), 28, + ACTIONS(1821), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200003,396 +201163,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73613] = 33, - ACTIONS(1928), 1, + [74691] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4713), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4715), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3938), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74741] = 33, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(5314), 1, - anon_sym_RPAREN, - STATE(1533), 1, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_COLON, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, - STATE(5209), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73723] = 33, - ACTIONS(3938), 1, + [74851] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5316), 1, - anon_sym_COLON, - STATE(1533), 1, + ACTIONS(5372), 1, + anon_sym_RPAREN, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73833] = 33, - ACTIONS(3938), 1, + [74961] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5318), 1, + ACTIONS(5374), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4877), 1, + aux_sym_array_repeat1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73943] = 33, - ACTIONS(3938), 1, + [75071] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5320), 1, + ACTIONS(5376), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74053] = 33, - ACTIONS(3938), 1, + [75181] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5322), 1, + ACTIONS(5378), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74163] = 3, + [75291] = 5, + ACTIONS(1869), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 13, + ACTIONS(1861), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200406,15 +201618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4642), 28, - sym__automatic_semicolon, + ACTIONS(1867), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200435,24 +201644,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74213] = 15, + [75345] = 15, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(724), 1, + ACTIONS(697), 1, anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - STATE(5129), 1, + STATE(4663), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -200463,11 +201672,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -200494,149 +201703,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74287] = 33, - ACTIONS(3938), 1, + [75419] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5324), 1, + ACTIONS(5380), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74397] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5326), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5328), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5330), 2, - anon_sym_get, - anon_sym_set, - STATE(3888), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + [75529] = 5, + ACTIONS(1841), 1, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [74461] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5332), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5334), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(1833), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200650,10 +201803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1839), 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, @@ -200674,95 +201829,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74515] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5336), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(4652), 1, - aux_sym_array_repeat1, - STATE(5072), 1, - sym_optional_chain, + [75583] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(5382), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5384), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(3441), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74625] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75637] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5338), 2, + ACTIONS(5386), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5340), 3, + ACTIONS(5388), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200776,7 +201903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -200800,18 +201927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74679] = 5, + [75691] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5338), 2, + ACTIONS(5386), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5340), 3, + ACTIONS(5388), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200825,7 +201952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -200849,10 +201976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74733] = 16, + [75745] = 16, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(724), 1, + ACTIONS(697), 1, anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, @@ -200860,15 +201987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2316), 1, anon_sym_async, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - STATE(5129), 1, + STATE(4663), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -200879,11 +202006,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -200909,18 +202036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74809] = 5, + [75821] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5338), 2, + ACTIONS(5386), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5340), 3, + ACTIONS(5388), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200934,7 +202061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -200958,106 +202085,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74863] = 33, + [75875] = 33, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(5342), 1, + ACTIONS(5390), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(4684), 1, - aux_sym_array_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, + STATE(5212), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74973] = 10, + [75985] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5392), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5394), 2, sym_number, sym_private_property_identifier, - ACTIONS(5348), 2, + ACTIONS(5396), 2, anon_sym_get, anon_sym_set, - STATE(3926), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -201089,31 +202216,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75037] = 11, - ACTIONS(1583), 1, + [76049] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5392), 1, anon_sym_STAR, - ACTIONS(5350), 1, + ACTIONS(5398), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5400), 2, sym_number, sym_private_property_identifier, - ACTIONS(5354), 2, + ACTIONS(5402), 2, anon_sym_get, anon_sym_set, - STATE(3026), 3, + STATE(3054), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -201144,185 +202271,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75103] = 33, + [76115] = 33, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(5356), 1, + ACTIONS(5404), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(4711), 1, + STATE(4661), 1, aux_sym_array_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75213] = 33, + [76225] = 33, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(5358), 1, + ACTIONS(5406), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(4729), 1, + STATE(4696), 1, aux_sym_array_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75323] = 11, - ACTIONS(1583), 1, + [76335] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5139), 1, anon_sym_STAR, - ACTIONS(5084), 1, + ACTIONS(5141), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5147), 2, anon_sym_get, anon_sym_set, - ACTIONS(5360), 2, + ACTIONS(5408), 2, sym_number, sym_private_property_identifier, - STATE(3032), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -201353,206 +202480,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75389] = 12, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(5362), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 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(4676), 19, - 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_BQUOTE, - anon_sym_satisfies, - [75457] = 31, - ACTIONS(3938), 1, + [76401] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5410), 1, + anon_sym_RPAREN, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(4720), 1, + aux_sym_array_repeat1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5012), 3, + [76511] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [75563] = 15, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5365), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + ACTIONS(5412), 1, + anon_sym_RPAREN, + STATE(1522), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1622), 1, sym_arguments, - STATE(4753), 1, + STATE(4934), 1, + aux_sym_array_repeat1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4464), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 17, - 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, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [75637] = 5, - ACTIONS(1711), 1, + [76621] = 5, + ACTIONS(1851), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 2, + ACTIONS(1843), 2, anon_sym_else, anon_sym_while, - ACTIONS(1707), 13, + ACTIONS(1847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201566,7 +202657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1709), 25, + ACTIONS(1849), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -201592,31 +202683,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75691] = 11, - ACTIONS(1583), 1, + [76675] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5233), 1, + ACTIONS(5139), 1, anon_sym_STAR, - ACTIONS(5368), 1, + ACTIONS(5141), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5370), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5372), 2, + ACTIONS(5147), 2, anon_sym_get, anon_sym_set, - STATE(3027), 3, + ACTIONS(5414), 2, + sym_number, + sym_private_property_identifier, + STATE(3061), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -201647,27 +202738,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75757] = 11, - ACTIONS(4418), 1, + [76741] = 12, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(5374), 1, + ACTIONS(5416), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4636), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201680,7 +202774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 21, + ACTIONS(4638), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201698,88 +202792,220 @@ 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, - [75823] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, + [76809] = 15, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, - anon_sym_STAR, - ACTIONS(5084), 1, - anon_sym_async, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(5419), 1, + anon_sym_LT, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5377), 2, - sym_number, - sym_private_property_identifier, - STATE(3009), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4739), 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(4741), 17, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + 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, + anon_sym_BQUOTE, + [76883] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(5321), 1, + anon_sym_AMP_AMP, + ACTIONS(5323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5325), 1, + anon_sym_GT_GT, + ACTIONS(5329), 1, + anon_sym_AMP, + ACTIONS(5331), 1, + anon_sym_CARET, + ACTIONS(5333), 1, + anon_sym_PIPE, + ACTIONS(5337), 1, + anon_sym_PERCENT, + ACTIONS(5339), 1, + anon_sym_STAR_STAR, + ACTIONS(5341), 1, + anon_sym_LT, + ACTIONS(5349), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5351), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5317), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5319), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5327), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5345), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4760), 3, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76989] = 11, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(5422), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 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, - [75889] = 10, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4629), 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(4631), 21, + 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_BQUOTE, + anon_sym_satisfies, + [77055] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5153), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 2, + ACTIONS(5425), 2, sym_number, sym_private_property_identifier, - ACTIONS(5381), 2, + ACTIONS(5427), 2, anon_sym_get, anon_sym_set, - STATE(3857), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -201811,31 +203037,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75953] = 11, - ACTIONS(1583), 1, + [77119] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5153), 1, anon_sym_STAR, - ACTIONS(5098), 1, + ACTIONS(5155), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5100), 2, + ACTIONS(5157), 2, sym_number, sym_private_property_identifier, - ACTIONS(5104), 2, + ACTIONS(5161), 2, anon_sym_get, anon_sym_set, - STATE(3069), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -201866,16 +203092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76019] = 5, - ACTIONS(1749), 1, - sym__automatic_semicolon, + [77185] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1745), 13, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201889,12 +203110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 25, + ACTIONS(4623), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201915,34 +203139,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76073] = 3, + [77235] = 8, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(3546), 1, + anon_sym_COLON, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 13, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4276), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3437), 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(4575), 28, - sym__automatic_semicolon, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -201962,11 +203191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76123] = 3, + [77295] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4579), 13, + ACTIONS(4770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201980,7 +203209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4581), 28, + ACTIONS(4772), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202009,81 +203238,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76173] = 8, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3577), 1, - anon_sym_COLON, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4146), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 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(3439), 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, - [76233] = 10, + [77345] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5113), 1, + ACTIONS(5170), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5383), 2, + ACTIONS(5429), 2, sym_number, sym_private_property_identifier, - ACTIONS(5385), 2, + ACTIONS(5431), 2, anon_sym_get, anon_sym_set, - STATE(3868), 3, + STATE(3921), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -202115,11 +203292,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76297] = 3, + [77409] = 33, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5433), 1, + anon_sym_RPAREN, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4515), 13, + ACTIONS(4721), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202133,7 +203387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4517), 28, + ACTIONS(4723), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202162,121 +203416,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76347] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5387), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76457] = 10, - ACTIONS(1505), 1, + [77569] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5389), 1, + ACTIONS(5435), 1, anon_sym_STAR, + ACTIONS(5437), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5439), 2, sym_number, sym_private_property_identifier, - ACTIONS(5393), 2, + ACTIONS(5441), 2, anon_sym_get, anon_sym_set, - STATE(3813), 3, + STATE(3039), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -202293,183 +203471,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76521] = 33, - ACTIONS(3938), 1, + [77635] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5395), 1, + ACTIONS(5443), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76631] = 33, - ACTIONS(3938), 1, + [77745] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5397), 1, + ACTIONS(5445), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76741] = 10, + [77855] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5399), 1, + ACTIONS(5307), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 2, + ACTIONS(5447), 2, sym_number, sym_private_property_identifier, - ACTIONS(5403), 2, + ACTIONS(5449), 2, anon_sym_get, anon_sym_set, - STATE(3869), 3, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -202501,106 +203679,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76805] = 33, - ACTIONS(3938), 1, + [77919] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5405), 1, + ACTIONS(5451), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76915] = 10, + [78029] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5407), 1, + ACTIONS(5453), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5455), 2, sym_number, sym_private_property_identifier, - ACTIONS(5411), 2, + ACTIONS(5457), 2, anon_sym_get, anon_sym_set, - STATE(3908), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -202632,58 +203810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76979] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4644), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4646), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [77029] = 3, + [78093] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 13, + ACTIONS(4536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202697,7 +203828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4652), 28, + ACTIONS(4538), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202726,11 +203857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77079] = 3, + [78143] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 13, + ACTIONS(4540), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202744,7 +203875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4706), 28, + ACTIONS(4542), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202773,11 +203904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77129] = 3, + [78193] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4607), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202791,7 +203922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 28, + ACTIONS(4609), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202820,38 +203951,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77179] = 10, + [78243] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5459), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, + ACTIONS(5461), 2, sym_number, sym_private_property_identifier, - ACTIONS(5415), 2, + ACTIONS(5463), 2, anon_sym_get, anon_sym_set, - STATE(3864), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 21, anon_sym_export, anon_sym_type, @@ -202874,29 +204005,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77243] = 10, + [78307] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, + ACTIONS(3996), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4738), 2, + ACTIONS(4805), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -202928,31 +204059,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77307] = 11, - ACTIONS(1583), 1, + [78371] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5113), 1, + ACTIONS(5170), 1, anon_sym_STAR, - ACTIONS(5115), 1, + ACTIONS(5172), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 2, + ACTIONS(5174), 2, sym_number, sym_private_property_identifier, - ACTIONS(5121), 2, + ACTIONS(5178), 2, anon_sym_get, anon_sym_set, - STATE(3075), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -202983,420 +204114,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77373] = 31, - ACTIONS(3938), 1, + [78437] = 7, + ACTIONS(5465), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(5468), 1, + anon_sym_COLON, + ACTIONS(5470), 1, + anon_sym_LT, + ACTIONS(5473), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 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(4748), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78495] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4455), 3, + ACTIONS(4685), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77479] = 31, - ACTIONS(3938), 1, + [78601] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4501), 3, + ACTIONS(4750), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77585] = 31, - ACTIONS(3938), 1, + [78707] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4519), 3, + ACTIONS(4737), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77691] = 31, - ACTIONS(3938), 1, + [78813] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4577), 3, + ACTIONS(4468), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77797] = 31, - ACTIONS(3938), 1, + [78919] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4581), 3, + ACTIONS(4514), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77903] = 18, - ACTIONS(3938), 1, + [79025] = 18, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, + ACTIONS(4522), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -203404,7 +204586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(4520), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203420,32 +204602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [77983] = 13, - ACTIONS(3938), 1, + [79105] = 13, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5511), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203458,7 +204640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(4520), 18, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203477,66 +204659,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78053] = 25, - ACTIONS(3938), 1, + [79175] = 25, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4520), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203546,68 +204728,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78147] = 26, - ACTIONS(3938), 1, + [79269] = 26, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4520), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203616,40 +204798,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78243] = 16, - ACTIONS(3938), 1, + [79365] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5511), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 8, + ACTIONS(4522), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -203658,7 +204840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4520), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203676,62 +204858,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78319] = 22, - ACTIONS(3938), 1, + [79441] = 22, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, + ACTIONS(4522), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4520), 10, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203742,63 +204924,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78407] = 23, - ACTIONS(3938), 1, + [79529] = 23, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4522), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4520), 10, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203809,65 +204991,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78497] = 24, - ACTIONS(3938), 1, + [79619] = 24, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4522), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4520), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203877,37 +205059,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78589] = 15, - ACTIONS(3938), 1, + [79711] = 15, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5511), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 10, + ACTIONS(4522), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -203918,7 +205100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4520), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -203936,38 +205118,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78663] = 16, - ACTIONS(3938), 1, + [79785] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(5511), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4522), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -203979,7 +205161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(4520), 16, sym__ternary_qmark, anon_sym_RBRACE, anon_sym_COLON, @@ -203996,58 +205178,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [78739] = 20, - ACTIONS(3938), 1, + [79861] = 20, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, + ACTIONS(4522), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 12, + ACTIONS(4520), 12, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -204060,70 +205242,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78823] = 27, - ACTIONS(3938), 1, + [79945] = 27, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, + ACTIONS(4520), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -204131,724 +205313,611 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78921] = 31, - ACTIONS(3938), 1, + [80043] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4642), 3, + ACTIONS(4588), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79027] = 31, - ACTIONS(3938), 1, + [80149] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4648), 3, + ACTIONS(4590), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79133] = 31, - ACTIONS(3938), 1, + [80255] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4716), 3, + ACTIONS(4526), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79239] = 31, - ACTIONS(3938), 1, + [80361] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4728), 3, + ACTIONS(4534), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79345] = 31, - ACTIONS(3938), 1, + [80467] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4732), 3, + ACTIONS(4560), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79451] = 31, - ACTIONS(3938), 1, + [80573] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4503), 3, + ACTIONS(4586), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79557] = 31, - ACTIONS(3938), 1, + [80679] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4505), 3, + ACTIONS(4611), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79663] = 31, - ACTIONS(3938), 1, + [80785] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4566), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79769] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [79843] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5191), 1, - anon_sym_STAR, + [80891] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5456), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5458), 2, - anon_sym_get, - anon_sym_set, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 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, - [79907] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4722), 13, + ACTIONS(4596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204862,7 +205931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 28, + ACTIONS(4598), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204891,11 +205960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79957] = 3, + [80941] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204909,7 +205978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 28, + ACTIONS(3441), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204938,11 +206007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80007] = 3, + [80991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 13, + ACTIONS(1779), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204956,7 +206025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 28, + ACTIONS(1781), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204985,11 +206054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80057] = 3, + [81041] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 13, + ACTIONS(1727), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205003,7 +206072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1819), 28, + ACTIONS(1729), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205032,11 +206101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80107] = 3, + [81091] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(1737), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205050,7 +206119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 28, + ACTIONS(1739), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205079,11 +206148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80157] = 3, + [81141] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 13, + ACTIONS(1751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205097,7 +206166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 28, + ACTIONS(1753), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205126,11 +206195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80207] = 3, + [81191] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1769), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205144,7 +206213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 28, + ACTIONS(1771), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205173,107 +206242,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80257] = 33, - ACTIONS(3938), 1, + [81241] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5460), 1, + ACTIONS(5514), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80367] = 12, - ACTIONS(3938), 1, + [81351] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5462), 1, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_PERCENT, + ACTIONS(4494), 1, + anon_sym_STAR_STAR, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5516), 1, + anon_sym_RPAREN, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81461] = 4, + ACTIONS(3534), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205284,13 +206413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 19, + ACTIONS(3441), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + 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, @@ -205304,39 +206440,85 @@ 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, - [80435] = 15, - ACTIONS(3938), 1, + [81513] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5163), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5165), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5465), 1, + [81567] = 12, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5518), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4636), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -205347,8 +206529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 17, + ACTIONS(4638), 19, sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, anon_sym_COLON, anon_sym_AMP_AMP, @@ -205365,104 +206548,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [80509] = 31, - ACTIONS(3938), 1, + anon_sym_satisfies, + [81635] = 15, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5521), 1, anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4708), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80615] = 11, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5468), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4414), 12, + ACTIONS(4739), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -205473,9 +206590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 21, + ACTIONS(4741), 17, sym__ternary_qmark, - anon_sym_as, anon_sym_RBRACE, anon_sym_COLON, anon_sym_AMP_AMP, @@ -205491,94 +206607,103 @@ 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, - [80681] = 33, - ACTIONS(3938), 1, + [81709] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5471), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4760), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80791] = 4, - ACTIONS(3503), 1, - anon_sym_EQ, + [81815] = 11, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5524), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4629), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205589,20 +206714,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(3439), 27, - sym__automatic_semicolon, + ACTIONS(4631), 21, 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_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -205620,18 +206738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80843] = 5, + [81881] = 5, + ACTIONS(1823), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5106), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5108), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(1815), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1819), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205645,10 +206761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1821), 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, @@ -205669,279 +206787,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80897] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [80973] = 33, - ACTIONS(3938), 1, + [81935] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5473), 1, + ACTIONS(5527), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81083] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4658), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4660), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, + ACTIONS(4498), 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, - [81133] = 33, - ACTIONS(3938), 1, + [82045] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5475), 1, + ACTIONS(5529), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81243] = 5, + [82155] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5477), 2, + ACTIONS(5531), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5479), 3, + ACTIONS(5533), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205955,7 +206966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -205979,29 +206990,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81297] = 10, + [82209] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5481), 1, + ACTIONS(5535), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5537), 2, sym_number, sym_private_property_identifier, - ACTIONS(5485), 2, + ACTIONS(5539), 2, anon_sym_get, anon_sym_set, - STATE(3902), 3, + STATE(3946), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -206033,18 +207044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81361] = 5, + [82273] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5487), 2, + ACTIONS(5541), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5489), 3, + ACTIONS(5543), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206058,7 +207069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -206082,31 +207093,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81415] = 11, - ACTIONS(1583), 1, + [82327] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5481), 1, + ACTIONS(5535), 1, anon_sym_STAR, - ACTIONS(5491), 1, + ACTIONS(5545), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5493), 2, + ACTIONS(5547), 2, sym_number, sym_private_property_identifier, - ACTIONS(5495), 2, + ACTIONS(5549), 2, anon_sym_get, anon_sym_set, - STATE(3020), 3, + STATE(3064), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -206137,31 +207148,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81481] = 11, - ACTIONS(1583), 1, + [82393] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5326), 1, + ACTIONS(5271), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5551), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5499), 2, + ACTIONS(5553), 2, sym_number, sym_private_property_identifier, - ACTIONS(5501), 2, + ACTIONS(5555), 2, anon_sym_get, anon_sym_set, - STATE(3040), 3, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -206192,31 +207203,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81547] = 11, - ACTIONS(1583), 1, + [82459] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5326), 1, + ACTIONS(5271), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5551), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5501), 2, + ACTIONS(5555), 2, anon_sym_get, anon_sym_set, - ACTIONS(5503), 2, + ACTIONS(5557), 2, sym_number, sym_private_property_identifier, - STATE(3011), 3, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -206247,31 +207258,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81613] = 11, - ACTIONS(1583), 1, + [82525] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5326), 1, + ACTIONS(5271), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5551), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5501), 2, + ACTIONS(5555), 2, anon_sym_get, anon_sym_set, - ACTIONS(5505), 2, + ACTIONS(5559), 2, sym_number, sym_private_property_identifier, - STATE(3005), 3, + STATE(3025), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -206302,29 +207313,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81679] = 10, + [82591] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5507), 1, + ACTIONS(5561), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5509), 2, + ACTIONS(5563), 2, sym_number, sym_private_property_identifier, - ACTIONS(5511), 2, + ACTIONS(5565), 2, anon_sym_get, anon_sym_set, - STATE(3826), 3, + STATE(3827), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206356,31 +207367,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81743] = 11, - ACTIONS(1583), 1, + [82655] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5507), 1, + ACTIONS(5561), 1, anon_sym_STAR, - ACTIONS(5513), 1, + ACTIONS(5567), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5515), 2, + ACTIONS(5569), 2, sym_number, sym_private_property_identifier, - ACTIONS(5517), 2, + ACTIONS(5571), 2, anon_sym_get, anon_sym_set, - STATE(3044), 3, + STATE(3105), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206411,360 +207422,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81809] = 33, - ACTIONS(3938), 1, + [82721] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5519), 1, + ACTIONS(5573), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81919] = 33, - ACTIONS(3938), 1, + [82831] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5521), 1, + ACTIONS(5575), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82029] = 5, - ACTIONS(1821), 1, - sym__automatic_semicolon, + [82941] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5435), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1813), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1817), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1819), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5577), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5579), 2, + anon_sym_get, + anon_sym_set, + STATE(3842), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + 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, - [82083] = 33, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [83005] = 33, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(5523), 1, + ACTIONS(5581), 1, anon_sym_RBRACK, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, - STATE(5161), 1, + STATE(5179), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82193] = 5, - ACTIONS(1831), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1823), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1827), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1829), 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, + ACTIONS(4498), 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, - [82247] = 11, - ACTIONS(1583), 1, + [83115] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5399), 1, + ACTIONS(5299), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5583), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5527), 2, + ACTIONS(5585), 2, sym_number, sym_private_property_identifier, - ACTIONS(5529), 2, + ACTIONS(5587), 2, anon_sym_get, anon_sym_set, - STATE(3048), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206795,11 +207762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82313] = 3, + [83181] = 5, + ACTIONS(1783), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(1775), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1779), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206813,15 +207785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 28, - sym__automatic_semicolon, + ACTIONS(1781), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -206842,135 +207811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82363] = 21, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(1932), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5535), 1, - anon_sym_RBRACE, - ACTIONS(5537), 1, - anon_sym_async, - ACTIONS(5541), 1, - anon_sym_static, - ACTIONS(5543), 1, - anon_sym_readonly, - ACTIONS(5549), 1, - anon_sym_override, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2743), 1, - sym_override_modifier, - STATE(5101), 1, - aux_sym_object_repeat1, + [83235] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5539), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5545), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5547), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3663), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5100), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5531), 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, - [82449] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(5040), 2, anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 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, - [82523] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4666), 13, + ACTIONS(5124), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206984,15 +207836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4668), 28, - sym__automatic_semicolon, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207013,77 +207860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82573] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [82649] = 4, + [83289] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1755), 13, + ACTIONS(4592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207097,10 +207878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 23, + ACTIONS(4594), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207121,91 +207907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82701] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5012), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [82807] = 5, - ACTIONS(1857), 1, - sym__automatic_semicolon, + [83339] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1853), 13, + ACTIONS(4657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207219,12 +207925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 25, + ACTIONS(4659), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207245,38 +207954,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82861] = 7, - ACTIONS(4144), 1, - anon_sym_QMARK, + [83389] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4606), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3435), 11, + ACTIONS(4697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4699), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207296,161 +208001,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82919] = 5, - ACTIONS(1867), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1859), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1863), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1865), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [83439] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4663), 1, anon_sym_LBRACK, + ACTIONS(4665), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4854), 1, anon_sym_AMP_AMP, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, anon_sym_CARET, + ACTIONS(4866), 1, + anon_sym_PIPE, + ACTIONS(4870), 1, anon_sym_PERCENT, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4886), 1, anon_sym_satisfies, - [82973] = 3, + ACTIONS(4888), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4846), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4852), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 28, + ACTIONS(4880), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + ACTIONS(4876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83545] = 33, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4480), 1, + anon_sym_GT_GT, + ACTIONS(4484), 1, + anon_sym_AMP, + ACTIONS(4486), 1, anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, anon_sym_PERCENT, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4496), 1, + anon_sym_LT, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4508), 1, anon_sym_satisfies, - [83023] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5551), 1, - anon_sym_STAR, + ACTIONS(4510), 1, + sym__ternary_qmark, + ACTIONS(4892), 1, + anon_sym_COMMA, + ACTIONS(5589), 1, + anon_sym_RBRACK, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(3720), 1, + aux_sym_sequence_expression_repeat1, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5553), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5555), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [83087] = 3, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83655] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4643), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207464,7 +208171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 28, + ACTIONS(4645), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207493,37 +208200,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83137] = 7, - ACTIONS(3550), 1, - anon_sym_EQ, - ACTIONS(4146), 1, - anon_sym_extends, + [83705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(1763), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207543,18 +208247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [83195] = 4, + [83755] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1707), 13, + ACTIONS(4717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207568,10 +208265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1709), 23, + ACTIONS(4719), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207592,35 +208294,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83247] = 4, + [83805] = 7, + ACTIONS(3584), 1, + anon_sym_EQ, + ACTIONS(4276), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 5, - sym__automatic_semicolon, + ACTIONS(4691), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1745), 13, + anon_sym_LBRACK, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(1747), 23, + ACTIONS(3441), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207640,24 +208344,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83299] = 8, - ACTIONS(3523), 1, + anon_sym_implements, + [83863] = 9, + ACTIONS(3439), 1, anon_sym_EQ, - ACTIONS(4144), 1, - anon_sym_QMARK, - ACTIONS(4606), 1, + ACTIONS(3546), 1, + anon_sym_COLON, + ACTIONS(4276), 1, + anon_sym_extends, + ACTIONS(4691), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, + ACTIONS(4694), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4146), 3, + ACTIONS(5591), 2, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(3437), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207669,7 +208375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -207692,18 +208398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83359] = 5, - ACTIONS(5557), 1, - sym__automatic_semicolon, + [83925] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1761), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1765), 13, + ACTIONS(4725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207717,10 +208416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 23, + ACTIONS(4727), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207741,89 +208445,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83413] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [83975] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5559), 1, - anon_sym_SEMI, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + ACTIONS(4828), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83523] = 3, + ACTIONS(5595), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5597), 2, + anon_sym_get, + anon_sym_set, + STATE(3934), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [84039] = 4, + ACTIONS(5259), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 13, + ACTIONS(4982), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -207836,15 +208520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4984), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207860,45 +208544,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [83573] = 7, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, + [84091] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + 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(3439), 22, + ACTIONS(4454), 28, + 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_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -207916,16 +208594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83631] = 5, - ACTIONS(1759), 1, - sym__automatic_semicolon, + [84141] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1755), 13, + ACTIONS(4752), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207939,12 +208612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 25, + ACTIONS(4754), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207965,36 +208641,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83685] = 5, + [84191] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4132), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(4568), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(4570), 28, + 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_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208014,136 +208688,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83739] = 7, - ACTIONS(4184), 1, - anon_sym_QMARK, + [84241] = 21, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(1932), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(5603), 1, + anon_sym_RBRACE, + ACTIONS(5605), 1, + anon_sym_async, + ACTIONS(5609), 1, + anon_sym_static, + ACTIONS(5611), 1, + anon_sym_readonly, + ACTIONS(5617), 1, + anon_sym_override, + STATE(2748), 1, + sym_accessibility_modifier, + STATE(2757), 1, + sym_override_modifier, + STATE(5230), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4529), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4423), 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(4425), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5607), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5613), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5615), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3685), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5171), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5599), 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, + [84327] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4854), 1, anon_sym_AMP_AMP, + ACTIONS(4856), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4858), 1, + anon_sym_GT_GT, + ACTIONS(4862), 1, + anon_sym_AMP, + ACTIONS(4864), 1, anon_sym_CARET, + ACTIONS(4866), 1, + anon_sym_PIPE, + ACTIONS(4870), 1, anon_sym_PERCENT, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4874), 1, + anon_sym_LT, + ACTIONS(4882), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4886), 1, anon_sym_satisfies, - [83797] = 7, - ACTIONS(3558), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, + ACTIONS(4888), 1, + sym__ternary_qmark, + STATE(1987), 1, + sym_type_arguments, + STATE(2134), 1, + sym_arguments, + STATE(4893), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4846), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4852), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4868), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 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(4880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83855] = 3, + ACTIONS(4876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5069), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [84433] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [84507] = 7, + ACTIONS(3580), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(4276), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(4604), 28, - sym__automatic_semicolon, + ACTIONS(3441), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208163,31 +208938,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83905] = 11, - ACTIONS(1583), 1, + [84565] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5389), 1, + ACTIONS(5619), 1, anon_sym_STAR, - ACTIONS(5561), 1, + ACTIONS(5621), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5563), 2, + ACTIONS(5623), 2, sym_number, sym_private_property_identifier, - ACTIONS(5565), 2, + ACTIONS(5625), 2, anon_sym_get, anon_sym_set, - STATE(3110), 3, + STATE(3134), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -208218,86 +208993,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83971] = 31, - ACTIONS(3938), 1, + [84631] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5567), 3, + ACTIONS(5627), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [84077] = 3, + [84737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 13, + ACTIONS(4746), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208311,7 +209086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4527), 28, + ACTIONS(4748), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208340,11 +209115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84127] = 3, + [84787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(1837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208358,7 +209133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1719), 28, + ACTIONS(1839), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208387,11 +209162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84177] = 3, + [84837] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 13, + ACTIONS(1847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208405,7 +209180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 28, + ACTIONS(1849), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208434,783 +209209,783 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84227] = 33, - ACTIONS(3938), 1, + [84887] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5569), 1, + ACTIONS(5629), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84337] = 33, - ACTIONS(3938), 1, + [84997] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5571), 1, + ACTIONS(5631), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84447] = 33, - ACTIONS(3938), 1, + [85107] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5573), 1, - anon_sym_SEMI, - STATE(1533), 1, + ACTIONS(5633), 1, + anon_sym_RPAREN, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84557] = 33, - ACTIONS(3938), 1, + [85217] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5575), 1, + ACTIONS(5635), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84667] = 33, - ACTIONS(3938), 1, + [85327] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5577), 1, + ACTIONS(5637), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84777] = 33, - ACTIONS(3938), 1, + [85437] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5579), 1, + ACTIONS(5639), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84887] = 33, - ACTIONS(3938), 1, + [85547] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5581), 1, + ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84997] = 33, - ACTIONS(3938), 1, + [85657] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5583), 1, + ACTIONS(5643), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85107] = 33, - ACTIONS(3938), 1, + [85767] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5585), 1, + ACTIONS(5645), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85217] = 33, - ACTIONS(3938), 1, + [85877] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5587), 1, + ACTIONS(5647), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85327] = 4, - ACTIONS(3511), 1, + [85987] = 4, + ACTIONS(3517), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209224,7 +209999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 27, + ACTIONS(3441), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209252,938 +210027,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85379] = 33, - ACTIONS(3938), 1, + [86039] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5589), 1, + ACTIONS(5649), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85489] = 33, - ACTIONS(3938), 1, + [86149] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5591), 1, + ACTIONS(5651), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85599] = 33, - ACTIONS(3938), 1, + [86259] = 33, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4510), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4892), 1, anon_sym_COMMA, - ACTIONS(5593), 1, + ACTIONS(5653), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(3558), 1, + STATE(3720), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85709] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1689), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1693), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 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, - [85761] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1795), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1799), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1801), 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, - [85813] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5595), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5597), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, - [85867] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5599), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5601), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5603), 2, - anon_sym_get, - anon_sym_set, - STATE(3785), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [85931] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5285), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4708), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86037] = 4, - ACTIONS(3550), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [86088] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86139] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86208] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86277] = 7, - ACTIONS(4022), 1, - anon_sym_QMARK, - ACTIONS(4024), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4618), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3435), 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(3439), 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, - [86334] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4923), 2, - sym_number, - sym_private_property_identifier, - STATE(3437), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86393] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5605), 2, - sym_number, - sym_private_property_identifier, - STATE(3775), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86452] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, - sym_number, - sym_private_property_identifier, - STATE(3864), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86511] = 8, + ACTIONS(4464), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4472), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4482), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4502), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4498), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86369] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, + ACTIONS(5655), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5657), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + ACTIONS(5659), 2, + anon_sym_get, + anon_sym_set, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210193,7 +210290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -210203,8 +210300,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, @@ -210217,14 +210312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86570] = 4, + [86433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4082), 13, + ACTIONS(4617), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210238,12 +210330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 25, + ACTIONS(4619), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -210264,24 +210359,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86621] = 8, + [86483] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5213), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3827), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5661), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5663), 2, + anon_sym_get, + anon_sym_set, + STATE(3811), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -210291,7 +210451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -210301,8 +210461,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, @@ -210315,14 +210473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86680] = 4, + [86623] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 2, + ACTIONS(4102), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4082), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210336,7 +210494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 25, + ACTIONS(4098), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -210362,68 +210520,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86731] = 6, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4933), 1, - anon_sym_of, - ACTIONS(5607), 1, - anon_sym_in, + [86674] = 18, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4102), 12, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4522), 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(4106), 25, + ACTIONS(4520), 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_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, - [86786] = 6, - ACTIONS(4614), 1, - anon_sym_EQ, - ACTIONS(4960), 1, - anon_sym_of, - ACTIONS(5610), 1, - anon_sym_in, + [86753] = 13, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4612), 12, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 12, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -210431,752 +210617,1306 @@ 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(4616), 25, + ACTIONS(4520), 17, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86841] = 6, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4946), 1, - anon_sym_of, - ACTIONS(5613), 1, - anon_sym_in, + [86822] = 25, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1663), 12, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4520), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86915] = 26, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(5667), 1, anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 25, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4520), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87010] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4522), 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(4520), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86896] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, + [87085] = 22, + ACTIONS(3922), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86965] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, - sym_number, - sym_private_property_identifier, - STATE(3888), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4522), 3, anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4520), 9, + 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_BQUOTE, + anon_sym_satisfies, + [87172] = 23, + ACTIONS(3922), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [87024] = 6, - ACTIONS(4618), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4621), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(5665), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, - sym__automatic_semicolon, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4520), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87261] = 24, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, anon_sym_PERCENT, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4520), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [87079] = 7, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(4146), 1, - anon_sym_extends, + [87352] = 15, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 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(3439), 23, + ACTIONS(4520), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - 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, - [87136] = 7, - ACTIONS(3447), 1, + [87425] = 16, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(3451), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3441), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 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(3439), 20, + ACTIONS(4520), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + 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, - [87193] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5203), 2, - sym_number, - sym_private_property_identifier, - STATE(3853), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + [87500] = 20, + ACTIONS(3922), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [87252] = 5, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4132), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4522), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4520), 11, 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_BQUOTE, + anon_sym_satisfies, + [87583] = 27, + ACTIONS(3922), 1, anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4522), 1, + anon_sym_BANG, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, anon_sym_AMP_AMP, + ACTIONS(5698), 1, anon_sym_PIPE_PIPE, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 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(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4520), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [87305] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + [87680] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5217), 2, - sym_number, - sym_private_property_identifier, - STATE(3834), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [87364] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4588), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87785] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [87433] = 6, - ACTIONS(4606), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4590), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87890] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4526), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87995] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, anon_sym_AMP_AMP, + ACTIONS(5698), 1, anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4534), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 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(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 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, - [87488] = 6, - ACTIONS(4529), 1, + [88100] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4532), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4423), 10, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4560), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88205] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, anon_sym_AMP_AMP, + ACTIONS(5698), 1, anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4586), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 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(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 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, + [88310] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - [87543] = 6, - ACTIONS(4614), 1, - anon_sym_EQ, - ACTIONS(4960), 1, - anon_sym_COLON, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4801), 2, - anon_sym_COMMA, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4611), 2, anon_sym_RBRACK, - ACTIONS(4612), 13, + anon_sym_BQUOTE, + ACTIONS(5665), 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(5669), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88415] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, + anon_sym_GT_GT, + ACTIONS(5673), 1, + anon_sym_PERCENT, + ACTIONS(5675), 1, + anon_sym_STAR_STAR, + ACTIONS(5677), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, anon_sym_AMP_AMP, + ACTIONS(5698), 1, anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4566), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5669), 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(5671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 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, - [87598] = 23, - ACTIONS(1583), 1, + [88520] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_AT, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5616), 1, - anon_sym_STAR, - ACTIONS(5618), 1, - anon_sym_async, - ACTIONS(5622), 1, - anon_sym_static, - ACTIONS(5624), 1, - anon_sym_readonly, - ACTIONS(5628), 1, - anon_sym_declare, - ACTIONS(5630), 1, - anon_sym_abstract, - ACTIONS(5632), 1, - anon_sym_accessor, - STATE(2642), 1, - sym_method_definition, - STATE(2686), 1, - sym_accessibility_modifier, - STATE(2717), 1, - aux_sym_export_statement_repeat1, - STATE(2749), 1, - sym_decorator, - STATE(2765), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5620), 2, + ACTIONS(5293), 2, sym_number, sym_private_property_identifier, - ACTIONS(5626), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3000), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 13, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -211184,39 +211924,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87687] = 7, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(2326), 1, - anon_sym_extends, + [88579] = 12, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5704), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4066), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4069), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1663), 11, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4636), 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(1667), 23, + ACTIONS(4638), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - 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, @@ -211230,43 +211977,52 @@ 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, - [87744] = 7, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4114), 1, - anon_sym_extends, + [88646] = 15, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5707), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4111), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4102), 11, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4739), 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(4106), 23, + ACTIONS(4741), 16, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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, @@ -211280,62 +212036,51 @@ 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, - [87801] = 16, + [88719] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(2756), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5661), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, + STATE(3811), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -211343,91 +212088,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87876] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [88778] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5667), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5673), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5677), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5702), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1522), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1622), 1, sym_arguments, - STATE(4753), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4760), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5637), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5283), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87981] = 5, - ACTIONS(3437), 1, - anon_sym_EQ, + [88883] = 11, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5710), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3629), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3435), 13, + ACTIONS(4629), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211438,16 +212193,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(3439), 23, + ACTIONS(4631), 20, 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, @@ -211465,33 +212216,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88034] = 8, + [88948] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5447), 2, sym_number, sym_private_property_identifier, - STATE(3916), 3, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -211516,33 +212267,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88093] = 8, + [89007] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5455), 2, sym_number, sym_private_property_identifier, - STATE(3926), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -211567,50 +212318,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88152] = 8, + [89066] = 17, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4803), 1, anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(5713), 1, + anon_sym_RBRACE, + STATE(2772), 1, + sym_override_modifier, + STATE(4681), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5639), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3914), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 23, + ACTIONS(2314), 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, @@ -211618,34 +212378,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88211] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, + [89143] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 2, + ACTIONS(1940), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3857), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 11, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -211669,331 +212425,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88270] = 32, - ACTIONS(4418), 1, + [89194] = 31, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - ACTIONS(5641), 1, - anon_sym_SEMI, - ACTIONS(5643), 1, - sym__automatic_semicolon, - STATE(1976), 1, + STATE(1987), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2134), 1, sym_arguments, - STATE(4753), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5223), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88377] = 32, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [89299] = 6, + ACTIONS(4651), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4654), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4643), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 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(4645), 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, - ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - ACTIONS(5645), 1, - anon_sym_SEMI, - ACTIONS(5647), 1, - sym__automatic_semicolon, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89354] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(1757), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1761), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(1763), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + 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(5283), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [88484] = 31, - ACTIONS(3938), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [89405] = 32, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5715), 1, + anon_sym_SEMI, + ACTIONS(5717), 1, + sym__automatic_semicolon, + STATE(1987), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2134), 1, sym_arguments, - STATE(5072), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4997), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4487), 3, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88589] = 31, - ACTIONS(3938), 1, + [89512] = 6, + ACTIONS(4578), 1, + anon_sym_EQ, + ACTIONS(4890), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4843), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4576), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4580), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89567] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACK, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(5321), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5323), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, + ACTIONS(5329), 1, anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5331), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5333), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5341), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(5349), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(5351), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1987), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2134), 1, sym_arguments, - STATE(5072), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4884), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5007), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4487), 3, + ACTIONS(5719), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88694] = 8, + [89672] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, anon_sym_LBRACK, + ACTIONS(5129), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5383), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3868), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212018,33 +212849,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88753] = 8, + [89741] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5721), 2, sym_number, sym_private_property_identifier, - STATE(3813), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212069,33 +212900,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88812] = 8, + [89800] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 2, + ACTIONS(5394), 2, sym_number, sym_private_property_identifier, - STATE(3869), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212120,33 +212951,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88871] = 8, + [89859] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5723), 2, sym_number, sym_private_property_identifier, - STATE(3908), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212171,231 +213002,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88930] = 19, - ACTIONS(231), 1, - anon_sym_STAR, + [89918] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(1932), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5653), 1, - anon_sym_async, - ACTIONS(5655), 1, - anon_sym_static, - ACTIONS(5657), 1, - anon_sym_readonly, - ACTIONS(5663), 1, - anon_sym_override, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2743), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5539), 2, + ACTIONS(5595), 2, sym_number, sym_private_property_identifier, - ACTIONS(5651), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5659), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5661), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3663), 3, + STATE(3934), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5541), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5649), 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, - [89011] = 17, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(5533), 1, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_RBRACE, - STATE(2756), 1, - sym_override_modifier, - STATE(5136), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 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, - [89088] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5667), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89193] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -212423,34 +213053,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89262] = 8, - ACTIONS(1583), 1, + [89977] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(5425), 2, sym_number, sym_private_property_identifier, - STATE(3380), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -212474,84 +213104,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89321] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, + [90036] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5553), 2, - sym_number, - sym_private_property_identifier, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4146), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4096), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4098), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90087] = 6, + ACTIONS(4707), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4089), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4710), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89380] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [90142] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5461), 2, sym_number, sym_private_property_identifier, - STATE(3902), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212576,33 +213251,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89439] = 8, + [90201] = 7, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(4276), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4691), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(3441), 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, + [90258] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5509), 2, + ACTIONS(5273), 2, sym_number, sym_private_property_identifier, - STATE(3826), 3, + STATE(3839), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212627,33 +213352,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89498] = 8, + [90317] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5601), 2, + ACTIONS(5563), 2, sym_number, sym_private_property_identifier, - STATE(3785), 3, + STATE(3827), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212678,33 +213403,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89557] = 8, + [90376] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5456), 2, + ACTIONS(5267), 2, sym_number, sym_private_property_identifier, - STATE(3911), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212729,15 +213454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89616] = 4, + [90435] = 4, + ACTIONS(4986), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1877), 13, + ACTIONS(4982), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -212750,13 +213475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 25, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4984), 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, @@ -212772,37 +213498,41 @@ 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, - [89667] = 8, + anon_sym_BQUOTE, + [90486] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, anon_sym_LBRACK, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5181), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212827,36 +213557,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89726] = 6, - ACTIONS(3437), 1, + [90555] = 7, + ACTIONS(1659), 1, anon_sym_EQ, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, + ACTIONS(2326), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 12, + ACTIONS(4138), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4141), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1657), 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(3439), 25, + ACTIONS(1661), 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, @@ -212876,35 +213607,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89781] = 4, + [90612] = 7, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(4272), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(4266), 2, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1877), 13, + anon_sym_LBRACK, + ACTIONS(4269), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4260), 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(1879), 22, + ACTIONS(4264), 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, @@ -212922,464 +213655,269 @@ 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, - [89832] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, + [90669] = 7, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(3453), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 2, + ACTIONS(3447), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3443), 4, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5671), 2, + anon_sym_extends, + ACTIONS(3437), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89937] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(3441), 20, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, + anon_sym_LPAREN, anon_sym_AMP_AMP, - ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4501), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5701), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90042] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [90726] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4519), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5701), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90147] = 31, - ACTIONS(3938), 1, + ACTIONS(5725), 2, + sym_number, + sym_private_property_identifier, + STATE(3355), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90785] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5263), 2, + sym_number, + sym_private_property_identifier, + STATE(3844), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5695), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90844] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4577), 2, + ACTIONS(4284), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4282), 4, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, + anon_sym_extends, + ACTIONS(3437), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90252] = 31, - ACTIONS(3938), 1, + ACTIONS(3441), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4581), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5701), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90357] = 18, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90897] = 7, + ACTIONS(4087), 1, + anon_sym_QMARK, + ACTIONS(4089), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(4710), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4707), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3437), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 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(4583), 14, + ACTIONS(3441), 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, - [90436] = 13, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5707), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [90954] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(1757), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213390,512 +213928,674 @@ 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(4583), 17, + ACTIONS(1763), 22, 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_BQUOTE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [90505] = 25, - ACTIONS(3938), 1, + [91005] = 16, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + STATE(2772), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [91080] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91149] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5255), 2, + sym_number, + sym_private_property_identifier, + STATE(3927), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91208] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(5679), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5673), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5677), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4468), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90598] = 26, - ACTIONS(3938), 1, + [91313] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5679), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5673), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5677), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5702), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(4514), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90693] = 16, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [91418] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5707), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4951), 2, + sym_number, + sym_private_property_identifier, + STATE(3486), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91477] = 6, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_in, + ACTIONS(3630), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(3437), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 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(4583), 16, + ACTIONS(3441), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90768] = 22, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [91532] = 6, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(5009), 1, + anon_sym_of, + ACTIONS(5730), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(4260), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, + anon_sym_BANG, anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5697), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4264), 25, 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_BQUOTE, - anon_sym_satisfies, - [90855] = 23, - ACTIONS(3938), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5671), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5701), 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(5697), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 9, - 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, - [90944] = 24, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [91587] = 23, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + ACTIONS(5733), 1, + anon_sym_STAR, + ACTIONS(5735), 1, + anon_sym_async, + ACTIONS(5739), 1, + anon_sym_static, + ACTIONS(5741), 1, + anon_sym_readonly, + ACTIONS(5745), 1, + anon_sym_declare, + ACTIONS(5747), 1, + anon_sym_abstract, + ACTIONS(5749), 1, + anon_sym_accessor, + STATE(2616), 1, + sym_method_definition, + STATE(2699), 1, + sym_accessibility_modifier, + STATE(2707), 1, + aux_sym_export_statement_repeat1, + STATE(2769), 1, + sym_decorator, + STATE(2775), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5671), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5737), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5743), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3666), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3063), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 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, + [91676] = 6, + ACTIONS(4578), 1, + anon_sym_EQ, + ACTIONS(4890), 1, + anon_sym_of, + ACTIONS(5751), 1, anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5701), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91035] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5707), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(4576), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 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(4583), 16, + ACTIONS(4580), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91108] = 16, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [91731] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5657), 2, + sym_number, + sym_private_property_identifier, + STATE(3880), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5707), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91790] = 6, + ACTIONS(1659), 1, + anon_sym_EQ, + ACTIONS(4899), 1, + anon_sym_of, + ACTIONS(5754), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(1657), 12, anon_sym_STAR, - anon_sym_in, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -213903,796 +214603,785 @@ 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(4583), 15, + ACTIONS(1661), 25, sym__ternary_qmark, - anon_sym_RBRACK, + 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, - [91183] = 20, - ACTIONS(3938), 1, + anon_sym_satisfies, + [91845] = 32, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5679), 1, + ACTIONS(4848), 1, + anon_sym_as, + ACTIONS(4850), 1, + anon_sym_BANG, + ACTIONS(4886), 1, + anon_sym_satisfies, + ACTIONS(5321), 1, + anon_sym_AMP_AMP, + ACTIONS(5323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5325), 1, anon_sym_GT_GT, - ACTIONS(5691), 1, + ACTIONS(5329), 1, + anon_sym_AMP, + ACTIONS(5331), 1, + anon_sym_CARET, + ACTIONS(5333), 1, + anon_sym_PIPE, + ACTIONS(5337), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5349), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5351), 1, + sym__ternary_qmark, + ACTIONS(5757), 1, + anon_sym_SEMI, + ACTIONS(5759), 1, + sym__automatic_semicolon, + STATE(1987), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2134), 1, sym_arguments, - STATE(5072), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5317), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5327), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5697), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91266] = 27, - ACTIONS(3938), 1, + ACTIONS(5343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91952] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(5675), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5793), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5795), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(4685), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91363] = 31, - ACTIONS(3938), 1, + [92057] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5675), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5703), 1, + ACTIONS(5793), 1, anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, + ACTIONS(5795), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4642), 2, - anon_sym_RBRACK, + ACTIONS(4750), 2, + anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91468] = 31, - ACTIONS(3938), 1, + [92162] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5675), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5703), 1, + ACTIONS(5793), 1, anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, + ACTIONS(5795), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4648), 2, - anon_sym_RBRACK, + ACTIONS(4737), 2, + anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91573] = 31, - ACTIONS(3938), 1, + [92267] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5675), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5703), 1, + ACTIONS(5793), 1, anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, + ACTIONS(5795), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4468), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4716), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91678] = 31, - ACTIONS(3938), 1, + [92372] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5675), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5703), 1, + ACTIONS(5793), 1, anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, + ACTIONS(5795), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_RBRACK, + ACTIONS(4514), 2, + anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91783] = 31, - ACTIONS(3938), 1, + [92477] = 18, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4732), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(4522), 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(5701), 2, + ACTIONS(4520), 14, + 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, - ACTIONS(5697), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91888] = 31, - ACTIONS(3938), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92556] = 13, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5797), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4503), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(4522), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(4520), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [91993] = 31, - ACTIONS(3938), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92625] = 25, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4505), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92098] = 31, - ACTIONS(3938), 1, + ACTIONS(4520), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92718] = 26, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4734), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92203] = 12, - ACTIONS(3938), 1, + ACTIONS(4520), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92813] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5710), 1, + ACTIONS(5781), 1, + anon_sym_PERCENT, + ACTIONS(5783), 1, + anon_sym_STAR_STAR, + ACTIONS(5797), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(5761), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5779), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4522), 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(4676), 18, + ACTIONS(4520), 16, 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, @@ -214701,160 +215390,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92270] = 15, - ACTIONS(3938), 1, + [92888] = 22, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5713), 1, + ACTIONS(5769), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_PERCENT, + ACTIONS(5783), 1, + anon_sym_STAR_STAR, + ACTIONS(5785), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(5761), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5771), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 16, + ACTIONS(5791), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4522), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5787), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4520), 9, sym__ternary_qmark, - anon_sym_RBRACK, + 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_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92975] = 23, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5769), 1, + anon_sym_GT_GT, + ACTIONS(5773), 1, + anon_sym_AMP, + ACTIONS(5781), 1, anon_sym_PERCENT, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5785), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5761), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5763), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5771), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5779), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5787), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4520), 9, + 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_BQUOTE, - [92343] = 31, - ACTIONS(3938), 1, + anon_sym_satisfies, + [93064] = 24, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4708), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(4522), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92448] = 11, - ACTIONS(3938), 1, + ACTIONS(4520), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93155] = 15, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5716), 1, + ACTIONS(5781), 1, + anon_sym_PERCENT, + ACTIONS(5783), 1, + anon_sym_STAR_STAR, + ACTIONS(5797), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5761), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4522), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -214863,170 +215627,58 @@ 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(4416), 20, + ACTIONS(4520), 16, 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_BQUOTE, anon_sym_satisfies, - [92513] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [93228] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5797), 1, anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1522), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1622), 1, sym_arguments, - STATE(4753), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5166), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5285), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92618] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92687] = 4, - ACTIONS(4941), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4937), 17, + ACTIONS(4522), 11, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -215035,947 +215687,1118 @@ 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_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4939), 22, + ACTIONS(4520), 15, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_instanceof, anon_sym_BQUOTE, - [92738] = 31, - ACTIONS(3938), 1, + [93303] = 20, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, - ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, - anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5787), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4522), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(4520), 11, + 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, - ACTIONS(5745), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92843] = 31, - ACTIONS(3938), 1, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93386] = 27, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5723), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4501), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92948] = 31, - ACTIONS(3938), 1, + ACTIONS(4520), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93483] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5723), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5793), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5795), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4519), 2, + ACTIONS(4588), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93053] = 31, - ACTIONS(3938), 1, + [93588] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5723), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5793), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5795), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4577), 2, + ACTIONS(4590), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93158] = 31, - ACTIONS(3938), 1, + [93693] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5723), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5793), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5795), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4581), 2, + ACTIONS(4526), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93263] = 18, - ACTIONS(3938), 1, + [93798] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5727), 1, - anon_sym_GT_GT, - ACTIONS(5739), 1, - anon_sym_PERCENT, - ACTIONS(5741), 1, - anon_sym_STAR_STAR, - ACTIONS(5743), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5719), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5729), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5737), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 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(4583), 14, - sym__ternary_qmark, + ACTIONS(4466), 1, anon_sym_as, - anon_sym_of, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5765), 1, anon_sym_AMP_AMP, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, + ACTIONS(5769), 1, + anon_sym_GT_GT, + ACTIONS(5773), 1, + anon_sym_AMP, + ACTIONS(5775), 1, 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_BQUOTE, - anon_sym_satisfies, - [93342] = 13, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5741), 1, + ACTIONS(5777), 1, + anon_sym_PIPE, + ACTIONS(5781), 1, + anon_sym_PERCENT, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5755), 1, + ACTIONS(5785), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5793), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5795), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4534), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5761), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5771), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5787), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93411] = 25, - ACTIONS(3938), 1, + [93903] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(5727), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5765), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5793), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5795), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(4560), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93504] = 26, - ACTIONS(3938), 1, + [94008] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(5723), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5727), 1, + ACTIONS(5767), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5793), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5795), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(4586), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93599] = 16, - ACTIONS(3938), 1, + [94113] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5739), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5765), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5769), 1, + anon_sym_GT_GT, + ACTIONS(5773), 1, + anon_sym_AMP, + ACTIONS(5775), 1, + anon_sym_CARET, + ACTIONS(5777), 1, + anon_sym_PIPE, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5755), 1, + ACTIONS(5785), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5793), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5795), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(4611), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5737), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 8, - anon_sym_BANG, + ACTIONS(5763), 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(4583), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5779), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5787), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93674] = 22, - ACTIONS(3938), 1, + [94218] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5765), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5739), 1, + ACTIONS(5773), 1, + anon_sym_AMP, + ACTIONS(5775), 1, + anon_sym_CARET, + ACTIONS(5777), 1, + anon_sym_PIPE, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5793), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5795), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(4566), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5745), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, - 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_BQUOTE, - anon_sym_satisfies, - [93761] = 23, - ACTIONS(3938), 1, + [94323] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5301), 2, + sym_number, + sym_private_property_identifier, + STATE(3852), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94382] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5131), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94451] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5537), 2, + sym_number, + sym_private_property_identifier, + STATE(3946), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94510] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(5739), 1, + ACTIONS(4486), 1, + anon_sym_CARET, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5719), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5054), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, - 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_BQUOTE, - anon_sym_satisfies, - [93850] = 24, - ACTIONS(3938), 1, + [94615] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, + ACTIONS(4476), 1, + anon_sym_AMP_AMP, + ACTIONS(4478), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(5739), 1, + ACTIONS(4488), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(4496), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, + sym__ternary_qmark, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5719), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5064), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93941] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [94720] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5739), 1, - anon_sym_PERCENT, - ACTIONS(5741), 1, - anon_sym_STAR_STAR, - ACTIONS(5755), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5277), 2, + sym_number, + sym_private_property_identifier, + STATE(3819), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94779] = 5, + ACTIONS(3439), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(3639), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3437), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -215984,833 +216807,1124 @@ 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(4583), 16, + ACTIONS(3441), 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, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94014] = 16, - ACTIONS(3938), 1, + [94832] = 31, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4848), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4886), 1, anon_sym_satisfies, - ACTIONS(5741), 1, + ACTIONS(5321), 1, + anon_sym_AMP_AMP, + ACTIONS(5323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5325), 1, + anon_sym_GT_GT, + ACTIONS(5329), 1, + anon_sym_AMP, + ACTIONS(5331), 1, + anon_sym_CARET, + ACTIONS(5333), 1, + anon_sym_PIPE, + ACTIONS(5337), 1, + anon_sym_PERCENT, + ACTIONS(5339), 1, anon_sym_STAR_STAR, - ACTIONS(5755), 1, + ACTIONS(5341), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5349), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5351), 1, + sym__ternary_qmark, + STATE(1987), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2134), 1, sym_arguments, - STATE(5072), 1, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4884), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(5317), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5319), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5327), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5335), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 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_LT_EQ, + ACTIONS(5347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5800), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5343), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [94089] = 20, - ACTIONS(3938), 1, + [94937] = 12, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, - anon_sym_GT_GT, - ACTIONS(5739), 1, - anon_sym_PERCENT, - ACTIONS(5741), 1, - anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5802), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(4636), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5721), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5737), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5745), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 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(4583), 11, + ACTIONS(4638), 18, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [94172] = 27, - ACTIONS(3938), 1, + [95004] = 15, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, - ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, - anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, - anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, - ACTIONS(5741), 1, - anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5805), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(4739), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5737), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(4741), 16, + 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, - ACTIONS(5745), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [94269] = 31, - ACTIONS(3938), 1, + [95077] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5723), 1, + ACTIONS(5765), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, + ACTIONS(5767), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5769), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(5773), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(5775), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(5777), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5781), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5783), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5785), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5793), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5795), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4642), 2, + ACTIONS(4760), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5763), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5771), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5779), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5789), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5791), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5787), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94374] = 31, - ACTIONS(3938), 1, + [95182] = 11, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, - ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, - anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, - anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, - ACTIONS(5741), 1, - anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5808), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4648), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(4629), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5721), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5737), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(4631), 20, + 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, - ACTIONS(5745), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94479] = 31, - ACTIONS(3938), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95247] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5429), 2, + sym_number, + sym_private_property_identifier, + STATE(3921), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95306] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5577), 2, + sym_number, + sym_private_property_identifier, + STATE(3842), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95365] = 6, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4276), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(3441), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5723), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, - anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, - anon_sym_LT, - ACTIONS(5751), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4716), 2, - anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + anon_sym_satisfies, + [95420] = 7, + ACTIONS(3607), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4276), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5721), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5729), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5737), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [94584] = 31, - ACTIONS(3938), 1, + ACTIONS(3441), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5723), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, - anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, - anon_sym_LT, - ACTIONS(5751), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, - anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + anon_sym_satisfies, + [95477] = 7, + ACTIONS(3591), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4276), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5721), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5729), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5737), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(3441), 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, - ACTIONS(5745), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94689] = 31, - ACTIONS(3938), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95534] = 19, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(1932), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5815), 1, + anon_sym_async, + ACTIONS(5817), 1, + anon_sym_static, + ACTIONS(5819), 1, + anon_sym_readonly, + ACTIONS(5825), 1, + anon_sym_override, + STATE(2748), 1, + sym_accessibility_modifier, + STATE(2757), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5607), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5813), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5821), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5823), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3685), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5317), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5811), 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, + [95615] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, - ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5667), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, - anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5673), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5677), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5702), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4732), 2, - anon_sym_of, + ACTIONS(4685), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94794] = 31, - ACTIONS(3938), 1, + [95720] = 4, + ACTIONS(3584), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [95771] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, - ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5667), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, - anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5673), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5677), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5702), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4503), 2, - anon_sym_of, + ACTIONS(4750), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94899] = 31, - ACTIONS(3938), 1, + [95876] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, - ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5667), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, - anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5673), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5677), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5702), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4505), 2, - anon_sym_of, + ACTIONS(4737), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95004] = 31, - ACTIONS(3938), 1, + [95981] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96050] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5723), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4476), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, + ACTIONS(4478), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(4480), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, + ACTIONS(4484), 1, anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(4486), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(4488), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(4492), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(4494), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(4496), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(4504), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4510), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4734), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(4464), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(4472), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(4482), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(4490), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(4500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(4502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5827), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95109] = 12, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [96155] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5758), 1, + ACTIONS(5088), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96224] = 4, + ACTIONS(3580), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216821,12 +217935,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(4676), 18, + ACTIONS(3441), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -216840,39 +217960,150 @@ 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, - [95176] = 15, - ACTIONS(3938), 1, + [96274] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4959), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4951), 2, + sym_number, + sym_private_property_identifier, + STATE(3486), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96334] = 32, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5761), 1, + ACTIONS(5069), 1, + anon_sym_of, + ACTIONS(5763), 1, + anon_sym_GT, + ACTIONS(5765), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5769), 1, + anon_sym_GT_GT, + ACTIONS(5773), 1, + anon_sym_AMP, + ACTIONS(5775), 1, + anon_sym_CARET, + ACTIONS(5777), 1, + anon_sym_PIPE, + ACTIONS(5781), 1, + anon_sym_PERCENT, + ACTIONS(5783), 1, + anon_sym_STAR_STAR, + ACTIONS(5785), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5793), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5795), 1, + sym__ternary_qmark, + ACTIONS(5829), 1, + anon_sym_in, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(5761), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5779), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5789), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5791), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5787), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96440] = 6, + ACTIONS(3922), 1, + anon_sym_LPAREN, + STATE(1654), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5832), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4190), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -216881,11 +218112,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(4699), 16, + ACTIONS(4192), 21, sym__ternary_qmark, - anon_sym_of, + 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, @@ -216899,102 +218134,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [95249] = 31, - ACTIONS(3938), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [96494] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, - ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5667), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, - anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5673), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5677), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5702), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5834), 1, + anon_sym_RBRACK, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4708), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95354] = 11, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5764), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [96598] = 6, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(4782), 1, + anon_sym_RBRACK, + ACTIONS(5009), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217005,12 +218231,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(4416), 20, + ACTIONS(4264), 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, @@ -217028,37 +218258,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95419] = 7, - ACTIONS(3596), 1, + [96652] = 6, + ACTIONS(4578), 1, anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, + ACTIONS(4843), 1, + anon_sym_RBRACK, + ACTIONS(4890), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4580), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217078,37 +218306,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95476] = 7, - ACTIONS(3604), 1, + [96706] = 6, + ACTIONS(1659), 1, anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, + ACTIONS(4815), 1, + anon_sym_RBRACK, + ACTIONS(4899), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(1657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1661), 23, 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, @@ -217128,162 +218354,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95533] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [96760] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3210), 12, + anon_sym_STAR, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3208), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [96808] = 6, + ACTIONS(4707), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4710), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4089), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3437), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5767), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95638] = 31, - ACTIONS(3938), 1, + ACTIONS(3441), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4505), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96862] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(3214), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95742] = 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_AMP, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3212), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [96910] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 3, + ACTIONS(4102), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5805), 13, + anon_sym_extends, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217297,11 +218513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5808), 23, + ACTIONS(4098), 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, @@ -217321,15 +218538,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95792] = 4, + [96960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4724), 3, + ACTIONS(3206), 12, + anon_sym_STAR, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5811), 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_AMP, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3204), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [97008] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217343,11 +218604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5814), 23, + ACTIONS(4098), 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, @@ -217367,179 +218629,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95842] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - ACTIONS(5817), 1, - anon_sym_COLON, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [97058] = 6, + ACTIONS(4089), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4707), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4710), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95946] = 31, - ACTIONS(3938), 1, + ACTIONS(3441), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - ACTIONS(5819), 1, - anon_sym_RBRACK, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5671), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5701), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [96050] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97112] = 6, + ACTIONS(4691), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4660), 3, + ACTIONS(4694), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4276), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5821), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3437), 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(5824), 23, + ACTIONS(3441), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217559,33 +218725,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96100] = 4, + [97166] = 6, + ACTIONS(4651), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 2, + ACTIONS(4654), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4342), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4082), 13, + ACTIONS(4643), 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(4084), 24, + ACTIONS(4645), 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, @@ -217605,7 +218773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96150] = 15, + [97220] = 15, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, @@ -217616,11 +218784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - STATE(2756), 1, + STATE(2772), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -217631,14 +218799,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - ACTIONS(5827), 2, + ACTIONS(5836), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -217662,501 +218830,665 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96222] = 31, - ACTIONS(3938), 1, + [97292] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [97358] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 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, + [97426] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4455), 1, - anon_sym_BQUOTE, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5773), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5483), 1, + anon_sym_GT_GT, + ACTIONS(5487), 1, + anon_sym_AMP, + ACTIONS(5489), 1, + anon_sym_CARET, + ACTIONS(5491), 1, + anon_sym_PIPE, + ACTIONS(5495), 1, + anon_sym_PERCENT, + ACTIONS(5497), 1, + anon_sym_STAR_STAR, + ACTIONS(5499), 1, + anon_sym_LT, + ACTIONS(5507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5509), 1, + sym__ternary_qmark, + ACTIONS(5838), 1, + anon_sym_COLON, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5477), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5485), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5493), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5505), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5501), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97530] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5667), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5673), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5675), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5677), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5684), 1, + anon_sym_AMP, + ACTIONS(5686), 1, + anon_sym_CARET, + ACTIONS(5688), 1, + anon_sym_PIPE, + ACTIONS(5696), 1, + anon_sym_AMP_AMP, + ACTIONS(5698), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5700), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5702), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5840), 1, + anon_sym_RBRACK, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5665), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5669), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5682), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96326] = 31, - ACTIONS(3938), 1, + [97634] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4501), 1, + ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96430] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3164), 12, - anon_sym_STAR, - anon_sym_COMMA, + [97738] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4750), 1, + anon_sym_BQUOTE, + ACTIONS(5846), 1, + anon_sym_AMP_AMP, + ACTIONS(5848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5850), 1, + anon_sym_GT_GT, + ACTIONS(5854), 1, anon_sym_AMP, + ACTIONS(5856), 1, + anon_sym_CARET, + ACTIONS(5858), 1, anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3162), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [96478] = 4, + ACTIONS(5862), 1, + anon_sym_PERCENT, + ACTIONS(5864), 1, + anon_sym_STAR_STAR, + ACTIONS(5866), 1, + anon_sym_LT, + ACTIONS(5874), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5876), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4082), 13, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5842), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 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, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5868), 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, - [96528] = 31, - ACTIONS(3938), 1, + [97842] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4519), 1, + ACTIONS(4737), 1, anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96632] = 31, - ACTIONS(3938), 1, + [97946] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4468), 1, + anon_sym_BQUOTE, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4577), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96736] = 31, - ACTIONS(3938), 1, + [98050] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4581), 1, + ACTIONS(4514), 1, anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96840] = 18, - ACTIONS(3938), 1, + [98154] = 18, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, + ACTIONS(4522), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -218164,7 +219496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 13, + ACTIONS(4520), 13, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218178,32 +219510,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [96918] = 13, - ACTIONS(3938), 1, + [98232] = 13, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5829), 1, + ACTIONS(5878), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218216,7 +219548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(4520), 16, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218233,66 +219565,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [96986] = 25, - ACTIONS(3938), 1, + [98300] = 25, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, + ACTIONS(4520), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218300,108 +219632,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [97078] = 26, - ACTIONS(3938), 1, + [98392] = 26, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 6, + ACTIONS(4520), 6, sym__ternary_qmark, anon_sym_as, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [97172] = 16, - ACTIONS(3938), 1, + [98486] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5829), 1, + ACTIONS(5878), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 8, + ACTIONS(4522), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -218410,7 +219742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(4520), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218426,62 +219758,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97246] = 22, - ACTIONS(3938), 1, + [98560] = 22, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, + ACTIONS(4522), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4520), 8, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218490,63 +219822,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [97332] = 23, - ACTIONS(3938), 1, + [98646] = 23, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4522), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4520), 8, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218555,65 +219887,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [97420] = 24, - ACTIONS(3938), 1, + [98734] = 24, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4522), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, + ACTIONS(4520), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218621,37 +219953,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [97510] = 15, - ACTIONS(3938), 1, + [98824] = 15, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5829), 1, + ACTIONS(5878), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 10, + ACTIONS(4522), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -218662,7 +219994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(4520), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218678,38 +220010,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97582] = 16, - ACTIONS(3938), 1, + [98896] = 16, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5829), 1, + ACTIONS(5878), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4522), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -218721,7 +220053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 14, + ACTIONS(4520), 14, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -218736,58 +220068,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [97656] = 20, - ACTIONS(3938), 1, + [98970] = 20, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, + ACTIONS(4522), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 10, + ACTIONS(4520), 10, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -218798,1321 +220130,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [97738] = 27, - ACTIONS(3938), 1, + [99052] = 27, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4522), 1, anon_sym_BANG, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 5, + ACTIONS(4520), 5, sym__ternary_qmark, anon_sym_as, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [97834] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4642), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97938] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4648), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98042] = 32, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5012), 1, - anon_sym_of, - ACTIONS(5721), 1, - anon_sym_GT, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, - ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, - anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, - anon_sym_CARET, - ACTIONS(5735), 1, - anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, - ACTIONS(5741), 1, - anon_sym_STAR_STAR, - ACTIONS(5743), 1, - anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, - sym__ternary_qmark, - ACTIONS(5832), 1, - anon_sym_in, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5719), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5729), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5737), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5749), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98148] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4716), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98252] = 31, - ACTIONS(3938), 1, + [99148] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4728), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98356] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98460] = 6, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RBRACK, - ACTIONS(3637), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, + ACTIONS(4588), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [98514] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - ACTIONS(5835), 1, - anon_sym_COLON, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98618] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5839), 1, - anon_sym_readonly, - STATE(2823), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5837), 2, - sym_number, - sym_private_property_identifier, - STATE(3421), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 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, - [98682] = 9, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5843), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5841), 2, - sym_number, - sym_private_property_identifier, - STATE(3469), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98742] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5847), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5845), 2, - sym_number, - sym_private_property_identifier, - STATE(3432), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 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, - [98806] = 9, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5851), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5849), 2, - sym_number, - sym_private_property_identifier, - STATE(3342), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98866] = 31, - ACTIONS(3938), 1, + [99252] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - ACTIONS(5853), 1, - anon_sym_COLON, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98970] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4503), 1, + ACTIONS(4590), 1, anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99074] = 4, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, + ACTIONS(5842), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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_SLASH, + ACTIONS(5844), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5852), 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(5860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5868), 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, - [99124] = 31, - ACTIONS(3938), 1, + [99356] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4526), 1, + anon_sym_BQUOTE, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - ACTIONS(5855), 1, - anon_sym_COLON, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99228] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3184), 12, - anon_sym_STAR, - anon_sym_COMMA, + [99460] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4534), 1, + anon_sym_BQUOTE, + ACTIONS(5846), 1, + anon_sym_AMP_AMP, + ACTIONS(5848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5850), 1, + anon_sym_GT_GT, + ACTIONS(5854), 1, anon_sym_AMP, + ACTIONS(5856), 1, + anon_sym_CARET, + ACTIONS(5858), 1, anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3182), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [99276] = 4, + ACTIONS(5862), 1, + anon_sym_PERCENT, + ACTIONS(5864), 1, + anon_sym_STAR_STAR, + ACTIONS(5866), 1, + anon_sym_LT, + ACTIONS(5874), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5876), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5857), 13, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5842), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5860), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5872), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5868), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99564] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4560), 1, + anon_sym_BQUOTE, + ACTIONS(5846), 1, anon_sym_AMP_AMP, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5850), 1, + anon_sym_GT_GT, + ACTIONS(5854), 1, + anon_sym_AMP, + ACTIONS(5856), 1, anon_sym_CARET, + ACTIONS(5858), 1, + anon_sym_PIPE, + ACTIONS(5862), 1, anon_sym_PERCENT, + ACTIONS(5864), 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, - [99326] = 6, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5866), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99380] = 7, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, + ACTIONS(5874), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5876), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5842), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5844), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 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(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5868), 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, - [99436] = 6, - ACTIONS(4429), 1, - anon_sym_EQ, + [99668] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5881), 1, + anon_sym_readonly, + STATE(2822), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4951), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + STATE(3486), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220121,14 +220604,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, @@ -220136,310 +220617,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99490] = 31, - ACTIONS(3938), 1, + [99732] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4611), 1, + anon_sym_BQUOTE, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - ACTIONS(5863), 1, - anon_sym_COLON, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99594] = 31, - ACTIONS(3938), 1, + [99836] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4734), 1, + ACTIONS(4566), 1, anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99698] = 6, - ACTIONS(4024), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4618), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(5844), 2, 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(3439), 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, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99752] = 6, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4146), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 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(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99806] = 6, - ACTIONS(4529), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4186), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4423), 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(4425), 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, + ACTIONS(5868), 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, - [99860] = 13, + [99940] = 13, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5533), 1, + ACTIONS(5601), 1, anon_sym_COMMA, - ACTIONS(5665), 1, + ACTIONS(5713), 1, anon_sym_RBRACE, - STATE(5136), 1, + STATE(4681), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -220450,11 +220787,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -220481,95 +220818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99928] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - ACTIONS(5865), 1, - anon_sym_COLON, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100032] = 14, + [100008] = 14, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, ACTIONS(2316), 1, anon_sym_async, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, - ACTIONS(5533), 1, + ACTIONS(5601), 1, anon_sym_COMMA, - ACTIONS(5665), 1, + ACTIONS(5713), 1, anon_sym_RBRACE, - STATE(5136), 1, + STATE(4681), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -220580,11 +220844,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -220610,15 +220874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100102] = 4, + [100078] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1695), 3, + ACTIONS(1821), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5867), 13, + ACTIONS(5883), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220632,7 +220896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 23, + ACTIONS(5886), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -220656,15 +220920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100152] = 4, + [100128] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4687), 3, + ACTIONS(4768), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5873), 13, + ACTIONS(5889), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220678,7 +220942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5876), 23, + ACTIONS(5892), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -220702,63 +220966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100202] = 4, + [100178] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 3, + ACTIONS(4649), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5879), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5882), 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, - [100252] = 6, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4798), 1, - anon_sym_RBRACK, - ACTIONS(4933), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4102), 13, + ACTIONS(5895), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220772,7 +220988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 23, + ACTIONS(5898), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -220796,39 +221012,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100306] = 12, - ACTIONS(1505), 1, + [100228] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, + ACTIONS(5901), 1, + anon_sym_readonly, + STATE(2816), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5725), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, + STATE(3355), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 21, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220837,12 +221052,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, @@ -220850,78 +221065,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100372] = 6, - ACTIONS(4614), 1, - anon_sym_EQ, - ACTIONS(4801), 1, - anon_sym_RBRACK, - ACTIONS(4960), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4612), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4616), 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, - [100426] = 11, - ACTIONS(1583), 1, + [100292] = 9, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5885), 1, - anon_sym_readonly, - STATE(2788), 1, - sym_override_modifier, + ACTIONS(5903), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(5725), 2, sym_number, sym_private_property_identifier, - STATE(3380), 3, + STATE(3355), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -220929,7 +221092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3646), 21, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -220938,12 +221101,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, @@ -220951,34 +221116,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100490] = 9, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5887), 1, - anon_sym_abstract, + [100352] = 6, + ACTIONS(4546), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(3996), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1958), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3380), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221002,30 +221164,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100550] = 11, - ACTIONS(1583), 1, + [100406] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5891), 1, + ACTIONS(5907), 1, anon_sym_readonly, - STATE(2791), 1, + STATE(2827), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5889), 2, + ACTIONS(5905), 2, sym_number, sym_private_property_identifier, - STATE(3423), 3, + STATE(3396), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221055,26 +221217,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100614] = 9, - ACTIONS(1583), 1, + [100470] = 9, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5895), 1, + ACTIONS(5911), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5893), 2, + ACTIONS(5909), 2, sym_number, sym_private_property_identifier, - STATE(3431), 3, + STATE(3411), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221106,49 +221268,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100674] = 13, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, + [100530] = 6, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5634), 2, + ACTIONS(3996), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(1940), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -221161,17 +221316,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100742] = 6, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4763), 1, + [100584] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5137), 1, + anon_sym_RBRACE, + ACTIONS(5479), 1, + anon_sym_AMP_AMP, + ACTIONS(5481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5483), 1, + anon_sym_GT_GT, + ACTIONS(5487), 1, + anon_sym_AMP, + ACTIONS(5489), 1, + anon_sym_CARET, + ACTIONS(5491), 1, + anon_sym_PIPE, + ACTIONS(5495), 1, + anon_sym_PERCENT, + ACTIONS(5497), 1, + anon_sym_STAR_STAR, + ACTIONS(5499), 1, + anon_sym_LT, + ACTIONS(5507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5509), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5477), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5485), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5493), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5505), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5501), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100688] = 6, + ACTIONS(3541), 1, anon_sym_RBRACK, - ACTIONS(4946), 1, + ACTIONS(3562), 1, anon_sym_COMMA, + ACTIONS(3632), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1663), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221185,7 +221413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221209,176 +221437,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100796] = 31, - ACTIONS(3938), 1, + [100742] = 12, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(5913), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4636), 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(4638), 17, + 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_BQUOTE, + anon_sym_satisfies, + [100808] = 15, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5916), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4739), 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(4741), 15, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [100880] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5675), 1, + ACTIONS(4760), 1, + anon_sym_BQUOTE, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5703), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - ACTIONS(5897), 1, - anon_sym_RBRACK, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100900] = 31, - ACTIONS(3938), 1, + [100984] = 11, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(5919), 1, + anon_sym_LT, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4629), 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(4631), 19, + 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, + [101048] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5080), 1, - anon_sym_RBRACE, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5922), 1, + anon_sym_COLON, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101004] = 12, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [101152] = 7, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4276), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4694), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3437), 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(3441), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5899), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101208] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1753), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5924), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5927), 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, + [101258] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(1771), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5930), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5933), 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, - ACTIONS(4674), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101308] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4598), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5936), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221389,11 +221907,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(4676), 17, + ACTIONS(5939), 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, @@ -221407,159 +221930,165 @@ 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, - [101070] = 15, - ACTIONS(3938), 1, + [101358] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5902), 1, + ACTIONS(5479), 1, + anon_sym_AMP_AMP, + ACTIONS(5481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5483), 1, + anon_sym_GT_GT, + ACTIONS(5487), 1, + anon_sym_AMP, + ACTIONS(5489), 1, + anon_sym_CARET, + ACTIONS(5491), 1, + anon_sym_PIPE, + ACTIONS(5495), 1, + anon_sym_PERCENT, + ACTIONS(5497), 1, + anon_sym_STAR_STAR, + ACTIONS(5499), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5509), 1, + sym__ternary_qmark, + ACTIONS(5942), 1, + anon_sym_COLON, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(5475), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5485), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 15, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5501), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [101142] = 31, - ACTIONS(3938), 1, + [101462] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5944), 1, + anon_sym_COLON, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101246] = 11, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5905), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [101566] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4602), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5946), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221570,11 +222099,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(4416), 19, + ACTIONS(5949), 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, @@ -221592,103 +222126,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101310] = 31, - ACTIONS(3938), 1, + [101616] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - ACTIONS(5908), 1, + ACTIONS(5952), 1, anon_sym_COLON, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101414] = 11, - ACTIONS(1583), 1, + [101720] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5910), 1, + ACTIONS(5956), 1, anon_sym_readonly, - STATE(2782), 1, + STATE(2832), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(5954), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3406), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221718,133 +222252,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101478] = 31, - ACTIONS(3938), 1, + [101784] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5960), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 2, + sym_number, + sym_private_property_identifier, + STATE(3378), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101844] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5964), 1, + anon_sym_readonly, + STATE(2815), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 2, + sym_number, + sym_private_property_identifier, + STATE(3447), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 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, + [101908] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5968), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5966), 2, + sym_number, + sym_private_property_identifier, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101968] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - ACTIONS(5912), 1, + ACTIONS(5970), 1, anon_sym_COLON, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101582] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3188), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3186), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [101630] = 4, + [102072] = 4, + ACTIONS(3576), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5914), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221858,10 +222500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5917), 23, + ACTIONS(3441), 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, @@ -221882,86 +222526,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101680] = 31, - ACTIONS(3938), 1, + [102122] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3926), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5479), 1, + anon_sym_AMP_AMP, + ACTIONS(5481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5483), 1, + anon_sym_GT_GT, + ACTIONS(5487), 1, + anon_sym_AMP, + ACTIONS(5489), 1, + anon_sym_CARET, + ACTIONS(5491), 1, + anon_sym_PIPE, + ACTIONS(5495), 1, + anon_sym_PERCENT, + ACTIONS(5497), 1, + anon_sym_STAR_STAR, + ACTIONS(5499), 1, + anon_sym_LT, + ACTIONS(5507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5509), 1, + sym__ternary_qmark, + ACTIONS(5972), 1, + anon_sym_COLON, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5477), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5485), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5493), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5505), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5501), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102226] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4470), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5479), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5481), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5483), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, + ACTIONS(5487), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5489), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5491), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5499), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5507), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5509), 1, sym__ternary_qmark, - ACTIONS(5920), 1, + ACTIONS(5974), 1, anon_sym_COLON, - STATE(1533), 1, + STATE(1522), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1622), 1, sym_arguments, - STATE(5072), 1, + STATE(5015), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5485), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5505), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5501), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101784] = 4, - ACTIONS(3558), 1, - anon_sym_EQ, + [102330] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(1849), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5976), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221975,12 +222694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, + ACTIONS(5979), 23, 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, @@ -222001,171 +222718,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101834] = 9, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, + [102380] = 31, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(4931), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4923), 2, - sym_number, - sym_private_property_identifier, - STATE(3437), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5479), 1, + anon_sym_AMP_AMP, + ACTIONS(5481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5483), 1, + anon_sym_GT_GT, + ACTIONS(5487), 1, + anon_sym_AMP, + ACTIONS(5489), 1, + anon_sym_CARET, + ACTIONS(5491), 1, + anon_sym_PIPE, + ACTIONS(5495), 1, + anon_sym_PERCENT, + ACTIONS(5497), 1, + anon_sym_STAR_STAR, + ACTIONS(5499), 1, + anon_sym_LT, + ACTIONS(5507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5509), 1, + sym__ternary_qmark, + ACTIONS(5982), 1, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101894] = 6, - ACTIONS(4618), 1, - anon_sym_LBRACK, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4024), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5475), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5477), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5485), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5493), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5503), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5505), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5501), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102484] = 31, + ACTIONS(3922), 1, anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4586), 1, + anon_sym_BQUOTE, + ACTIONS(5846), 1, anon_sym_AMP_AMP, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5850), 1, + anon_sym_GT_GT, + ACTIONS(5854), 1, + anon_sym_AMP, + ACTIONS(5856), 1, anon_sym_CARET, + ACTIONS(5858), 1, + anon_sym_PIPE, + ACTIONS(5862), 1, anon_sym_PERCENT, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5866), 1, + anon_sym_LT, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101948] = 6, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1660), 1, + ACTIONS(5876), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5922), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4218), 13, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5842), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 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, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5868), 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, - [102002] = 8, - ACTIONS(1583), 1, + [102588] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1958), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(1956), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102647] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5924), 2, + ACTIONS(5984), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + STATE(3442), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222197,33 +222963,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102059] = 9, + [102704] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + ACTIONS(5129), 1, + anon_sym_RBRACE, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222247,32 +223013,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102118] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, + [102763] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(5129), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5926), 2, - sym_number, - sym_private_property_identifier, - STATE(3378), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(1940), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222296,13 +223063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102175] = 4, - ACTIONS(4941), 1, + [102822] = 4, + ACTIONS(4986), 1, sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4937), 17, + ACTIONS(4982), 17, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -222320,7 +223087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(4939), 20, + ACTIONS(4984), 20, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -222341,24 +223108,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [102224] = 8, - ACTIONS(1583), 1, + [102871] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5928), 2, + ACTIONS(5986), 2, sym_number, sym_private_property_identifier, - STATE(3401), 3, + STATE(3372), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222390,154 +223157,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102281] = 30, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [102928] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(2240), 1, - sym_arguments, - STATE(2670), 1, - sym_type_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102382] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5988), 2, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102441] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, + STATE(3441), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222561,33 +223206,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102500] = 9, + [102985] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(5023), 1, + ACTIONS(5131), 1, anon_sym_RBRACE, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222611,82 +223256,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102559] = 9, + [103044] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(5023), 1, + ACTIONS(5131), 1, anon_sym_RBRACE, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(1940), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102618] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5930), 2, - sym_number, - sym_private_property_identifier, - STATE(3302), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222710,29 +223306,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102675] = 10, + [103103] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(5713), 1, + anon_sym_RBRACE, + STATE(4681), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -222761,95 +223358,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102736] = 30, - ACTIONS(3938), 1, + [103166] = 30, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4663), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4665), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4850), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5773), 1, + ACTIONS(5846), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5848), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5850), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, + ACTIONS(5854), 1, anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5856), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5862), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5864), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5866), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5876), 1, sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, + STATE(2134), 1, sym_arguments, - STATE(5072), 1, + STATE(2686), 1, + sym_type_arguments, + STATE(4893), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4506), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5844), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5872), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5868), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102837] = 8, - ACTIONS(1583), 1, + [103267] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5932), 2, + ACTIONS(5990), 2, sym_number, sym_private_property_identifier, - STATE(3305), 3, + STATE(3413), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222881,175 +223478,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102894] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5934), 2, - sym_number, - sym_private_property_identifier, - STATE(3455), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, + [103324] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102951] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 2, - sym_number, - sym_private_property_identifier, - STATE(3386), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103008] = 4, - ACTIONS(3604), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, + ACTIONS(1940), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, - [103057] = 8, - ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5938), 2, sym_number, sym_private_property_identifier, - STATE(3303), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223073,24 +223528,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103114] = 8, - ACTIONS(1583), 1, + [103383] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 2, + ACTIONS(5992), 2, sym_number, sym_private_property_identifier, - STATE(3466), 3, + STATE(3452), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223122,24 +223577,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103171] = 8, - ACTIONS(1583), 1, + [103440] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5942), 2, + ACTIONS(5994), 2, sym_number, sym_private_property_identifier, - STATE(3399), 3, + STATE(3361), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223171,24 +223626,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103228] = 8, - ACTIONS(1583), 1, + [103497] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 2, + ACTIONS(5996), 2, sym_number, sym_private_property_identifier, - STATE(3408), 3, + STATE(3456), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223220,35 +223675,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103285] = 11, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5533), 1, + [103554] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(5665), 1, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(5088), 1, anon_sym_RBRACE, - STATE(5136), 1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 23, + ACTIONS(1940), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223272,32 +223725,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103348] = 8, - ACTIONS(1583), 1, + [103613] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, + ACTIONS(5022), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5946), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3406), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5836), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223307,8 +223765,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, @@ -223321,16 +223777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103405] = 12, + [103676] = 12, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, ACTIONS(2316), 1, anon_sym_async, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5022), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, @@ -223341,14 +223797,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - ACTIONS(5827), 2, + ACTIONS(5836), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3887), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -223374,32 +223830,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103470] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, + [103741] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 2, - sym_number, - sym_private_property_identifier, - STATE(3336), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(1958), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223423,80 +223880,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103527] = 6, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 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(3439), 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, - [103580] = 9, + [103800] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1940), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223520,33 +223930,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103639] = 9, + [103859] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(724), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223570,32 +223980,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103698] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, + [103918] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 2, - sym_number, - sym_private_property_identifier, - STATE(3451), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(1940), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223619,33 +224030,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103755] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, + [103977] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5998), 2, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + STATE(3360), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223669,33 +224079,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103814] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + [104034] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4803), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223719,24 +224130,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103873] = 8, - ACTIONS(1583), 1, + [104095] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5952), 2, + ACTIONS(6000), 2, sym_number, sym_private_property_identifier, - STATE(3454), 3, + STATE(3492), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223768,24 +224179,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103930] = 8, - ACTIONS(1583), 1, + [104152] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5954), 2, + ACTIONS(6002), 2, sym_number, sym_private_property_identifier, - STATE(3439), 3, + STATE(3461), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223817,37 +224228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103987] = 11, - ACTIONS(1505), 1, + [104209] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(6004), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, + STATE(3475), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 21, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223857,6 +224263,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, @@ -223869,33 +224277,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104050] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [104266] = 30, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3924), 1, + anon_sym_LBRACK, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4466), 1, + anon_sym_as, + ACTIONS(4470), 1, + anon_sym_BANG, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4508), 1, + anon_sym_satisfies, + ACTIONS(5846), 1, + anon_sym_AMP_AMP, + ACTIONS(5848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5850), 1, + anon_sym_GT_GT, + ACTIONS(5854), 1, + anon_sym_AMP, + ACTIONS(5856), 1, + anon_sym_CARET, + ACTIONS(5858), 1, + anon_sym_PIPE, + ACTIONS(5862), 1, + anon_sym_PERCENT, + ACTIONS(5864), 1, + anon_sym_STAR_STAR, + ACTIONS(5866), 1, + anon_sym_LT, + ACTIONS(5874), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5876), 1, + sym__ternary_qmark, + STATE(1522), 1, + sym_type_arguments, + STATE(1622), 1, + sym_arguments, + STATE(5015), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(4506), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5842), 2, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_SLASH, + ACTIONS(5844), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5872), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5868), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104367] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, + ACTIONS(1595), 1, anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6006), 2, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + STATE(3369), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223919,33 +224397,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104109] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [104424] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6008), 2, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + STATE(3409), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223969,16 +224446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104168] = 4, - ACTIONS(3596), 1, + [104481] = 6, + ACTIONS(3483), 1, anon_sym_EQ, + ACTIONS(3627), 1, + anon_sym_in, + ACTIONS(3630), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3437), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -223989,12 +224469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(3441), 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, @@ -224014,33 +224493,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104217] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [104534] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6010), 2, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + STATE(3363), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224064,13 +224542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104276] = 4, - ACTIONS(3730), 1, + [104591] = 4, + ACTIONS(3607), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224084,11 +224562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3441), 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, @@ -224108,24 +224587,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104324] = 3, + [104640] = 4, + ACTIONS(3591), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 12, - sym__automatic_semicolon, + ACTIONS(3437), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [104689] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, + ACTIONS(1595), 1, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6012), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1811), 25, + STATE(3416), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224149,26 +224681,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104370] = 3, + [104746] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(5088), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, - sym__automatic_semicolon, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1958), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224192,15 +224731,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104416] = 4, - ACTIONS(3736), 1, + [104805] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6014), 2, + sym_number, + sym_private_property_identifier, + STATE(3374), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [104862] = 4, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224214,7 +224800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224238,11 +224824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104464] = 3, + [104910] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224255,7 +224841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224281,11 +224867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104510] = 3, + [104956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224298,7 +224884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224324,29 +224910,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104556] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(5964), 1, - anon_sym_LPAREN, - ACTIONS(5966), 1, - anon_sym_DOT, - STATE(2747), 1, - sym_arguments, - STATE(5376), 1, - sym_type_arguments, + [105002] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 7, + ACTIONS(6026), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3515), 25, + ACTIONS(6024), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224372,15 +224953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104612] = 3, + [105048] = 5, + ACTIONS(6032), 1, + anon_sym_SEMI, + ACTIONS(6035), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, - sym__automatic_semicolon, + ACTIONS(6030), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -224389,7 +224972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(6028), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224415,11 +224998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104658] = 3, + [105098] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5974), 12, + ACTIONS(6039), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224432,7 +225015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5972), 25, + ACTIONS(6037), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224458,13 +225041,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104704] = 4, - ACTIONS(5976), 1, + [105144] = 5, + ACTIONS(6045), 1, + anon_sym_SEMI, + ACTIONS(6048), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 11, + ACTIONS(6043), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6041), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105194] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6039), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -224476,7 +225103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1811), 25, + ACTIONS(6037), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224502,11 +225129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104752] = 3, + [105240] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224519,7 +225146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224545,12 +225172,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104798] = 3, + [105286] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5980), 12, + ACTIONS(1809), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1811), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105332] = 4, + ACTIONS(6050), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1809), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -224562,7 +225233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5978), 25, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224588,11 +225259,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104844] = 3, + [105380] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(6039), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224605,7 +225276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(6037), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224631,11 +225302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104890] = 3, + [105426] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224648,7 +225319,55 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(6016), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105472] = 8, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(6052), 1, + anon_sym_LPAREN, + ACTIONS(6054), 1, + anon_sym_DOT, + STATE(2768), 1, + sym_arguments, + STATE(5414), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3511), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3509), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224674,11 +225393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104936] = 3, + [105528] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(6058), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224691,7 +225410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(6056), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224717,12 +225436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104982] = 3, + [105574] = 4, + ACTIONS(6060), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 12, - sym__automatic_semicolon, + ACTIONS(1653), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -224734,7 +225454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5986), 25, + ACTIONS(1655), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224760,11 +225480,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105028] = 3, + [105622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(1719), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224777,7 +225497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(1721), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224803,17 +225523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105074] = 5, - ACTIONS(5998), 1, - anon_sym_SEMI, - ACTIONS(6001), 1, - sym__automatic_semicolon, + [105668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 10, + ACTIONS(6064), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -224822,7 +225540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(6062), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224848,11 +225566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105124] = 3, + [105714] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6005), 12, + ACTIONS(6064), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224865,7 +225583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6003), 25, + ACTIONS(6062), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224891,11 +225609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105170] = 3, + [105760] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, + ACTIONS(6068), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224908,7 +225626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6066), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224934,11 +225652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105216] = 3, + [105806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, + ACTIONS(6072), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224951,7 +225669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(6070), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224977,11 +225695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105262] = 3, + [105852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(6076), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224994,7 +225712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225020,57 +225738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105308] = 4, - ACTIONS(3698), 1, - anon_sym_EQ, + [105898] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, - [105356] = 4, - ACTIONS(6015), 1, + ACTIONS(6076), 12, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1659), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225082,7 +225755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1661), 25, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225108,11 +225781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105404] = 3, + [105944] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6019), 12, + ACTIONS(6039), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225125,7 +225798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6017), 25, + ACTIONS(6037), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225151,148 +225824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105450] = 9, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, + [105990] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105508] = 4, - ACTIONS(3712), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, - [105556] = 4, - ACTIONS(3708), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, - [105604] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6023), 12, + ACTIONS(6072), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225305,7 +225841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6021), 25, + ACTIONS(6070), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225331,11 +225867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105650] = 3, + [106036] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1723), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225348,7 +225884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1725), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225374,11 +225910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105696] = 3, + [106082] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(6058), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225391,7 +225927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(6056), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225417,11 +225953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105742] = 3, + [106128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(6080), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225434,7 +225970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(6078), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225460,99 +225996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105788] = 4, - ACTIONS(3706), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, - [105836] = 4, - ACTIONS(3728), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, - [105884] = 3, + [106174] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, + ACTIONS(6064), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225565,7 +226013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(6062), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225591,11 +226039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105930] = 3, + [106220] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6027), 12, + ACTIONS(6084), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225608,7 +226056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6025), 25, + ACTIONS(6082), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225634,13 +226082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105976] = 4, - ACTIONS(6029), 1, - sym__automatic_semicolon, + [106266] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 11, + ACTIONS(6022), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225652,7 +226099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1811), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225678,11 +226125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106024] = 3, + [106312] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(6088), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225695,7 +226142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(6086), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225721,11 +226168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106070] = 3, + [106358] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(6092), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225738,7 +226185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(6090), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225764,11 +226211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106116] = 3, + [106404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 12, + ACTIONS(6064), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225781,7 +226228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(6062), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225807,11 +226254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106162] = 3, + [106450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(6076), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225824,7 +226271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225850,11 +226297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106208] = 3, + [106496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225867,7 +226314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225893,26 +226340,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106254] = 5, - ACTIONS(6035), 1, - anon_sym_SEMI, - ACTIONS(6038), 1, - sym__automatic_semicolon, + [106542] = 4, + ACTIONS(3688), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6033), 10, + ACTIONS(3437), 13, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [106590] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, + ACTIONS(1507), 1, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6031), 25, + ACTIONS(5836), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225936,13 +226433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106304] = 3, + [106648] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 12, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225955,7 +226450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225981,11 +226476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106350] = 3, + [106694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(6072), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225998,7 +226493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(6070), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226024,11 +226519,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106396] = 3, + [106740] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2073), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6027), 12, + ACTIONS(1761), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1763), 22, + 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_satisfies, + [106790] = 4, + ACTIONS(3702), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [106838] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226041,7 +226625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6025), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226067,11 +226651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106442] = 3, + [106884] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(6039), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226084,7 +226668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(6037), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226110,11 +226694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106488] = 3, + [106930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226127,7 +226711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226153,12 +226737,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106534] = 3, + [106976] = 4, + ACTIONS(3710), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [107024] = 4, + ACTIONS(6094), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1653), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226170,7 +226799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(1655), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226196,11 +226825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106580] = 3, + [107072] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, + ACTIONS(6039), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226213,7 +226842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(6037), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226239,11 +226868,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106626] = 3, + [107118] = 4, + ACTIONS(3734), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [107166] = 4, + ACTIONS(3722), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [107214] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6064), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226256,7 +226973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(6062), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226282,11 +226999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106672] = 3, + [107260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, + ACTIONS(6068), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226299,7 +227016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(6066), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226325,11 +227042,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106718] = 3, + [107306] = 4, + ACTIONS(3732), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [107354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(6039), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226342,7 +227103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(6037), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226368,11 +227129,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106764] = 3, + [107400] = 4, + ACTIONS(3736), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(3437), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3441), 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, + [107448] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6072), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226385,7 +227190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(6070), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226411,12 +227216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106810] = 3, + [107494] = 4, + ACTIONS(6096), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, - sym__automatic_semicolon, + ACTIONS(1809), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226428,7 +227234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226454,13 +227260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106856] = 4, - ACTIONS(3704), 1, + [107542] = 4, + ACTIONS(3738), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3437), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226474,7 +227280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3441), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -226498,11 +227304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106904] = 3, + [107590] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5974), 12, + ACTIONS(6076), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226515,7 +227321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5972), 25, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226541,11 +227347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106950] = 3, + [107636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(6076), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226558,7 +227364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226584,57 +227390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106996] = 4, - ACTIONS(3718), 1, - anon_sym_EQ, + [107682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 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, - [107044] = 4, - ACTIONS(6040), 1, + ACTIONS(6076), 12, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1659), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226646,7 +227407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1661), 25, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226672,11 +227433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107092] = 3, + [107728] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(6072), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226689,7 +227450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(6070), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226715,56 +227476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107138] = 5, - ACTIONS(87), 1, - anon_sym_BQUOTE, - STATE(2315), 1, - sym_template_string, + [107774] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1879), 22, - 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_satisfies, - [107188] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5962), 12, + ACTIONS(6076), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226777,7 +227493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226803,11 +227519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107234] = 3, + [107820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(6100), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226820,7 +227536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(6098), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226846,29 +227562,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107280] = 7, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_RBRACE, - STATE(5136), 1, - aux_sym_object_repeat1, + [107866] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(6104), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + anon_sym_AT, + ACTIONS(6102), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226892,23 +227602,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107333] = 3, + anon_sym_abstract, + anon_sym_accessor, + [107911] = 6, + ACTIONS(4546), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6044), 11, - anon_sym_STAR, + ACTIONS(5727), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1940), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6042), 25, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226932,39 +227649,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107378] = 14, + [107962] = 14, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6106), 1, anon_sym_STAR, - ACTIONS(6048), 1, + ACTIONS(6108), 1, anon_sym_async, - ACTIONS(6052), 1, + ACTIONS(6112), 1, anon_sym_readonly, - STATE(2762), 1, + STATE(2773), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(6110), 2, sym_number, sym_private_property_identifier, - ACTIONS(6054), 2, + ACTIONS(6114), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226987,28 +227702,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107445] = 6, - ACTIONS(4429), 1, - anon_sym_EQ, + [108029] = 7, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(5713), 1, + anon_sym_RBRACE, + STATE(4681), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227032,23 +227748,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107496] = 3, + [108082] = 7, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(5713), 1, + anon_sym_RBRACE, + STATE(4681), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 11, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1940), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1811), 25, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227072,30 +227794,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107541] = 6, - ACTIONS(4429), 1, - anon_sym_EQ, + [108135] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(6118), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + anon_sym_AT, + ACTIONS(6116), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227119,73 +227834,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107592] = 5, - ACTIONS(4535), 1, - anon_sym_LPAREN, - STATE(2088), 1, - sym_arguments, + anon_sym_abstract, + anon_sym_accessor, + [108180] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 13, + ACTIONS(1809), 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(4220), 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, - [107641] = 7, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5665), 1, anon_sym_RBRACE, - STATE(5136), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + anon_sym_AT, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227209,11 +227876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107694] = 3, + anon_sym_abstract, + anon_sym_accessor, + [108225] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6058), 11, + ACTIONS(6122), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227225,7 +227894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6056), 25, + ACTIONS(6120), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227251,11 +227920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107739] = 3, + [108270] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1723), 11, + ACTIONS(6122), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227267,7 +227936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1725), 25, + ACTIONS(6120), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227293,11 +227962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107784] = 3, + [108315] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6062), 11, + ACTIONS(1719), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227309,7 +227978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6060), 25, + ACTIONS(1721), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227335,23 +228004,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107829] = 3, + [108360] = 5, + ACTIONS(4661), 1, + anon_sym_LPAREN, + STATE(2324), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6066), 11, + ACTIONS(4190), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4192), 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, + [108409] = 6, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5727), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1958), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6064), 25, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227375,13 +228093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107874] = 3, + [108460] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6058), 11, + ACTIONS(6126), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227393,7 +228109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6056), 25, + ACTIONS(6124), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227419,38 +228135,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107919] = 10, + [108505] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6128), 1, anon_sym_STAR, + ACTIONS(6130), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(6132), 2, sym_number, sym_private_property_identifier, - ACTIONS(6054), 2, + ACTIONS(6134), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3858), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -227467,30 +228184,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107977] = 9, + [108565] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6068), 1, - anon_sym_EQ_GT, + ACTIONS(6128), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(6132), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(6134), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3858), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227500,8 +228220,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, @@ -227514,29 +228232,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108033] = 10, + [108623] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6070), 1, + ACTIONS(6136), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6072), 2, + ACTIONS(6138), 2, sym_number, sym_private_property_identifier, - ACTIONS(6074), 2, + ACTIONS(6140), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3833), 3, + STATE(3925), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -227562,26 +228280,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108091] = 5, + [108681] = 17, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4793), 1, + anon_sym_accessor, + ACTIONS(4828), 1, + anon_sym_STAR, + ACTIONS(4832), 1, + anon_sym_async, + ACTIONS(6142), 1, + anon_sym_static, + ACTIONS(6144), 1, + anon_sym_readonly, + ACTIONS(6146), 1, + anon_sym_declare, + ACTIONS(6148), 1, + anon_sym_abstract, + STATE(2754), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5827), 2, + ACTIONS(4834), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4838), 2, + anon_sym_get, + anon_sym_set, + STATE(3048), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 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, + [108753] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5836), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1958), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + ACTIONS(1956), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227605,30 +228378,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108139] = 5, + [108801] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(3569), 9, anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_LT, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + anon_sym_AT, + ACTIONS(3567), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -227648,38 +228417,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108187] = 10, + anon_sym_abstract, + anon_sym_accessor, + [108845] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6076), 1, + ACTIONS(6106), 1, anon_sym_STAR, + ACTIONS(6108), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6078), 2, + ACTIONS(6110), 2, sym_number, sym_private_property_identifier, - ACTIONS(6080), 2, + ACTIONS(6114), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3804), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -227696,43 +228468,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108245] = 11, + [108905] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6082), 1, - anon_sym_STAR, - ACTIONS(6084), 1, - anon_sym_async, + ACTIONS(6150), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6110), 2, sym_number, sym_private_property_identifier, - ACTIONS(6088), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3883), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 20, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227745,43 +228515,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108305] = 11, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(6076), 1, - anon_sym_STAR, - ACTIONS(6090), 1, - anon_sym_async, + [108961] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6078), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6080), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(5836), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3804), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 20, + ACTIONS(1940), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227794,54 +228558,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108365] = 17, - ACTIONS(1583), 1, + [109009] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4748), 1, + ACTIONS(6152), 1, anon_sym_STAR, - ACTIONS(4752), 1, - anon_sym_async, - ACTIONS(4774), 1, - anon_sym_accessor, - ACTIONS(6092), 1, - anon_sym_static, - ACTIONS(6094), 1, - anon_sym_readonly, - ACTIONS(6096), 1, - anon_sym_declare, - ACTIONS(6098), 1, - anon_sym_abstract, - STATE(2746), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, + ACTIONS(6154), 2, sym_number, sym_private_property_identifier, - ACTIONS(4758), 2, + ACTIONS(6156), 2, anon_sym_get, anon_sym_set, - STATE(3017), 3, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 16, + ACTIONS(2314), 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, @@ -227849,41 +228606,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108437] = 17, - ACTIONS(1583), 1, + [109067] = 17, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, + ACTIONS(5100), 1, anon_sym_STAR, - ACTIONS(5045), 1, + ACTIONS(5102), 1, anon_sym_async, - ACTIONS(6102), 1, + ACTIONS(6160), 1, anon_sym_static, - ACTIONS(6104), 1, + ACTIONS(6162), 1, anon_sym_readonly, - ACTIONS(6106), 1, + ACTIONS(6164), 1, anon_sym_declare, - ACTIONS(6108), 1, + ACTIONS(6166), 1, anon_sym_abstract, - ACTIONS(6110), 1, + ACTIONS(6168), 1, anon_sym_accessor, - STATE(2763), 1, + STATE(2760), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, + ACTIONS(5108), 2, anon_sym_get, anon_sym_set, - ACTIONS(6100), 2, + ACTIONS(6158), 2, sym_number, sym_private_property_identifier, - STATE(3021), 3, + STATE(3057), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -227904,39 +228661,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108509] = 11, + [109139] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6106), 1, anon_sym_STAR, - ACTIONS(6048), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(6110), 2, sym_number, sym_private_property_identifier, - ACTIONS(6054), 2, + ACTIONS(6114), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -227953,81 +228709,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108569] = 10, + [109197] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6082), 1, + ACTIONS(6152), 1, anon_sym_STAR, + ACTIONS(6170), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6154), 2, sym_number, sym_private_property_identifier, - ACTIONS(6088), 2, + ACTIONS(6156), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3883), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 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, - [108627] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3572), 9, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LT, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3570), 26, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228040,38 +228758,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [108671] = 13, - ACTIONS(1583), 1, + [109257] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6114), 1, - anon_sym_static, - ACTIONS(6116), 1, - anon_sym_readonly, - ACTIONS(6118), 1, - anon_sym_abstract, - ACTIONS(6120), 1, - anon_sym_accessor, - STATE(2795), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6112), 2, + ACTIONS(5447), 2, sym_number, sym_private_property_identifier, - STATE(3445), 3, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 20, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228079,12 +228787,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, @@ -228092,24 +228803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108734] = 8, + [109310] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6122), 2, + ACTIONS(5255), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3866), 3, + STATE(3927), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228137,24 +228848,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108787] = 8, + [109363] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6124), 2, + ACTIONS(5394), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3879), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228182,24 +228893,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108840] = 8, + [109416] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6138), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3883), 3, + STATE(3925), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228227,24 +228938,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108893] = 8, + [109469] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5601), 2, + ACTIONS(6172), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3785), 3, + STATE(3881), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228272,28 +228983,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108946] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, + [109522] = 6, + ACTIONS(6174), 1, + anon_sym_AT, + STATE(2707), 1, + aux_sym_export_statement_repeat1, + STATE(2769), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5203), 2, + ACTIONS(3554), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3853), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3552), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228317,24 +229024,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108999] = 8, + anon_sym_abstract, + anon_sym_accessor, + [109571] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5456), 2, + ACTIONS(6177), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3911), 3, + STATE(3876), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228362,24 +229071,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109052] = 8, + [109624] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(5301), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228407,36 +229116,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109105] = 13, - ACTIONS(1583), 1, + [109677] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_static, - ACTIONS(4927), 1, - anon_sym_readonly, - ACTIONS(4929), 1, - anon_sym_abstract, - ACTIONS(4931), 1, - anon_sym_accessor, - STATE(2782), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(5461), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 20, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228444,12 +229145,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, @@ -228457,24 +229161,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109168] = 8, + [109730] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6078), 2, + ACTIONS(5723), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3804), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228502,24 +229206,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109221] = 8, + [109783] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5181), 2, + ACTIONS(5429), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3893), 3, + STATE(3921), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228547,24 +229251,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109274] = 8, + [109836] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5661), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3926), 3, + STATE(3811), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228592,24 +229296,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109327] = 8, + [109889] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5639), 2, + ACTIONS(5563), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3914), 3, + STATE(3827), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228637,24 +229341,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109380] = 8, + [109942] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 2, + ACTIONS(5455), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3857), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228682,24 +229386,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109433] = 8, + [109995] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5383), 2, + ACTIONS(6179), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3868), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228727,24 +229431,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109486] = 8, + [110048] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(6110), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3813), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228772,24 +229476,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109539] = 8, + [110101] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 2, + ACTIONS(5273), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3869), 3, + STATE(3839), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228817,24 +229521,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109592] = 8, + [110154] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5577), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3908), 3, + STATE(3842), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228862,24 +229566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109645] = 8, + [110207] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6126), 2, + ACTIONS(5263), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3795), 3, + STATE(3844), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228907,24 +229611,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109698] = 8, + [110260] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6128), 2, + ACTIONS(6181), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3802), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228952,24 +229656,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109751] = 8, + [110313] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6072), 2, + ACTIONS(6183), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3833), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228997,24 +229701,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109804] = 8, + [110366] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(6185), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3902), 3, + STATE(3913), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229042,24 +229746,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109857] = 8, + [110419] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6130), 2, + ACTIONS(6132), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3924), 3, + STATE(3858), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229087,24 +229791,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109910] = 8, + [110472] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5509), 2, + ACTIONS(5537), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3826), 3, + STATE(3946), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229132,24 +229836,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109963] = 8, + [110525] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, + ACTIONS(5425), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229177,24 +229881,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110016] = 8, + [110578] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, + ACTIONS(5657), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3888), 3, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229222,28 +229926,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110069] = 8, - ACTIONS(1505), 1, + [110631] = 13, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(4953), 1, + anon_sym_static, + ACTIONS(4955), 1, + anon_sym_readonly, + ACTIONS(4957), 1, + anon_sym_abstract, + ACTIONS(4959), 1, + anon_sym_accessor, + STATE(2822), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5235), 2, + ACTIONS(4951), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3916), 3, + STATE(3486), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229251,15 +229963,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, @@ -229267,24 +229976,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110122] = 6, - ACTIONS(6132), 1, - anon_sym_AT, - STATE(2717), 1, - aux_sym_export_statement_repeat1, - STATE(2749), 1, - sym_decorator, + [110694] = 13, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(6189), 1, + anon_sym_static, + ACTIONS(6191), 1, + anon_sym_readonly, + ACTIONS(6193), 1, + anon_sym_abstract, + ACTIONS(6195), 1, + anon_sym_accessor, + STATE(2784), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6187), 2, sym_number, sym_private_property_identifier, - ACTIONS(3581), 25, + STATE(3445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229292,15 +230013,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, @@ -229308,26 +230026,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110171] = 8, + [110757] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5553), 2, + ACTIONS(6154), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3816), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229355,24 +230071,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110224] = 8, + [110810] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6135), 2, + ACTIONS(5293), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3850), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229400,28 +230116,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110277] = 9, - ACTIONS(1505), 1, + [110863] = 12, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6137), 1, - anon_sym_RBRACE, - STATE(4823), 1, - sym_enum_assignment, + ACTIONS(5881), 1, + anon_sym_readonly, + ACTIONS(6197), 1, + anon_sym_STAR, + STATE(2777), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6139), 2, + ACTIONS(6199), 2, sym_number, sym_private_property_identifier, - STATE(4037), 3, + ACTIONS(6201), 2, + anon_sym_get, + anon_sym_set, + STATE(3049), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229430,14 +230153,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, @@ -229445,24 +230164,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110331] = 9, + [110923] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_type, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2366), 1, + anon_sym_module, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2370), 1, + anon_sym_global, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + STATE(1322), 1, + sym_decorator, + STATE(3962), 1, + sym_declaration, + STATE(4179), 1, + sym_internal_module, + STATE(4268), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3987), 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, + [111003] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6141), 1, + ACTIONS(6203), 1, anon_sym_RBRACE, - STATE(5484), 1, + STATE(5503), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4491), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229490,24 +230267,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110385] = 9, + [111057] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6145), 1, + ACTIONS(6207), 1, anon_sym_RBRACE, - STATE(5484), 1, + STATE(5503), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4491), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229535,43 +230312,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110439] = 12, - ACTIONS(1583), 1, + [111111] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4544), 1, + anon_sym_STAR, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5910), 1, + ACTIONS(4550), 1, + anon_sym_async, + ACTIONS(4554), 1, anon_sym_readonly, - ACTIONS(6147), 1, - anon_sym_STAR, - STATE(2758), 1, + ACTIONS(6209), 1, + anon_sym_static, + STATE(2774), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6149), 2, + ACTIONS(4552), 2, sym_number, sym_private_property_identifier, - ACTIONS(6151), 2, + ACTIONS(4556), 2, anon_sym_get, anon_sym_set, - STATE(3010), 3, + STATE(3138), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(3646), 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, @@ -229583,7 +230362,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110499] = 22, + [111175] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2238), 1, + anon_sym_namespace, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, + anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2262), 1, + anon_sym_declare, + ACTIONS(2264), 1, + anon_sym_module, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(6211), 1, + anon_sym_default, + STATE(789), 1, + sym_internal_module, + STATE(861), 1, + sym_declaration, + STATE(1322), 1, + sym_decorator, + STATE(4055), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(859), 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, + [111255] = 22, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2346), 1, @@ -229612,22 +230449,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_module, - ACTIONS(6153), 1, + ACTIONS(6213), 1, anon_sym_default, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(3962), 1, + STATE(4100), 1, sym_declaration, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4399), 1, + STATE(4179), 1, sym_internal_module, + STATE(4268), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4393), 13, + STATE(3987), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -229641,7 +230478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110579] = 22, + [111335] = 22, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2238), 1, @@ -229674,18 +230511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, ACTIONS(2300), 1, anon_sym_global, - STATE(811), 1, + STATE(789), 1, sym_internal_module, - STATE(886), 1, + STATE(828), 1, sym_declaration, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(4284), 1, + STATE(4055), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(852), 13, + STATE(859), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -229699,49 +230536,44 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110659] = 14, - ACTIONS(1583), 1, + [111415] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5057), 1, - anon_sym_STAR, - ACTIONS(5059), 1, - anon_sym_async, - ACTIONS(5063), 1, - anon_sym_readonly, - ACTIONS(6155), 1, - anon_sym_static, - STATE(2766), 1, - sym_override_modifier, + ACTIONS(6215), 1, + anon_sym_RBRACE, + STATE(5503), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5061), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - ACTIONS(5065), 2, - anon_sym_get, - anon_sym_set, - STATE(3055), 3, + STATE(4491), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 17, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229749,103 +230581,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110723] = 22, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_type, - ACTIONS(2348), 1, - anon_sym_namespace, - ACTIONS(2350), 1, - anon_sym_import, - ACTIONS(2352), 1, - anon_sym_var, - ACTIONS(2354), 1, - anon_sym_let, - ACTIONS(2356), 1, - anon_sym_const, - ACTIONS(2358), 1, - anon_sym_class, - ACTIONS(2360), 1, - anon_sym_async, - ACTIONS(2362), 1, - anon_sym_function, - ACTIONS(2364), 1, - anon_sym_declare, - ACTIONS(2366), 1, - anon_sym_module, - ACTIONS(2368), 1, - anon_sym_abstract, - ACTIONS(2370), 1, - anon_sym_global, - ACTIONS(2372), 1, - anon_sym_interface, - ACTIONS(2374), 1, - anon_sym_enum, - STATE(1290), 1, - sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4399), 1, - sym_internal_module, - STATE(4415), 1, - sym_declaration, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4393), 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, - [110803] = 14, - ACTIONS(1583), 1, + [111469] = 12, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(3668), 1, anon_sym_override, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, + ACTIONS(6217), 1, + anon_sym_STAR, + ACTIONS(6221), 1, anon_sym_readonly, - ACTIONS(6157), 1, - anon_sym_static, - STATE(2748), 1, + STATE(2767), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(6219), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(6223), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3024), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 17, + ACTIONS(3646), 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, @@ -229857,82 +230629,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110867] = 22, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2242), 1, - anon_sym_import, - ACTIONS(2244), 1, - anon_sym_var, - ACTIONS(2246), 1, - anon_sym_let, - ACTIONS(2248), 1, - anon_sym_const, - ACTIONS(2253), 1, - anon_sym_class, - ACTIONS(2255), 1, - anon_sym_async, - ACTIONS(2257), 1, - anon_sym_function, - ACTIONS(2266), 1, - anon_sym_abstract, - ACTIONS(2268), 1, - anon_sym_interface, - ACTIONS(2270), 1, - anon_sym_enum, - ACTIONS(2296), 1, + [111529] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(6225), 1, + anon_sym_RBRACE, + STATE(5503), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6205), 2, + sym_number, + sym_private_property_identifier, + STATE(4491), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, anon_sym_type, - ACTIONS(2306), 1, anon_sym_namespace, - ACTIONS(2308), 1, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2310), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(6159), 1, - anon_sym_default, - STATE(811), 1, - sym_internal_module, - STATE(843), 1, - sym_declaration, - STATE(1290), 1, - sym_decorator, - STATE(4284), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(852), 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, - [110947] = 9, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111583] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6161), 1, + ACTIONS(6227), 1, anon_sym_RBRACE, - STATE(5484), 1, + STATE(5503), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4491), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229960,24 +230719,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111001] = 9, + [111637] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6163), 1, + ACTIONS(6229), 1, anon_sym_RBRACE, - STATE(5484), 1, + STATE(5503), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4491), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230005,49 +230764,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111055] = 14, + [111691] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, + anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(2300), 1, + anon_sym_global, + ACTIONS(2306), 1, + anon_sym_namespace, + ACTIONS(2308), 1, + anon_sym_declare, + ACTIONS(2324), 1, + anon_sym_module, + STATE(789), 1, + sym_internal_module, + STATE(828), 1, + sym_declaration, + STATE(1322), 1, + sym_decorator, + STATE(4055), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(859), 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, + [111771] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(6165), 1, - anon_sym_static, - STATE(2756), 1, - sym_override_modifier, + ACTIONS(6231), 1, + anon_sym_RBRACE, + STATE(4931), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(6233), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, + STATE(4370), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 17, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -230055,7 +230867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111119] = 22, + [111825] = 22, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2238), 1, @@ -230086,20 +230898,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2296), 1, anon_sym_type, - ACTIONS(6167), 1, + ACTIONS(6235), 1, anon_sym_default, - STATE(811), 1, + STATE(789), 1, sym_internal_module, - STATE(843), 1, + STATE(861), 1, sym_declaration, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(4284), 1, + STATE(4055), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(852), 13, + STATE(859), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -230113,24 +230925,119 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111199] = 9, + [111905] = 14, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6169), 1, + ACTIONS(5022), 1, + anon_sym_STAR, + ACTIONS(6237), 1, + anon_sym_static, + STATE(2772), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 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, + [111969] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(6239), 1, anon_sym_RBRACE, - STATE(4815), 1, + STATE(5137), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6241), 2, + sym_number, + sym_private_property_identifier, + STATE(4222), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112023] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4803), 1, + anon_sym_LBRACK, + ACTIONS(6243), 1, + anon_sym_RBRACE, + STATE(5503), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6171), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(3979), 3, + STATE(4491), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230158,7 +231065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111253] = 22, + [112077] = 22, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2242), 1, @@ -230183,26 +231090,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2296), 1, anon_sym_type, - ACTIONS(2300), 1, - anon_sym_global, ACTIONS(2306), 1, anon_sym_namespace, ACTIONS(2308), 1, anon_sym_declare, - ACTIONS(2324), 1, + ACTIONS(2310), 1, anon_sym_module, - STATE(811), 1, + ACTIONS(6245), 1, + anon_sym_default, + STATE(789), 1, sym_internal_module, - STATE(886), 1, + STATE(861), 1, sym_declaration, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, - STATE(4284), 1, + STATE(4055), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(852), 13, + STATE(859), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -230216,24 +231123,74 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111333] = 9, + [112157] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3668), 1, + anon_sym_override, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, + ACTIONS(5120), 1, + anon_sym_readonly, + ACTIONS(6247), 1, + anon_sym_static, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5118), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5122), 2, + anon_sym_get, + anon_sym_set, + STATE(3137), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 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, + [112221] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6173), 1, + ACTIONS(6249), 1, anon_sym_RBRACE, - STATE(5484), 1, + STATE(5503), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4491), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230261,39 +231218,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111387] = 9, - ACTIONS(1505), 1, + [112275] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6175), 1, - anon_sym_RBRACE, - STATE(5484), 1, - sym_enum_assignment, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5092), 1, + anon_sym_async, + ACTIONS(5096), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(5094), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + ACTIONS(5098), 2, + anon_sym_get, + anon_sym_set, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 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_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112332] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5139), 1, + anon_sym_STAR, + ACTIONS(5141), 1, + anon_sym_async, + ACTIONS(6253), 1, anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5147), 2, anon_sym_get, anon_sym_set, + ACTIONS(6251), 2, + sym_number, + sym_private_property_identifier, + STATE(3029), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 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, @@ -230306,24 +231310,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111441] = 9, + [112389] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6177), 1, - anon_sym_RBRACE, - STATE(5484), 1, + STATE(5503), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4491), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230351,28 +231353,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111495] = 9, + [112440] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, - anon_sym_RBRACE, - STATE(5484), 1, - sym_enum_assignment, + ACTIONS(5022), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(2314), 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, + [112497] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3615), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3613), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230396,93 +231435,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111549] = 22, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2238), 1, - anon_sym_namespace, - ACTIONS(2242), 1, - anon_sym_import, - ACTIONS(2244), 1, - anon_sym_var, - ACTIONS(2246), 1, - anon_sym_let, - ACTIONS(2248), 1, - anon_sym_const, - ACTIONS(2253), 1, - anon_sym_class, - ACTIONS(2255), 1, - anon_sym_async, - ACTIONS(2257), 1, - anon_sym_function, - ACTIONS(2262), 1, - anon_sym_declare, - ACTIONS(2264), 1, - anon_sym_module, - ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2268), 1, - anon_sym_interface, - ACTIONS(2270), 1, - anon_sym_enum, - ACTIONS(2296), 1, - anon_sym_type, - ACTIONS(6181), 1, - anon_sym_default, - STATE(811), 1, - sym_internal_module, - STATE(843), 1, - sym_declaration, - STATE(1290), 1, - sym_decorator, - STATE(4284), 1, - aux_sym_export_statement_repeat1, + anon_sym_accessor, + [112538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(852), 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, - [111629] = 12, - ACTIONS(1583), 1, + ACTIONS(3605), 7, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6187), 1, - anon_sym_readonly, - STATE(2745), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6185), 2, sym_number, sym_private_property_identifier, - ACTIONS(6189), 2, - anon_sym_get, - anon_sym_set, - STATE(3023), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 19, + anon_sym_AT, + ACTIONS(3603), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230491,10 +231458,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, @@ -230502,29 +231473,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111689] = 11, - ACTIONS(1583), 1, + anon_sym_abstract, + anon_sym_accessor, + [112579] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5507), 1, + ACTIONS(5139), 1, anon_sym_STAR, - ACTIONS(5513), 1, + ACTIONS(5141), 1, anon_sym_async, - ACTIONS(6191), 1, + ACTIONS(6257), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5515), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5517), 2, + ACTIONS(5147), 2, anon_sym_get, anon_sym_set, - STATE(3044), 3, + ACTIONS(6255), 2, + sym_number, + sym_private_property_identifier, + STATE(3058), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230548,33 +231521,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111746] = 11, - ACTIONS(1505), 1, + [112636] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(4828), 1, anon_sym_STAR, + ACTIONS(4832), 1, + anon_sym_async, + ACTIONS(4836), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(4834), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(4838), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230594,29 +231567,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111803] = 11, - ACTIONS(1583), 1, + [112693] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5116), 1, anon_sym_async, - ACTIONS(4437), 1, + ACTIONS(5120), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(5118), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(5122), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3137), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230640,38 +231613,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111860] = 9, - ACTIONS(1505), 1, + [112750] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6147), 1, + ACTIONS(5153), 1, anon_sym_STAR, + ACTIONS(5155), 1, + anon_sym_async, + ACTIONS(5159), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5605), 2, + ACTIONS(5157), 2, sym_number, sym_private_property_identifier, - ACTIONS(6193), 2, + ACTIONS(5161), 2, anon_sym_get, anon_sym_set, - STATE(3775), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(3646), 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, @@ -230684,29 +231659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111913] = 11, - ACTIONS(1583), 1, + [112807] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(5271), 1, anon_sym_STAR, - ACTIONS(5035), 1, + ACTIONS(5551), 1, anon_sym_async, - ACTIONS(5039), 1, + ACTIONS(6261), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(5555), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + ACTIONS(6259), 2, + sym_number, + sym_private_property_identifier, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230730,11 +231705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111970] = 3, + [112864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 7, + ACTIONS(3511), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -230742,7 +231717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3600), 25, + ACTIONS(3509), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230768,29 +231743,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [112011] = 11, - ACTIONS(1583), 1, + [112905] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5113), 1, + ACTIONS(4544), 1, anon_sym_STAR, - ACTIONS(5115), 1, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4550), 1, anon_sym_async, - ACTIONS(5119), 1, + ACTIONS(4554), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 2, + ACTIONS(4552), 2, sym_number, sym_private_property_identifier, - ACTIONS(5121), 2, + ACTIONS(4556), 2, anon_sym_get, anon_sym_set, - STATE(3075), 3, + STATE(3138), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230814,103 +231789,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112068] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3617), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3615), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112109] = 11, - ACTIONS(1583), 1, + [112962] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5057), 1, + ACTIONS(6197), 1, anon_sym_STAR, - ACTIONS(5059), 1, - anon_sym_async, - ACTIONS(5063), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5061), 2, + ACTIONS(5721), 2, sym_number, sym_private_property_identifier, - ACTIONS(5065), 2, + ACTIONS(6263), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 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, - [112166] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3621), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3619), 25, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230920,8 +231821,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, @@ -230934,13 +231833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112207] = 3, + [113015] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 7, + ACTIONS(3597), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -230948,7 +231845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3515), 25, + ACTIONS(3595), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230974,11 +231871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [112248] = 3, + [113056] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3594), 7, + ACTIONS(3623), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -230986,7 +231883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3592), 25, + ACTIONS(3621), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231012,29 +231909,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [112289] = 11, - ACTIONS(1583), 1, + [113097] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5326), 1, + ACTIONS(5619), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5621), 1, anon_sym_async, - ACTIONS(6197), 1, + ACTIONS(6265), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5501), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6195), 2, + ACTIONS(5623), 2, sym_number, sym_private_property_identifier, - STATE(3014), 3, + ACTIONS(5625), 2, + anon_sym_get, + anon_sym_set, + STATE(3134), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231058,40 +231955,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112346] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5344), 1, - anon_sym_STAR, - ACTIONS(5350), 1, - anon_sym_async, - ACTIONS(6199), 1, - anon_sym_readonly, + [113154] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5352), 2, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1940), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5354), 2, - anon_sym_get, - anon_sym_set, - STATE(3026), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(1938), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231104,29 +231994,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112403] = 11, + [113197] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6106), 1, anon_sym_STAR, - ACTIONS(6048), 1, + ACTIONS(6108), 1, anon_sym_async, - ACTIONS(6052), 1, + ACTIONS(6112), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(6110), 2, sym_number, sym_private_property_identifier, - ACTIONS(6054), 2, + ACTIONS(6114), 2, anon_sym_get, anon_sym_set, - STATE(3791), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231150,33 +232040,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112460] = 11, - ACTIONS(1583), 1, + [113254] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(4748), 1, + ACTIONS(6152), 1, anon_sym_STAR, - ACTIONS(4752), 1, + ACTIONS(6170), 1, anon_sym_async, - ACTIONS(4756), 1, + ACTIONS(6267), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, + ACTIONS(6154), 2, sym_number, sym_private_property_identifier, - ACTIONS(4758), 2, + ACTIONS(6156), 2, anon_sym_get, anon_sym_set, - STATE(3017), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(2314), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231196,38 +232086,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112517] = 9, - ACTIONS(1505), 1, + [113311] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6201), 1, + ACTIONS(5170), 1, anon_sym_STAR, + ACTIONS(5172), 1, + anon_sym_async, + ACTIONS(5176), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5639), 2, + ACTIONS(5174), 2, sym_number, sym_private_property_identifier, - ACTIONS(6203), 2, + ACTIONS(5178), 2, anon_sym_get, anon_sym_set, - STATE(3914), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(3646), 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, @@ -231240,33 +232132,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112570] = 4, + [113368] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(5100), 1, + anon_sym_STAR, + ACTIONS(5102), 1, + anon_sym_async, + ACTIONS(6271), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5108), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6269), 2, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + STATE(3044), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 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, @@ -231279,29 +232178,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112613] = 11, - ACTIONS(1583), 1, + [113425] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5392), 1, anon_sym_STAR, - ACTIONS(5084), 1, + ACTIONS(5398), 1, anon_sym_async, - ACTIONS(6207), 1, + ACTIONS(6273), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6205), 2, + ACTIONS(5400), 2, sym_number, sym_private_property_identifier, - STATE(3034), 3, + ACTIONS(5402), 2, + anon_sym_get, + anon_sym_set, + STATE(3054), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231325,175 +232224,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112670] = 8, + [113482] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - STATE(5484), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6143), 2, - sym_number, - sym_private_property_identifier, - STATE(4531), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112721] = 11, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(6082), 1, + ACTIONS(6275), 1, anon_sym_STAR, - ACTIONS(6084), 1, - anon_sym_async, - ACTIONS(6209), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(5723), 2, sym_number, sym_private_property_identifier, - ACTIONS(6088), 2, + ACTIONS(6277), 2, anon_sym_get, anon_sym_set, - STATE(3883), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 19, + ACTIONS(2314), 21, 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, - [112778] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5082), 1, - anon_sym_STAR, - ACTIONS(5084), 1, anon_sym_async, - ACTIONS(6213), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5090), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6211), 2, - sym_number, - sym_private_property_identifier, - STATE(3008), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 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, - [112835] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5389), 1, - anon_sym_STAR, - ACTIONS(5561), 1, - anon_sym_async, - ACTIONS(6215), 1, anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5563), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5565), 2, - anon_sym_get, - anon_sym_set, - STATE(3110), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 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, @@ -231506,75 +232268,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112892] = 11, - ACTIONS(1583), 1, + [113535] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, - anon_sym_STAR, - ACTIONS(5045), 1, - anon_sym_async, - ACTIONS(6219), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5051), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6217), 2, - sym_number, - sym_private_property_identifier, - STATE(3022), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 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, - [112949] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5561), 1, anon_sym_STAR, - ACTIONS(5098), 1, + ACTIONS(5567), 1, anon_sym_async, - ACTIONS(5102), 1, + ACTIONS(6279), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5100), 2, + ACTIONS(5569), 2, sym_number, sym_private_property_identifier, - ACTIONS(5104), 2, + ACTIONS(5571), 2, anon_sym_get, anon_sym_set, - STATE(3069), 3, + STATE(3105), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231598,20 +232314,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113006] = 7, + [113592] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5553), 2, + ACTIONS(6181), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231639,24 +232355,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113054] = 7, - ACTIONS(1505), 1, + [113640] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6283), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5213), 2, + ACTIONS(6281), 2, sym_number, sym_private_property_identifier, - STATE(3827), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231665,7 +232383,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, @@ -231680,20 +232397,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113102] = 7, + [113690] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(5277), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + STATE(3819), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231721,24 +232438,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113150] = 7, - ACTIONS(1505), 1, + [113738] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6287), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5383), 2, + ACTIONS(6285), 2, sym_number, sym_private_property_identifier, - STATE(3868), 3, + STATE(3342), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231747,7 +232466,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, @@ -231762,24 +232480,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113198] = 7, - ACTIONS(1505), 1, + [113788] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(6289), 2, sym_number, sym_private_property_identifier, - STATE(3791), 3, + STATE(3331), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231803,24 +232521,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113246] = 7, - ACTIONS(1505), 1, + [113836] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6293), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(6291), 2, sym_number, sym_private_property_identifier, - STATE(3813), 3, + STATE(3362), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231829,7 +232549,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, @@ -231844,20 +232563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113294] = 7, - ACTIONS(1583), 1, + [113886] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4766), 2, + ACTIONS(6295), 2, sym_number, sym_private_property_identifier, - STATE(3394), 3, + STATE(3429), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231885,24 +232604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113342] = 7, - ACTIONS(1505), 1, + [113934] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 2, + ACTIONS(4785), 2, sym_number, sym_private_property_identifier, - STATE(3869), 3, + STATE(3329), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231926,24 +232645,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113390] = 7, - ACTIONS(1505), 1, + [113982] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6124), 2, + ACTIONS(6297), 2, sym_number, sym_private_property_identifier, - STATE(3879), 3, + STATE(3427), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231967,20 +232686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113438] = 7, + [114030] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5409), 2, + ACTIONS(6177), 2, sym_number, sym_private_property_identifier, - STATE(3908), 3, + STATE(3876), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232008,24 +232727,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113486] = 7, - ACTIONS(1505), 1, + [114078] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6301), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6126), 2, + ACTIONS(6299), 2, sym_number, sym_private_property_identifier, - STATE(3795), 3, + STATE(3347), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232034,7 +232755,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, @@ -232049,24 +232769,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113534] = 7, - ACTIONS(1505), 1, + [114128] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6128), 2, + ACTIONS(6303), 2, sym_number, sym_private_property_identifier, - STATE(3802), 3, + STATE(3379), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232090,24 +232810,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113582] = 7, - ACTIONS(1505), 1, + [114176] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6307), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6305), 2, sym_number, sym_private_property_identifier, - STATE(3883), 3, + STATE(3400), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232116,7 +232838,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, @@ -232131,20 +232852,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113630] = 7, + [114226] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(4805), 2, sym_number, sym_private_property_identifier, - STATE(3926), 3, + STATE(3862), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232172,22 +232893,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113678] = 8, - ACTIONS(1583), 1, + [114274] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6223), 1, + ACTIONS(6311), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6221), 2, + ACTIONS(6309), 2, sym_number, sym_private_property_identifier, - STATE(3319), 3, + STATE(3421), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232214,26 +232935,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113728] = 8, - ACTIONS(1583), 1, + [114324] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5885), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3380), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232242,6 +232961,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, @@ -232256,24 +232976,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113778] = 7, - ACTIONS(1583), 1, + [114372] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(5563), 2, sym_number, sym_private_property_identifier, - STATE(3380), 3, + STATE(3827), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232297,20 +233017,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113826] = 7, + [114420] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6072), 2, + ACTIONS(5429), 2, sym_number, sym_private_property_identifier, - STATE(3833), 3, + STATE(3921), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232338,24 +233058,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113874] = 7, - ACTIONS(1583), 1, + [114468] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6225), 2, + ACTIONS(6110), 2, sym_number, sym_private_property_identifier, - STATE(3301), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232379,20 +233099,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113922] = 7, + [114516] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5639), 2, + ACTIONS(5661), 2, sym_number, sym_private_property_identifier, - STATE(3914), 3, + STATE(3811), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232420,20 +233140,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113970] = 7, + [114564] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5267), 2, sym_number, sym_private_property_identifier, - STATE(3902), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232461,26 +233181,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114018] = 8, - ACTIONS(1583), 1, + [114612] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6227), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 2, + ACTIONS(4951), 2, sym_number, sym_private_property_identifier, - STATE(3466), 3, + STATE(3486), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232489,6 +233207,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, @@ -232503,24 +233222,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114068] = 7, - ACTIONS(1583), 1, + [114660] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 2, + ACTIONS(6154), 2, sym_number, sym_private_property_identifier, - STATE(3466), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232544,20 +233263,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114116] = 7, + [114708] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6130), 2, + ACTIONS(5293), 2, sym_number, sym_private_property_identifier, - STATE(3924), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232585,22 +233304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114164] = 8, - ACTIONS(1583), 1, + [114756] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6231), 1, + ACTIONS(6315), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6229), 2, + ACTIONS(6313), 2, sym_number, sym_private_property_identifier, - STATE(3419), 3, + STATE(3479), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232627,24 +233346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114214] = 7, - ACTIONS(1583), 1, + [114806] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6233), 2, + ACTIONS(5447), 2, sym_number, sym_private_property_identifier, - STATE(3444), 3, + STATE(3824), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232668,26 +233387,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114262] = 8, - ACTIONS(1583), 1, + [114854] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6237), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6235), 2, + ACTIONS(5273), 2, sym_number, sym_private_property_identifier, - STATE(3366), 3, + STATE(3839), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232696,6 +233413,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, @@ -232710,20 +233428,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114312] = 7, - ACTIONS(1583), 1, + [114902] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6239), 2, + ACTIONS(6317), 2, sym_number, sym_private_property_identifier, - STATE(3367), 3, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232751,26 +233469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114360] = 8, - ACTIONS(1583), 1, + [114950] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6243), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6241), 2, + ACTIONS(5577), 2, sym_number, sym_private_property_identifier, - STATE(3375), 3, + STATE(3842), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232779,6 +233495,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, @@ -232793,24 +233510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114410] = 7, - ACTIONS(1583), 1, + [114998] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6245), 2, + ACTIONS(5455), 2, sym_number, sym_private_property_identifier, - STATE(3320), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232834,24 +233551,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114458] = 7, - ACTIONS(1583), 1, + [115046] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6247), 2, + ACTIONS(5263), 2, sym_number, sym_private_property_identifier, - STATE(3383), 3, + STATE(3844), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232875,26 +233592,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114506] = 8, - ACTIONS(1583), 1, + [115094] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6249), 2, + ACTIONS(6319), 2, sym_number, sym_private_property_identifier, - STATE(3372), 3, + STATE(3481), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232903,6 +233618,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, @@ -232917,26 +233633,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114556] = 8, - ACTIONS(1583), 1, + [115142] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(5910), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(5721), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232945,6 +233659,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, @@ -232959,26 +233674,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114606] = 8, - ACTIONS(1583), 1, + [115190] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6255), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6253), 2, + ACTIONS(6321), 2, sym_number, sym_private_property_identifier, - STATE(3333), 3, + STATE(3485), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232987,6 +233700,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, @@ -233001,24 +233715,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114656] = 7, - ACTIONS(1505), 1, + [115238] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6325), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(6323), 2, sym_number, sym_private_property_identifier, - STATE(3887), 3, + STATE(3451), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233027,7 +233743,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, @@ -233042,20 +233757,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114704] = 7, + [115288] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5605), 2, + ACTIONS(6183), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233083,24 +233798,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114752] = 7, - ACTIONS(1505), 1, + [115336] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6329), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5209), 2, + ACTIONS(6327), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3478), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233109,7 +233826,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, @@ -233124,24 +233840,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114800] = 7, - ACTIONS(1505), 1, + [115386] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6331), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5509), 2, + ACTIONS(6000), 2, sym_number, sym_private_property_identifier, - STATE(3826), 3, + STATE(3492), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233150,7 +233868,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, @@ -233165,26 +233882,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114848] = 8, - ACTIONS(1583), 1, + [115436] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6259), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6257), 2, + ACTIONS(6000), 2, sym_number, sym_private_property_identifier, - STATE(3295), 3, + STATE(3492), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233193,6 +233908,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, @@ -233207,20 +233923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114898] = 7, + [115484] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, + ACTIONS(5394), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233248,20 +233964,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114946] = 7, + [115532] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5181), 2, + ACTIONS(6185), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + STATE(3913), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233289,20 +234005,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114994] = 7, + [115580] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5456), 2, + ACTIONS(6172), 2, sym_number, sym_private_property_identifier, - STATE(3911), 3, + STATE(3881), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233330,24 +234046,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115042] = 7, - ACTIONS(1505), 1, + [115628] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(5881), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, + ACTIONS(4951), 2, sym_number, sym_private_property_identifier, - STATE(3888), 3, + STATE(3486), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233356,7 +234074,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, @@ -233371,24 +234088,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115090] = 7, - ACTIONS(1505), 1, + [115678] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(5901), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5203), 2, + ACTIONS(5725), 2, sym_number, sym_private_property_identifier, - STATE(3853), 3, + STATE(3355), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233397,7 +234116,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, @@ -233412,20 +234130,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115138] = 7, + [115728] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5595), 2, sym_number, sym_private_property_identifier, - STATE(3916), 3, + STATE(3934), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233453,20 +234171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115186] = 7, - ACTIONS(1583), 1, + [115776] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(5725), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3355), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233494,20 +234212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115234] = 7, - ACTIONS(1583), 1, + [115824] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6261), 2, + ACTIONS(6333), 2, sym_number, sym_private_property_identifier, - STATE(3402), 3, + STATE(3487), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233535,26 +234253,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115282] = 8, - ACTIONS(1583), 1, + [115872] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6263), 2, + ACTIONS(5537), 2, sym_number, sym_private_property_identifier, - STATE(3435), 3, + STATE(3946), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233563,6 +234279,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, @@ -233577,24 +234294,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115332] = 7, - ACTIONS(1583), 1, + [115920] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6337), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6267), 2, + ACTIONS(6335), 2, sym_number, sym_private_property_identifier, - STATE(3436), 3, + STATE(3365), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233603,7 +234322,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, @@ -233618,20 +234336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115380] = 7, + [115970] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6135), 2, + ACTIONS(5723), 2, sym_number, sym_private_property_identifier, - STATE(3850), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233659,26 +234377,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115428] = 8, - ACTIONS(1583), 1, + [116018] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6271), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6269), 2, + ACTIONS(5657), 2, sym_number, sym_private_property_identifier, - STATE(3452), 3, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233687,6 +234403,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, @@ -233701,20 +234418,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115478] = 7, + [116066] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6078), 2, + ACTIONS(5461), 2, sym_number, sym_private_property_identifier, - STATE(3804), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233742,26 +234459,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115526] = 8, - ACTIONS(1583), 1, + [116114] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, - ACTIONS(6275), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6273), 2, + ACTIONS(6339), 2, sym_number, sym_private_property_identifier, - STATE(3297), 3, + STATE(3440), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233770,6 +234485,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, @@ -233784,24 +234500,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115576] = 7, - ACTIONS(1583), 1, + [116162] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6277), 2, + ACTIONS(6341), 2, sym_number, sym_private_property_identifier, - STATE(3298), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233810,7 +234528,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, @@ -233825,24 +234542,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115624] = 7, - ACTIONS(1583), 1, + [116212] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6279), 2, + ACTIONS(5425), 2, sym_number, sym_private_property_identifier, - STATE(3417), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233866,20 +234583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115672] = 7, + [116260] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6122), 2, + ACTIONS(6132), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + STATE(3858), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233907,26 +234624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115720] = 8, - ACTIONS(1583), 1, + [116308] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6281), 2, + ACTIONS(5301), 2, sym_number, sym_private_property_identifier, - STATE(3430), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233935,6 +234650,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, @@ -233949,20 +234665,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115770] = 7, + [116356] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 2, + ACTIONS(5255), 2, sym_number, sym_private_property_identifier, - STATE(3857), 3, + STATE(3927), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233990,20 +234706,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115818] = 7, + [116404] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5217), 2, + ACTIONS(6138), 2, sym_number, sym_private_property_identifier, - STATE(3834), 3, + STATE(3925), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234031,24 +234747,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115866] = 7, - ACTIONS(1505), 1, + [116452] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4548), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5601), 2, + ACTIONS(6345), 2, sym_number, sym_private_property_identifier, - STATE(3785), 3, + STATE(3387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234072,24 +234788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115914] = 7, - ACTIONS(1583), 1, + [116500] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4803), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6285), 2, + ACTIONS(6179), 2, sym_number, sym_private_property_identifier, - STATE(3379), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234113,15 +234829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115962] = 4, - ACTIONS(6287), 1, + [116548] = 4, + ACTIONS(6347), 1, sym_identifier, - STATE(5649), 1, + STATE(5907), 1, sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6289), 22, + ACTIONS(6349), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234144,110 +234860,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115997] = 9, - ACTIONS(3443), 1, + [116583] = 9, + ACTIONS(3445), 1, anon_sym_LPAREN, - ACTIONS(3447), 1, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(3451), 1, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3447), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3443), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [116624] = 9, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(6351), 1, + anon_sym_LT, + ACTIONS(6353), 1, + anon_sym_DOT, + ACTIONS(6355), 1, + anon_sym_QMARK_DOT, + STATE(2899), 1, + sym_arguments, + STATE(2919), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4004), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [116665] = 9, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(6351), 1, + anon_sym_LT, + ACTIONS(6357), 1, + anon_sym_DOT, + ACTIONS(6359), 1, anon_sym_QMARK_DOT, - ACTIONS(6291), 1, + STATE(2905), 1, + sym_arguments, + STATE(2920), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4008), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4010), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [116706] = 5, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(6351), 1, anon_sym_LT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, + STATE(2901), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3441), 12, + ACTIONS(3417), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [116038] = 9, - ACTIONS(3443), 1, + [116738] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4278), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4280), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6293), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(6295), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - STATE(2872), 1, - sym_arguments, - STATE(2992), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116766] = 5, + ACTIONS(3625), 1, + anon_sym_EQ, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(2889), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4014), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4016), 12, + ACTIONS(3409), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [116079] = 9, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(6291), 1, + [116798] = 5, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(6351), 1, anon_sym_LT, - ACTIONS(6297), 1, - anon_sym_DOT, - ACTIONS(6299), 1, - anon_sym_QMARK_DOT, - STATE(2876), 1, - sym_arguments, - STATE(2989), 1, + STATE(2890), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3996), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3998), 12, + ACTIONS(4024), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [116120] = 3, + [116830] = 5, + ACTIONS(4069), 1, + anon_sym_EQ, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(2902), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4332), 17, + ACTIONS(4071), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234260,19 +235085,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [116148] = 3, + [116862] = 5, + ACTIONS(4076), 1, + anon_sym_EQ, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(2903), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4396), 17, + ACTIONS(4078), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234285,19 +235112,45 @@ static const uint16_t ts_small_parse_table[] = { 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, + [116894] = 5, + ACTIONS(4032), 1, + anon_sym_EQ, + ACTIONS(6351), 1, anon_sym_LT, + STATE(2904), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4034), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [116176] = 3, + [116926] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4178), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4180), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234315,14 +235168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116204] = 3, + [116954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 2, + ACTIONS(4182), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4396), 17, + ACTIONS(4184), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234340,14 +235193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116232] = 3, + [116982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4182), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4400), 17, + ACTIONS(4184), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234365,14 +235218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116260] = 3, + [117010] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 2, + ACTIONS(4182), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4360), 17, + ACTIONS(4184), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234390,14 +235243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116288] = 3, + [117038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 2, + ACTIONS(4248), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4368), 17, + ACTIONS(4250), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234415,14 +235268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116316] = 3, + [117066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 2, + ACTIONS(4278), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4372), 17, + ACTIONS(4280), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234440,14 +235293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116344] = 3, + [117094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 2, + ACTIONS(4252), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4368), 17, + ACTIONS(4254), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234465,14 +235318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116372] = 3, + [117122] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 2, + ACTIONS(4374), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4372), 17, + ACTIONS(4376), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234490,14 +235343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116400] = 3, + [117150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 2, + ACTIONS(4378), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4396), 17, + ACTIONS(4380), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234515,14 +235368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116428] = 3, + [117178] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 2, + ACTIONS(4382), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4300), 17, + ACTIONS(4384), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234540,14 +235393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116456] = 3, + [117206] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4152), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4400), 17, + ACTIONS(4154), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234565,14 +235418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116484] = 3, + [117234] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 2, + ACTIONS(4382), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4308), 17, + ACTIONS(4384), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234590,14 +235443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116512] = 3, + [117262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 2, + ACTIONS(4152), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4312), 17, + ACTIONS(4154), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234615,14 +235468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116540] = 3, + [117290] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 2, + ACTIONS(4170), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4316), 17, + ACTIONS(4172), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234640,14 +235493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116568] = 3, + [117318] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4174), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4176), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234665,14 +235518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116596] = 3, + [117346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 2, + ACTIONS(4170), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4316), 17, + ACTIONS(4172), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234690,14 +235543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116624] = 3, + [117374] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 2, + ACTIONS(4174), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4364), 17, + ACTIONS(4176), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234715,14 +235568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116652] = 3, + [117402] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 2, + ACTIONS(4198), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4364), 17, + ACTIONS(4200), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234740,14 +235593,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116680] = 3, + [117430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 2, + ACTIONS(4210), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4368), 17, + ACTIONS(4212), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234765,14 +235618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116708] = 3, + [117458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 2, + ACTIONS(4198), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4364), 17, + ACTIONS(4200), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234790,14 +235643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116736] = 3, + [117486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4210), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4320), 17, + ACTIONS(4212), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234815,14 +235668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116764] = 3, + [117514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 2, + ACTIONS(4252), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4372), 17, + ACTIONS(4254), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234840,14 +235693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116792] = 3, + [117542] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4256), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4324), 17, + ACTIONS(4258), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234865,14 +235718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116820] = 3, + [117570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4186), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4320), 17, + ACTIONS(4188), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234890,14 +235743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116848] = 3, + [117598] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4186), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4324), 17, + ACTIONS(4188), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234915,14 +235768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116876] = 3, + [117626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4186), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4328), 17, + ACTIONS(4188), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234940,14 +235793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116904] = 3, + [117654] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4256), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4328), 17, + ACTIONS(4258), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234965,14 +235818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116932] = 3, + [117682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, + ACTIONS(4202), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4332), 17, + ACTIONS(4204), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234990,14 +235843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116960] = 3, + [117710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 2, + ACTIONS(4202), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4388), 17, + ACTIONS(4204), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235015,14 +235868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116988] = 3, + [117738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4202), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4204), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235040,14 +235893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117016] = 3, + [117766] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4256), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4400), 17, + ACTIONS(4258), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235065,14 +235918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117044] = 3, + [117794] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 2, + ACTIONS(4278), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4312), 17, + ACTIONS(4280), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235090,166 +235943,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117072] = 3, - ACTIONS(1807), 1, - anon_sym_PIPE, + [117822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 17, - sym__automatic_semicolon, + ACTIONS(4252), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4254), 17, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_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, - anon_sym_PIPE_RBRACE, - [117099] = 18, - ACTIONS(3521), 1, + [117850] = 18, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(6301), 1, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6303), 1, + ACTIONS(6363), 1, anon_sym_EQ, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6307), 1, + ACTIONS(6367), 1, anon_sym_COMMA, - ACTIONS(6309), 1, + ACTIONS(6369), 1, anon_sym_COLON, - ACTIONS(6311), 1, + ACTIONS(6371), 1, anon_sym_GT, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6316), 1, + ACTIONS(6376), 1, anon_sym_DOT, - ACTIONS(6318), 1, + ACTIONS(6378), 1, anon_sym_SLASH_GT, - ACTIONS(6320), 1, + ACTIONS(6380), 1, anon_sym_extends, STATE(3345), 1, sym_type_arguments, - STATE(3348), 1, + STATE(3352), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, - STATE(4554), 1, + STATE(4575), 1, sym_constraint, - STATE(5514), 1, + STATE(5280), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [117156] = 18, - ACTIONS(3521), 1, + [117907] = 3, + ACTIONS(1827), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1825), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_LT, - ACTIONS(6301), 1, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117934] = 3, + ACTIONS(1879), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1877), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117961] = 18, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6303), 1, + ACTIONS(6363), 1, anon_sym_EQ, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6307), 1, + ACTIONS(6367), 1, anon_sym_COMMA, - ACTIONS(6309), 1, + ACTIONS(6369), 1, anon_sym_COLON, - ACTIONS(6311), 1, + ACTIONS(6371), 1, anon_sym_GT, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6316), 1, + ACTIONS(6376), 1, anon_sym_DOT, - ACTIONS(6320), 1, + ACTIONS(6380), 1, anon_sym_extends, - ACTIONS(6322), 1, + ACTIONS(6382), 1, anon_sym_SLASH_GT, - STATE(3304), 1, + STATE(3449), 1, sym_type_arguments, - STATE(3458), 1, + STATE(3457), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, - STATE(4554), 1, + STATE(4575), 1, sym_constraint, - STATE(5514), 1, + STATE(5280), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [117213] = 6, - ACTIONS(4006), 1, + [118018] = 6, + ACTIONS(4014), 1, anon_sym_EQ, - ACTIONS(6291), 1, + ACTIONS(6351), 1, anon_sym_LT, - ACTIONS(6324), 1, + ACTIONS(6384), 1, anon_sym_DOT, - STATE(2909), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 14, + ACTIONS(3479), 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, + [118051] = 3, + ACTIONS(4118), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4120), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118077] = 3, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118103] = 3, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4196), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117246] = 3, - ACTIONS(1845), 1, + [118129] = 9, + ACTIONS(3447), 1, anon_sym_PIPE, + ACTIONS(3495), 1, + anon_sym_LPAREN, + ACTIONS(3497), 1, + anon_sym_DOT, + ACTIONS(3499), 1, + anon_sym_QMARK_DOT, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(3111), 1, + sym_arguments, + STATE(3225), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 17, + ACTIONS(3443), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [118167] = 9, + ACTIONS(3495), 1, anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_PIPE, + ACTIONS(6386), 1, + anon_sym_LT, + ACTIONS(6388), 1, + anon_sym_DOT, + ACTIONS(6390), 1, + anon_sym_QMARK_DOT, + STATE(3112), 1, + sym_arguments, + STATE(3226), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4004), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [118205] = 9, + ACTIONS(3495), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(6386), 1, anon_sym_LT, - anon_sym_QMARK, + ACTIONS(6392), 1, + anon_sym_DOT, + ACTIONS(6394), 1, + anon_sym_QMARK_DOT, + STATE(3113), 1, + sym_arguments, + STATE(3228), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4010), 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, - [117273] = 3, - ACTIONS(4264), 1, + [118243] = 3, + ACTIONS(4206), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 16, + ACTIONS(4208), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235266,18 +236300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117299] = 3, + [118269] = 3, + ACTIONS(4214), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4408), 15, + ACTIONS(4216), 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, @@ -235285,57 +236319,57 @@ static const uint16_t ts_small_parse_table[] = { 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, - [117325] = 15, - ACTIONS(1583), 1, + [118295] = 15, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(6326), 1, + ACTIONS(6396), 1, sym_identifier, - ACTIONS(6328), 1, + ACTIONS(6398), 1, anon_sym_STAR, - ACTIONS(6330), 1, + ACTIONS(6400), 1, anon_sym_type, - ACTIONS(6332), 1, + ACTIONS(6402), 1, anon_sym_LBRACE, - ACTIONS(6334), 1, + ACTIONS(6404), 1, anon_sym_typeof, - ACTIONS(6338), 1, + ACTIONS(6408), 1, anon_sym_DOT, - STATE(4242), 1, + STATE(4276), 1, sym_string, - STATE(4306), 1, + STATE(4397), 1, sym_import_require_clause, - STATE(5294), 1, - sym__import_identifier, - STATE(5483), 1, + STATE(5338), 1, sym_import_clause, + STATE(5493), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5775), 2, + STATE(5697), 2, sym_namespace_import, sym_named_imports, - ACTIONS(6336), 3, + ACTIONS(6406), 3, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT, - [117375] = 3, - ACTIONS(4272), 1, - anon_sym_EQ, + [118345] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 16, + ACTIONS(4144), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4146), 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, @@ -235343,22 +236377,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [117401] = 3, - ACTIONS(4268), 1, - anon_sym_EQ, + [118371] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 16, + ACTIONS(4398), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4400), 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, @@ -235366,22 +236400,49 @@ static const uint16_t ts_small_parse_table[] = { 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, - [117427] = 3, + [118397] = 7, + ACTIONS(4014), 1, + anon_sym_EQ, + ACTIONS(6351), 1, + anon_sym_LT, + ACTIONS(6384), 1, + anon_sym_DOT, + ACTIONS(6410), 1, + anon_sym_is, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 2, + ACTIONS(3479), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [118431] = 3, + ACTIONS(4122), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4228), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4124), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -235389,44 +236450,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [117453] = 7, - ACTIONS(4006), 1, + [118457] = 3, + ACTIONS(4130), 1, anon_sym_EQ, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_DOT, - ACTIONS(6340), 1, - anon_sym_is, - STATE(2909), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 12, + ACTIONS(4132), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [117487] = 3, - ACTIONS(4276), 1, + [118483] = 3, + ACTIONS(4134), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 16, + ACTIONS(4136), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235443,39 +236500,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117513] = 5, - ACTIONS(6342), 1, - anon_sym_DOT, - ACTIONS(6344), 1, - anon_sym_QMARK_DOT, + [118509] = 3, + ACTIONS(4148), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4166), 13, + ACTIONS(4150), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [117543] = 3, + [118535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 2, + ACTIONS(4406), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4088), 15, + ACTIONS(4408), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235491,15 +236546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117569] = 4, - ACTIONS(1699), 1, + [118561] = 4, + ACTIONS(1871), 1, anon_sym_DOT, - ACTIONS(4250), 1, + ACTIONS(4438), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 15, + ACTIONS(4440), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235515,98 +236570,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [117597] = 3, - ACTIONS(3623), 1, + [118589] = 5, + ACTIONS(4059), 1, anon_sym_EQ, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(2965), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 16, + ACTIONS(4061), 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_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117623] = 9, - ACTIONS(3467), 1, - anon_sym_LPAREN, - ACTIONS(4014), 1, - anon_sym_PIPE, - ACTIONS(6346), 1, + [118619] = 5, + ACTIONS(3449), 1, anon_sym_DOT, - ACTIONS(6348), 1, + ACTIONS(3453), 1, anon_sym_QMARK_DOT, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(3043), 1, - sym_arguments, - STATE(3209), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4016), 10, - sym__automatic_semicolon, + ACTIONS(3447), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3443), 13, + 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_extends, - anon_sym_PIPE_RBRACE, - [117661] = 9, - ACTIONS(3445), 1, + [118649] = 4, + ACTIONS(1805), 1, + anon_sym_DOT, + ACTIONS(4438), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 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, - ACTIONS(3467), 1, - anon_sym_LPAREN, - ACTIONS(3469), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [118677] = 5, + ACTIONS(6412), 1, anon_sym_DOT, - ACTIONS(3471), 1, + ACTIONS(6414), 1, anon_sym_QMARK_DOT, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(3046), 1, - sym_arguments, - STATE(3197), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 10, - sym__automatic_semicolon, + ACTIONS(4314), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4316), 13, + 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_extends, - anon_sym_PIPE_RBRACE, - [117699] = 5, - ACTIONS(4030), 1, + [118707] = 4, + ACTIONS(4286), 1, anon_sym_EQ, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(2922), 1, - sym_type_arguments, + ACTIONS(6416), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 14, + ACTIONS(4288), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235621,67 +236692,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117729] = 3, - ACTIONS(3625), 1, + [118734] = 3, + ACTIONS(1687), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 16, + ACTIONS(1685), 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_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117755] = 9, - ACTIONS(3467), 1, - anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_PIPE, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6352), 1, - anon_sym_DOT, - ACTIONS(6354), 1, - anon_sym_QMARK_DOT, - STATE(3071), 1, - sym_arguments, - STATE(3207), 1, - sym_type_arguments, + anon_sym_is, + [118759] = 3, + ACTIONS(4370), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3998), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4372), 15, + 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_DOT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117793] = 4, - ACTIONS(1791), 1, + [118784] = 3, + ACTIONS(4100), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4102), 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, - ACTIONS(4250), 1, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118809] = 3, + ACTIONS(4083), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 15, + ACTIONS(4085), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235694,41 +236777,63 @@ 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, - [117821] = 5, - ACTIONS(3447), 1, + anon_sym_is, + [118834] = 6, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(4063), 1, + anon_sym_EQ, + ACTIONS(6418), 1, anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, + STATE(2913), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, + ACTIONS(4065), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [118865] = 4, + ACTIONS(4362), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3441), 13, + ACTIONS(6420), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4364), 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, - [117851] = 3, - ACTIONS(4136), 1, + [118891] = 3, + ACTIONS(4390), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 15, + ACTIONS(4392), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235738,19 +236843,18 @@ 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_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117876] = 3, - ACTIONS(4058), 1, + [118915] = 3, + ACTIONS(4402), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4060), 15, + ACTIONS(4404), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235765,19 +236869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [117901] = 3, - ACTIONS(4062), 1, + [118939] = 3, + ACTIONS(4410), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 15, + ACTIONS(4412), 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, @@ -235788,13 +236890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117926] = 3, - ACTIONS(4214), 1, + [118963] = 3, + ACTIONS(4414), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 15, + ACTIONS(4416), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235804,24 +236906,22 @@ 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_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117951] = 3, - ACTIONS(4122), 1, + [118987] = 3, + ACTIONS(4418), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 15, + ACTIONS(4420), 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, @@ -235832,15 +236932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117976] = 4, - ACTIONS(4148), 1, + [119011] = 3, + ACTIONS(4434), 1, anon_sym_EQ, - ACTIONS(6356), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 14, + ACTIONS(4436), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235855,19 +236953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118003] = 6, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(4052), 1, + [119035] = 3, + ACTIONS(4104), 1, anon_sym_EQ, - ACTIONS(6358), 1, - anon_sym_DOT, - STATE(2893), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 12, + ACTIONS(4106), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -235879,14 +236972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [118034] = 3, - ACTIONS(1685), 1, + [119059] = 3, + ACTIONS(4274), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 15, + ACTIONS(4276), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235901,19 +236995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [118059] = 3, - ACTIONS(4090), 1, + [119083] = 3, + ACTIONS(4426), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 15, + ACTIONS(4428), 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, @@ -235924,34 +237016,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118084] = 3, - ACTIONS(4370), 1, - anon_sym_PIPE, + [119107] = 3, + ACTIONS(4310), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4312), 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, - [118108] = 3, - ACTIONS(4184), 1, + [119131] = 3, + ACTIONS(4087), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 14, + ACTIONS(4089), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235966,32 +237058,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118132] = 3, - ACTIONS(4314), 1, + [119155] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6424), 1, + sym_number, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5925), 2, + sym_string, + sym_predefined_type, + ACTIONS(6422), 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, + [119187] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6428), 1, + sym_number, + STATE(5927), 1, + sym_string, + STATE(5929), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119221] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6430), 1, + sym_number, + STATE(5932), 1, + sym_string, + STATE(5933), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119255] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6432), 1, + sym_number, + STATE(5937), 1, + sym_string, + STATE(5940), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119289] = 7, + ACTIONS(4014), 1, anon_sym_PIPE, + ACTIONS(6386), 1, + anon_sym_LT, + ACTIONS(6434), 1, + anon_sym_DOT, + ACTIONS(6436), 1, + anon_sym_is, + STATE(3215), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 14, + ACTIONS(3479), 10, 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, - [118156] = 2, + [119321] = 3, + ACTIONS(4320), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4322), 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, + [119345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6360), 15, + ACTIONS(6438), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236007,13 +237227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [118178] = 3, - ACTIONS(4260), 1, + [119367] = 3, + ACTIONS(4244), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 14, + ACTIONS(4246), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236028,76 +237248,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118202] = 3, - ACTIONS(4318), 1, - anon_sym_PIPE, + [119391] = 8, + ACTIONS(6440), 1, + anon_sym_LPAREN, + ACTIONS(6442), 1, + anon_sym_DOT, + ACTIONS(6444), 1, + anon_sym_QMARK_DOT, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3249), 1, + sym_arguments, + STATE(3357), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 14, + ACTIONS(3443), 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_PIPE, + anon_sym_extends, + [119425] = 8, + ACTIONS(6440), 1, + anon_sym_LPAREN, + ACTIONS(6446), 1, + anon_sym_LT, + ACTIONS(6448), 1, anon_sym_DOT, + ACTIONS(6450), 1, anon_sym_QMARK_DOT, + STATE(3250), 1, + sym_arguments, + STATE(3364), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4004), 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, + [119459] = 8, + ACTIONS(6440), 1, + anon_sym_LPAREN, + ACTIONS(6446), 1, anon_sym_LT, + ACTIONS(6452), 1, + anon_sym_DOT, + ACTIONS(6454), 1, + anon_sym_QMARK_DOT, + STATE(3253), 1, + sym_arguments, + STATE(3370), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4010), 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, - anon_sym_PIPE_RBRACE, - [118226] = 3, - ACTIONS(4386), 1, + [119493] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6456), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5831), 2, + sym_string, + sym_predefined_type, + ACTIONS(6422), 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, + [119525] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6458), 1, + sym_number, + STATE(5850), 1, + sym_string, + STATE(5886), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119559] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6460), 1, + sym_number, + STATE(5909), 1, + sym_string, + STATE(5921), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119593] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6462), 1, + sym_number, + STATE(5923), 1, + sym_string, + STATE(5988), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119627] = 3, + ACTIONS(4328), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 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, + [119651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 14, - sym__automatic_semicolon, + ACTIONS(6464), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [119673] = 3, + ACTIONS(4292), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4294), 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, - [118250] = 3, - ACTIONS(4390), 1, + [119697] = 4, + ACTIONS(4292), 1, + anon_sym_EQ, + ACTIONS(6420), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4294), 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, + [119723] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6466), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 14, - sym__automatic_semicolon, + STATE(5853), 2, + sym_string, + sym_predefined_type, + ACTIONS(6422), 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, + [119755] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6468), 1, + sym_number, + STATE(5858), 1, + sym_string, + STATE(5859), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119789] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6470), 1, + sym_number, + STATE(5883), 1, + sym_string, + STATE(5912), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119823] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6472), 1, + sym_number, + STATE(5939), 1, + sym_string, + STATE(5941), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [119857] = 3, + ACTIONS(4330), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4332), 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, - [118274] = 3, - ACTIONS(4390), 1, + [119881] = 5, + ACTIONS(3625), 1, anon_sym_PIPE, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(3116), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 14, + ACTIONS(3409), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236107,13 +237657,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [118298] = 3, - ACTIONS(4280), 1, + [119909] = 3, + ACTIONS(4284), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -236133,13 +237681,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118322] = 3, - ACTIONS(4188), 1, + [119933] = 5, + ACTIONS(3611), 1, + anon_sym_PIPE, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(3118), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119961] = 3, + ACTIONS(4340), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 14, + ACTIONS(4342), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236154,11 +237725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118346] = 2, + [119985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6362), 15, + ACTIONS(6474), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236174,22 +237745,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [118368] = 7, + [120007] = 3, + ACTIONS(4344), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4346), 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, + [120031] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6366), 1, - sym_number, - ACTIONS(6368), 1, + ACTIONS(6426), 1, anon_sym_unique, + ACTIONS(6476), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5600), 2, + STATE(5996), 2, sym_string, sym_predefined_type, - ACTIONS(6364), 9, + ACTIONS(6422), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236199,23 +237791,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118400] = 8, + [120063] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6426), 1, anon_sym_unique, - ACTIONS(6370), 1, + ACTIONS(6478), 1, sym_number, - STATE(5619), 1, + STATE(5998), 1, sym_string, - STATE(5620), 1, + STATE(6001), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6422), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236225,23 +237817,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118434] = 8, + [120097] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6426), 1, anon_sym_unique, - ACTIONS(6372), 1, + ACTIONS(6480), 1, sym_number, - STATE(5638), 1, + STATE(6004), 1, sym_string, - STATE(5651), 1, + STATE(6006), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6422), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236251,23 +237843,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118468] = 8, + [120131] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6426), 1, anon_sym_unique, - ACTIONS(6374), 1, + ACTIONS(6482), 1, sym_number, - STATE(5663), 1, + STATE(5682), 1, sym_string, - STATE(5664), 1, + STATE(5832), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6422), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236277,61 +237869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [118502] = 3, - ACTIONS(4290), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4292), 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, - [118526] = 3, - ACTIONS(4322), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4324), 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, - [118550] = 5, - ACTIONS(4196), 1, + [120165] = 5, + ACTIONS(4352), 1, anon_sym_EQ, - ACTIONS(6376), 1, + ACTIONS(6420), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, + ACTIONS(4294), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(4198), 10, + ACTIONS(4354), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236342,42 +237892,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [118578] = 3, - ACTIONS(4390), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4392), 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, - [118602] = 4, - ACTIONS(4206), 1, + [120193] = 3, + ACTIONS(4298), 1, anon_sym_EQ, - ACTIONS(6376), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 13, + ACTIONS(4300), 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, @@ -236385,55 +237913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118628] = 3, - ACTIONS(4318), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4320), 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, - [118652] = 3, - ACTIONS(4394), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4396), 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, - [118676] = 3, - ACTIONS(4210), 1, + [120217] = 3, + ACTIONS(4366), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 14, + ACTIONS(4368), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236448,11 +237934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118700] = 2, + [120241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 15, + ACTIONS(6484), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236468,13 +237954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [118722] = 3, - ACTIONS(4394), 1, + [120263] = 5, + ACTIONS(4022), 1, anon_sym_PIPE, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(3122), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 14, + ACTIONS(4024), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236484,18 +237974,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [118746] = 3, - ACTIONS(4322), 1, + [120291] = 5, + ACTIONS(4069), 1, anon_sym_PIPE, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(3123), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 14, + ACTIONS(4071), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236505,39 +237997,107 @@ static const uint16_t ts_small_parse_table[] = { 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, - [118770] = 3, - ACTIONS(4144), 1, - anon_sym_EQ, + [120319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 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, - [118794] = 3, - ACTIONS(4022), 1, + ACTIONS(6486), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120341] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6488), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120363] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6490), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5776), 2, + sym_string, + sym_predefined_type, + ACTIONS(6422), 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, + [120395] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6492), 1, + sym_number, + STATE(5862), 1, + sym_string, + STATE(5893), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 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, + [120429] = 3, + ACTIONS(4059), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 14, + ACTIONS(4061), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236552,34 +238112,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118818] = 3, - ACTIONS(4394), 1, - anon_sym_PIPE, + [120453] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6426), 1, + anon_sym_unique, + ACTIONS(6494), 1, + sym_number, + STATE(5674), 1, + sym_predefined_type, + STATE(5780), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 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, - [118842] = 3, - ACTIONS(4398), 1, + ACTIONS(6422), 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, + [120487] = 5, + ACTIONS(4076), 1, anon_sym_PIPE, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(3124), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 14, + ACTIONS(4078), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236589,18 +238158,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [118866] = 3, - ACTIONS(4398), 1, + [120515] = 5, + ACTIONS(4032), 1, anon_sym_PIPE, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(3125), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 14, + ACTIONS(4034), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236610,18 +238181,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [118890] = 3, - ACTIONS(4154), 1, + [120543] = 3, + ACTIONS(4422), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 14, + ACTIONS(4424), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236636,35 +238205,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118914] = 4, - ACTIONS(4154), 1, - anon_sym_EQ, - ACTIONS(6376), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4156), 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, - [118940] = 3, - ACTIONS(4374), 1, + [120567] = 3, + ACTIONS(4236), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 14, + ACTIONS(4238), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236679,34 +238226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118964] = 3, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4400), 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, - [118988] = 3, - ACTIONS(4160), 1, + [120591] = 3, + ACTIONS(4162), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 14, + ACTIONS(4164), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236721,13 +238247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119012] = 3, - ACTIONS(4026), 1, + [120615] = 3, + ACTIONS(4166), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 14, + ACTIONS(4168), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236742,116 +238268,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119036] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6380), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5760), 2, - sym_string, - sym_predefined_type, - ACTIONS(6364), 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, - [119068] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6382), 1, - sym_number, - STATE(5773), 1, - sym_string, - STATE(5781), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 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, - [119102] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6384), 1, - sym_number, - STATE(5817), 1, - sym_string, - STATE(5857), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 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, - [119136] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6386), 1, - sym_number, - STATE(5943), 1, - sym_string, - STATE(5945), 1, - sym_predefined_type, + [120639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 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, - [119170] = 3, - ACTIONS(4326), 1, + ACTIONS(6496), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120661] = 3, + ACTIONS(4374), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 14, + ACTIONS(4376), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236866,13 +238309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119194] = 3, - ACTIONS(4330), 1, + [120685] = 3, + ACTIONS(4378), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 14, + ACTIONS(4380), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236887,33 +238330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119218] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6388), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119240] = 3, - ACTIONS(4326), 1, + [120709] = 3, + ACTIONS(4382), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 14, + ACTIONS(4384), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236928,13 +238351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119264] = 3, - ACTIONS(4298), 1, + [120733] = 3, + ACTIONS(4152), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 14, + ACTIONS(4154), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236949,142 +238372,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119288] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6392), 1, - anon_sym_DOT, - ACTIONS(6394), 1, - anon_sym_QMARK_DOT, - ACTIONS(6396), 1, - anon_sym_LT, - STATE(3186), 1, - sym_arguments, - STATE(3296), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3441), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [120757] = 3, + ACTIONS(4382), 1, anon_sym_PIPE, - anon_sym_extends, - [119322] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6398), 1, - anon_sym_DOT, - ACTIONS(6400), 1, - anon_sym_QMARK_DOT, - STATE(3187), 1, - sym_arguments, - STATE(3306), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3998), 9, + ACTIONS(4384), 14, 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, - [119356] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6402), 1, anon_sym_DOT, - ACTIONS(6404), 1, anon_sym_QMARK_DOT, - STATE(3190), 1, - sym_arguments, - STATE(3323), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4016), 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_LT, anon_sym_extends, - [119390] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6406), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5694), 2, - sym_string, - sym_predefined_type, - ACTIONS(6364), 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, - [119422] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6408), 1, - sym_number, - STATE(5715), 1, - sym_string, - STATE(5717), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 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, - [119456] = 3, - ACTIONS(4370), 1, + anon_sym_PIPE_RBRACE, + [120781] = 3, + ACTIONS(4152), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 14, + ACTIONS(4154), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237099,39 +238414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119480] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6410), 1, - sym_number, - STATE(5735), 1, - sym_string, - STATE(5745), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 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, - [119514] = 3, - ACTIONS(4330), 1, + [120805] = 3, + ACTIONS(4170), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 14, + ACTIONS(4172), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237146,157 +238435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119538] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6412), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119560] = 3, - ACTIONS(4378), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4380), 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, - [119584] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6414), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5871), 2, - sym_string, - sym_predefined_type, - ACTIONS(6364), 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, - [119616] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6416), 1, - sym_number, - STATE(5884), 1, - sym_string, - STATE(5893), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 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, - [119650] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6418), 1, - sym_number, - STATE(5903), 1, - sym_string, - STATE(5909), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 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, - [119684] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6420), 1, - sym_number, - STATE(5916), 1, - sym_string, - STATE(5923), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 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, - [119718] = 3, - ACTIONS(4306), 1, + [120829] = 3, + ACTIONS(4174), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 14, + ACTIONS(4176), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237311,13 +238456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119742] = 3, - ACTIONS(4310), 1, + [120853] = 3, + ACTIONS(4170), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 14, + ACTIONS(4172), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237332,13 +238477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119766] = 3, - ACTIONS(4314), 1, + [120877] = 3, + ACTIONS(4174), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 14, + ACTIONS(4176), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237353,54 +238498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119790] = 3, - ACTIONS(4382), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4384), 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, - [119814] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6422), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119836] = 3, - ACTIONS(4310), 1, + [120901] = 3, + ACTIONS(4198), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 14, + ACTIONS(4200), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237415,13 +238519,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119860] = 3, - ACTIONS(4358), 1, + [120925] = 3, + ACTIONS(4210), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 14, + ACTIONS(4212), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237436,13 +238540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119884] = 3, - ACTIONS(4362), 1, + [120949] = 3, + ACTIONS(4198), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 14, + ACTIONS(4200), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237457,13 +238561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119908] = 3, - ACTIONS(4362), 1, + [120973] = 3, + ACTIONS(4210), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 14, + ACTIONS(4212), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237478,11 +238582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119932] = 2, + [120997] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6424), 15, + ACTIONS(6498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237498,13 +238602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [119954] = 3, - ACTIONS(4140), 1, + [121019] = 3, + ACTIONS(4222), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 14, + ACTIONS(4224), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237519,13 +238623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119978] = 3, - ACTIONS(4362), 1, + [121043] = 3, + ACTIONS(4178), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 14, + ACTIONS(4180), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237540,59 +238644,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120002] = 3, - ACTIONS(4170), 1, - anon_sym_EQ, + [121067] = 3, + ACTIONS(4182), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 14, - anon_sym_as, + ACTIONS(4184), 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, - [120026] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6426), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5667), 2, - sym_string, - sym_predefined_type, - ACTIONS(6364), 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, - [120058] = 3, - ACTIONS(4366), 1, + anon_sym_PIPE_RBRACE, + [121091] = 3, + ACTIONS(4182), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 14, + ACTIONS(4184), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237607,13 +238686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120082] = 3, - ACTIONS(4366), 1, + [121115] = 3, + ACTIONS(4182), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 14, + ACTIONS(4184), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237628,85 +238707,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120106] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6428), 1, - sym_number, - STATE(5796), 1, - sym_string, - STATE(5827), 1, - sym_predefined_type, + [121139] = 3, + ACTIONS(4186), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 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, - [120140] = 3, - ACTIONS(4402), 1, + ACTIONS(4188), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4404), 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, - [120164] = 7, - ACTIONS(4006), 1, + anon_sym_PIPE_RBRACE, + [121163] = 3, + ACTIONS(4186), 1, anon_sym_PIPE, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6430), 1, - anon_sym_DOT, - ACTIONS(6432), 1, - anon_sym_is, - STATE(3245), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 10, + ACTIONS(4188), 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, - [120196] = 3, - ACTIONS(4366), 1, + [121187] = 3, + ACTIONS(4186), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 14, + ACTIONS(4188), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237721,253 +238770,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120220] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6434), 1, - sym_number, - STATE(5759), 1, - sym_string, - STATE(5890), 1, - sym_predefined_type, + [121211] = 3, + ACTIONS(4202), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 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, - [120254] = 3, - ACTIONS(4030), 1, + ACTIONS(4204), 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, + [121235] = 3, + ACTIONS(4202), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 14, - anon_sym_as, + ACTIONS(4204), 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, - [120278] = 3, - ACTIONS(4174), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121259] = 3, + ACTIONS(4202), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 14, - anon_sym_as, + ACTIONS(4204), 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, - [120302] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6436), 1, - sym_number, - STATE(5634), 1, - sym_string, - STATE(5811), 1, - sym_predefined_type, + anon_sym_PIPE_RBRACE, + [121283] = 3, + ACTIONS(4248), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 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, - [120336] = 3, - ACTIONS(4334), 1, + ACTIONS(4250), 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, + [121307] = 3, + ACTIONS(4252), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 14, - anon_sym_as, + ACTIONS(4254), 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, - [120360] = 3, - ACTIONS(4342), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121331] = 3, + ACTIONS(4252), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 14, - anon_sym_as, + ACTIONS(4254), 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, - [120384] = 3, - ACTIONS(4350), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121355] = 3, + ACTIONS(4252), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 14, - anon_sym_as, + ACTIONS(4254), 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, - [120408] = 3, - ACTIONS(4222), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121379] = 3, + ACTIONS(4256), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 14, - anon_sym_as, + ACTIONS(4258), 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, - [120432] = 3, - ACTIONS(4354), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121403] = 3, + ACTIONS(4256), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 14, - anon_sym_as, + ACTIONS(4258), 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, - [120456] = 3, - ACTIONS(4230), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121427] = 3, + ACTIONS(4256), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 14, - anon_sym_as, + ACTIONS(4258), 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, - [120480] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6438), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120502] = 3, - ACTIONS(4370), 1, + anon_sym_PIPE_RBRACE, + [121451] = 3, + ACTIONS(4278), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 14, + ACTIONS(4280), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237982,55 +239001,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120526] = 3, - ACTIONS(4234), 1, - anon_sym_EQ, + [121475] = 3, + ACTIONS(4278), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 14, - anon_sym_as, + ACTIONS(4280), 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, - [120550] = 3, - ACTIONS(4176), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121499] = 3, + ACTIONS(4278), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 14, - anon_sym_as, + ACTIONS(4280), 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, - [120574] = 3, - ACTIONS(4238), 1, + anon_sym_PIPE_RBRACE, + [121523] = 3, + ACTIONS(4226), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 14, + ACTIONS(4228), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238045,13 +239064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120598] = 3, - ACTIONS(4242), 1, + [121547] = 3, + ACTIONS(4448), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 14, + ACTIONS(4450), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238066,11 +239085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120622] = 2, + [121571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6440), 15, + ACTIONS(6500), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238086,13 +239105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120644] = 3, - ACTIONS(4134), 1, + [121593] = 3, + ACTIONS(4302), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 14, + ACTIONS(4304), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238107,13 +239126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120668] = 3, - ACTIONS(4246), 1, + [121617] = 3, + ACTIONS(4053), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 14, + ACTIONS(4055), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238128,23 +239147,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120692] = 8, + [121641] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6426), 1, anon_sym_unique, - ACTIONS(6442), 1, + ACTIONS(6502), 1, sym_number, - STATE(5725), 1, + STATE(5723), 1, sym_string, - STATE(5727), 1, + STATE(5766), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6422), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238154,562 +239173,480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120726] = 13, - ACTIONS(2478), 1, + [121675] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6448), 1, + ACTIONS(6508), 1, anon_sym_BANG, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6454), 1, + ACTIONS(6512), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4182), 1, + STATE(4419), 1, sym_type_annotation, - STATE(4755), 1, + STATE(4683), 1, + sym__call_signature, + STATE(4684), 1, sym__initializer, - STATE(5231), 1, + STATE(5270), 1, sym_type_parameters, - STATE(5558), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6506), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120769] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(3392), 1, - sym_type_predicate, - STATE(5787), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6456), 2, - sym_identifier, - sym_this, - ACTIONS(216), 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, - [120798] = 4, - ACTIONS(4026), 1, - anon_sym_EQ, - ACTIONS(6340), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4028), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120823] = 13, - ACTIONS(2478), 1, + [121718] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6460), 1, + ACTIONS(6516), 1, anon_sym_BANG, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(6464), 1, + ACTIONS(6520), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3788), 1, - sym__call_signature, - STATE(4329), 1, + STATE(3992), 1, sym_type_annotation, - STATE(4989), 1, + STATE(4646), 1, sym__initializer, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5423), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6458), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120866] = 13, - ACTIONS(2478), 1, + [121761] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6468), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6524), 1, anon_sym_BANG, - ACTIONS(6470), 1, + ACTIONS(6526), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4055), 1, + STATE(4488), 1, sym_type_annotation, - STATE(4879), 1, + STATE(5246), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5539), 1, + STATE(5600), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120909] = 13, - ACTIONS(2478), 1, + [121804] = 6, + ACTIONS(4014), 1, + anon_sym_PIPE, + ACTIONS(6386), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6474), 1, - anon_sym_BANG, - ACTIONS(6476), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4024), 1, - sym_type_annotation, - STATE(4763), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5334), 1, - sym__call_signature, + ACTIONS(6434), 1, + anon_sym_DOT, + STATE(3215), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(3479), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [120952] = 13, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121833] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(1992), 1, + sym_type_predicate, + STATE(5734), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6528), 2, + sym_identifier, + sym_this, + ACTIONS(215), 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, + [121862] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6478), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6530), 1, anon_sym_BANG, - ACTIONS(6480), 1, + ACTIONS(6532), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4071), 1, + STATE(4244), 1, sym_type_annotation, - STATE(4950), 1, + STATE(4921), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5317), 1, + STATE(5404), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120995] = 11, - ACTIONS(2478), 1, + [121905] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(3699), 1, - sym_formal_parameters, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - STATE(5356), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(6510), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121034] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6536), 1, anon_sym_BANG, - ACTIONS(6484), 1, + ACTIONS(6538), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4420), 1, + STATE(4175), 1, sym_type_annotation, - STATE(5151), 1, + STATE(5027), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5506), 1, + STATE(5379), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6534), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121077] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, + [121948] = 4, + ACTIONS(4059), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6486), 1, - anon_sym_BANG, - ACTIONS(6488), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4442), 1, - sym_type_annotation, - STATE(5190), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5540), 1, - sym__call_signature, + ACTIONS(6540), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, + ACTIONS(4061), 12, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [121120] = 13, - ACTIONS(2478), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [121973] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6492), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, anon_sym_BANG, - ACTIONS(6494), 1, + ACTIONS(6544), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4325), 1, + STATE(4181), 1, sym_type_annotation, - STATE(4997), 1, - sym__call_signature, - STATE(4998), 1, + STATE(5032), 1, sym__initializer, - STATE(5435), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5384), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6534), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121163] = 13, - ACTIONS(2478), 1, + [122016] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6496), 1, - anon_sym_BANG, - ACTIONS(6498), 1, - anon_sym_QMARK, - STATE(3848), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3879), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(3611), 1, sym_formal_parameters, - STATE(3949), 1, - sym_type_annotation, - STATE(4799), 1, - sym__initializer, - STATE(5231), 1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + STATE(5373), 1, sym_type_parameters, - STATE(5381), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(3786), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [121206] = 13, - ACTIONS(2478), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [122055] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6502), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6546), 1, anon_sym_BANG, - ACTIONS(6504), 1, + ACTIONS(6548), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4334), 1, + STATE(4437), 1, sym_type_annotation, - STATE(5004), 1, + STATE(5161), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5354), 1, + STATE(5513), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121249] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(6328), 1, - anon_sym_STAR, - ACTIONS(6332), 1, - anon_sym_LBRACE, - ACTIONS(6506), 1, - sym_identifier, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(6510), 1, - anon_sym_COMMA, - ACTIONS(6512), 1, - anon_sym_from, - STATE(4188), 1, - sym_string, - STATE(4189), 1, - sym_import_require_clause, - STATE(5294), 1, - sym__import_identifier, - STATE(5345), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5775), 2, - sym_namespace_import, - sym_named_imports, - [121294] = 13, - ACTIONS(2478), 1, + [122098] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6514), 1, - anon_sym_BANG, - ACTIONS(6516), 1, - anon_sym_QMARK, - STATE(3848), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3798), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(3611), 1, sym_formal_parameters, - STATE(3961), 1, - sym_type_annotation, - STATE(4614), 1, - sym__initializer, - STATE(5231), 1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + STATE(5373), 1, sym_type_parameters, - STATE(5289), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(3786), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [121337] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6518), 1, - anon_sym_BANG, - ACTIONS(6520), 1, anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4340), 1, - sym_type_annotation, - STATE(5009), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5359), 1, - sym__call_signature, + anon_sym_PIPE_RBRACE, + [122137] = 6, + ACTIONS(3495), 1, + anon_sym_LPAREN, + ACTIONS(4063), 1, + anon_sym_PIPE, + ACTIONS(6550), 1, + anon_sym_DOT, + STATE(3192), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(4065), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [121380] = 11, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122166] = 11, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3800), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(3699), 1, + STATE(3611), 1, sym_formal_parameters, - STATE(5129), 1, + STATE(4663), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5356), 1, + STATE(5373), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 5, + ACTIONS(3786), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [121419] = 13, - ACTIONS(2478), 1, + [122205] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(3234), 1, + sym_type_predicate, + STATE(5729), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6552), 2, + sym_identifier, + sym_this, + ACTIONS(215), 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, + [122234] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(6524), 1, + ACTIONS(6556), 1, anon_sym_BANG, - ACTIONS(6526), 1, + ACTIONS(6558), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3897), 1, - sym__call_signature, - STATE(4166), 1, + STATE(4238), 1, sym_type_annotation, - STATE(4699), 1, + STATE(5150), 1, sym__initializer, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5497), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6522), 3, + ACTIONS(6554), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121462] = 4, - ACTIONS(4022), 1, - anon_sym_EQ, - ACTIONS(6340), 1, - anon_sym_is, + [122277] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(3022), 1, + sym_type_predicate, + STATE(5714), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121487] = 6, - ACTIONS(214), 1, + ACTIONS(6560), 2, + sym_identifier, + sym_this, + ACTIONS(215), 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, + [122306] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(2936), 1, + STATE(3022), 1, sym_type_predicate, - STATE(5962), 1, + STATE(5752), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6562), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238719,300 +239656,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121516] = 13, - ACTIONS(2478), 1, + [122335] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6532), 1, - anon_sym_BANG, - ACTIONS(6534), 1, - anon_sym_QMARK, - STATE(3396), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(3611), 1, sym_formal_parameters, - STATE(3810), 1, - sym__call_signature, - STATE(4235), 1, - sym_type_annotation, - STATE(4884), 1, - sym__initializer, - STATE(5339), 1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + STATE(5373), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(3786), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [121559] = 13, - ACTIONS(2478), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [122374] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6536), 1, + ACTIONS(6566), 1, anon_sym_BANG, - ACTIONS(6538), 1, + ACTIONS(6568), 1, + anon_sym_LPAREN, + ACTIONS(6570), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(4360), 1, + STATE(3868), 1, + sym__call_signature, + STATE(4121), 1, sym_type_annotation, - STATE(5046), 1, + STATE(4984), 1, sym__initializer, - STATE(5231), 1, + STATE(5301), 1, sym_type_parameters, - STATE(5396), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(6564), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121602] = 13, - ACTIONS(2478), 1, + [122417] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6540), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6572), 1, anon_sym_BANG, - ACTIONS(6542), 1, + ACTIONS(6574), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4363), 1, + STATE(4242), 1, sym_type_annotation, - STATE(5051), 1, + STATE(5078), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5402), 1, + STATE(5416), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(6534), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121645] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6524), 1, - anon_sym_BANG, - ACTIONS(6544), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4166), 1, - sym_type_annotation, - STATE(4720), 1, - sym__call_signature, - STATE(4722), 1, - sym__initializer, - STATE(5435), 1, - sym_type_parameters, + [122460] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(3348), 1, + sym_type_predicate, + STATE(5767), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6522), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121688] = 11, - ACTIONS(2478), 1, + ACTIONS(6576), 2, + sym_identifier, + sym_this, + ACTIONS(215), 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, + [122489] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(1524), 1, + sym_type_predicate, + STATE(5797), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6578), 2, + sym_identifier, + sym_this, + ACTIONS(215), 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, + [122518] = 11, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3867), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(3699), 1, + STATE(3611), 1, sym_formal_parameters, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, - STATE(5356), 1, + STATE(5373), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 5, + ACTIONS(3786), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [121727] = 9, - ACTIONS(4006), 1, - anon_sym_extends, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_DOT, - ACTIONS(6546), 1, - sym_identifier, - ACTIONS(6550), 1, - anon_sym_GT, - STATE(2909), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6548), 3, - anon_sym_LBRACE, - sym_jsx_identifier, - anon_sym_SLASH_GT, - ACTIONS(3501), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [121762] = 13, - ACTIONS(2478), 1, + [122557] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6508), 1, + anon_sym_BANG, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_BANG, - ACTIONS(6557), 1, + ACTIONS(6580), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(3913), 1, + STATE(3935), 1, sym__call_signature, - STATE(4451), 1, + STATE(4419), 1, sym_type_annotation, - STATE(5205), 1, + STATE(4644), 1, sym__initializer, - STATE(5339), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6553), 3, + ACTIONS(6506), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121805] = 13, - ACTIONS(2478), 1, + [122600] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6561), 1, + ACTIONS(6566), 1, anon_sym_BANG, - ACTIONS(6563), 1, + ACTIONS(6582), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4183), 1, + STATE(4121), 1, sym_type_annotation, - STATE(4756), 1, + STATE(5023), 1, + sym__call_signature, + STATE(5024), 1, sym__initializer, - STATE(5231), 1, + STATE(5270), 1, sym_type_parameters, - STATE(5326), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6559), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121848] = 6, - ACTIONS(4006), 1, - anon_sym_PIPE, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6430), 1, - anon_sym_DOT, - STATE(3245), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3501), 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, - [121877] = 6, - ACTIONS(3467), 1, - anon_sym_LPAREN, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(6565), 1, - anon_sym_DOT, - STATE(3172), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 10, + ACTIONS(6564), 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, - [121906] = 6, - ACTIONS(214), 1, + [122643] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(1492), 1, + STATE(3022), 1, sym_type_predicate, - STATE(5722), 1, + STATE(5802), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6567), 2, + ACTIONS(6584), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239022,445 +239901,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121935] = 13, - ACTIONS(2478), 1, + [122672] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(6492), 1, + ACTIONS(6586), 1, anon_sym_BANG, - ACTIONS(6569), 1, + ACTIONS(6588), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3881), 1, - sym__call_signature, - STATE(4325), 1, + STATE(4093), 1, sym_type_annotation, - STATE(4977), 1, + STATE(5185), 1, sym__initializer, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5523), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121978] = 13, - ACTIONS(2478), 1, + [122715] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(6398), 1, + anon_sym_STAR, + ACTIONS(6402), 1, + anon_sym_LBRACE, + ACTIONS(6590), 1, + sym_identifier, + ACTIONS(6592), 1, + anon_sym_type, + ACTIONS(6594), 1, + anon_sym_COMMA, + ACTIONS(6596), 1, + anon_sym_from, + STATE(4066), 1, + sym_string, + STATE(4103), 1, + sym_import_require_clause, + STATE(5348), 1, + sym_import_clause, + STATE(5493), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5697), 2, + sym_namespace_import, + sym_named_imports, + [122760] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6571), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6598), 1, anon_sym_BANG, - ACTIONS(6573), 1, + ACTIONS(6600), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4197), 1, + STATE(4115), 1, sym_type_annotation, - STATE(5181), 1, + STATE(4786), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5545), 1, + STATE(5370), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122021] = 11, - ACTIONS(2478), 1, + [122803] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(3699), 1, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6568), 1, + anon_sym_LPAREN, + ACTIONS(6604), 1, + anon_sym_BANG, + ACTIONS(6606), 1, + anon_sym_QMARK, + STATE(3446), 1, sym_formal_parameters, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - STATE(5356), 1, + STATE(3953), 1, + sym__call_signature, + STATE(4470), 1, + sym_type_annotation, + STATE(5221), 1, + sym__initializer, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 5, + ACTIONS(6602), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [122060] = 13, - ACTIONS(2478), 1, + [122846] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6575), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6608), 1, anon_sym_BANG, - ACTIONS(6577), 1, + ACTIONS(6610), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4426), 1, + STATE(4101), 1, sym_type_annotation, - STATE(5146), 1, + STATE(5093), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5504), 1, + STATE(5428), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122103] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(2936), 1, - sym_type_predicate, - STATE(5733), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6579), 2, + [122889] = 9, + ACTIONS(4014), 1, + anon_sym_extends, + ACTIONS(6351), 1, + anon_sym_LT, + ACTIONS(6384), 1, + anon_sym_DOT, + ACTIONS(6612), 1, sym_identifier, - sym_this, - ACTIONS(216), 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, - [122132] = 4, - ACTIONS(4030), 1, - anon_sym_EQ, - ACTIONS(6581), 1, - anon_sym_is, + ACTIONS(6616), 1, + anon_sym_GT, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 12, + ACTIONS(6614), 3, anon_sym_LBRACE, + sym_jsx_identifier, + anon_sym_SLASH_GT, + ACTIONS(3479), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [122157] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(1981), 1, - sym_type_predicate, - STATE(5969), 1, - sym_predefined_type, + [122924] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, + anon_sym_BANG, + ACTIONS(6621), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(4234), 1, + sym_type_annotation, + STATE(5073), 1, + sym__initializer, + STATE(5275), 1, + sym_type_parameters, + STATE(5411), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6583), 2, - sym_identifier, - sym_this, - ACTIONS(216), 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, - [122186] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(3180), 1, - sym_type_predicate, - STATE(5835), 1, - sym_predefined_type, + ACTIONS(6534), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122967] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6623), 1, + anon_sym_BANG, + ACTIONS(6625), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(4285), 1, + sym_type_annotation, + STATE(4723), 1, + sym__initializer, + STATE(5273), 1, + sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6585), 2, - sym_identifier, - sym_this, - ACTIONS(216), 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, - [122215] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(6522), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + anon_sym_SEMI, + [123010] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(3699), 1, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6627), 1, + anon_sym_BANG, + ACTIONS(6629), 1, + anon_sym_QMARK, + STATE(3851), 1, sym_formal_parameters, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - STATE(5356), 1, + STATE(3971), 1, + sym_type_annotation, + STATE(4887), 1, + sym__initializer, + STATE(5275), 1, sym_type_parameters, + STATE(5432), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 5, + ACTIONS(6514), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [123053] = 4, + ACTIONS(4053), 1, + anon_sym_EQ, + ACTIONS(6410), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [122254] = 13, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [123078] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6587), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, anon_sym_BANG, - ACTIONS(6589), 1, + ACTIONS(6633), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4390), 1, + STATE(4295), 1, sym_type_annotation, - STATE(5035), 1, + STATE(4791), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5383), 1, + STATE(5400), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122297] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(2936), 1, - sym_type_predicate, - STATE(5684), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6591), 2, - sym_identifier, - sym_this, - ACTIONS(216), 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, - [122326] = 2, + [123121] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6568), 1, + anon_sym_LPAREN, + ACTIONS(6637), 1, + anon_sym_BANG, + ACTIONS(6639), 1, + anon_sym_QMARK, + STATE(3446), 1, + sym_formal_parameters, + STATE(3821), 1, + sym__call_signature, + STATE(4119), 1, + sym_type_annotation, + STATE(4751), 1, + sym__initializer, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 13, + ACTIONS(6635), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [123164] = 13, + ACTIONS(2470), 1, anon_sym_LT, - anon_sym_extends, - [122346] = 3, - ACTIONS(4406), 1, - anon_sym_PIPE, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(6643), 1, + anon_sym_BANG, + ACTIONS(6645), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(4000), 1, + sym_type_annotation, + STATE(4738), 1, + sym__initializer, + STATE(5275), 1, + sym_type_parameters, + STATE(5388), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 12, + ACTIONS(6641), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122368] = 10, - ACTIONS(2478), 1, + [123207] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6595), 1, + ACTIONS(6568), 1, + anon_sym_LPAREN, + ACTIONS(6649), 1, + anon_sym_BANG, + ACTIONS(6651), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(4057), 1, + STATE(3840), 1, sym__call_signature, - STATE(4058), 1, + STATE(4120), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5199), 1, + sym__initializer, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6593), 5, + ACTIONS(6647), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122404] = 2, + [123250] = 4, + ACTIONS(4087), 1, + anon_sym_EQ, + ACTIONS(6410), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4089), 12, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + 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_PIPE, - anon_sym_LT, anon_sym_extends, - [122424] = 3, - ACTIONS(4086), 1, - anon_sym_PIPE, + [123275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 12, + ACTIONS(4250), 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, - [122446] = 3, - ACTIONS(3182), 1, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123295] = 4, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3236), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3184), 12, + ACTIONS(3409), 11, 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_extends, - anon_sym_PIPE_RBRACE, - [122468] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6599), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3524), 1, - sym__call_signature, - STATE(4271), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6597), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122504] = 2, + [123319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 13, + ACTIONS(4254), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239474,11 +240386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122524] = 2, + [123339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 13, + ACTIONS(4204), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239492,11 +240404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122544] = 2, + [123359] = 4, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3237), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(3417), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239505,47 +240421,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [122564] = 13, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(6603), 1, - anon_sym_GT, - ACTIONS(6605), 1, - anon_sym_SLASH_GT, - STATE(3350), 1, - sym_type_arguments, - STATE(3365), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [122606] = 3, - ACTIONS(4264), 1, + [123383] = 3, + ACTIONS(4214), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 12, + ACTIONS(4216), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239558,81 +240443,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122628] = 10, - ACTIONS(2478), 1, + [123405] = 5, + ACTIONS(4059), 1, + anon_sym_PIPE, + ACTIONS(6386), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6609), 1, - anon_sym_COLON, - ACTIONS(6611), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3759), 1, - sym__call_signature, - STATE(4203), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + STATE(3222), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6607), 5, + ACTIONS(4061), 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, - [122664] = 10, - ACTIONS(2478), 1, + [123431] = 10, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6615), 1, + ACTIONS(6655), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4370), 1, + STATE(3983), 1, sym__call_signature, - STATE(4371), 1, + STATE(3990), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6613), 5, + ACTIONS(6653), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122700] = 2, + [123467] = 3, + ACTIONS(3204), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 13, + ACTIONS(3206), 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, - [122720] = 2, + anon_sym_PIPE_RBRACE, + [123489] = 4, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3238), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 13, + ACTIONS(4024), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239641,38 +240526,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [122740] = 6, - ACTIONS(4192), 1, - anon_sym_EQ, - ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6621), 1, anon_sym_extends, + [123513] = 4, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3239), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [122768] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4400), 13, + ACTIONS(4071), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239681,83 +240546,102 @@ static const uint16_t ts_small_parse_table[] = { 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, - [122788] = 4, - ACTIONS(1699), 1, - anon_sym_DOT, - ACTIONS(4250), 1, + [123537] = 3, + ACTIONS(4206), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 11, + ACTIONS(4208), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122812] = 4, - ACTIONS(4200), 1, - anon_sym_EQ, - ACTIONS(6623), 1, + [123559] = 4, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3240), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4078), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, + [123583] = 4, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3241), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 11, + ACTIONS(4034), 11, + 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_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, - [122836] = 3, - ACTIONS(4268), 1, + anon_sym_extends, + [123607] = 5, + ACTIONS(3447), 1, anon_sym_PIPE, + ACTIONS(3497), 1, + anon_sym_DOT, + ACTIONS(3499), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 12, + ACTIONS(3443), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122858] = 6, - ACTIONS(4346), 1, + [123633] = 6, + ACTIONS(4104), 1, anon_sym_EQ, - ACTIONS(6617), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 9, + ACTIONS(4106), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239767,58 +240651,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [122886] = 4, - ACTIONS(4284), 1, - anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, + [123661] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6665), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(4167), 1, + sym__call_signature, + STATE(4176), 1, + sym_type_annotation, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 11, - anon_sym_LBRACE, + ACTIONS(6663), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_extends, - [122910] = 3, - ACTIONS(3625), 1, - anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 12, + ACTIONS(4376), 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, - [122932] = 6, - ACTIONS(4260), 1, + [123717] = 6, + ACTIONS(4324), 1, anon_sym_EQ, - ACTIONS(6617), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 9, + ACTIONS(4326), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239828,104 +240717,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [122960] = 6, - ACTIONS(4098), 1, - anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + [123745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 9, + ACTIONS(4184), 13, + 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_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [122988] = 6, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(6617), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + anon_sym_LT, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4356), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [123016] = 10, - ACTIONS(2478), 1, + [123765] = 10, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6667), 1, anon_sym_COLON, - ACTIONS(6627), 1, + ACTIONS(6669), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(3954), 1, + STATE(3626), 1, sym__call_signature, - STATE(3955), 1, + STATE(4176), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6625), 5, + ACTIONS(6663), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123052] = 5, - ACTIONS(4030), 1, - anon_sym_PIPE, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(3256), 1, - sym_type_arguments, + [123801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 10, + ACTIONS(4380), 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, - [123078] = 3, - ACTIONS(4226), 1, + [123821] = 3, + ACTIONS(3212), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 12, + ACTIONS(3214), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239938,11 +240798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123100] = 2, + [123843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(4384), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239956,15 +240816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123120] = 4, - ACTIONS(1791), 1, - anon_sym_DOT, - ACTIONS(4250), 1, + [123863] = 5, + ACTIONS(4314), 1, anon_sym_PIPE, + ACTIONS(6671), 1, + anon_sym_DOT, + ACTIONS(6673), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 11, + ACTIONS(4316), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239973,69 +240835,72 @@ 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, - [123144] = 13, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + [123889] = 3, + ACTIONS(4194), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4196), 12, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6316), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(6603), 1, - anon_sym_GT, - ACTIONS(6629), 1, - anon_sym_SLASH_GT, - STATE(3318), 1, - sym_type_arguments, - STATE(3327), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123911] = 6, + ACTIONS(4108), 1, + anon_sym_EQ, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123186] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(4110), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6631), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3687), 1, - sym__call_signature, - STATE(3955), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [123939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6625), 5, + ACTIONS(4154), 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, - [123222] = 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123959] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 13, + ACTIONS(4184), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240049,11 +240914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123242] = 2, + [123979] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 13, + ACTIONS(4384), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240067,111 +240932,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123262] = 5, - ACTIONS(3445), 1, - anon_sym_PIPE, - ACTIONS(3469), 1, - anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_QMARK_DOT, + [123999] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 10, + ACTIONS(4154), 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, - [123288] = 3, - ACTIONS(3162), 1, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124019] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3164), 12, + ACTIONS(4172), 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, - [123310] = 10, - ACTIONS(2478), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6633), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3579), 1, - sym__call_signature, - STATE(4371), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + anon_sym_extends, + [124039] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6613), 5, + ACTIONS(4176), 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, - [123346] = 10, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6635), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4202), 1, - sym__call_signature, - STATE(4203), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + anon_sym_extends, + [124059] = 4, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(6657), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6607), 5, - sym__automatic_semicolon, + ACTIONS(4242), 11, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123382] = 6, - ACTIONS(4094), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [124083] = 6, + ACTIONS(4166), 1, anon_sym_EQ, - ACTIONS(6617), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4096), 9, + ACTIONS(4168), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240181,52 +241028,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [123410] = 3, - ACTIONS(4276), 1, - anon_sym_PIPE, + [124111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 12, + ACTIONS(4172), 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, - [123432] = 6, - ACTIONS(6396), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(6637), 1, - anon_sym_DOT, - ACTIONS(6639), 1, - anon_sym_is, - STATE(3448), 1, - sym_type_arguments, + anon_sym_extends, + [124131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 9, + ACTIONS(4176), 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, - [123460] = 2, + [124151] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4200), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240240,11 +241082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123480] = 2, + [124171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4212), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240258,11 +241100,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123500] = 2, + [124191] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6677), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(4054), 1, + sym__call_signature, + STATE(4063), 1, + sym_type_annotation, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6675), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124227] = 13, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6376), 1, + anon_sym_DOT, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(6681), 1, + anon_sym_GT, + ACTIONS(6683), 1, + anon_sym_SLASH_GT, + STATE(3490), 1, + sym_type_arguments, + STATE(3494), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [124269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 13, + ACTIONS(4254), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240276,11 +241173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123520] = 2, + [124289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(4254), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240294,11 +241191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123540] = 2, + [124309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 13, + ACTIONS(4258), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240312,47 +241209,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123560] = 2, + [124329] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6687), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(4378), 1, + sym__call_signature, + STATE(4384), 1, + sym_type_annotation, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(6685), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124365] = 3, + ACTIONS(4144), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4146), 12, + sym__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, - [123580] = 2, + anon_sym_PIPE_RBRACE, + [124387] = 3, + ACTIONS(4398), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(4400), 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, + [124409] = 3, + ACTIONS(4406), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [123600] = 2, + anon_sym_PIPE_RBRACE, + [124431] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6689), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(3700), 1, + sym__call_signature, + STATE(3990), 1, + sym_type_annotation, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6653), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(4258), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240366,29 +241336,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123620] = 2, + [124487] = 3, + ACTIONS(4118), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(4120), 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_extends, - [123640] = 2, + anon_sym_PIPE_RBRACE, + [124509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(4280), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240402,29 +241373,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123660] = 2, + [124529] = 3, + ACTIONS(4122), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4124), 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_extends, - [123680] = 2, + anon_sym_PIPE_RBRACE, + [124551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(4200), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240438,11 +241410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123700] = 2, + [124571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4212), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240456,11 +241428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123720] = 2, + [124591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(4184), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240474,34 +241446,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123740] = 5, - ACTIONS(4164), 1, + [124611] = 3, + ACTIONS(4126), 1, anon_sym_PIPE, - ACTIONS(6641), 1, - anon_sym_DOT, - ACTIONS(6643), 1, - anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 10, + ACTIONS(4128), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123766] = 3, - ACTIONS(3623), 1, + [124633] = 3, + ACTIONS(4130), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 12, + ACTIONS(4132), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240514,31 +241484,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123788] = 2, + [124655] = 3, + ACTIONS(4134), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 13, + ACTIONS(4136), 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_extends, - [123808] = 3, - ACTIONS(4272), 1, + anon_sym_PIPE_RBRACE, + [124677] = 3, + ACTIONS(4148), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 12, + ACTIONS(4150), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240551,11 +241522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123830] = 2, + [124699] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 13, + ACTIONS(4188), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240569,11 +241540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123850] = 2, + [124719] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 13, + ACTIONS(4188), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240587,29 +241558,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123870] = 2, + [124739] = 4, + ACTIONS(1871), 1, + anon_sym_DOT, + ACTIONS(4438), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 13, + ACTIONS(4440), 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, - [123890] = 2, + anon_sym_PIPE_RBRACE, + [124763] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 13, + ACTIONS(4188), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240623,11 +241596,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123910] = 2, + [124783] = 4, + ACTIONS(4334), 1, + anon_sym_EQ, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4336), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [124807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4204), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240641,11 +241634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123930] = 2, + [124827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4280), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240659,11 +241652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123950] = 2, + [124847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4280), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240677,71 +241670,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123970] = 10, - ACTIONS(2478), 1, + [124867] = 10, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6645), 1, + ACTIONS(6691), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(3732), 1, + STATE(3736), 1, sym__call_signature, - STATE(4058), 1, + STATE(4063), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6593), 5, + ACTIONS(6675), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124006] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6647), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4270), 1, - sym__call_signature, - STATE(4271), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + [124903] = 3, + ACTIONS(3208), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6597), 5, + ACTIONS(3210), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [124042] = 6, - ACTIONS(4072), 1, + [124925] = 6, + ACTIONS(4348), 1, anon_sym_EQ, - ACTIONS(6617), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 9, + ACTIONS(4350), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240751,52 +241737,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [124070] = 2, + [124953] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6695), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(4258), 1, + sym_type_annotation, + STATE(4490), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(6693), 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, + [124989] = 10, + ACTIONS(2470), 1, anon_sym_LT, - anon_sym_extends, - [124090] = 3, - ACTIONS(3186), 1, - anon_sym_PIPE, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6697), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(3675), 1, + sym__call_signature, + STATE(4258), 1, + sym_type_annotation, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3188), 12, + ACTIONS(6693), 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, - [124112] = 4, - ACTIONS(4180), 1, + [125025] = 4, + ACTIONS(4356), 1, anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, + ACTIONS(6699), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 11, + ACTIONS(4358), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240806,151 +241807,130 @@ 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_extends, - [124136] = 3, - ACTIONS(4058), 1, - anon_sym_PIPE, + [125049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4060), 11, + ACTIONS(4204), 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_is, - anon_sym_PIPE_RBRACE, - [124157] = 12, - ACTIONS(3521), 1, + [125069] = 13, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(6301), 1, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6649), 1, - anon_sym_GT, - ACTIONS(6651), 1, + ACTIONS(6376), 1, anon_sym_DOT, - ACTIONS(6653), 1, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(6681), 1, + anon_sym_GT, + ACTIONS(6701), 1, anon_sym_SLASH_GT, - STATE(3397), 1, + STATE(3392), 1, sym_type_arguments, - STATE(3434), 1, + STATE(3395), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [124196] = 9, - ACTIONS(2478), 1, + [125111] = 10, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6703), 1, + anon_sym_QMARK, + STATE(3318), 1, sym_formal_parameters, - STATE(4355), 1, + STATE(3756), 1, sym__call_signature, - STATE(4356), 1, + STATE(4384), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6655), 5, + ACTIONS(6685), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124229] = 3, - ACTIONS(4090), 1, - anon_sym_PIPE, + [125147] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 11, + ACTIONS(4180), 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, - [124250] = 8, - ACTIONS(2478), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(3699), 1, - sym_formal_parameters, - STATE(5356), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124281] = 9, - ACTIONS(2478), 1, + anon_sym_extends, + [125167] = 6, + ACTIONS(6446), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3267), 1, - sym_formal_parameters, - STATE(3670), 1, - sym__call_signature, - STATE(4356), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + ACTIONS(6705), 1, + anon_sym_DOT, + ACTIONS(6707), 1, + anon_sym_is, + STATE(3430), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6655), 5, + ACTIONS(3479), 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, - [124314] = 4, - ACTIONS(4026), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125195] = 4, + ACTIONS(1805), 1, + anon_sym_DOT, + ACTIONS(4438), 1, anon_sym_PIPE, - ACTIONS(6432), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 10, + ACTIONS(4440), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240959,473 +241939,447 @@ 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, - [124337] = 9, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3267), 1, - sym_formal_parameters, - STATE(3730), 1, - sym__call_signature, - STATE(4054), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + [125219] = 6, + ACTIONS(4386), 1, + anon_sym_EQ, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 5, - sym__automatic_semicolon, + ACTIONS(4388), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124370] = 9, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3267), 1, - sym_formal_parameters, - STATE(3583), 1, - sym__call_signature, - STATE(4377), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6659), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124403] = 12, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6649), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(6661), 1, - anon_sym_SLASH_GT, - STATE(3331), 1, - sym_type_arguments, - STATE(3339), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124442] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, + anon_sym_EQ_GT, + [125247] = 6, + ACTIONS(4394), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3848), 1, - sym_formal_parameters, - STATE(3952), 1, - sym_type_annotation, - STATE(4920), 1, - sym__initializer, - STATE(5228), 1, - sym__call_signature, - STATE(5231), 1, - sym_type_parameters, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, + ACTIONS(4396), 9, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [124479] = 5, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6637), 1, - anon_sym_DOT, - STATE(3448), 1, - sym_type_arguments, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [125275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 9, + ACTIONS(4258), 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, - [124504] = 5, - ACTIONS(6390), 1, + [125295] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_DOT, - STATE(3261), 1, - sym_arguments, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(3318), 1, + sym_formal_parameters, + STATE(4363), 1, + sym__call_signature, + STATE(4364), 1, + sym_type_annotation, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 9, + ACTIONS(6709), 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, - [124529] = 7, - ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124558] = 11, - ACTIONS(2478), 1, + [125328] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4029), 1, + STATE(4016), 1, sym_type_annotation, - STATE(4778), 1, + STATE(4730), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5370), 1, + STATE(5320), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124595] = 11, - ACTIONS(2478), 1, + [125365] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3904), 1, - sym__call_signature, - STATE(3927), 1, + STATE(4136), 1, sym_type_annotation, - STATE(5198), 1, + STATE(4917), 1, sym__initializer, - STATE(5339), 1, + STATE(5267), 1, + sym__call_signature, + STATE(5275), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6667), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124632] = 11, - ACTIONS(2478), 1, + [125402] = 8, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(6351), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(6384), 1, + anon_sym_DOT, + ACTIONS(6715), 1, + anon_sym_QMARK, + STATE(2958), 1, + sym_type_arguments, + STATE(5418), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3479), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125433] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4042), 1, + STATE(4237), 1, + sym__call_signature, + STATE(4297), 1, sym_type_annotation, - STATE(4839), 1, - sym__initializer, - STATE(5231), 1, + STATE(5270), 1, sym_type_parameters, - STATE(5478), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6718), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124669] = 11, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [125466] = 9, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(3927), 1, - sym_type_annotation, - STATE(5218), 1, + STATE(3701), 1, sym__call_signature, - STATE(5219), 1, - sym__initializer, - STATE(5435), 1, + STATE(4018), 1, + sym_type_annotation, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6667), 3, + ACTIONS(6720), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124706] = 11, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [125499] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(3899), 1, + STATE(3804), 1, sym__call_signature, - STATE(4093), 1, + STATE(4051), 1, sym_type_annotation, - STATE(5090), 1, + STATE(4701), 1, sym__initializer, - STATE(5339), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6669), 3, + ACTIONS(6722), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124743] = 11, - ACTIONS(2478), 1, + [125536] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4139), 1, + STATE(4116), 1, sym_type_annotation, - STATE(4732), 1, + STATE(5129), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5518), 1, + STATE(5459), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125573] = 4, + ACTIONS(4087), 1, + anon_sym_PIPE, + ACTIONS(6436), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4089), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124780] = 11, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125596] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, sym_formal_parameters, - STATE(4138), 1, + STATE(3877), 1, + sym__call_signature, + STATE(4147), 1, sym_type_annotation, - STATE(5148), 1, + STATE(5003), 1, sym__initializer, - STATE(5231), 1, + STATE(5301), 1, sym_type_parameters, - STATE(5446), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6724), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124817] = 11, - ACTIONS(2478), 1, + [125633] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4179), 1, + STATE(4435), 1, sym_type_annotation, - STATE(4746), 1, + STATE(4722), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5313), 1, + STATE(5312), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124854] = 11, - ACTIONS(2478), 1, + [125670] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3882), 1, - sym__call_signature, - STATE(4326), 1, + STATE(4229), 1, sym_type_annotation, - STATE(4981), 1, + STATE(5127), 1, sym__initializer, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5464), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6675), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124891] = 12, - ACTIONS(3521), 1, + [125707] = 8, + ACTIONS(6351), 1, anon_sym_LT, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6649), 1, - anon_sym_GT, - ACTIONS(6651), 1, + ACTIONS(6353), 1, anon_sym_DOT, - ACTIONS(6677), 1, - anon_sym_SLASH_GT, - STATE(3316), 1, + ACTIONS(6355), 1, + anon_sym_QMARK_DOT, + ACTIONS(6728), 1, + anon_sym_LPAREN, + STATE(2899), 1, + sym_arguments, + STATE(2919), 1, sym_type_arguments, - STATE(3363), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124930] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(4004), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125738] = 3, + ACTIONS(1687), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1685), 11, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6450), 1, + 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, + [125759] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4186), 1, + STATE(4271), 1, + sym__call_signature, + STATE(4273), 1, sym_type_annotation, - STATE(4762), 1, - sym__initializer, - STATE(5231), 1, + STATE(5270), 1, sym_type_parameters, - STATE(5340), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6730), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124967] = 7, - ACTIONS(3752), 1, + anon_sym_PIPE_RBRACE, + [125792] = 7, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3879), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -241433,123 +242387,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124996] = 11, - ACTIONS(2478), 1, + [125821] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4326), 1, + STATE(3995), 1, sym_type_annotation, - STATE(4992), 1, - sym__call_signature, - STATE(4993), 1, + STATE(4678), 1, sym__initializer, - STATE(5435), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5576), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6675), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125033] = 11, - ACTIONS(2478), 1, + [125858] = 9, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4107), 1, + STATE(4045), 1, + sym__call_signature, + STATE(4046), 1, sym_type_annotation, - STATE(5130), 1, - sym__initializer, - STATE(5231), 1, + STATE(5270), 1, sym_type_parameters, - STATE(5480), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6732), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125070] = 9, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [125891] = 8, + ACTIONS(6351), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6357), 1, + anon_sym_DOT, + ACTIONS(6359), 1, + anon_sym_QMARK_DOT, + ACTIONS(6728), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + STATE(2905), 1, + sym_arguments, + STATE(2920), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4010), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125922] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4265), 1, - sym__call_signature, - STATE(4266), 1, + STATE(4009), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5189), 1, + sym__initializer, + STATE(5275), 1, sym_type_parameters, + STATE(5545), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6679), 5, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125103] = 11, - ACTIONS(2478), 1, + [125959] = 9, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4446), 1, + STATE(3733), 1, + sym__call_signature, + STATE(4046), 1, sym_type_annotation, - STATE(5199), 1, - sym__initializer, - STATE(5231), 1, + STATE(5270), 1, sym_type_parameters, - STATE(5546), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6732), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125140] = 7, - ACTIONS(3752), 1, + anon_sym_PIPE_RBRACE, + [125992] = 7, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3798), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -241557,159 +242532,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125169] = 11, - ACTIONS(2478), 1, + [126021] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4396), 1, + STATE(4147), 1, sym_type_annotation, - STATE(5108), 1, + STATE(5019), 1, + sym__call_signature, + STATE(5020), 1, sym__initializer, - STATE(5231), 1, + STATE(5270), 1, sym_type_parameters, - STATE(5464), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6724), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125206] = 9, - ACTIONS(2478), 1, + [126058] = 11, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(3956), 1, - sym__call_signature, - STATE(3957), 1, + STATE(4456), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5236), 1, + sym__call_signature, + STATE(5241), 1, + sym__initializer, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6681), 5, + ACTIONS(6734), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125239] = 3, - ACTIONS(4062), 1, - anon_sym_PIPE, + [126095] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(6398), 1, + anon_sym_STAR, + ACTIONS(6402), 1, + anon_sym_LBRACE, + ACTIONS(6590), 1, + sym_identifier, + ACTIONS(6592), 1, + anon_sym_type, + STATE(4066), 1, + sym_string, + STATE(4103), 1, + sym_import_require_clause, + STATE(5348), 1, + sym_import_clause, + STATE(5493), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 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_extends, - anon_sym_PIPE_RBRACE, - [125260] = 11, - ACTIONS(2478), 1, + STATE(5697), 2, + sym_namespace_import, + sym_named_imports, + [126134] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4250), 1, + STATE(4396), 1, sym_type_annotation, - STATE(4859), 1, + STATE(4845), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5527), 1, + STATE(5462), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125297] = 11, - ACTIONS(2478), 1, + [126171] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4354), 1, + STATE(4466), 1, sym_type_annotation, - STATE(5032), 1, + STATE(5156), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5347), 1, + STATE(5447), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6683), 3, + ACTIONS(6736), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126208] = 4, + ACTIONS(4059), 1, + anon_sym_PIPE, + ACTIONS(6738), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4061), 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, + [126231] = 4, + ACTIONS(4053), 1, + anon_sym_PIPE, + ACTIONS(6436), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125334] = 9, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126254] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(3653), 1, - sym__call_signature, - STATE(4266), 1, + STATE(4232), 1, sym_type_annotation, - STATE(5435), 1, + STATE(4901), 1, + sym__initializer, + STATE(5275), 1, sym_type_parameters, + STATE(5501), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6679), 5, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [126291] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(4663), 1, + aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125367] = 4, - ACTIONS(3938), 1, + [126320] = 4, + ACTIONS(3922), 1, anon_sym_LPAREN, - STATE(1660), 1, + STATE(1654), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 10, + ACTIONS(4392), 10, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -241720,111 +242768,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [125390] = 9, - ACTIONS(2478), 1, + [126343] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4376), 1, - sym__call_signature, - STATE(4377), 1, + STATE(4355), 1, sym_type_annotation, - STATE(5435), 1, + STATE(4655), 1, + sym__initializer, + STATE(5275), 1, sym_type_parameters, + STATE(5285), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6659), 5, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [126380] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3867), 1, anon_sym_RBRACE, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125423] = 8, - ACTIONS(3530), 1, anon_sym_COLON, - ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_DOT, - ACTIONS(6685), 1, anon_sym_QMARK, - STATE(2909), 1, - sym_type_arguments, - STATE(5414), 1, + anon_sym_PIPE_RBRACE, + [126409] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(3949), 1, + sym__call_signature, + STATE(4456), 1, sym_type_annotation, + STATE(5214), 1, + sym__initializer, + STATE(5301), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6734), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126446] = 3, + ACTIONS(4083), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 6, + ACTIONS(4085), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [125454] = 9, - ACTIONS(2478), 1, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [126467] = 8, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3267), 1, + ACTIONS(4546), 1, + anon_sym_EQ, + STATE(3611), 1, sym_formal_parameters, - STATE(4053), 1, - sym__call_signature, - STATE(4054), 1, - sym_type_annotation, - STATE(5435), 1, + STATE(5373), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 5, - sym__automatic_semicolon, + ACTIONS(3996), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3786), 5, + sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125487] = 12, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(6328), 1, - anon_sym_STAR, - ACTIONS(6332), 1, - anon_sym_LBRACE, - ACTIONS(6506), 1, - sym_identifier, - ACTIONS(6508), 1, - anon_sym_type, - STATE(4188), 1, - sym_string, - STATE(4189), 1, - sym_import_require_clause, - STATE(5294), 1, - sym__import_identifier, - STATE(5345), 1, - sym_import_clause, + [126498] = 5, + ACTIONS(6440), 1, + anon_sym_LPAREN, + ACTIONS(6740), 1, + anon_sym_DOT, + STATE(3295), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5775), 2, - sym_namespace_import, - sym_named_imports, - [125526] = 3, - ACTIONS(1685), 1, + ACTIONS(4065), 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, + [126523] = 3, + ACTIONS(4100), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 11, + ACTIONS(4102), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241832,107 +242917,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [125547] = 4, - ACTIONS(4148), 1, - anon_sym_PIPE, - ACTIONS(6688), 1, + [126544] = 5, + ACTIONS(6446), 1, + anon_sym_LT, + ACTIONS(6705), 1, anon_sym_DOT, + STATE(3430), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 10, + ACTIONS(3479), 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, - [125570] = 11, - ACTIONS(2478), 1, + [126569] = 12, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6742), 1, + anon_sym_GT, + ACTIONS(6744), 1, + anon_sym_DOT, + ACTIONS(6746), 1, + anon_sym_SLASH_GT, + STATE(3353), 1, + sym_type_arguments, + STATE(3354), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [126608] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(3976), 1, + STATE(4216), 1, sym_type_annotation, - STATE(4780), 1, + STATE(5060), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5373), 1, + STATE(5451), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125607] = 4, - ACTIONS(4022), 1, - anon_sym_PIPE, - ACTIONS(6432), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4024), 10, + ACTIONS(6748), 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, - [125630] = 9, - ACTIONS(2478), 1, + [126645] = 9, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(3688), 1, + STATE(3677), 1, sym__call_signature, - STATE(3957), 1, + STATE(4273), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6681), 5, + ACTIONS(6730), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125663] = 4, - ACTIONS(4030), 1, + [126678] = 3, + ACTIONS(4370), 1, anon_sym_PIPE, - ACTIONS(6690), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 10, + ACTIONS(4372), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241940,145 +243032,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125686] = 8, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(6291), 1, + [126699] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6692), 1, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + STATE(3446), 1, + sym_formal_parameters, + STATE(3874), 1, + sym__call_signature, + STATE(4127), 1, + sym_type_annotation, + STATE(4905), 1, + sym__initializer, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125717] = 8, - ACTIONS(6291), 1, + ACTIONS(6750), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126736] = 12, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(6297), 1, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6742), 1, + anon_sym_GT, + ACTIONS(6744), 1, anon_sym_DOT, - ACTIONS(6299), 1, - anon_sym_QMARK_DOT, - ACTIONS(6692), 1, - anon_sym_LPAREN, - STATE(2876), 1, - sym_arguments, - STATE(2989), 1, + ACTIONS(6752), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, sym_type_arguments, + STATE(3404), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3998), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125748] = 8, - ACTIONS(6291), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [126775] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6293), 1, - anon_sym_DOT, - ACTIONS(6295), 1, - anon_sym_QMARK_DOT, - ACTIONS(6692), 1, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(2872), 1, - sym_arguments, - STATE(2992), 1, - sym_type_arguments, + STATE(3851), 1, + sym_formal_parameters, + STATE(4001), 1, + sym_type_annotation, + STATE(4829), 1, + sym__initializer, + STATE(5275), 1, + sym_type_parameters, + STATE(5282), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4016), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125779] = 11, - ACTIONS(2478), 1, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126812] = 9, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4314), 1, + STATE(3755), 1, + sym__call_signature, + STATE(4364), 1, sym_type_annotation, - STATE(4961), 1, - sym__initializer, - STATE(5231), 1, + STATE(5270), 1, sym_type_parameters, - STATE(5322), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6709), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125816] = 11, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [126845] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3783), 1, - sym__call_signature, - STATE(4173), 1, + STATE(3965), 1, sym_type_annotation, - STATE(4733), 1, + STATE(5218), 1, sym__initializer, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5567), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6696), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125853] = 7, - ACTIONS(3752), 1, + [126882] = 7, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3800), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -242086,217 +243187,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125882] = 12, - ACTIONS(3521), 1, + [126911] = 12, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(6301), 1, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6649), 1, + ACTIONS(6742), 1, anon_sym_GT, - ACTIONS(6651), 1, + ACTIONS(6744), 1, anon_sym_DOT, - ACTIONS(6698), 1, + ACTIONS(6754), 1, anon_sym_SLASH_GT, - STATE(3369), 1, - sym_type_arguments, - STATE(3384), 1, + STATE(3434), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3488), 1, + sym_type_arguments, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [125921] = 11, - ACTIONS(2478), 1, + [126950] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, sym_formal_parameters, - STATE(4285), 1, + STATE(3887), 1, + sym__call_signature, + STATE(4202), 1, sym_type_annotation, - STATE(4916), 1, + STATE(5106), 1, sym__initializer, - STATE(5231), 1, + STATE(5301), 1, sym_type_parameters, - STATE(5238), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125958] = 3, - ACTIONS(4214), 1, - anon_sym_PIPE, + [126987] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(3318), 1, + sym_formal_parameters, + STATE(3998), 1, + sym__call_signature, + STATE(4018), 1, + sym_type_annotation, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 11, + ACTIONS(6720), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [125979] = 7, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + [127020] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(4241), 1, + sym_type_annotation, + STATE(5157), 1, + sym__initializer, + STATE(5275), 1, + sym_type_parameters, + STATE(5504), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(6713), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [127057] = 8, + ACTIONS(3449), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_QMARK_DOT, + ACTIONS(6351), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126008] = 3, - ACTIONS(4122), 1, + ACTIONS(6728), 1, + anon_sym_LPAREN, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3443), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [127088] = 4, + ACTIONS(4286), 1, + anon_sym_PIPE, + ACTIONS(6758), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 11, + ACTIONS(4288), 10, 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_extends, anon_sym_PIPE_RBRACE, - [126029] = 11, - ACTIONS(2478), 1, + [127111] = 9, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3396), 1, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(3318), 1, sym_formal_parameters, - STATE(3786), 1, + STATE(3760), 1, sym__call_signature, - STATE(4199), 1, + STATE(4297), 1, sym_type_annotation, - STATE(4796), 1, - sym__initializer, - STATE(5339), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6700), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126066] = 3, - ACTIONS(4136), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4138), 11, + ACTIONS(6718), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126087] = 11, - ACTIONS(2478), 1, + [127144] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, sym_formal_parameters, - STATE(4397), 1, + STATE(3958), 1, sym_type_annotation, - STATE(5018), 1, + STATE(5226), 1, sym__initializer, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5333), 1, + STATE(5583), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126124] = 5, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_LBRACK, + [127181] = 12, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6742), 1, + anon_sym_GT, + ACTIONS(6744), 1, + anon_sym_DOT, + ACTIONS(6760), 1, + anon_sym_SLASH_GT, + STATE(3497), 1, + sym_type_arguments, + STATE(3501), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4198), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126148] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [127220] = 3, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 8, + ACTIONS(4342), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242304,14 +243423,16 @@ 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, - [126172] = 3, - ACTIONS(4026), 1, + [127240] = 3, + ACTIONS(4320), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 10, + ACTIONS(4322), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242322,13 +243443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126192] = 3, - ACTIONS(1699), 1, + [127260] = 3, + ACTIONS(1805), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 10, + ACTIONS(4440), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242339,52 +243460,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126212] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - anon_sym_LT_SLASH, - ACTIONS(6716), 1, - anon_sym_LT, - STATE(3252), 1, - sym_jsx_opening_element, - STATE(4305), 1, - sym_jsx_closing_element, + [127280] = 3, + ACTIONS(4328), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6712), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3185), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126242] = 3, - ACTIONS(1791), 1, - anon_sym_DOT, + ACTIONS(4272), 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, + [127300] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 10, + ACTIONS(3206), 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, - [126262] = 3, - ACTIONS(2336), 1, + [127318] = 4, + ACTIONS(4334), 1, anon_sym_PIPE, + ACTIONS(6762), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2334), 10, + ACTIONS(4336), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242392,70 +243509,53 @@ 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, - [126282] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - anon_sym_LT_SLASH, - ACTIONS(6716), 1, - anon_sym_LT, - STATE(3252), 1, - sym_jsx_opening_element, - STATE(4321), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6718), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3273), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126312] = 2, + [127340] = 3, + ACTIONS(4284), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 11, + ACTIONS(4282), 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, - [126330] = 2, + anon_sym_PIPE_RBRACE, + [127360] = 3, + ACTIONS(4344), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 11, + ACTIONS(4346), 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, - [126348] = 3, - ACTIONS(4280), 1, + anon_sym_PIPE_RBRACE, + [127380] = 5, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6764), 1, anon_sym_PIPE, + ACTIONS(6766), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 10, + ACTIONS(4350), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242463,89 +243563,104 @@ 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, - [126368] = 3, - ACTIONS(4342), 1, + [127404] = 5, + ACTIONS(4292), 1, anon_sym_PIPE, + ACTIONS(6768), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 10, + ACTIONS(4294), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4354), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [127428] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4208), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127446] = 5, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6764), 1, + anon_sym_PIPE, + ACTIONS(6766), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 11, + ACTIONS(4388), 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_RBRACE, + [127470] = 4, + ACTIONS(4356), 1, anon_sym_PIPE, + ACTIONS(6770), 1, anon_sym_extends, - [126406] = 4, - ACTIONS(6396), 1, - anon_sym_LT, - STATE(3456), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 9, + ACTIONS(4358), 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_RBRACE, + [127492] = 4, + ACTIONS(4362), 1, anon_sym_PIPE, - anon_sym_extends, - [126428] = 4, - ACTIONS(4284), 1, - anon_sym_PIPE, - ACTIONS(6704), 1, - anon_sym_AMP, + ACTIONS(6768), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 9, + ACTIONS(4364), 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, - [126450] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + [127514] = 3, + ACTIONS(4366), 1, anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4096), 8, + ACTIONS(4368), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242553,18 +243668,20 @@ 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, - [126474] = 5, - ACTIONS(6704), 1, + [127534] = 5, + ACTIONS(6762), 1, anon_sym_AMP, - ACTIONS(6706), 1, + ACTIONS(6764), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6766), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 8, + ACTIONS(4396), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242573,13 +243690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [126498] = 3, - ACTIONS(4350), 1, + [127558] = 3, + ACTIONS(2340), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 10, + ACTIONS(2338), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242590,33 +243707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126518] = 6, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_DOT, - ACTIONS(6720), 1, - anon_sym_is, - STATE(2909), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3501), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [126544] = 3, - ACTIONS(4222), 1, + [127578] = 3, + ACTIONS(4390), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 10, + ACTIONS(4392), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242627,13 +243724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126564] = 3, - ACTIONS(4354), 1, + [127598] = 3, + ACTIONS(4402), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 10, + ACTIONS(4404), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242644,35 +243741,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126584] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, + [127618] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6724), 1, - anon_sym_LT_SLASH, - STATE(1621), 1, - sym_jsx_closing_element, - STATE(3252), 1, - sym_jsx_opening_element, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3611), 1, + sym_formal_parameters, + STATE(5373), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6722), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3247), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126614] = 3, - ACTIONS(4374), 1, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127644] = 3, + ACTIONS(4410), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 10, + ACTIONS(4412), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242683,13 +243778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126634] = 3, - ACTIONS(4378), 1, + [127664] = 3, + ACTIONS(4414), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 10, + ACTIONS(4416), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242700,13 +243795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126654] = 3, - ACTIONS(4382), 1, + [127684] = 3, + ACTIONS(4418), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 10, + ACTIONS(4420), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242717,13 +243812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126674] = 3, - ACTIONS(2344), 1, + [127704] = 3, + ACTIONS(4434), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2342), 10, + ACTIONS(4436), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242734,48 +243829,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126694] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, - anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, + [127724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 8, + ACTIONS(3786), 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_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126718] = 2, + [127742] = 4, + ACTIONS(6442), 1, + anon_sym_DOT, + ACTIONS(6444), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3188), 11, + ACTIONS(3443), 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, - [126736] = 3, - ACTIONS(2340), 1, + [127764] = 3, + ACTIONS(4053), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 10, + ACTIONS(4055), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242786,117 +243880,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126756] = 3, - ACTIONS(4230), 1, - anon_sym_PIPE, + [127784] = 4, + ACTIONS(6772), 1, + anon_sym_DOT, + ACTIONS(6774), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 10, + ACTIONS(4316), 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, - [126776] = 4, - ACTIONS(6392), 1, - anon_sym_DOT, - ACTIONS(6394), 1, - anon_sym_QMARK_DOT, + [127806] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 9, + ACTIONS(4120), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [126798] = 3, - ACTIONS(4234), 1, - anon_sym_PIPE, + [127824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 10, + ACTIONS(4124), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126818] = 3, - ACTIONS(4140), 1, anon_sym_PIPE, + anon_sym_extends, + [127842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 10, + ACTIONS(4128), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126838] = 3, - ACTIONS(4030), 1, + [127860] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4132), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [127878] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 10, + ACTIONS(4136), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126858] = 4, - ACTIONS(6726), 1, + [127896] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4150), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127914] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 9, + ACTIONS(4216), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [126880] = 3, - ACTIONS(4144), 1, + [127932] = 3, + ACTIONS(4104), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 10, + ACTIONS(4106), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242907,13 +244027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126900] = 3, - ACTIONS(4238), 1, + [127952] = 5, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6764), 1, anon_sym_PIPE, + ACTIONS(6766), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 10, + ACTIONS(4106), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242921,205 +244045,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127976] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3214), 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, - [126920] = 3, - ACTIONS(4022), 1, + [127994] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4196), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [128012] = 4, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3458), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 10, + ACTIONS(4061), 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, - [126940] = 8, - ACTIONS(6710), 1, + [128034] = 8, + ACTIONS(6776), 1, anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_LT, - ACTIONS(6730), 1, + ACTIONS(6780), 1, anon_sym_LT_SLASH, - STATE(2172), 1, + ACTIONS(6782), 1, + anon_sym_LT, + STATE(1694), 1, sym_jsx_closing_element, STATE(3252), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6718), 2, + ACTIONS(6778), 2, sym_jsx_text, sym_html_character_reference, - STATE(3273), 4, + STATE(3285), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [126970] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3699), 1, - sym_formal_parameters, - STATE(5356), 1, - sym_type_parameters, + [128064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(4146), 11, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126996] = 3, - ACTIONS(4154), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [128082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 10, + ACTIONS(4400), 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_extends, - anon_sym_PIPE_RBRACE, - [127016] = 3, - ACTIONS(4160), 1, anon_sym_PIPE, + anon_sym_extends, + [128100] = 6, + ACTIONS(6351), 1, + anon_sym_LT, + ACTIONS(6384), 1, + anon_sym_DOT, + ACTIONS(6784), 1, + anon_sym_is, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3479), 7, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127036] = 2, + [128126] = 8, + ACTIONS(6776), 1, + anon_sym_LBRACE, + ACTIONS(6782), 1, + anon_sym_LT, + ACTIONS(6788), 1, + anon_sym_LT_SLASH, + STATE(3252), 1, + sym_jsx_opening_element, + STATE(4401), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 11, + ACTIONS(6786), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3257), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [128156] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127054] = 2, + [128174] = 11, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + ACTIONS(3008), 1, + anon_sym_SQUOTE, + ACTIONS(6790), 1, + sym_identifier, + ACTIONS(6792), 1, + anon_sym_type, + ACTIONS(6794), 1, + anon_sym_COMMA, + ACTIONS(6796), 1, + anon_sym_RBRACE, + ACTIONS(6798), 1, + anon_sym_typeof, + STATE(4806), 1, + sym_import_specifier, + STATE(5421), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 11, + STATE(5970), 2, + sym__module_export_name, + sym_string, + [128210] = 3, + ACTIONS(4426), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4428), 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, - [127072] = 2, + [128230] = 4, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(6762), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 11, + ACTIONS(4242), 9, 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_AMP, - anon_sym_PIPE, anon_sym_extends, - [127090] = 2, + anon_sym_PIPE_RBRACE, + [128252] = 8, + ACTIONS(6776), 1, + anon_sym_LBRACE, + ACTIONS(6782), 1, + anon_sym_LT, + ACTIONS(6788), 1, + anon_sym_LT_SLASH, + STATE(3252), 1, + sym_jsx_opening_element, + STATE(4483), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6800), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3319), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [128282] = 3, + ACTIONS(4310), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5224), 11, + ACTIONS(4312), 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, - [127108] = 2, + [128302] = 8, + ACTIONS(6776), 1, + anon_sym_LBRACE, + ACTIONS(6782), 1, + anon_sym_LT, + ACTIONS(6804), 1, + anon_sym_LT_SLASH, + STATE(2076), 1, + sym_jsx_closing_element, + STATE(3252), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6802), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3284), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [128332] = 3, + ACTIONS(2336), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 11, + ACTIONS(2334), 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_AMP, - anon_sym_PIPE, anon_sym_extends, - [127126] = 2, + anon_sym_PIPE_RBRACE, + [128352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 11, + ACTIONS(5468), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127144] = 3, - ACTIONS(2328), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [128370] = 3, + ACTIONS(4422), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2326), 10, + ACTIONS(4424), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243130,13 +244379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127164] = 3, - ACTIONS(4290), 1, + [128390] = 3, + ACTIONS(4236), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 10, + ACTIONS(4238), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243147,17 +244396,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127184] = 5, - ACTIONS(6704), 1, + [128410] = 5, + ACTIONS(6762), 1, anon_sym_AMP, - ACTIONS(6706), 1, + ACTIONS(6764), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6766), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 8, + ACTIONS(4110), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243166,45 +244415,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [127208] = 2, + [128434] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 11, + ACTIONS(3210), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127226] = 2, + [128452] = 3, + ACTIONS(4244), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 11, + ACTIONS(4246), 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_AMP, - anon_sym_PIPE, anon_sym_extends, - [127244] = 3, - ACTIONS(4402), 1, + anon_sym_PIPE_RBRACE, + [128472] = 3, + ACTIONS(4162), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 10, + ACTIONS(4164), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243215,13 +244465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127264] = 3, - ACTIONS(2332), 1, + [128492] = 3, + ACTIONS(4166), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2330), 10, + ACTIONS(4168), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243232,13 +244482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127284] = 3, - ACTIONS(4242), 1, + [128512] = 5, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6764), 1, anon_sym_PIPE, + ACTIONS(6766), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 10, + ACTIONS(4168), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243246,32 +244500,31 @@ 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, - [127304] = 2, + [128536] = 3, + ACTIONS(4059), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3164), 11, + ACTIONS(4061), 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, - [127322] = 3, - ACTIONS(4246), 1, + anon_sym_PIPE_RBRACE, + [128556] = 3, + ACTIONS(2344), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 10, + ACTIONS(2342), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243282,17 +244535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127342] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + [128576] = 3, + ACTIONS(4274), 1, anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 8, + ACTIONS(4276), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243300,52 +244549,55 @@ 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, - [127366] = 2, + [128596] = 3, + ACTIONS(4087), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3184), 11, + ACTIONS(4089), 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, - [127384] = 8, - ACTIONS(6710), 1, + anon_sym_PIPE_RBRACE, + [128616] = 8, + ACTIONS(6776), 1, anon_sym_LBRACE, - ACTIONS(6716), 1, + ACTIONS(6782), 1, anon_sym_LT, - ACTIONS(6730), 1, + ACTIONS(6808), 1, anon_sym_LT_SLASH, - STATE(2317), 1, - sym_jsx_closing_element, STATE(3252), 1, sym_jsx_opening_element, + STATE(4434), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6732), 2, + ACTIONS(6806), 2, sym_jsx_text, sym_html_character_reference, - STATE(3216), 4, + STATE(3287), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [127414] = 3, - ACTIONS(4170), 1, + [128646] = 3, + ACTIONS(4292), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 10, + ACTIONS(4294), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243356,30 +244608,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127434] = 3, - ACTIONS(4174), 1, + [128666] = 4, + ACTIONS(4292), 1, anon_sym_PIPE, + ACTIONS(6768), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 10, + ACTIONS(4294), 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, - [127454] = 3, - ACTIONS(4176), 1, + [128688] = 3, + ACTIONS(4222), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 10, + ACTIONS(4224), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243390,15 +244643,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127474] = 4, - ACTIONS(4180), 1, + [128708] = 3, + ACTIONS(4226), 1, anon_sym_PIPE, - ACTIONS(6704), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4228), 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, + [128728] = 3, + ACTIONS(4448), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 9, + ACTIONS(4450), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243406,15 +244674,16 @@ 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, - [127496] = 3, - ACTIONS(4134), 1, + [128748] = 3, + ACTIONS(2332), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 10, + ACTIONS(2330), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243425,13 +244694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127516] = 3, - ACTIONS(4184), 1, + [128768] = 3, + ACTIONS(4298), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 10, + ACTIONS(4300), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243442,13 +244711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127536] = 3, - ACTIONS(4188), 1, + [128788] = 3, + ACTIONS(4302), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 10, + ACTIONS(4304), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243459,17 +244728,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127556] = 5, - ACTIONS(6704), 1, + [128808] = 5, + ACTIONS(6762), 1, anon_sym_AMP, - ACTIONS(6706), 1, + ACTIONS(6764), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6766), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 8, + ACTIONS(4326), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243478,133 +244747,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [127580] = 8, - ACTIONS(6710), 1, + [128832] = 8, + ACTIONS(6776), 1, anon_sym_LBRACE, - ACTIONS(6716), 1, + ACTIONS(6782), 1, anon_sym_LT, - ACTIONS(6724), 1, + ACTIONS(6804), 1, anon_sym_LT_SLASH, - STATE(1684), 1, + STATE(2083), 1, sym_jsx_closing_element, STATE(3252), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6718), 2, + ACTIONS(6800), 2, sym_jsx_text, sym_html_character_reference, - STATE(3273), 4, + STATE(3319), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [127610] = 5, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(4222), 1, - anon_sym_PIPE, - STATE(1660), 1, - sym_arguments, + [128862] = 8, + ACTIONS(6776), 1, + anon_sym_LBRACE, + ACTIONS(6780), 1, + anon_sym_LT_SLASH, + ACTIONS(6782), 1, + anon_sym_LT, + STATE(1728), 1, + sym_jsx_closing_element, + STATE(3252), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 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, - [127634] = 4, - ACTIONS(4200), 1, - anon_sym_PIPE, - ACTIONS(6734), 1, - anon_sym_extends, + ACTIONS(6800), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3319), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [128892] = 3, + ACTIONS(1871), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 9, + ACTIONS(4440), 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_RBRACE, - [127656] = 3, - ACTIONS(4260), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4262), 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, - [127676] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, anon_sym_LT, - ACTIONS(6736), 1, - anon_sym_LT_SLASH, - STATE(3252), 1, - sym_jsx_opening_element, - STATE(4196), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6718), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3273), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [127706] = 8, - ACTIONS(6710), 1, + anon_sym_extends, + [128912] = 8, + ACTIONS(6776), 1, anon_sym_LBRACE, - ACTIONS(6716), 1, + ACTIONS(6782), 1, anon_sym_LT, - ACTIONS(6736), 1, + ACTIONS(6808), 1, anon_sym_LT_SLASH, STATE(3252), 1, sym_jsx_opening_element, - STATE(4175), 1, + STATE(4044), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6738), 2, + ACTIONS(6800), 2, sym_jsx_text, sym_html_character_reference, - STATE(3251), 4, + STATE(3319), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [127736] = 3, - ACTIONS(4334), 1, + [128942] = 3, + ACTIONS(2328), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 10, + ACTIONS(2326), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243615,56 +244847,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127756] = 11, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6740), 1, - sym_identifier, - ACTIONS(6742), 1, - anon_sym_type, - ACTIONS(6744), 1, - anon_sym_COMMA, - ACTIONS(6746), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_typeof, - STATE(4805), 1, - sym_import_specifier, - STATE(5428), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5603), 2, - sym__module_export_name, - sym_string, - [127792] = 4, - ACTIONS(4206), 1, + [128962] = 5, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_LBRACK, + STATE(1654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 9, + ACTIONS(4392), 8, 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, - [127814] = 3, - ACTIONS(4210), 1, + [128986] = 3, + ACTIONS(4330), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 10, + ACTIONS(4332), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243675,390 +244883,497 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127834] = 4, - ACTIONS(4154), 1, + [129006] = 5, + ACTIONS(6052), 1, + anon_sym_LPAREN, + ACTIONS(6418), 1, + anon_sym_DOT, + STATE(2913), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4065), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6702), 1, + anon_sym_QMARK, + anon_sym_extends, + [129029] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1685), 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, + [129046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 9, + ACTIONS(4102), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129063] = 9, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + ACTIONS(3008), 1, + anon_sym_SQUOTE, + ACTIONS(6790), 1, + sym_identifier, + ACTIONS(6810), 1, + anon_sym_type, + ACTIONS(6812), 1, + anon_sym_as, + STATE(5565), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6594), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(5900), 2, + sym__module_export_name, + sym_string, + [129094] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127856] = 11, - ACTIONS(2478), 1, + [129111] = 10, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + ACTIONS(3008), 1, + anon_sym_SQUOTE, + ACTIONS(6790), 1, + sym_identifier, + ACTIONS(6792), 1, + anon_sym_type, + ACTIONS(6798), 1, + anon_sym_typeof, + ACTIONS(6814), 1, + anon_sym_RBRACE, + STATE(5319), 1, + sym_import_specifier, + STATE(5421), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5970), 2, + sym__module_export_name, + sym_string, + [129144] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6750), 1, + ACTIONS(6816), 1, sym_identifier, - ACTIONS(6752), 1, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6820), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6822), 1, anon_sym_implements, - STATE(2288), 1, + STATE(2149), 1, sym_class_body, - STATE(3741), 1, + STATE(3643), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5597), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127891] = 11, - ACTIONS(2478), 1, + [129179] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6820), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6822), 1, anon_sym_implements, - ACTIONS(6758), 1, + ACTIONS(6824), 1, sym_identifier, - STATE(2330), 1, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(1644), 1, sym_class_body, - STATE(3593), 1, + STATE(3774), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5260), 1, + STATE(5342), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127926] = 9, - ACTIONS(2970), 1, + [129214] = 10, + ACTIONS(3006), 1, anon_sym_DQUOTE, - ACTIONS(2972), 1, + ACTIONS(3008), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6790), 1, sym_identifier, - ACTIONS(6760), 1, + ACTIONS(6792), 1, anon_sym_type, - ACTIONS(6762), 1, - anon_sym_as, - STATE(5245), 1, + ACTIONS(6798), 1, + anon_sym_typeof, + ACTIONS(6828), 1, + anon_sym_RBRACE, + STATE(5319), 1, + sym_import_specifier, + STATE(5421), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5931), 2, + STATE(5970), 2, sym__module_export_name, sym_string, - [127957] = 2, + [129247] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6820), 1, + anon_sym_extends, + ACTIONS(6822), 1, + anon_sym_implements, + ACTIONS(6830), 1, + sym_identifier, + STATE(2149), 1, + sym_class_body, + STATE(3643), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5597), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [129282] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6820), 1, anon_sym_extends, - [127974] = 11, - ACTIONS(2478), 1, + ACTIONS(6822), 1, + anon_sym_implements, + ACTIONS(6826), 1, + anon_sym_LBRACE, + ACTIONS(6832), 1, + sym_identifier, + STATE(2561), 1, + sym_class_body, + STATE(3734), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5412), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [129317] = 10, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(6681), 1, + anon_sym_GT, + ACTIONS(6701), 1, + anon_sym_SLASH_GT, + STATE(3391), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129350] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6820), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6822), 1, anon_sym_implements, - ACTIONS(6764), 1, + ACTIONS(6834), 1, sym_identifier, - STATE(2288), 1, + STATE(2172), 1, sym_class_body, - STATE(3741), 1, + STATE(3789), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5360), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128009] = 5, - ACTIONS(5964), 1, + [129385] = 4, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3996), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(6358), 1, - anon_sym_DOT, - STATE(2893), 1, - sym_arguments, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [129406] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 7, + ACTIONS(4085), 10, + 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_QMARK, anon_sym_extends, - [128032] = 10, - ACTIONS(6301), 1, + anon_sym_is, + [129423] = 10, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6318), 1, + ACTIONS(6378), 1, anon_sym_SLASH_GT, - ACTIONS(6601), 1, + ACTIONS(6679), 1, anon_sym_COLON, - ACTIONS(6603), 1, + ACTIONS(6681), 1, anon_sym_GT, - STATE(3337), 1, + STATE(3339), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [128065] = 10, - ACTIONS(6301), 1, + [129456] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6820), 1, + anon_sym_extends, + ACTIONS(6822), 1, + anon_sym_implements, + ACTIONS(6836), 1, + sym_identifier, + STATE(2172), 1, + sym_class_body, + STATE(3789), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5360), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [129491] = 10, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6601), 1, + ACTIONS(6679), 1, anon_sym_COLON, - ACTIONS(6603), 1, + ACTIONS(6681), 1, anon_sym_GT, - ACTIONS(6605), 1, + ACTIONS(6683), 1, anon_sym_SLASH_GT, - STATE(3314), 1, + STATE(3489), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [128098] = 4, - ACTIONS(6768), 1, + [129524] = 8, + ACTIONS(6510), 1, anon_sym_COLON, + ACTIONS(6838), 1, + anon_sym_EQ, + ACTIONS(6842), 1, + anon_sym_BANG, + STATE(4006), 1, + sym_type_annotation, + STATE(4194), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3836), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6766), 6, + ACTIONS(6844), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6840), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128119] = 4, - ACTIONS(6768), 1, + [129553] = 9, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, + ACTIONS(6842), 1, + anon_sym_BANG, + ACTIONS(6846), 1, + sym__automatic_semicolon, + STATE(4006), 1, + sym_type_annotation, + STATE(4888), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3824), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6770), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6840), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128140] = 8, - ACTIONS(6452), 1, + ACTIONS(6844), 2, + anon_sym_in, + anon_sym_of, + [129584] = 4, + ACTIONS(6851), 1, anon_sym_COLON, - ACTIONS(6772), 1, - anon_sym_EQ, - ACTIONS(6776), 1, - anon_sym_BANG, - STATE(4126), 1, - sym__initializer, - STATE(4264), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6774), 3, + STATE(3849), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6849), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [128169] = 10, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6740), 1, - sym_identifier, - ACTIONS(6742), 1, - anon_sym_type, - ACTIONS(6748), 1, - anon_sym_typeof, - ACTIONS(6780), 1, anon_sym_RBRACE, - STATE(5428), 1, - sym__import_identifier, - STATE(5458), 1, - sym_import_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5603), 2, - sym__module_export_name, - sym_string, - [128202] = 11, - ACTIONS(2478), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [129605] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6754), 1, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6820), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6822), 1, anon_sym_implements, - ACTIONS(6782), 1, + ACTIONS(6853), 1, sym_identifier, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(1669), 1, + STATE(2172), 1, sym_class_body, - STATE(3679), 1, + STATE(3789), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5299), 1, + STATE(5360), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128237] = 4, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [128258] = 10, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6322), 1, - anon_sym_SLASH_GT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(6603), 1, - anon_sym_GT, - STATE(3438), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128291] = 7, - ACTIONS(6786), 1, - anon_sym_LBRACE, - ACTIONS(6792), 1, - anon_sym_LT_SLASH, - ACTIONS(6794), 1, - anon_sym_LT, - STATE(3252), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6789), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3273), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [128318] = 11, - ACTIONS(2478), 1, + [129640] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6820), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6822), 1, anon_sym_implements, - ACTIONS(6797), 1, + ACTIONS(6855), 1, sym_identifier, - STATE(2330), 1, + STATE(2172), 1, sym_class_body, - STATE(3593), 1, + STATE(3789), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5260), 1, + STATE(5360), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128353] = 3, - ACTIONS(6639), 1, + [129675] = 3, + ACTIONS(6857), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 9, + ACTIONS(4061), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244068,96 +245383,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128372] = 6, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_DOT, - ACTIONS(6799), 1, - anon_sym_is, - STATE(2909), 1, - sym_type_arguments, + [129694] = 10, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6382), 1, + anon_sym_SLASH_GT, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(6681), 1, + anon_sym_GT, + STATE(3431), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128397] = 11, - ACTIONS(2478), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129727] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6820), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6822), 1, anon_sym_implements, - ACTIONS(6801), 1, + ACTIONS(6859), 1, sym_identifier, - STATE(2330), 1, + STATE(2149), 1, sym_class_body, - STATE(3593), 1, + STATE(3643), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5260), 1, + STATE(5597), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128432] = 9, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6803), 1, - sym_identifier, - ACTIONS(6807), 1, - anon_sym_COMMA, - ACTIONS(6809), 1, - anon_sym_RBRACE, - STATE(5023), 1, - sym_export_specifier, + [129762] = 3, + ACTIONS(6861), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6805), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5027), 2, - sym__module_export_name, - sym_string, - [128463] = 5, - ACTIONS(6704), 1, + ACTIONS(4288), 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(6706), 1, anon_sym_PIPE, - ACTIONS(6708), 1, anon_sym_extends, + [129781] = 4, + ACTIONS(6851), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6811), 7, + STATE(3932), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6863), 6, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128486] = 3, - ACTIONS(6813), 1, + [129802] = 7, + ACTIONS(6865), 1, + anon_sym_LBRACE, + ACTIONS(6871), 1, + anon_sym_LT_SLASH, + ACTIONS(6873), 1, + anon_sym_LT, + STATE(3252), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6868), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3319), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [129829] = 3, + ACTIONS(6707), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 9, + ACTIONS(4055), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244167,97 +245499,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128505] = 11, - ACTIONS(2478), 1, + [129848] = 6, + ACTIONS(6351), 1, anon_sym_LT, - ACTIONS(6754), 1, - anon_sym_extends, - ACTIONS(6756), 1, - anon_sym_implements, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6815), 1, - sym_identifier, - STATE(2483), 1, - sym_class_body, - STATE(3729), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5230), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6384), 1, + anon_sym_DOT, + ACTIONS(6876), 1, + anon_sym_is, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128540] = 10, - ACTIONS(2970), 1, + ACTIONS(3479), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129873] = 9, + ACTIONS(3006), 1, anon_sym_DQUOTE, - ACTIONS(2972), 1, + ACTIONS(3008), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6878), 1, sym_identifier, - ACTIONS(6742), 1, - anon_sym_type, - ACTIONS(6748), 1, - anon_sym_typeof, - ACTIONS(6817), 1, + ACTIONS(6882), 1, + anon_sym_COMMA, + ACTIONS(6884), 1, anon_sym_RBRACE, - STATE(5428), 1, - sym__import_identifier, - STATE(5458), 1, - sym_import_specifier, + STATE(4680), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5603), 2, + ACTIONS(6880), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4771), 2, sym__module_export_name, sym_string, - [128573] = 11, - ACTIONS(2478), 1, + [129904] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6820), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6822), 1, anon_sym_implements, - ACTIONS(6819), 1, + ACTIONS(6826), 1, + anon_sym_LBRACE, + ACTIONS(6886), 1, sym_identifier, - STATE(2288), 1, + STATE(1657), 1, sym_class_body, - STATE(3741), 1, + STATE(3567), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5443), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128608] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4060), 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, + [129939] = 3, + ACTIONS(6707), 1, anon_sym_is, - [128625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 10, + ACTIONS(4089), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244267,206 +245580,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - [128642] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4138), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + [129958] = 5, + ACTIONS(6762), 1, anon_sym_AMP, + ACTIONS(6764), 1, anon_sym_PIPE, + ACTIONS(6766), 1, anon_sym_extends, - [128659] = 3, - ACTIONS(6821), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 9, + ACTIONS(6888), 7, 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, - [128678] = 11, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [129981] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6754), 1, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6820), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6822), 1, anon_sym_implements, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6823), 1, + ACTIONS(6890), 1, sym_identifier, - STATE(1691), 1, + STATE(2149), 1, sym_class_body, - STATE(3745), 1, + STATE(3643), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5320), 1, + STATE(5597), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128713] = 11, - ACTIONS(2478), 1, + [130016] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6894), 1, anon_sym_implements, - ACTIONS(6825), 1, - sym_identifier, - STATE(2330), 1, + STATE(2305), 1, sym_class_body, - STATE(3593), 1, + STATE(3594), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5260), 1, + STATE(5498), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128748] = 9, - ACTIONS(6444), 1, + [130048] = 7, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6896), 1, + anon_sym_DQUOTE, + ACTIONS(6898), 1, + anon_sym_SQUOTE, + ACTIONS(6900), 1, + anon_sym_LT, + STATE(3274), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3980), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [130074] = 7, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6776), 1, - anon_sym_BANG, - ACTIONS(6827), 1, - sym__automatic_semicolon, - STATE(4264), 1, + STATE(4419), 1, sym_type_annotation, - STATE(4878), 1, + STATE(4676), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 2, + ACTIONS(6508), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6506), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [128779] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6754), 1, + [130100] = 5, + ACTIONS(6902), 1, + anon_sym_AMP, + ACTIONS(6904), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, anon_sym_extends, - ACTIONS(6756), 1, - anon_sym_implements, - ACTIONS(6830), 1, - sym_identifier, - STATE(2288), 1, - sym_class_body, - STATE(3741), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5379), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [128814] = 3, - ACTIONS(6639), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 9, + ACTIONS(4388), 6, 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, - [128833] = 10, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(6603), 1, - anon_sym_GT, - ACTIONS(6629), 1, - anon_sym_SLASH_GT, - STATE(3308), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128866] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6832), 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, - [128882] = 8, - ACTIONS(6444), 1, + [130122] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6834), 1, + ACTIONS(6908), 1, anon_sym_BANG, - ACTIONS(6836), 1, + ACTIONS(6910), 1, anon_sym_QMARK, - STATE(4208), 1, + STATE(4318), 1, sym_type_annotation, - STATE(4798), 1, + STATE(4940), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128910] = 2, + [130150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -244480,192 +245733,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128926] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6838), 1, - anon_sym_BANG, - ACTIONS(6840), 1, - anon_sym_QMARK, - STATE(4217), 1, - sym_type_annotation, - STATE(4803), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128954] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6842), 1, - anon_sym_BANG, - ACTIONS(6844), 1, - anon_sym_QMARK, - STATE(4263), 1, - sym_type_annotation, - STATE(4874), 1, - sym__initializer, + [130166] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6912), 1, + anon_sym_LBRACE, + STATE(791), 1, + sym_class_body, + STATE(3667), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5281), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128982] = 9, - ACTIONS(6301), 1, + [130198] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6846), 1, + ACTIONS(6914), 1, anon_sym_GT, - ACTIONS(6848), 1, + ACTIONS(6916), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [129012] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [130228] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6914), 1, + anon_sym_GT, + ACTIONS(6918), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [129038] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6850), 1, - anon_sym_BANG, - ACTIONS(6852), 1, - anon_sym_QMARK, - STATE(4210), 1, - sym_type_annotation, - STATE(4804), 1, - sym__initializer, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(4228), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129066] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6854), 1, - anon_sym_BANG, - ACTIONS(6856), 1, - anon_sym_QMARK, - STATE(4219), 1, - sym_type_annotation, - STATE(4814), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130274] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(2334), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129094] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6858), 1, - anon_sym_BANG, - ACTIONS(6860), 1, - anon_sym_QMARK, - STATE(4140), 1, - sym_type_annotation, - STATE(4643), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130290] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6920), 1, + anon_sym_LBRACE, + STATE(242), 1, + sym_class_body, + STATE(3794), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5395), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129122] = 9, - ACTIONS(6301), 1, + [130322] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6862), 1, + ACTIONS(6922), 1, anon_sym_GT, - ACTIONS(6864), 1, + ACTIONS(6924), 1, anon_sym_SLASH_GT, - STATE(3410), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [129152] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6866), 1, - anon_sym_BANG, - ACTIONS(6868), 1, - anon_sym_QMARK, - STATE(4236), 1, - sym_type_annotation, - STATE(4838), 1, - sym__initializer, + [130352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(4450), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129180] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 9, + ACTIONS(2326), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244675,301 +245896,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129196] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6322), 1, - anon_sym_SLASH_GT, - ACTIONS(6603), 1, - anon_sym_GT, - STATE(3370), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [130384] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6926), 1, + anon_sym_BANG, + ACTIONS(6928), 1, + anon_sym_QMARK, + STATE(4312), 1, + sym_type_annotation, + STATE(4918), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129226] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6870), 1, - anon_sym_GT, - ACTIONS(6872), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + ACTIONS(6514), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130412] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129256] = 9, - ACTIONS(6301), 1, + ACTIONS(2330), 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, + [130428] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6874), 1, + ACTIONS(6930), 1, anon_sym_GT, - ACTIONS(6876), 1, + ACTIONS(6932), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [129286] = 9, - ACTIONS(6301), 1, + [130458] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6878), 1, + ACTIONS(6934), 1, anon_sym_GT, - ACTIONS(6880), 1, + ACTIONS(6936), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3460), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [129316] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + [130488] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6938), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6874), 1, - anon_sym_GT, - ACTIONS(6882), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + STATE(3581), 1, + sym_type_parameters, + STATE(4026), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5482), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129346] = 8, - ACTIONS(6444), 1, + [130520] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6884), 1, + ACTIONS(6940), 1, anon_sym_BANG, - ACTIONS(6886), 1, + ACTIONS(6942), 1, anon_sym_QMARK, - STATE(4345), 1, + STATE(4441), 1, sym_type_annotation, - STATE(5016), 1, + STATE(4979), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129374] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6878), 1, - anon_sym_GT, - ACTIONS(6888), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [130548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129404] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4055), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6870), 1, - anon_sym_GT, - ACTIONS(6890), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130564] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(3631), 1, + sym_type_parameters, + STATE(4186), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5547), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129434] = 7, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4101), 1, - sym_type_annotation, - STATE(5063), 1, - sym__initializer, + [130596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6894), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6892), 3, + ACTIONS(4276), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129460] = 9, - ACTIONS(6301), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130612] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 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, + [130628] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6896), 1, + ACTIONS(6944), 1, anon_sym_GT, - ACTIONS(6898), 1, + ACTIONS(6946), 1, anon_sym_SLASH_GT, - STATE(3340), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [129490] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6900), 1, + [130658] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(849), 1, - sym_class_body, - STATE(3527), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5259), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6948), 1, + anon_sym_GT, + ACTIONS(6950), 1, + anon_sym_SLASH_GT, + STATE(3335), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129522] = 9, - ACTIONS(6301), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130688] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6862), 1, + ACTIONS(6952), 1, anon_sym_GT, - ACTIONS(6906), 1, + ACTIONS(6954), 1, anon_sym_SLASH_GT, - STATE(3349), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [129552] = 8, - ACTIONS(6444), 1, + [130718] = 7, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6908), 1, - anon_sym_BANG, - ACTIONS(6910), 1, - anon_sym_QMARK, - STATE(4351), 1, + STATE(4470), 1, sym_type_annotation, - STATE(5025), 1, + STATE(5225), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(6604), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6602), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129580] = 8, - ACTIONS(6444), 1, + [130744] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6912), 1, - anon_sym_BANG, - ACTIONS(6914), 1, - anon_sym_QMARK, - STATE(4352), 1, - sym_type_annotation, - STATE(5028), 1, - sym__initializer, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129608] = 2, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [130770] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 9, + ACTIONS(4392), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244979,33 +246193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129624] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(780), 1, - sym_class_body, - STATE(3536), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5309), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129656] = 2, + [130786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 9, + ACTIONS(1877), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245015,119 +246207,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129672] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2192), 1, - sym_class_body, - STATE(3562), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5443), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129704] = 3, - ACTIONS(6918), 1, - anon_sym_LBRACK, + [130802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 8, + ACTIONS(4294), 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, - [129722] = 2, + [130818] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6956), 1, + anon_sym_BANG, + ACTIONS(6958), 1, + anon_sym_QMARK, + STATE(4144), 1, + sym_type_annotation, + STATE(4942), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 9, + ACTIONS(6554), 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, - [129738] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6920), 1, - anon_sym_GT, - ACTIONS(6922), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [130846] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6960), 1, + anon_sym_BANG, + ACTIONS(6962), 1, + anon_sym_QMARK, + STATE(4319), 1, + sym_type_annotation, + STATE(5219), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129768] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_class_body, - STATE(3568), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5369), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6554), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130874] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6966), 1, + anon_sym_QMARK, + STATE(4371), 1, + sym_type_annotation, + STATE(4999), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129800] = 2, + ACTIONS(6514), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130902] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6968), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_QMARK, + STATE(4170), 1, + sym_type_annotation, + STATE(5001), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 9, + ACTIONS(6554), 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, - [129816] = 2, + [130930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 9, + ACTIONS(4404), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245137,151 +246315,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129832] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6896), 1, - anon_sym_GT, - ACTIONS(6926), 1, - anon_sym_SLASH_GT, - STATE(3364), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129862] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(3726), 1, - sym_type_parameters, - STATE(4096), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5237), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [129894] = 8, - ACTIONS(6444), 1, + [130946] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6928), 1, + ACTIONS(6972), 1, anon_sym_BANG, - ACTIONS(6930), 1, + ACTIONS(6974), 1, anon_sym_QMARK, - STATE(3995), 1, + STATE(4108), 1, sym_type_annotation, - STATE(5125), 1, + STATE(4767), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129922] = 4, - ACTIONS(6932), 1, + [130974] = 4, + ACTIONS(6976), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3960), 3, + STATE(4058), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(6766), 5, + ACTIONS(6849), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129942] = 8, - ACTIONS(2970), 1, + [130994] = 7, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6896), 1, anon_sym_DQUOTE, - ACTIONS(2972), 1, + ACTIONS(6898), 1, anon_sym_SQUOTE, - ACTIONS(6803), 1, - sym_identifier, - ACTIONS(6934), 1, - anon_sym_RBRACE, - STATE(5553), 1, - sym_export_specifier, + ACTIONS(6900), 1, + anon_sym_LT, + STATE(3274), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6805), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5027), 2, - sym__module_export_name, - sym_string, - [129970] = 8, - ACTIONS(6444), 1, + STATE(3972), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [131020] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6936), 1, + ACTIONS(6978), 1, anon_sym_BANG, - ACTIONS(6938), 1, + ACTIONS(6980), 1, anon_sym_QMARK, - STATE(4004), 1, + STATE(4191), 1, sym_type_annotation, - STATE(4634), 1, + STATE(5025), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6554), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129998] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6870), 1, - anon_sym_GT, - ACTIONS(6940), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [131048] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6982), 1, + anon_sym_BANG, + ACTIONS(6984), 1, + anon_sym_QMARK, + STATE(4398), 1, + sym_type_annotation, + STATE(5014), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130028] = 2, + ACTIONS(6514), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 9, + ACTIONS(4412), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245291,94 +246424,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130044] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6942), 1, - anon_sym_GT, - ACTIONS(6944), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [131092] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130074] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4416), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6878), 1, - anon_sym_GT, - ACTIONS(6946), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131108] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6988), 1, + anon_sym_BANG, + ACTIONS(6990), 1, + anon_sym_QMARK, + STATE(4458), 1, + sym_type_annotation, + STATE(4740), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130104] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6846), 1, - anon_sym_GT, - ACTIONS(6948), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + ACTIONS(6986), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130134] = 8, - ACTIONS(6444), 1, + ACTIONS(4420), 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, + [131152] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6950), 1, + ACTIONS(6992), 1, anon_sym_BANG, - ACTIONS(6952), 1, + ACTIONS(6994), 1, anon_sym_QMARK, - STATE(3986), 1, + STATE(4338), 1, sym_type_annotation, - STATE(4940), 1, + STATE(5247), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6554), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130162] = 2, + [131180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2326), 9, + ACTIONS(4089), 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, + [131196] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4436), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245388,145 +246520,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130178] = 10, - ACTIONS(2478), 1, + [131212] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6902), 1, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(3603), 1, - sym_type_parameters, - STATE(4012), 1, + STATE(2214), 1, sym_class_body, - STATE(5174), 1, + STATE(3724), 1, + sym_type_parameters, + STATE(4916), 1, sym_extends_clause, - STATE(5454), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130210] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6862), 1, - anon_sym_GT, - ACTIONS(6954), 1, - anon_sym_SLASH_GT, - STATE(3309), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [131244] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6996), 1, + anon_sym_BANG, + ACTIONS(6998), 1, + anon_sym_QMARK, + STATE(4294), 1, + sym_type_annotation, + STATE(4900), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130240] = 2, + ACTIONS(6514), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131272] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7000), 1, + anon_sym_BANG, + ACTIONS(7002), 1, + anon_sym_QMARK, + STATE(4453), 1, + sym_type_annotation, + STATE(4639), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 9, + ACTIONS(6514), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + [131300] = 3, + ACTIONS(7004), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6956), 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, - [130272] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4294), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6920), 1, - anon_sym_GT, - ACTIONS(6958), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130302] = 9, - ACTIONS(6301), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131318] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6874), 1, + ACTIONS(7006), 1, anon_sym_GT, - ACTIONS(6960), 1, + ACTIONS(7008), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [130332] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + [131348] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6862), 1, - anon_sym_GT, - ACTIONS(6962), 1, - anon_sym_SLASH_GT, - STATE(3311), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2072), 1, + sym_class_body, + STATE(3787), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5415), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130362] = 2, + [131380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 9, + ACTIONS(4424), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245536,39 +246654,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130378] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4114), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + [131396] = 5, + ACTIONS(6902), 1, anon_sym_AMP, + ACTIONS(6904), 1, anon_sym_PIPE, + ACTIONS(6906), 1, anon_sym_extends, - [130394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 9, + ACTIONS(4396), 6, 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, - [130410] = 2, + [131418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 9, + ACTIONS(4322), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245578,40 +246685,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130426] = 3, - ACTIONS(6964), 1, - anon_sym_AMP, + [131434] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6681), 1, + anon_sym_GT, + ACTIONS(6701), 1, + anon_sym_SLASH_GT, + STATE(3407), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [130444] = 2, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131464] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7010), 1, + anon_sym_BANG, + ACTIONS(7012), 1, + anon_sym_QMARK, + STATE(4344), 1, + sym_type_annotation, + STATE(4983), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 9, + ACTIONS(6522), 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, + [131492] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6892), 1, anon_sym_extends, - [130460] = 2, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(3596), 1, + sym_type_parameters, + STATE(4083), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5502), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 9, + [131524] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4238), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245621,11 +246762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130476] = 2, + [131540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 9, + ACTIONS(4300), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245635,642 +246776,687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130492] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + [131556] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6922), 1, + anon_sym_GT, + ACTIONS(7014), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131586] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130514] = 4, - ACTIONS(6918), 1, - anon_sym_LBRACK, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6934), 1, + anon_sym_GT, + ACTIONS(7016), 1, + anon_sym_SLASH_GT, + STATE(3418), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131616] = 5, + ACTIONS(6902), 1, anon_sym_AMP, + ACTIONS(6904), 1, anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4198), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [130534] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [130560] = 3, - ACTIONS(6970), 1, + ACTIONS(6906), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 8, + ACTIONS(4110), 6, 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, - [130578] = 9, - ACTIONS(6301), 1, + [131638] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6942), 1, - anon_sym_GT, - ACTIONS(6972), 1, + ACTIONS(6382), 1, anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130608] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6878), 1, + ACTIONS(6681), 1, anon_sym_GT, - ACTIONS(6974), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3498), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [130638] = 9, - ACTIONS(6301), 1, + [131668] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6920), 1, + ACTIONS(6944), 1, anon_sym_GT, - ACTIONS(6976), 1, + ACTIONS(7018), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [130668] = 8, - ACTIONS(6444), 1, + [131698] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6978), 1, + ACTIONS(7020), 1, anon_sym_BANG, - ACTIONS(6980), 1, + ACTIONS(7022), 1, anon_sym_QMARK, - STATE(4458), 1, + STATE(4375), 1, sym_type_annotation, - STATE(5216), 1, + STATE(4810), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131726] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130696] = 8, - ACTIONS(6444), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131742] = 5, + ACTIONS(6902), 1, + anon_sym_AMP, + ACTIONS(6904), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4326), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [131764] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(5131), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6982), 1, + anon_sym_LT, + anon_sym_QMARK, + [131790] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7024), 1, anon_sym_BANG, - ACTIONS(6984), 1, + ACTIONS(7026), 1, anon_sym_QMARK, - STATE(4227), 1, + STATE(3963), 1, sym_type_annotation, - STATE(4880), 1, + STATE(4844), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130724] = 7, + [131818] = 7, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(724), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [130750] = 9, - ACTIONS(6301), 1, + [131844] = 6, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(7028), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6888), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [131868] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6896), 1, + ACTIONS(6948), 1, anon_sym_GT, - ACTIONS(6986), 1, + ACTIONS(7030), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3419), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [130780] = 9, - ACTIONS(6301), 1, + [131898] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6846), 1, + ACTIONS(6952), 1, anon_sym_GT, - ACTIONS(6988), 1, + ACTIONS(7032), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [130810] = 3, - ACTIONS(6918), 1, - anon_sym_LBRACK, + [131928] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7034), 1, + anon_sym_BANG, + ACTIONS(7036), 1, + anon_sym_QMARK, + STATE(4195), 1, + sym_type_annotation, + STATE(5041), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 8, + ACTIONS(6534), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130828] = 8, - ACTIONS(6444), 1, + [131956] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6990), 1, + ACTIONS(7038), 1, anon_sym_BANG, - ACTIONS(6992), 1, + ACTIONS(7040), 1, anon_sym_QMARK, - STATE(3987), 1, + STATE(4266), 1, sym_type_annotation, - STATE(5010), 1, + STATE(4881), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130856] = 9, - ACTIONS(6301), 1, + [131984] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6603), 1, + ACTIONS(7006), 1, anon_sym_GT, - ACTIONS(6605), 1, + ACTIONS(7042), 1, anon_sym_SLASH_GT, - STATE(3299), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [130886] = 7, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6994), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_SQUOTE, - ACTIONS(6998), 1, - anon_sym_LT, - STATE(3182), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4253), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [130912] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7000), 1, - anon_sym_BANG, - ACTIONS(7002), 1, - anon_sym_QMARK, - STATE(3934), 1, - sym_type_annotation, - STATE(4613), 1, - sym__initializer, + [132014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(4106), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130940] = 5, - ACTIONS(6358), 1, - anon_sym_DOT, - ACTIONS(6692), 1, - anon_sym_LPAREN, - STATE(2893), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4054), 6, - anon_sym_as, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130962] = 7, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6994), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_SQUOTE, - ACTIONS(6998), 1, - anon_sym_LT, - STATE(3182), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4254), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [130988] = 8, - ACTIONS(6444), 1, + [132030] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7004), 1, + ACTIONS(7044), 1, anon_sym_BANG, - ACTIONS(7006), 1, + ACTIONS(7046), 1, anon_sym_QMARK, - STATE(4160), 1, + STATE(3968), 1, sym_type_annotation, - STATE(4679), 1, + STATE(4873), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131016] = 8, - ACTIONS(6444), 1, + [132058] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6826), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(1652), 1, + sym_class_body, + STATE(3599), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5512), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132090] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7008), 1, + ACTIONS(7048), 1, anon_sym_BANG, - ACTIONS(7010), 1, + ACTIONS(7050), 1, anon_sym_QMARK, - STATE(3989), 1, + STATE(4087), 1, sym_type_annotation, - STATE(5031), 1, + STATE(4846), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131044] = 7, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4451), 1, - sym_type_annotation, - STATE(5212), 1, - sym__initializer, + [132118] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2090), 1, + sym_class_body, + STATE(3558), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5368), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6555), 2, + [132150] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7052), 1, anon_sym_BANG, + ACTIONS(7054), 1, anon_sym_QMARK, - ACTIONS(6553), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131070] = 2, + STATE(4278), 1, + sym_type_annotation, + STATE(5181), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 9, + ACTIONS(6554), 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, - [131086] = 5, - ACTIONS(6964), 1, + [132178] = 5, + ACTIONS(6902), 1, anon_sym_AMP, - ACTIONS(6966), 1, + ACTIONS(6904), 1, anon_sym_PIPE, - ACTIONS(6968), 1, + ACTIONS(6906), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 6, + ACTIONS(4106), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131108] = 8, - ACTIONS(6444), 1, + [132200] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2169), 1, + sym_class_body, + STATE(3793), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5398), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132232] = 7, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7012), 1, - anon_sym_BANG, - ACTIONS(7014), 1, - anon_sym_QMARK, - STATE(3974), 1, + STATE(4131), 1, sym_type_annotation, - STATE(4706), 1, + STATE(4899), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(7058), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131136] = 9, - ACTIONS(6301), 1, + [132258] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7060), 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, + [132274] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6942), 1, + ACTIONS(6930), 1, anon_sym_GT, - ACTIONS(7016), 1, + ACTIONS(7062), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132304] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6914), 1, + anon_sym_GT, + ACTIONS(7064), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [131166] = 7, + [132334] = 7, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(722), 1, + ACTIONS(697), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4663), 1, aux_sym_object_repeat1, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [131192] = 8, - ACTIONS(6444), 1, + [132360] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7020), 1, + ACTIONS(7066), 1, anon_sym_BANG, - ACTIONS(7022), 1, + ACTIONS(7068), 1, anon_sym_QMARK, - STATE(4286), 1, + STATE(4098), 1, sym_type_annotation, - STATE(4918), 1, + STATE(4889), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7018), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131220] = 7, + [132388] = 7, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(5023), 1, + ACTIONS(5129), 1, anon_sym_RBRACE, - STATE(5131), 1, + STATE(4664), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(5034), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [131246] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5072), 1, + [132414] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6930), 1, + anon_sym_GT, + ACTIONS(7070), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132444] = 8, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + ACTIONS(3008), 1, + anon_sym_SQUOTE, + ACTIONS(6878), 1, + sym_identifier, + ACTIONS(7072), 1, anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + STATE(5456), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131272] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + ACTIONS(6880), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4771), 2, + sym__module_export_name, + sym_string, + [132472] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 6, + ACTIONS(4246), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131294] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2310), 1, - sym_class_body, - STATE(3571), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5500), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131326] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2324), 1, - sym_class_body, - STATE(3680), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5453), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [132488] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131358] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4028), 9, + ACTIONS(4061), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246280,102 +247466,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131374] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7024), 9, + [132504] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(6510), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7074), 1, + anon_sym_BANG, + ACTIONS(7076), 1, anon_sym_QMARK, - [131390] = 7, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4166), 1, + STATE(3982), 1, sym_type_annotation, - STATE(4716), 1, + STATE(5176), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6524), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6522), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131416] = 9, - ACTIONS(6301), 1, + [132532] = 8, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + ACTIONS(3008), 1, + anon_sym_SQUOTE, + ACTIONS(6878), 1, sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6846), 1, - anon_sym_GT, - ACTIONS(7026), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + ACTIONS(7078), 1, + anon_sym_RBRACE, + STATE(5456), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131446] = 4, - ACTIONS(6932), 1, + ACTIONS(6880), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4771), 2, + sym__module_export_name, + sym_string, + [132560] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, + ACTIONS(7080), 1, + anon_sym_BANG, + ACTIONS(7082), 1, + anon_sym_QMARK, + STATE(4137), 1, + sym_type_annotation, + STATE(5011), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4428), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6770), 5, + ACTIONS(6522), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131466] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6896), 1, - anon_sym_GT, - ACTIONS(7028), 1, - anon_sym_SLASH_GT, - STATE(3313), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131496] = 2, + [132588] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 9, + ACTIONS(4346), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246385,122 +247540,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131512] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7030), 1, - anon_sym_BANG, - ACTIONS(7032), 1, - anon_sym_QMARK, - STATE(4407), 1, - sym_type_annotation, - STATE(5128), 1, - sym__initializer, + [132604] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6922), 1, + anon_sym_GT, + ACTIONS(7084), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131540] = 10, - ACTIONS(2478), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132634] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - ACTIONS(6916), 1, + ACTIONS(6912), 1, anon_sym_LBRACE, - STATE(767), 1, + STATE(882), 1, sym_class_body, - STATE(3742), 1, + STATE(3731), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5316), 1, + STATE(5557), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131572] = 8, - ACTIONS(6444), 1, + [132666] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7086), 9, anon_sym_EQ, - ACTIONS(6452), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(7034), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + [132682] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6952), 1, + anon_sym_GT, + ACTIONS(7088), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132712] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7090), 1, anon_sym_BANG, - ACTIONS(7036), 1, + ACTIONS(7092), 1, anon_sym_QMARK, - STATE(4169), 1, + STATE(4211), 1, sym_type_annotation, - STATE(4709), 1, + STATE(5054), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6534), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131600] = 8, - ACTIONS(6444), 1, + [132740] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7038), 1, + ACTIONS(7094), 1, anon_sym_BANG, - ACTIONS(7040), 1, + ACTIONS(7096), 1, anon_sym_QMARK, - STATE(4047), 1, + STATE(4214), 1, sym_type_annotation, - STATE(4736), 1, + STATE(5056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6534), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131628] = 2, + [132768] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6826), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2539), 1, + sym_class_body, + STATE(3561), 1, + sym_type_parameters, + STATE(4916), 1, + sym_extends_clause, + STATE(5262), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 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, - [131644] = 3, - ACTIONS(6964), 1, - anon_sym_AMP, + [132800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 8, + ACTIONS(4164), 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, - [131662] = 2, + [132816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 9, + ACTIONS(4272), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246510,108 +247708,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131678] = 8, - ACTIONS(6444), 1, + [132832] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7042), 1, + ACTIONS(7098), 1, anon_sym_BANG, - ACTIONS(7044), 1, + ACTIONS(7100), 1, anon_sym_QMARK, - STATE(3937), 1, + STATE(4141), 1, sym_type_annotation, - STATE(4653), 1, + STATE(4788), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131706] = 2, + [132860] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7102), 1, + anon_sym_BANG, + ACTIONS(7104), 1, + anon_sym_QMARK, + STATE(4223), 1, + sym_type_annotation, + STATE(5091), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 9, + ACTIONS(6554), 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, - [131722] = 8, - ACTIONS(6444), 1, + [132888] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7106), 1, anon_sym_BANG, - ACTIONS(7048), 1, + ACTIONS(7108), 1, anon_sym_QMARK, - STATE(4430), 1, + STATE(4414), 1, sym_type_annotation, - STATE(5165), 1, + STATE(4640), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6986), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131750] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6900), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(796), 1, - sym_class_body, - STATE(3649), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5425), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131782] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6874), 1, - anon_sym_GT, - ACTIONS(7050), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131812] = 2, + [132916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 9, + ACTIONS(4168), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246621,119 +247782,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131828] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6603), 1, - anon_sym_GT, - ACTIONS(6629), 1, - anon_sym_SLASH_GT, - STATE(3341), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131858] = 10, - ACTIONS(2478), 1, + [132932] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(2326), 1, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(780), 1, sym_class_body, - STATE(3710), 1, + STATE(3606), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5305), 1, + STATE(5517), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131890] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1843), 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, - [131906] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + [132964] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7110), 1, + anon_sym_BANG, + ACTIONS(7112), 1, + anon_sym_QMARK, + STATE(4287), 1, + sym_type_annotation, + STATE(5095), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4096), 6, + ACTIONS(6522), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [131928] = 2, + [132992] = 4, + ACTIONS(6976), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 9, + STATE(4043), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6863), 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, - [131944] = 8, - ACTIONS(6444), 1, + [133012] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7052), 1, + ACTIONS(7114), 1, anon_sym_BANG, - ACTIONS(7054), 1, + ACTIONS(7116), 1, anon_sym_QMARK, - STATE(4155), 1, + STATE(4249), 1, sym_type_annotation, - STATE(4668), 1, + STATE(5204), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131972] = 2, + [133040] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2342), 9, + ACTIONS(4428), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246743,103 +247874,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131988] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7056), 1, - anon_sym_BANG, - ACTIONS(7058), 1, - anon_sym_QMARK, - STATE(4418), 1, - sym_type_annotation, - STATE(5150), 1, - sym__initializer, + [133056] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6934), 1, + anon_sym_GT, + ACTIONS(7118), 1, + anon_sym_SLASH_GT, + STATE(3423), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132016] = 2, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133086] = 5, + ACTIONS(6902), 1, + anon_sym_AMP, + ACTIONS(6904), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 9, + ACTIONS(4168), 6, 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, - [132032] = 8, - ACTIONS(6444), 1, + [133108] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7060), 1, + ACTIONS(7120), 1, anon_sym_BANG, - ACTIONS(7062), 1, + ACTIONS(7122), 1, anon_sym_QMARK, - STATE(4443), 1, + STATE(4024), 1, sym_type_annotation, - STATE(5193), 1, + STATE(4737), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132060] = 6, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7064), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6811), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [132084] = 8, - ACTIONS(6444), 1, + [133136] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7066), 1, + ACTIONS(7124), 1, anon_sym_BANG, - ACTIONS(7068), 1, + ACTIONS(7126), 1, anon_sym_QMARK, - STATE(4218), 1, + STATE(4068), 1, sym_type_annotation, - STATE(4797), 1, + STATE(4867), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132112] = 2, + [133164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 9, + ACTIONS(1825), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246849,28 +247966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132128] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4100), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [132150] = 2, + [133180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 9, + ACTIONS(4332), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246880,11 +247980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132166] = 2, + [133196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 9, + ACTIONS(2342), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246894,291 +247994,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132182] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6318), 1, - anon_sym_SLASH_GT, - ACTIONS(6603), 1, - anon_sym_GT, - STATE(3395), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132212] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7070), 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, - [132228] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7072), 1, - anon_sym_BANG, - ACTIONS(7074), 1, - anon_sym_QMARK, - STATE(4150), 1, - sym_type_annotation, - STATE(4661), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6559), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132256] = 8, - ACTIONS(6444), 1, + [133212] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7076), 1, + ACTIONS(7128), 1, anon_sym_BANG, - ACTIONS(7078), 1, + ACTIONS(7130), 1, anon_sym_QMARK, - STATE(3935), 1, + STATE(4208), 1, sym_type_annotation, - STATE(4632), 1, + STATE(5065), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6554), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132284] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7080), 1, - anon_sym_BANG, - ACTIONS(7082), 1, - anon_sym_QMARK, - STATE(3984), 1, - sym_type_annotation, - STATE(4865), 1, - sym__initializer, + [133240] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6944), 1, + anon_sym_GT, + ACTIONS(7132), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(4368), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132312] = 7, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6772), 1, - anon_sym_EQ, - STATE(4127), 1, - sym__initializer, - STATE(4264), 1, - sym_type_annotation, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133286] = 3, + ACTIONS(6902), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6774), 3, + ACTIONS(4336), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132338] = 9, - ACTIONS(6301), 1, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [133304] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6942), 1, + ACTIONS(6930), 1, anon_sym_GT, - ACTIONS(7084), 1, + ACTIONS(7134), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [132368] = 8, - ACTIONS(6444), 1, + [133334] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7086), 1, + ACTIONS(7136), 1, anon_sym_BANG, - ACTIONS(7088), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - STATE(4066), 1, + STATE(4060), 1, sym_type_annotation, - STATE(4888), 1, + STATE(4660), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132396] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7090), 1, - anon_sym_BANG, - ACTIONS(7092), 1, - anon_sym_QMARK, - STATE(4072), 1, - sym_type_annotation, - STATE(4945), 1, - sym__initializer, + [133362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(4282), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132424] = 7, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133378] = 7, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4325), 1, + ACTIONS(6838), 1, + anon_sym_EQ, + STATE(4006), 1, sym_type_annotation, - STATE(4987), 1, + STATE(4196), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6492), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6490), 3, + ACTIONS(6844), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132450] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + [133404] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6870), 1, - anon_sym_GT, - ACTIONS(7094), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133420] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(6846), 1, + sym__automatic_semicolon, + STATE(4006), 1, + sym_type_annotation, + STATE(4895), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132480] = 8, - ACTIONS(6444), 1, + ACTIONS(6840), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6844), 2, + anon_sym_in, + anon_sym_of, + [133448] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7096), 1, + ACTIONS(7140), 1, anon_sym_BANG, - ACTIONS(7098), 1, + ACTIONS(7142), 1, anon_sym_QMARK, - STATE(4322), 1, + STATE(4389), 1, sym_type_annotation, - STATE(4974), 1, + STATE(5237), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7018), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132508] = 5, - ACTIONS(6964), 1, + [133476] = 5, + ACTIONS(6902), 1, anon_sym_AMP, - ACTIONS(6966), 1, + ACTIONS(6904), 1, anon_sym_PIPE, - ACTIONS(6968), 1, + ACTIONS(6906), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 6, + ACTIONS(4350), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [132530] = 2, + [133498] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7144), 1, + anon_sym_BANG, + ACTIONS(7146), 1, + anon_sym_QMARK, + STATE(4366), 1, + sym_type_annotation, + STATE(4958), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 9, + ACTIONS(6522), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + [133526] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7148), 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, + [133542] = 4, + ACTIONS(7004), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 9, + ACTIONS(4294), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4354), 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, + [133562] = 3, + ACTIONS(7150), 1, anon_sym_extends, - [132562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 9, + ACTIONS(4358), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247187,528 +248274,567 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [132578] = 8, - ACTIONS(6444), 1, + [133580] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4546), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(5088), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + STATE(5034), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_BANG, - ACTIONS(7102), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4422), 1, - sym_type_annotation, - STATE(5152), 1, - sym__initializer, + [133606] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6378), 1, + anon_sym_SLASH_GT, + ACTIONS(6681), 1, + anon_sym_GT, + STATE(3381), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132606] = 8, - ACTIONS(6444), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133636] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6681), 1, + anon_sym_GT, + ACTIONS(6683), 1, + anon_sym_SLASH_GT, + STATE(3502), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133666] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7104), 1, + ACTIONS(7152), 1, anon_sym_BANG, - ACTIONS(7106), 1, + ACTIONS(7154), 1, anon_sym_QMARK, - STATE(4405), 1, + STATE(4192), 1, sym_type_annotation, - STATE(4862), 1, + STATE(4828), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132634] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + [133694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7156), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [132656] = 10, - ACTIONS(2478), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [133710] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(2350), 1, + ACTIONS(6920), 1, + anon_sym_LBRACE, + STATE(239), 1, sym_class_body, - STATE(3588), 1, + STATE(3768), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5568), 1, + STATE(5259), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132688] = 2, + [133742] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7158), 1, + anon_sym_BANG, + ACTIONS(7160), 1, + anon_sym_QMARK, + STATE(4299), 1, + sym_type_annotation, + STATE(5190), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 9, + ACTIONS(6554), 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, - [132704] = 2, + [133770] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym_BANG, + ACTIONS(7164), 1, + anon_sym_QMARK, + STATE(4118), 1, + sym_type_annotation, + STATE(5059), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 9, + ACTIONS(6522), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [133798] = 3, + ACTIONS(6902), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2330), 9, + ACTIONS(4242), 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, - [132736] = 8, - ACTIONS(6444), 1, + [133816] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7108), 1, + ACTIONS(7166), 1, anon_sym_BANG, - ACTIONS(7110), 1, + ACTIONS(7168), 1, anon_sym_QMARK, - STATE(4205), 1, + STATE(4392), 1, sym_type_annotation, - STATE(4785), 1, + STATE(5151), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132764] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_BANG, - ACTIONS(7114), 1, - anon_sym_QMARK, - STATE(4459), 1, - sym_type_annotation, - STATE(5204), 1, - sym__initializer, + [133844] = 5, + ACTIONS(6418), 1, + anon_sym_DOT, + ACTIONS(6728), 1, + anon_sym_LPAREN, + STATE(2913), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4065), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133866] = 3, + ACTIONS(7004), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(4364), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132792] = 10, - ACTIONS(2478), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133884] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6902), 1, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(236), 1, + STATE(2097), 1, sym_class_body, - STATE(3577), 1, + STATE(3690), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5526), 1, + STATE(5309), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132824] = 8, - ACTIONS(6444), 1, + [133916] = 8, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7116), 1, + ACTIONS(7170), 1, anon_sym_BANG, - ACTIONS(7118), 1, + ACTIONS(7172), 1, anon_sym_QMARK, - STATE(3947), 1, + STATE(4197), 1, sym_type_annotation, - STATE(4705), 1, + STATE(5039), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6554), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132852] = 8, - ACTIONS(6444), 1, + [133944] = 7, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7120), 1, - anon_sym_BANG, - ACTIONS(7122), 1, - anon_sym_QMARK, - STATE(4112), 1, + STATE(4121), 1, sym_type_annotation, - STATE(5176), 1, + STATE(5013), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6566), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6564), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132880] = 2, + [133970] = 8, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7174), 1, + anon_sym_BANG, + ACTIONS(7176), 1, + anon_sym_QMARK, + STATE(4305), 1, + sym_type_annotation, + STATE(5200), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 9, + ACTIONS(6554), 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, - [132896] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, + [133998] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, anon_sym_LBRACE, - STATE(3635), 1, - sym_type_parameters, - STATE(3967), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5332), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6948), 1, + anon_sym_GT, + ACTIONS(7178), 1, + anon_sym_SLASH_GT, + STATE(3334), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132928] = 9, - ACTIONS(6301), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134028] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - ACTIONS(6920), 1, + ACTIONS(6922), 1, anon_sym_GT, - ACTIONS(7124), 1, + ACTIONS(7180), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3495), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [132958] = 9, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6740), 1, + [134058] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(6742), 1, - anon_sym_type, - ACTIONS(6748), 1, - anon_sym_typeof, - STATE(5428), 1, - sym__import_identifier, - STATE(5458), 1, - sym_import_specifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6934), 1, + anon_sym_GT, + ACTIONS(7182), 1, + anon_sym_SLASH_GT, + STATE(3344), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5603), 2, - sym__module_export_name, - sym_string, - [132988] = 8, - ACTIONS(2970), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134088] = 9, + ACTIONS(3006), 1, anon_sym_DQUOTE, - ACTIONS(2972), 1, + ACTIONS(3008), 1, anon_sym_SQUOTE, - ACTIONS(6803), 1, + ACTIONS(6790), 1, sym_identifier, - ACTIONS(7126), 1, - anon_sym_RBRACE, - STATE(5553), 1, - sym_export_specifier, + ACTIONS(6792), 1, + anon_sym_type, + ACTIONS(6798), 1, + anon_sym_typeof, + STATE(5319), 1, + sym_import_specifier, + STATE(5421), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6805), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5027), 2, + STATE(5970), 2, sym__module_export_name, sym_string, - [133016] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2110), 1, - sym_class_body, - STATE(3642), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5503), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [134118] = 7, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4120), 1, + sym_type_annotation, + STATE(5164), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133048] = 10, - ACTIONS(2478), 1, + ACTIONS(6649), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6647), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134144] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - ACTIONS(6916), 1, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(3647), 1, + STATE(3570), 1, sym_type_parameters, - STATE(4036), 1, + STATE(4133), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5513), 1, + STATE(5446), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133080] = 2, + [134176] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6944), 1, + anon_sym_GT, + ACTIONS(7184), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 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, - [133096] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6784), 1, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134206] = 8, + ACTIONS(7186), 1, + sym_identifier, + ACTIONS(7189), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(1616), 1, - sym_class_body, - STATE(3648), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5532), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(7194), 1, + sym_jsx_identifier, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133128] = 10, - ACTIONS(2478), 1, + ACTIONS(7192), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134234] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6784), 1, + ACTIONS(6826), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(1694), 1, + STATE(1700), 1, sym_class_body, - STATE(3528), 1, + STATE(3576), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5348), 1, + STATE(5452), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133160] = 7, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4235), 1, - sym_type_annotation, - STATE(4837), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6532), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133186] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6827), 1, - sym__automatic_semicolon, - STATE(4264), 1, - sym_type_annotation, - STATE(4886), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6774), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [133214] = 8, - ACTIONS(7128), 1, + [134266] = 9, + ACTIONS(6361), 1, sym_identifier, - ACTIONS(7131), 1, + ACTIONS(6365), 1, anon_sym_LBRACE, - ACTIONS(7136), 1, + ACTIONS(6374), 1, sym_jsx_identifier, - STATE(3468), 1, + ACTIONS(6948), 1, + anon_sym_GT, + ACTIONS(7197), 1, + anon_sym_SLASH_GT, + STATE(3499), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3847), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7134), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(4421), 2, + STATE(3997), 2, sym_jsx_expression, sym_jsx_attribute, - [133242] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7139), 1, - anon_sym_BANG, - ACTIONS(7141), 1, - anon_sym_QMARK, - STATE(4447), 1, - sym_type_annotation, - STATE(5202), 1, - sym__initializer, + [134296] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(7006), 1, + anon_sym_GT, + ACTIONS(7199), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133270] = 2, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134326] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6914), 1, + anon_sym_GT, + ACTIONS(7201), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2334), 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, - [133286] = 2, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7143), 9, + ACTIONS(7203), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -247718,11 +248844,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [133302] = 2, + [134372] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(6952), 1, + anon_sym_GT, + ACTIONS(7205), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134402] = 9, + ACTIONS(6361), 1, + sym_identifier, + ACTIONS(6365), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_jsx_identifier, + ACTIONS(7006), 1, + anon_sym_GT, + ACTIONS(7207), 1, + anon_sym_SLASH_GT, + STATE(3495), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3847), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3997), 2, + sym_jsx_expression, + sym_jsx_attribute, + [134432] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 9, + ACTIONS(4312), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247732,535 +248900,609 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133318] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7145), 1, - anon_sym_BANG, - ACTIONS(7147), 1, - anon_sym_QMARK, - STATE(4180), 1, - sym_type_annotation, - STATE(4660), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133346] = 10, - ACTIONS(2478), 1, + [134448] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(2534), 1, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(765), 1, sym_class_body, - STATE(3614), 1, + STATE(3651), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5551), 1, + STATE(5264), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133378] = 6, - ACTIONS(6452), 1, + [134480] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7209), 1, + sym_identifier, + ACTIONS(7211), 1, + sym_this, + STATE(1739), 1, + sym__type_query_member_expression, + STATE(1741), 1, + sym__type_query_subscript_expression, + STATE(1891), 1, + sym__type_query_call_expression, + STATE(1892), 1, + sym__type_query_instantiation_expression, + STATE(4607), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134509] = 7, + ACTIONS(7213), 1, + sym_escape_sequence, + ACTIONS(7215), 1, + anon_sym_BQUOTE, + ACTIONS(7217), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7219), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3996), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134534] = 6, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7221), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7223), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7225), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4153), 4, + STATE(4125), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133401] = 4, - ACTIONS(4535), 1, - anon_sym_LPAREN, - STATE(2088), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4224), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133420] = 9, - ACTIONS(7155), 1, - sym_identifier, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(7159), 1, - anon_sym_GT, - ACTIONS(7161), 1, - sym_jsx_identifier, - ACTIONS(7163), 1, - anon_sym_SLASH_GT, - STATE(3139), 1, - sym_nested_identifier, - STATE(3307), 1, - sym_jsx_namespace_name, - STATE(4801), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133449] = 7, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7165), 1, - anon_sym_enum, - STATE(4496), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [133474] = 7, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6803), 1, - sym_identifier, - STATE(5553), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6805), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5027), 2, - sym__module_export_name, - sym_string, - [133499] = 7, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [134557] = 6, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(6776), 1, - anon_sym_BANG, - STATE(4264), 1, - sym_type_annotation, - STATE(4878), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6774), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133524] = 2, + ACTIONS(7221), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7223), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7225), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133539] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + STATE(4126), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134580] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7227), 1, + sym_identifier, + ACTIONS(7229), 1, + sym_this, + STATE(2893), 1, + sym__type_query_member_expression, + STATE(2894), 1, + sym__type_query_subscript_expression, + STATE(3090), 1, + sym__type_query_call_expression, + STATE(3209), 1, + sym__type_query_instantiation_expression, + STATE(4502), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6811), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [133560] = 2, + [134609] = 7, + ACTIONS(7213), 1, + sym_escape_sequence, + ACTIONS(7217), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7219), 1, + sym__template_chars, + ACTIONS(7231), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133575] = 9, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3996), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134634] = 9, ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7167), 1, + ACTIONS(7233), 1, sym_identifier, - ACTIONS(7169), 1, + ACTIONS(7235), 1, sym_this, - STATE(2883), 1, - sym__type_query_subscript_expression, - STATE(2887), 1, + STATE(1466), 1, sym__type_query_member_expression, - STATE(3099), 1, + STATE(1468), 1, + sym__type_query_subscript_expression, + STATE(1574), 1, sym__type_query_call_expression, - STATE(3239), 1, + STATE(1576), 1, sym__type_query_instantiation_expression, - STATE(4495), 1, + STATE(4516), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133604] = 7, - ACTIONS(7171), 1, + [134663] = 7, + ACTIONS(7213), 1, sym_escape_sequence, - ACTIONS(7173), 1, - anon_sym_BQUOTE, - ACTIONS(7175), 1, + ACTIONS(7217), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, + ACTIONS(7219), 1, sym__template_chars, + ACTIONS(7237), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3819), 2, + STATE(3936), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4374), 2, + STATE(3996), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [133629] = 6, - ACTIONS(6452), 1, + [134688] = 6, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7221), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7223), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7225), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4454), 4, + STATE(4109), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133652] = 9, + [134711] = 9, ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7179), 1, + ACTIONS(7239), 1, sym_identifier, - ACTIONS(7181), 1, + ACTIONS(7241), 1, sym_this, - STATE(2830), 1, - sym__type_query_subscript_expression, - STATE(2831), 1, + STATE(2938), 1, sym__type_query_member_expression, - STATE(2879), 1, + STATE(2939), 1, + sym__type_query_subscript_expression, + STATE(3235), 1, sym__type_query_call_expression, - STATE(2972), 1, + STATE(3385), 1, sym__type_query_instantiation_expression, - STATE(4468), 1, + STATE(4526), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133681] = 6, - ACTIONS(6452), 1, + [134740] = 7, + ACTIONS(7213), 1, + sym_escape_sequence, + ACTIONS(7217), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7219), 1, + sym__template_chars, + ACTIONS(7243), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3996), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134765] = 7, + ACTIONS(7217), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7219), 1, + sym__template_chars, + ACTIONS(7245), 1, + sym_escape_sequence, + ACTIONS(7247), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3952), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3996), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134790] = 7, + ACTIONS(7217), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7219), 1, + sym__template_chars, + ACTIONS(7245), 1, + sym_escape_sequence, + ACTIONS(7249), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3952), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3996), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134815] = 7, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7149), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, - anon_sym_QMARK_COLON, + ACTIONS(6842), 1, + anon_sym_BANG, + STATE(4006), 1, + sym_type_annotation, + STATE(4888), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6840), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134840] = 7, + ACTIONS(7213), 1, + sym_escape_sequence, + ACTIONS(7217), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7219), 1, + sym__template_chars, + ACTIONS(7251), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(3996), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134865] = 7, + ACTIONS(7213), 1, + sym_escape_sequence, + ACTIONS(7217), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7219), 1, + sym__template_chars, + ACTIONS(7253), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4209), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134890] = 7, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7255), 1, + anon_sym_enum, + STATE(4589), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3652), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134915] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1873), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1871), 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [134932] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1807), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1805), 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [134949] = 3, + ACTIONS(6784), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4055), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134966] = 5, + ACTIONS(6902), 1, + anon_sym_AMP, + ACTIONS(6904), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4091), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133704] = 6, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7149), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, - anon_sym_QMARK_COLON, + ACTIONS(6888), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [134987] = 9, + ACTIONS(7257), 1, + sym_identifier, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(7261), 1, + anon_sym_GT, + ACTIONS(7263), 1, + sym_jsx_identifier, + ACTIONS(7265), 1, + anon_sym_SLASH_GT, + STATE(3199), 1, + sym_nested_identifier, + STATE(3394), 1, + sym_jsx_namespace_name, + STATE(5081), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4092), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133727] = 2, + [135016] = 7, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7267), 1, + anon_sym_enum, + STATE(4520), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3188), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133742] = 9, + STATE(3652), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [135041] = 9, ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7183), 1, + ACTIONS(7269), 1, sym_identifier, - ACTIONS(7185), 1, + ACTIONS(7271), 1, sym_this, - STATE(1463), 1, + STATE(2842), 1, sym__type_query_member_expression, - STATE(1468), 1, + STATE(2843), 1, sym__type_query_subscript_expression, - STATE(1518), 1, + STATE(2910), 1, sym__type_query_call_expression, - STATE(1519), 1, + STATE(2934), 1, sym__type_query_instantiation_expression, - STATE(4465), 1, + STATE(4506), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133771] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3184), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [135070] = 5, + ACTIONS(7273), 1, + anon_sym_LBRACE, + ACTIONS(7275), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133786] = 2, + STATE(4040), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3164), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1665), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135091] = 5, + ACTIONS(7273), 1, + anon_sym_LBRACE, + ACTIONS(7277), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133801] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7187), 1, - anon_sym_BQUOTE, + STATE(4040), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133826] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7189), 1, - anon_sym_BQUOTE, + ACTIONS(1665), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135112] = 7, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + ACTIONS(3008), 1, + anon_sym_SQUOTE, + ACTIONS(6878), 1, + sym_identifier, + STATE(5456), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133851] = 6, - ACTIONS(6452), 1, + ACTIONS(6880), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4771), 2, + sym__module_export_name, + sym_string, + [135137] = 6, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7221), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7223), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7225), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4274), 4, + STATE(4390), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133874] = 6, - ACTIONS(6452), 1, + [135160] = 6, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7221), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7223), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7225), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4311), 4, + STATE(4391), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133897] = 9, - ACTIONS(1499), 1, - anon_sym_import, - ACTIONS(7191), 1, - sym_identifier, - ACTIONS(7193), 1, - sym_this, - STATE(2947), 1, - sym__type_query_member_expression, - STATE(2948), 1, - sym__type_query_subscript_expression, - STATE(3212), 1, - sym__type_query_call_expression, - STATE(3351), 1, - sym__type_query_instantiation_expression, - STATE(4519), 1, - sym_import, + [135183] = 6, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7221), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7223), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7225), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133926] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7195), 1, - anon_sym_BQUOTE, + STATE(4471), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [135206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133951] = 9, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(7159), 1, - anon_sym_GT, - ACTIONS(7197), 1, - sym_identifier, - ACTIONS(7199), 1, - sym_jsx_identifier, - ACTIONS(7201), 1, - anon_sym_SLASH_GT, - STATE(3170), 1, - sym_nested_identifier, - STATE(3428), 1, - sym_jsx_namespace_name, - STATE(4801), 1, - sym_type_parameter, + ACTIONS(1825), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133980] = 9, + ACTIONS(1877), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135236] = 9, ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7181), 1, + ACTIONS(7271), 1, sym_this, - ACTIONS(7203), 1, + ACTIONS(7279), 1, sym_identifier, - STATE(2879), 1, + STATE(2910), 1, sym__type_query_call_expression, - STATE(2972), 1, + STATE(2934), 1, sym__type_query_instantiation_expression, - STATE(3165), 1, + STATE(3161), 1, sym__type_query_member_expression, - STATE(3166), 1, + STATE(3167), 1, sym__type_query_subscript_expression, - STATE(4515), 1, + STATE(4551), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134009] = 5, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7207), 1, - anon_sym_DOT, - STATE(4392), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1653), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134030] = 3, - ACTIONS(6720), 1, + [135265] = 3, + ACTIONS(6784), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 7, + ACTIONS(4089), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -248268,29 +249510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134047] = 5, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7209), 1, - anon_sym_DOT, - STATE(4392), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1653), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134068] = 3, - ACTIONS(7211), 1, + [135282] = 3, + ACTIONS(7281), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 7, + ACTIONS(4061), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -248298,1122 +249524,1213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134085] = 7, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7213), 1, - sym_escape_sequence, - ACTIONS(7215), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3812), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134110] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7217), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134135] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7219), 1, - anon_sym_BQUOTE, + [135299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134160] = 7, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, + ACTIONS(3210), 8, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(7221), 1, - anon_sym_enum, - STATE(4487), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134185] = 7, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7213), 1, - sym_escape_sequence, - ACTIONS(7223), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3812), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134210] = 9, - ACTIONS(1499), 1, - anon_sym_import, - ACTIONS(7225), 1, - sym_identifier, - ACTIONS(7227), 1, - sym_this, - STATE(1746), 1, - sym__type_query_member_expression, - STATE(1747), 1, - sym__type_query_subscript_expression, - STATE(1879), 1, - sym__type_query_call_expression, - STATE(1880), 1, - sym__type_query_instantiation_expression, - STATE(4481), 1, - sym_import, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134239] = 3, + ACTIONS(3214), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 2, - anon_sym_while, - sym_identifier, - ACTIONS(1699), 6, - anon_sym_LBRACE, + ACTIONS(3206), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135344] = 9, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(7261), 1, anon_sym_GT, + ACTIONS(7283), 1, + sym_identifier, + ACTIONS(7285), 1, sym_jsx_identifier, - anon_sym_DOT, + ACTIONS(7287), 1, anon_sym_SLASH_GT, - anon_sym_LT, - [134256] = 3, + STATE(3189), 1, + sym_nested_identifier, + STATE(3473), 1, + sym_jsx_namespace_name, + STATE(5081), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 2, - anon_sym_while, - sym_identifier, - ACTIONS(1791), 6, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, - [134273] = 3, - ACTIONS(6720), 1, - anon_sym_is, + [135373] = 6, + ACTIONS(6510), 1, + anon_sym_COLON, + ACTIONS(7221), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7223), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7225), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134290] = 6, - ACTIONS(6452), 1, + STATE(4438), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [135396] = 6, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7221), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7223), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7225), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4159), 4, + STATE(4142), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134313] = 5, - ACTIONS(6704), 1, + [135419] = 5, + ACTIONS(6762), 1, anon_sym_AMP, - ACTIONS(6706), 1, + ACTIONS(6764), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6766), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7229), 5, + ACTIONS(7289), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134334] = 5, - ACTIONS(6704), 1, + [135440] = 5, + ACTIONS(6762), 1, anon_sym_AMP, - ACTIONS(6706), 1, + ACTIONS(6764), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6766), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7231), 5, + ACTIONS(7291), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134355] = 5, - ACTIONS(6704), 1, + [135461] = 5, + ACTIONS(6762), 1, anon_sym_AMP, - ACTIONS(6706), 1, + ACTIONS(6764), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6766), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7233), 5, + ACTIONS(7293), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134376] = 6, - ACTIONS(6452), 1, + [135482] = 6, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7221), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7223), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7225), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4168), 4, + STATE(4020), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134399] = 6, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7149), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, - anon_sym_QMARK_COLON, + [135505] = 4, + ACTIONS(4661), 1, + anon_sym_LPAREN, + STATE(2324), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4273), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134422] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4275), 1, - sym_type_annotation, - STATE(4893), 1, - sym__initializer, + ACTIONS(4392), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135524] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7295), 1, + sym_identifier, + STATE(4509), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7235), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134444] = 2, + STATE(3463), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [135546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5224), 7, + ACTIONS(7060), 7, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, + [135560] = 8, + ACTIONS(2470), 1, anon_sym_LT, - anon_sym_QMARK, - [134458] = 7, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(7237), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, + anon_sym_STAR, + STATE(3851), 1, + sym_formal_parameters, + STATE(5253), 1, + sym__call_signature, + STATE(5275), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135586] = 8, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(7301), 1, + anon_sym_DOT, + STATE(1773), 1, + sym_arguments, + STATE(5362), 1, + sym_optional_chain, + STATE(5363), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135612] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(7241), 1, - anon_sym_QMARK, - STATE(4540), 1, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4335), 1, sym_type_annotation, - STATE(5318), 1, + STATE(4951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7239), 2, + ACTIONS(6711), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [134482] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5505), 1, - sym_statement_block, + anon_sym_SEMI, + [135634] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4171), 1, + sym_type_annotation, + STATE(5005), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 5, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134500] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7245), 1, - sym_identifier, - STATE(4476), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3433), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134522] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, - sym_identifier, - STATE(4496), 1, - sym_variable_declarator, + [135656] = 8, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(1791), 1, + sym_arguments, + STATE(3180), 1, + sym_type_arguments, + STATE(5362), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3467), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134544] = 8, - ACTIONS(6900), 1, + [135682] = 8, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(877), 1, + STATE(2099), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5493), 1, + STATE(5455), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134570] = 8, - ACTIONS(6784), 1, + [135708] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4177), 1, + sym_type_annotation, + STATE(5010), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135730] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7086), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [135744] = 8, + ACTIONS(6826), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(1711), 1, + STATE(2557), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5525), 1, + STATE(5327), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134596] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5386), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7249), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134614] = 6, - ACTIONS(6444), 1, + [135770] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4184), 1, + STATE(4007), 1, sym_type_annotation, - STATE(4757), 1, + STATE(4719), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134636] = 6, - ACTIONS(6444), 1, + [135792] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4423), 1, + STATE(4199), 1, sym_type_annotation, - STATE(5154), 1, + STATE(5046), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134658] = 6, - ACTIONS(6444), 1, + [135814] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4191), 1, + STATE(4203), 1, sym_type_annotation, - STATE(4767), 1, + STATE(5052), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134680] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7251), 7, + ACTIONS(6713), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [134694] = 6, - ACTIONS(6444), 1, + [135836] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4164), 1, + STATE(4217), 1, sym_type_annotation, - STATE(4689), 1, + STATE(5067), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134716] = 6, - ACTIONS(6444), 1, + [135858] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4192), 1, + STATE(4218), 1, sym_type_annotation, - STATE(4773), 1, + STATE(5069), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134738] = 8, - ACTIONS(6902), 1, + [135880] = 8, + ACTIONS(6826), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(765), 1, + STATE(1679), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5254), 1, + STATE(5499), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134764] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3975), 1, - sym_type_annotation, - STATE(4770), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134786] = 6, - ACTIONS(6444), 1, + [135906] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4206), 1, + STATE(4219), 1, sym_type_annotation, - STATE(4790), 1, + STATE(5075), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134808] = 6, - ACTIONS(6444), 1, + [135928] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4207), 1, + STATE(4220), 1, sym_type_annotation, - STATE(4792), 1, + STATE(5077), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134830] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4425), 1, - sym_type_annotation, - STATE(5157), 1, - sym__initializer, + [135950] = 8, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(4082), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5500), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134852] = 8, - ACTIONS(2478), 1, + [135976] = 8, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5495), 1, - sym__call_signature, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(7303), 1, + anon_sym_DOT, + STATE(1773), 1, + sym_arguments, + STATE(5362), 1, + sym_optional_chain, + STATE(5363), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134878] = 6, - ACTIONS(6444), 1, + [136002] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4408), 1, + STATE(4224), 1, sym_type_annotation, - STATE(5135), 1, + STATE(5092), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134900] = 6, - ACTIONS(6444), 1, + [136024] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4213), 1, + STATE(4225), 1, sym_type_annotation, - STATE(4806), 1, + STATE(5094), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134922] = 2, + [136046] = 8, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(2410), 1, + sym_arguments, + STATE(3550), 1, + sym_type_arguments, + STATE(5542), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7257), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [134936] = 6, - ACTIONS(6444), 1, + [136072] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4216), 1, + STATE(4226), 1, sym_type_annotation, - STATE(4810), 1, + STATE(5098), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134958] = 6, - ACTIONS(6444), 1, + [136094] = 8, + ACTIONS(6826), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(1709), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5508), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136120] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4433), 1, + STATE(4227), 1, sym_type_annotation, - STATE(5169), 1, + STATE(5104), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134980] = 6, - ACTIONS(6444), 1, + [136142] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4220), 1, + STATE(4147), 1, sym_type_annotation, - STATE(4816), 1, + STATE(5000), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6724), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135002] = 6, - ACTIONS(6444), 1, + [136164] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4224), 1, + STATE(3970), 1, sym_type_annotation, - STATE(4820), 1, + STATE(4930), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135024] = 2, + [136186] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7305), 1, + sym_identifier, + ACTIONS(7307), 1, + anon_sym_STAR, + STATE(3851), 1, + sym_formal_parameters, + STATE(5253), 1, + sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4960), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [135038] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4173), 1, - sym_type_annotation, - STATE(4730), 1, - sym__initializer, + [136212] = 8, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(4162), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5536), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6696), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135060] = 6, - ACTIONS(6303), 1, - anon_sym_EQ, - STATE(4533), 1, - sym_constraint, - STATE(5485), 1, - sym_default_type, + [136238] = 8, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(7309), 1, + anon_sym_DOT, + STATE(2367), 1, + sym_arguments, + STATE(5542), 1, + sym_optional_chain, + STATE(5589), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7259), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7261), 2, - anon_sym_COLON, - anon_sym_extends, - [135082] = 5, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(7263), 1, + [136264] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, sym_identifier, - ACTIONS(7265), 1, - anon_sym_EQ, + STATE(4509), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7267), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [135102] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4225), 1, - sym_type_annotation, - STATE(4825), 1, - sym__initializer, + STATE(3652), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136286] = 8, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(2503), 1, + sym_arguments, + STATE(3180), 1, + sym_type_arguments, + STATE(5362), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135124] = 6, - ACTIONS(6444), 1, + [136312] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4226), 1, + STATE(4228), 1, sym_type_annotation, - STATE(4827), 1, + STATE(5113), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135146] = 8, - ACTIONS(3521), 1, + [136334] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7313), 1, + sym_identifier, + ACTIONS(7315), 1, + anon_sym_DOT, + STATE(743), 1, + sym_nested_identifier, + STATE(762), 1, + sym_string, + STATE(874), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136360] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7317), 1, + sym_identifier, + ACTIONS(7319), 1, + anon_sym_STAR, + STATE(3851), 1, + sym_formal_parameters, + STATE(5255), 1, + sym__call_signature, + STATE(5275), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136386] = 8, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(4539), 1, + ACTIONS(3926), 1, anon_sym_DOT, - STATE(2240), 1, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(1502), 1, sym_arguments, - STATE(5288), 1, - sym_optional_chain, - STATE(5366), 1, + STATE(3180), 1, sym_type_arguments, + STATE(5362), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135172] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3929), 1, - sym_type_annotation, - STATE(4860), 1, - sym__initializer, + [136412] = 8, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(2501), 1, + sym_arguments, + STATE(5362), 1, + sym_optional_chain, + STATE(5363), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135194] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4238), 1, - sym_type_annotation, - STATE(4840), 1, - sym__initializer, + [136438] = 8, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(2013), 1, + sym_arguments, + STATE(3289), 1, + sym_type_arguments, + STATE(5362), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135216] = 4, - ACTIONS(4911), 1, - anon_sym_COMMA, - STATE(3713), 1, - aux_sym_sequence_expression_repeat1, + [136464] = 3, + ACTIONS(6876), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7269), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4055), 6, + anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, - [135234] = 5, - ACTIONS(7271), 1, anon_sym_AMP, - ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(7275), 1, anon_sym_extends, + [136480] = 8, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(7323), 1, + anon_sym_LT, + ACTIONS(7325), 1, + anon_sym_extends, + STATE(889), 1, + sym_object_type, + STATE(4288), 1, + sym_type_parameters, + STATE(5033), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [135254] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [136506] = 8, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(7327), 1, + anon_sym_DOT, + STATE(2025), 1, + sym_arguments, + STATE(5542), 1, + sym_optional_chain, + STATE(5589), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136532] = 8, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2107), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5546), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136558] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7329), 1, anon_sym_COLON, - STATE(4239), 1, - sym_type_annotation, - STATE(4842), 1, - sym__initializer, + ACTIONS(7331), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5381), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135276] = 6, - ACTIONS(6444), 1, + [136584] = 8, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(4189), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5549), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136610] = 8, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(7333), 1, + anon_sym_DOT, + STATE(2012), 1, + sym_arguments, + STATE(5362), 1, + sym_optional_chain, + STATE(5363), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136636] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4243), 1, + STATE(4239), 1, sym_type_annotation, - STATE(4846), 1, + STATE(5152), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135298] = 8, - ACTIONS(6752), 1, + [136658] = 8, + ACTIONS(6826), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(2277), 1, + STATE(1616), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5285), 1, + STATE(5553), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135324] = 6, - ACTIONS(6444), 1, + [136684] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4245), 1, + STATE(4169), 1, sym_type_annotation, - STATE(4850), 1, + STATE(4790), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135346] = 4, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4061), 1, - sym_type_annotation, + [136706] = 4, + ACTIONS(7335), 1, + anon_sym_COMMA, + STATE(3601), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7277), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(4778), 5, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135364] = 6, - ACTIONS(6444), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [136724] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4248), 1, + STATE(4247), 1, sym_type_annotation, - STATE(4858), 1, + STATE(5163), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135386] = 6, - ACTIONS(6303), 1, + [136746] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4554), 1, - sym_constraint, - STATE(5514), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6307), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7261), 2, + ACTIONS(6510), 1, anon_sym_COLON, - anon_sym_extends, - [135408] = 6, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - STATE(2147), 1, - sym_arguments, - STATE(5572), 1, - sym_type_arguments, + STATE(4252), 1, + sym_type_annotation, + STATE(5165), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7279), 3, + ACTIONS(6713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136768] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, anon_sym_LBRACK, + ACTIONS(7311), 1, sym_identifier, - sym_private_property_identifier, - [135430] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5256), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + STATE(4588), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135456] = 6, - ACTIONS(6444), 1, + STATE(3652), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136790] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4165), 1, + STATE(4215), 1, sym_type_annotation, - STATE(4696), 1, + STATE(5058), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6748), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135478] = 5, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_RBRACE, - STATE(5136), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [135498] = 8, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + [136812] = 8, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(2320), 1, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(782), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5538), 1, + STATE(5289), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135524] = 6, - ACTIONS(6444), 1, + [136838] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + sym_identifier, + STATE(4589), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3652), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136860] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7338), 1, + sym_identifier, + ACTIONS(7340), 1, + anon_sym_STAR, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5343), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136886] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4372), 1, + STATE(4051), 1, sym_type_annotation, - STATE(5068), 1, + STATE(4692), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7281), 3, + ACTIONS(6722), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135546] = 2, + [136908] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4279), 1, + sym_type_annotation, + STATE(5184), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1699), 7, + ACTIONS(6713), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135560] = 2, + [136930] = 4, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4250), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 7, + ACTIONS(7342), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [135574] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5360), 1, - sym_statement_block, + [136948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 5, - sym__automatic_semicolon, + ACTIONS(5468), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135592] = 2, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [136962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7285), 7, + ACTIONS(7344), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -249421,155 +250738,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [135606] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(235), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5372), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [136976] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7346), 1, + sym_identifier, + ACTIONS(7348), 1, + anon_sym_STAR, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5406), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135632] = 6, - ACTIONS(6444), 1, + [137002] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7203), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6452), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137016] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3927), 1, + STATE(4284), 1, sym_type_annotation, - STATE(5196), 1, + STATE(5186), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6667), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135654] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5491), 1, - sym_statement_block, + [137038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 5, + ACTIONS(7156), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135672] = 6, - ACTIONS(6444), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137052] = 7, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + ACTIONS(3008), 1, + anon_sym_SQUOTE, + ACTIONS(6790), 1, + sym_identifier, + ACTIONS(6810), 1, + anon_sym_type, + STATE(5565), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5900), 2, + sym__module_export_name, + sym_string, + [137076] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3930), 1, + STATE(4173), 1, sym_type_annotation, - STATE(5155), 1, + STATE(4794), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135694] = 6, - ACTIONS(6444), 1, + [137098] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4373), 1, + STATE(4309), 1, sym_type_annotation, - STATE(5070), 1, + STATE(5203), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7281), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135716] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(7287), 1, - anon_sym_DOT, - STATE(1834), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135742] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5411), 1, - sym_statement_block, + [137120] = 3, + ACTIONS(6876), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135760] = 6, - ACTIONS(6444), 1, + ACTIONS(4089), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137136] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4436), 1, + STATE(4310), 1, sym_type_annotation, - STATE(5173), 1, + STATE(5205), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135782] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4404), 1, - sym_type_annotation, - STATE(5114), 1, - sym__initializer, + [137158] = 3, + ACTIONS(7350), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135804] = 2, + ACTIONS(4061), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4946), 7, + ACTIONS(7148), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -249577,10879 +250899,10642 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [135818] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(1826), 1, - sym_arguments, - STATE(3153), 1, - sym_type_arguments, - STATE(5404), 1, - sym_optional_chain, + [137188] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4402), 1, + sym_type_annotation, + STATE(5017), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135844] = 8, - ACTIONS(6752), 1, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137210] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2065), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5280), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + STATE(5286), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135870] = 6, - ACTIONS(6444), 1, + ACTIONS(7352), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137228] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4406), 1, + STATE(4324), 1, sym_type_annotation, - STATE(4795), 1, + STATE(5224), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135892] = 6, - ACTIONS(6444), 1, + [137250] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4438), 1, + STATE(4327), 1, sym_type_annotation, - STATE(5182), 1, + STATE(5228), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135914] = 6, - ACTIONS(6444), 1, + [137272] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4068), 1, + STATE(4328), 1, sym_type_annotation, - STATE(4941), 1, + STATE(5235), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135936] = 6, - ACTIONS(6444), 1, + [137294] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4439), 1, + STATE(4329), 1, sym_type_annotation, - STATE(5185), 1, + STATE(5238), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135958] = 8, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + [137316] = 8, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(2085), 1, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(4282), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5488), 1, + STATE(5568), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135984] = 2, + [137342] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4407), 1, + sym_type_annotation, + STATE(5031), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6956), 7, + ACTIONS(6711), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + [137364] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - [135998] = 8, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7291), 1, - sym_identifier, - ACTIONS(7293), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5494), 1, - sym__call_signature, + STATE(4340), 1, + sym_type_annotation, + STATE(4915), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136024] = 3, - ACTIONS(7295), 1, - anon_sym_EQ, + ACTIONS(6713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137386] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 6, + ACTIONS(4106), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [136040] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4093), 1, - sym_type_annotation, - STATE(5044), 1, - sym__initializer, + [137406] = 3, + ACTIONS(7354), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6669), 3, - sym__automatic_semicolon, + ACTIONS(4242), 6, anon_sym_COMMA, - anon_sym_SEMI, - [136062] = 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [137422] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4933), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4388), 4, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136076] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3938), 1, - sym_type_annotation, - STATE(4813), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137442] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, + ACTIONS(4396), 4, anon_sym_COMMA, - anon_sym_SEMI, - [136098] = 6, - ACTIONS(6444), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137462] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4082), 1, + STATE(4351), 1, sym_type_annotation, - STATE(4979), 1, + STATE(4936), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136120] = 6, - ACTIONS(6444), 1, + [137484] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4103), 1, + STATE(4352), 1, sym_type_annotation, - STATE(5053), 1, + STATE(4775), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136142] = 6, - ACTIONS(6444), 1, + [137506] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3990), 1, + STATE(4353), 1, sym_type_annotation, - STATE(5040), 1, + STATE(4856), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136164] = 8, - ACTIONS(6902), 1, + [137528] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4110), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137548] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137568] = 8, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(4086), 1, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2183), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5224), 1, + STATE(5401), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136190] = 6, - ACTIONS(6444), 1, + [137594] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4326), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137614] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3994), 1, + STATE(4354), 1, sym_type_annotation, - STATE(5073), 1, + STATE(5249), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136212] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3939), 1, - sym_type_annotation, - STATE(4877), 1, - sym__initializer, + [137636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(4899), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [136234] = 6, - ACTIONS(6444), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137650] = 3, + ACTIONS(7360), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3562), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4171), 1, - sym_type_annotation, - STATE(4712), 1, - sym__initializer, + anon_sym_RBRACK, + anon_sym_QMARK, + [137666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(5009), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [136256] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(1490), 1, - sym_arguments, - STATE(3153), 1, - sym_type_arguments, - STATE(5404), 1, - sym_optional_chain, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136282] = 6, - ACTIONS(6444), 1, + ACTIONS(3562), 7, anon_sym_EQ, - ACTIONS(6452), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3973), 1, - sym_type_annotation, - STATE(4644), 1, - sym__initializer, + anon_sym_RBRACK, + anon_sym_QMARK, + [137694] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + sym_identifier, + STATE(4903), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136304] = 6, - ACTIONS(6444), 1, + STATE(3652), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [137716] = 8, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(776), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5473), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137742] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3983), 1, + STATE(4006), 1, sym_type_annotation, - STATE(4818), 1, + STATE(4895), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136326] = 6, - ACTIONS(6444), 1, + [137764] = 8, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(7301), 1, + anon_sym_DOT, + STATE(1493), 1, + sym_arguments, + STATE(5362), 1, + sym_optional_chain, + STATE(5363), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137790] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3985), 1, + STATE(4127), 1, sym_type_annotation, - STATE(4895), 1, + STATE(4890), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6750), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136348] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [137812] = 7, + ACTIONS(3536), 1, anon_sym_COLON, - STATE(3988), 1, + ACTIONS(7363), 1, + anon_sym_EQ, + ACTIONS(7367), 1, + anon_sym_QMARK, + STATE(4586), 1, sym_type_annotation, - STATE(4938), 1, + STATE(5334), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, - sym__automatic_semicolon, + ACTIONS(7365), 2, anon_sym_COMMA, - anon_sym_SEMI, - [136370] = 8, - ACTIONS(3521), 1, + anon_sym_RPAREN, + [137836] = 8, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(3938), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(7298), 1, + ACTIONS(7369), 1, anon_sym_DOT, - STATE(1834), 1, + STATE(1493), 1, sym_arguments, - STATE(5404), 1, + STATE(5362), 1, sym_optional_chain, - STATE(5405), 1, + STATE(5363), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136396] = 6, - ACTIONS(6444), 1, + [137862] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4104), 1, + STATE(3977), 1, sym_type_annotation, - STATE(5120), 1, + STATE(4973), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136418] = 8, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2479), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5308), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [137884] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(3978), 1, + sym_type_annotation, + STATE(4987), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136444] = 6, - ACTIONS(6444), 1, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137906] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7371), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [137920] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3940), 1, + STATE(4135), 1, sym_type_annotation, - STATE(5142), 1, + STATE(4635), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136466] = 2, + [137942] = 4, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(4040), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7070), 7, + ACTIONS(1665), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136480] = 8, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(6291), 1, + anon_sym_PIPE_RBRACE, + [137960] = 8, + ACTIONS(2470), 1, anon_sym_LT, - STATE(2366), 1, - sym_arguments, - STATE(3476), 1, - sym_type_arguments, - STATE(5288), 1, - sym_optional_chain, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7373), 1, + sym_identifier, + ACTIONS(7375), 1, + anon_sym_STAR, + STATE(3851), 1, + sym_formal_parameters, + STATE(5255), 1, + sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136506] = 6, - ACTIONS(6444), 1, + [137986] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3941), 1, + STATE(4485), 1, sym_type_annotation, - STATE(4949), 1, + STATE(5048), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136528] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [138008] = 4, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4010), 1, + STATE(4064), 1, sym_type_annotation, - STATE(4664), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(7377), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136550] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [138026] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4110), 1, + STATE(4484), 1, sym_type_annotation, - STATE(5160), 1, + STATE(5209), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136572] = 6, - ACTIONS(6444), 1, + [138048] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7379), 1, + sym_identifier, + STATE(4520), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3465), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138070] = 8, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6912), 1, + anon_sym_LBRACE, + STATE(819), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5526), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138096] = 6, + ACTIONS(6363), 1, anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4172), 1, - sym_type_annotation, - STATE(4717), 1, - sym__initializer, + STATE(4534), 1, + sym_constraint, + STATE(5252), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, + ACTIONS(7381), 2, anon_sym_COMMA, - anon_sym_SEMI, - [136594] = 6, - ACTIONS(6444), 1, + anon_sym_GT, + ACTIONS(7383), 2, + anon_sym_COLON, + anon_sym_extends, + [138118] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4176), 1, + STATE(4257), 1, sym_type_annotation, - STATE(4728), 1, + STATE(5057), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136616] = 6, - ACTIONS(6444), 1, + [138140] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4267), 1, + STATE(4113), 1, sym_type_annotation, - STATE(4882), 1, + STATE(5100), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136638] = 6, - ACTIONS(6444), 1, + [138162] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4264), 1, + STATE(4204), 1, sym_type_annotation, - STATE(4886), 1, + STATE(4842), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136660] = 6, - ACTIONS(6444), 1, + [138184] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4445), 1, + STATE(4205), 1, sym_type_annotation, - STATE(5195), 1, + STATE(4847), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136682] = 2, + [138206] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5555), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 7, - anon_sym_EQ, + ACTIONS(7385), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138224] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136696] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, - sym_identifier, - STATE(4771), 1, - sym_variable_declarator, + STATE(3984), 1, + sym_type_annotation, + STATE(5183), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136718] = 8, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7302), 1, - sym_identifier, - ACTIONS(7304), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5495), 1, - sym__call_signature, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138246] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5350), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136744] = 6, - ACTIONS(6444), 1, + ACTIONS(7385), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138264] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4111), 1, + STATE(4206), 1, sym_type_annotation, - STATE(5164), 1, + STATE(4855), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136766] = 4, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3933), 1, - sym_type_annotation, + [138286] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5574), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, + ACTIONS(7387), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136784] = 3, - ACTIONS(7308), 1, + [138304] = 6, + ACTIONS(6504), 1, anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4456), 1, + sym_type_annotation, + STATE(5211), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 6, + ACTIONS(6734), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + [138326] = 5, + ACTIONS(6679), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136800] = 3, - ACTIONS(6799), 1, - anon_sym_is, + ACTIONS(7389), 1, + sym_identifier, + ACTIONS(7391), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136816] = 8, - ACTIONS(3521), 1, + ACTIONS(7393), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [138346] = 8, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(4418), 1, + ACTIONS(4474), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4661), 1, anon_sym_LPAREN, - ACTIONS(7311), 1, + ACTIONS(4665), 1, anon_sym_DOT, - STATE(2364), 1, + STATE(2134), 1, sym_arguments, - STATE(5288), 1, + STATE(5542), 1, sym_optional_chain, - STATE(5366), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136842] = 8, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7313), 1, - sym_identifier, - ACTIONS(7315), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5494), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136868] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(4035), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5511), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136894] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(2489), 1, - sym_arguments, - STATE(3153), 1, + STATE(5589), 1, sym_type_arguments, - STATE(5404), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136920] = 4, - ACTIONS(6452), 1, + [138372] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3977), 1, + STATE(4394), 1, sym_type_annotation, + STATE(4966), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7317), 5, + ACTIONS(7395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136938] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7319), 1, - sym_identifier, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(781), 1, - sym_string, - STATE(900), 1, - sym__module, - STATE(4574), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136964] = 3, - ACTIONS(7323), 1, + [138394] = 6, + ACTIONS(6504), 1, anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4212), 1, + sym_type_annotation, + STATE(4858), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 6, + ACTIONS(6711), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136980] = 6, - ACTIONS(6444), 1, + anon_sym_SEMI, + [138416] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4177), 1, + STATE(4157), 1, sym_type_annotation, - STATE(4737), 1, + STATE(4980), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137002] = 6, - ACTIONS(6444), 1, + [138438] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4326), 1, + STATE(4406), 1, sym_type_annotation, - STATE(4978), 1, + STATE(5042), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6675), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137024] = 8, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2314), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5235), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137050] = 8, - ACTIONS(2478), 1, + [138460] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7325), 1, - sym_identifier, - ACTIONS(7327), 1, - anon_sym_STAR, - STATE(3848), 1, + ACTIONS(7331), 1, + anon_sym_QMARK, + ACTIONS(7397), 1, + anon_sym_COLON, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5494), 1, + STATE(5381), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137076] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - STATE(1614), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137102] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(7329), 1, - anon_sym_DOT, - STATE(1506), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, + [138486] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4025), 1, + sym_type_annotation, + STATE(4880), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137128] = 6, - ACTIONS(6444), 1, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138508] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4178), 1, + STATE(4409), 1, sym_type_annotation, - STATE(4745), 1, + STATE(5155), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137150] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(4099), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5243), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [138530] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4410), 1, + sym_type_annotation, + STATE(5198), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137176] = 8, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(1668), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5251), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6726), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138552] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4489), 1, + sym_type_annotation, + STATE(5248), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137202] = 8, - ACTIONS(6900), 1, + ACTIONS(6736), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138574] = 8, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(840), 1, + STATE(2212), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5549), 1, + STATE(5588), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137228] = 6, - ACTIONS(6444), 1, + [138600] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4039), 1, + STATE(4089), 1, sym_type_annotation, - STATE(4832), 1, + STATE(4648), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137250] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(7331), 1, - anon_sym_DOT, - STATE(2484), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, + [138622] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4415), 1, + sym_type_annotation, + STATE(4645), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137276] = 3, - ACTIONS(7271), 1, - anon_sym_AMP, + ACTIONS(6726), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138644] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4416), 1, + sym_type_annotation, + STATE(4647), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 6, + ACTIONS(6726), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137292] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5469), 1, - sym_statement_block, + anon_sym_SEMI, + [138666] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4417), 1, + sym_type_annotation, + STATE(4653), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 5, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137310] = 3, - ACTIONS(7335), 1, - anon_sym_extends, + [138688] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4178), 1, + sym_type_annotation, + STATE(5149), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 6, + ACTIONS(6736), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [137326] = 8, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(2002), 1, - sym_arguments, - STATE(3248), 1, - sym_type_arguments, - STATE(5404), 1, - sym_optional_chain, + anon_sym_SEMI, + [138710] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4230), 1, + sym_type_annotation, + STATE(4813), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137352] = 8, - ACTIONS(7337), 1, - anon_sym_LBRACE, - ACTIONS(7339), 1, + ACTIONS(6736), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7341), 1, - anon_sym_DOT, - ACTIONS(7343), 1, - anon_sym_LT, - ACTIONS(7345), 1, - anon_sym_LBRACE_PIPE, - STATE(4598), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5143), 1, - sym_type_arguments, + anon_sym_SEMI, + [138732] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4422), 1, + sym_type_annotation, + STATE(4658), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137378] = 4, - ACTIONS(7205), 1, + ACTIONS(6726), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138754] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(4392), 1, + STATE(5292), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1653), 5, + ACTIONS(7399), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137396] = 4, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [137414] = 2, + [138772] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5294), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7347), 7, + ACTIONS(7401), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [137428] = 4, + [138790] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5358), 1, + STATE(5434), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 5, + ACTIONS(7401), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137446] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(7351), 1, - anon_sym_DOT, - STATE(2001), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137472] = 4, + [138808] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5365), 1, + STATE(5436), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7353), 5, + ACTIONS(7399), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137490] = 8, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7355), 1, + [138826] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - ACTIONS(7357), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5482), 1, - sym__call_signature, + STATE(4426), 1, + sym_type_annotation, + STATE(4674), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137516] = 6, - ACTIONS(6444), 1, + ACTIONS(6726), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138848] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4011), 1, + STATE(4429), 1, sym_type_annotation, - STATE(4680), 1, + STATE(4675), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137538] = 6, - ACTIONS(6444), 1, + [138870] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4114), 1, + STATE(4072), 1, sym_type_annotation, - STATE(5184), 1, + STATE(4891), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137560] = 6, - ACTIONS(6444), 1, + [138892] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4278), 1, + STATE(4073), 1, sym_type_annotation, - STATE(4900), 1, + STATE(4904), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137582] = 6, - ACTIONS(6444), 1, + [138914] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4279), 1, + STATE(4075), 1, sym_type_annotation, - STATE(4902), 1, + STATE(4941), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137604] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, - sym_identifier, - STATE(4484), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137626] = 6, - ACTIONS(6444), 1, + [138936] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4282), 1, + STATE(4085), 1, sym_type_annotation, - STATE(4910), 1, + STATE(5008), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137648] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5565), 1, - sym_statement_block, + [138958] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4430), 1, + sym_type_annotation, + STATE(4694), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 5, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137666] = 6, - ACTIONS(6444), 1, + [138980] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4283), 1, + STATE(4431), 1, sym_type_annotation, - STATE(4911), 1, + STATE(4695), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137688] = 6, - ACTIONS(6444), 1, + [139002] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4117), 1, + STATE(4393), 1, sym_type_annotation, - STATE(5206), 1, + STATE(5173), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137710] = 6, - ACTIONS(6444), 1, + [139024] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4288), 1, + STATE(4433), 1, sym_type_annotation, - STATE(4922), 1, + STATE(4718), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137732] = 6, - ACTIONS(6444), 1, + [139046] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4293), 1, + STATE(3988), 1, sym_type_annotation, - STATE(4926), 1, + STATE(4711), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137754] = 6, - ACTIONS(6444), 1, + [139068] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4295), 1, + STATE(4343), 1, sym_type_annotation, - STATE(4928), 1, + STATE(4805), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137776] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [139090] = 4, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4296), 1, + STATE(4265), 1, sym_type_annotation, - STATE(4929), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(7403), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137798] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [139108] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4297), 1, + STATE(4067), 1, sym_type_annotation, - STATE(4933), 1, + STATE(4697), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137820] = 6, - ACTIONS(6444), 1, + [139130] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4298), 1, + STATE(4446), 1, sym_type_annotation, - STATE(4934), 1, + STATE(4729), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137842] = 8, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(1648), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5242), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137868] = 8, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2190), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5418), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137894] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, - sym_identifier, - STATE(4487), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137916] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5272), 1, - sym_statement_block, + [139152] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4448), 1, + sym_type_annotation, + STATE(4731), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 5, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137934] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5274), 1, - sym_statement_block, + [139174] = 4, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4049), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 5, + ACTIONS(7405), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137952] = 8, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(6291), 1, + [139192] = 8, + ACTIONS(2470), 1, anon_sym_LT, - STATE(2026), 1, - sym_arguments, - STATE(3476), 1, - sym_type_arguments, - STATE(5288), 1, - sym_optional_chain, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7407), 1, + sym_identifier, + ACTIONS(7409), 1, + anon_sym_STAR, + STATE(3851), 1, + sym_formal_parameters, + STATE(5255), 1, + sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137978] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [139218] = 4, + ACTIONS(4892), 1, + anon_sym_COMMA, + STATE(3601), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4353), 1, - sym_type_annotation, - STATE(5030), 1, - sym__initializer, + anon_sym_RBRACK, + [139236] = 3, + ACTIONS(7413), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6683), 3, - sym__automatic_semicolon, + ACTIONS(3562), 6, anon_sym_COMMA, - anon_sym_SEMI, - [138000] = 8, - ACTIONS(2478), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [139252] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7363), 1, + ACTIONS(7416), 1, sym_identifier, - ACTIONS(7365), 1, + ACTIONS(7418), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5321), 1, + STATE(5253), 1, sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138026] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5406), 1, - sym_statement_block, + [139278] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7315), 1, + anon_sym_DOT, + ACTIONS(7420), 1, + sym_identifier, + STATE(762), 1, + sym_string, + STATE(874), 1, + sym__module, + STATE(4562), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138044] = 4, - ACTIONS(2444), 1, + [139304] = 8, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(5407), 1, - sym_statement_block, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2296), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5304), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138062] = 6, - ACTIONS(6444), 1, + [139330] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4307), 1, + STATE(4457), 1, sym_type_annotation, - STATE(4948), 1, + STATE(4699), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138084] = 6, - ACTIONS(6444), 1, + [139352] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4309), 1, + STATE(4459), 1, sym_type_annotation, - STATE(5220), 1, + STATE(4743), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138106] = 6, - ACTIONS(6444), 1, + [139374] = 3, + ACTIONS(7422), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3546), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4125), 1, - sym_type_annotation, - STATE(5210), 1, - sym__initializer, + anon_sym_RBRACK, + anon_sym_QMARK, + [139390] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5528), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7424), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139408] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1871), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138128] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(7367), 1, - sym_identifier, - ACTIONS(7369), 1, anon_sym_DOT, - STATE(3504), 1, - sym_nested_identifier, - STATE(3657), 1, - sym_string, - STATE(4416), 1, - sym__module, + anon_sym_PIPE_RBRACE, + [139422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138154] = 8, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1575), 1, + ACTIONS(1805), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7371), 1, - anon_sym_LT, - ACTIONS(7373), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [139436] = 8, + ACTIONS(6892), 1, anon_sym_extends, - STATE(3944), 1, - sym_object_type, - STATE(4008), 1, - sym_type_parameters, - STATE(4667), 1, - sym_extends_type_clause, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6912), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5575), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138180] = 6, - ACTIONS(3378), 1, + [139462] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, - sym_identifier, - STATE(4496), 1, - sym_variable_declarator, + STATE(5530), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138202] = 6, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1682), 1, - sym_arguments, - STATE(5239), 1, - sym_type_arguments, + ACTIONS(7426), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139480] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5491), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7279), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [138224] = 6, - ACTIONS(6444), 1, + ACTIONS(7424), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139498] = 8, + ACTIONS(6826), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2541), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5269), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139524] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4131), 1, + STATE(4460), 1, sym_type_annotation, - STATE(4616), 1, + STATE(4747), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138246] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7321), 1, - anon_sym_DOT, - ACTIONS(7375), 1, - sym_identifier, - STATE(751), 1, - sym_nested_identifier, - STATE(781), 1, - sym_string, - STATE(900), 1, - sym__module, + [139546] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5494), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138272] = 6, - ACTIONS(6444), 1, + ACTIONS(7426), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139564] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4394), 1, + STATE(4461), 1, sym_type_annotation, - STATE(5102), 1, + STATE(4754), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138294] = 4, - ACTIONS(6452), 1, + [139586] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4368), 1, + STATE(4476), 1, sym_type_annotation, + STATE(4758), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7377), 5, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138312] = 6, - ACTIONS(6444), 1, + [139608] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4313), 1, + STATE(4320), 1, sym_type_annotation, - STATE(4960), 1, + STATE(4943), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138334] = 6, - ACTIONS(6444), 1, + [139630] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4134), 1, + STATE(4138), 1, sym_type_annotation, - STATE(4628), 1, + STATE(4925), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138356] = 6, - ACTIONS(6444), 1, + [139652] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4137), 1, + STATE(4479), 1, sym_type_annotation, - STATE(4631), 1, + STATE(4764), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138378] = 8, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1495), 1, - anon_sym_LBRACE, - ACTIONS(7371), 1, - anon_sym_LT, - ACTIONS(7373), 1, + [139674] = 3, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4336), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139690] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, anon_sym_extends, - STATE(909), 1, - sym_object_type, - STATE(4251), 1, - sym_type_parameters, - STATE(5217), 1, - sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138404] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(7379), 1, - anon_sym_DOT, - STATE(2014), 1, - sym_arguments, - STATE(5288), 1, - sym_optional_chain, - STATE(5366), 1, - sym_type_arguments, + ACTIONS(4350), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139710] = 3, + ACTIONS(7428), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138430] = 8, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7357), 1, + ACTIONS(4358), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - ACTIONS(7381), 1, + [139726] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5482), 1, - sym__call_signature, + STATE(4480), 1, + sym_type_annotation, + STATE(4766), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138456] = 8, - ACTIONS(2478), 1, + ACTIONS(6726), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139748] = 8, + ACTIONS(7430), 1, + anon_sym_LBRACE, + ACTIONS(7432), 1, + anon_sym_COMMA, + ACTIONS(7434), 1, + anon_sym_DOT, + ACTIONS(7436), 1, anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7383), 1, - sym_identifier, - ACTIONS(7385), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5257), 1, - sym__call_signature, + ACTIONS(7438), 1, + anon_sym_LBRACE_PIPE, + STATE(4564), 1, + aux_sym_extends_type_clause_repeat1, + STATE(4752), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138482] = 6, - ACTIONS(6444), 1, + [139774] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4016), 1, + STATE(4486), 1, sym_type_annotation, - STATE(4700), 1, + STATE(4774), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138504] = 6, - ACTIONS(6444), 1, + [139796] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4317), 1, + STATE(4487), 1, sym_type_annotation, - STATE(4968), 1, + STATE(4776), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138526] = 6, - ACTIONS(6444), 1, + [139818] = 5, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(5713), 1, + anon_sym_RBRACE, + STATE(4681), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [139838] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4319), 1, + STATE(4139), 1, sym_type_annotation, - STATE(4969), 1, + STATE(4928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138548] = 8, - ACTIONS(6752), 1, + [139860] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2224), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5371), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + STATE(5518), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138574] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4141), 1, - sym_type_annotation, - STATE(4645), 1, - sym__initializer, + ACTIONS(7440), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139878] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5561), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138596] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [139896] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4400), 1, + STATE(3993), 1, sym_type_annotation, - STATE(5113), 1, + STATE(4654), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138618] = 4, - ACTIONS(7387), 1, - anon_sym_COMMA, - STATE(3713), 1, - aux_sym_sequence_expression_repeat1, + [139918] = 4, + ACTIONS(4546), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 5, + ACTIONS(5727), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [138636] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(4323), 1, - sym_type_annotation, - STATE(4975), 1, - sym__initializer, + anon_sym_LT, + anon_sym_QMARK, + [139936] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5539), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(7440), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138658] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4324), 1, - sym_type_annotation, - STATE(4976), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [139954] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5541), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138680] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [139972] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4327), 1, + STATE(4463), 1, sym_type_annotation, - STATE(4982), 1, + STATE(4757), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138702] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4328), 1, - sym_type_annotation, - STATE(4984), 1, - sym__initializer, + [139994] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5534), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(7444), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138724] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4331), 1, - sym_type_annotation, - STATE(4994), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [140012] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5538), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(7446), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138746] = 7, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6740), 1, - sym_identifier, - ACTIONS(6760), 1, - anon_sym_type, - STATE(5245), 1, - sym__import_identifier, + anon_sym_PIPE_RBRACE, + [140030] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5559), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5931), 2, - sym__module_export_name, - sym_string, - [138770] = 6, - ACTIONS(6444), 1, + ACTIONS(7444), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140048] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4332), 1, + STATE(4088), 1, sym_type_annotation, - STATE(4996), 1, + STATE(4732), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138792] = 6, - ACTIONS(6444), 1, + [140070] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4335), 1, + STATE(4145), 1, sym_type_annotation, - STATE(5006), 1, + STATE(4946), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138814] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4336), 1, - sym_type_annotation, - STATE(5007), 1, - sym__initializer, + [140092] = 8, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(3926), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + STATE(1622), 1, + sym_arguments, + STATE(5362), 1, + sym_optional_chain, + STATE(5363), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140118] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5380), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(7448), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138836] = 3, - ACTIONS(6799), 1, - anon_sym_is, + anon_sym_PIPE_RBRACE, + [140136] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5453), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [138852] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4143), 1, - sym_type_annotation, - STATE(4647), 1, - sym__initializer, + ACTIONS(7450), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140154] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5408), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7452), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138874] = 3, - ACTIONS(7390), 1, - anon_sym_is, + anon_sym_PIPE_RBRACE, + [140172] = 6, + ACTIONS(6363), 1, + anon_sym_EQ, + STATE(4575), 1, + sym_constraint, + STATE(5280), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6367), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(7383), 2, + anon_sym_COLON, anon_sym_extends, - [138890] = 8, - ACTIONS(6902), 1, + [140194] = 8, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - ACTIONS(6916), 1, + ACTIONS(6920), 1, anon_sym_LBRACE, - STATE(4129), 1, + STATE(238), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5311), 1, + STATE(5297), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138916] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5497), 1, - sym_statement_block, + [140220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 5, + ACTIONS(7454), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [138934] = 4, - ACTIONS(2444), 1, + [140234] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4011), 1, + sym_type_annotation, + STATE(4872), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140256] = 8, + ACTIONS(4474), 1, + anon_sym_QMARK_DOT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4665), 1, + anon_sym_DOT, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(2037), 1, + sym_arguments, + STATE(3550), 1, + sym_type_arguments, + STATE(5542), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140282] = 6, + ACTIONS(3370), 1, anon_sym_LBRACE, - STATE(5499), 1, - sym_statement_block, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + sym_identifier, + STATE(4520), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 5, + STATE(3652), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140304] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4890), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138952] = 8, - ACTIONS(6784), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [140318] = 8, + ACTIONS(6826), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(2536), 1, + STATE(1703), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5279), 1, + STATE(5405), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138978] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5351), 1, - sym_statement_block, + [140344] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4342), 1, + sym_type_annotation, + STATE(4803), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 5, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138996] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5232), 1, - sym_statement_block, + [140366] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4358), 1, + sym_type_annotation, + STATE(4808), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7396), 5, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139014] = 4, - ACTIONS(2444), 1, + [140388] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7458), 1, + sym_identifier, + ACTIONS(7460), 1, + anon_sym_DOT, + STATE(3530), 1, + sym_nested_identifier, + STATE(3661), 1, + sym_string, + STATE(3964), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140414] = 8, + ACTIONS(1029), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, anon_sym_LBRACE, - STATE(5374), 1, - sym_statement_block, + ACTIONS(7323), 1, + anon_sym_LT, + ACTIONS(7325), 1, + anon_sym_extends, + STATE(4221), 1, + sym_type_parameters, + STATE(4443), 1, + sym_object_type, + STATE(5079), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 5, + [140440] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7462), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139032] = 8, - ACTIONS(2478), 1, + [140454] = 6, + ACTIONS(3515), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(7398), 1, - sym_identifier, - ACTIONS(7400), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5495), 1, - sym__call_signature, + STATE(1725), 1, + sym_arguments, + STATE(5437), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139058] = 2, + ACTIONS(7464), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [140476] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(3969), 1, + sym_type_annotation, + STATE(4879), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6832), 7, + ACTIONS(6711), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [139072] = 6, - ACTIONS(6444), 1, + [140498] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4018), 1, + STATE(4146), 1, sym_type_annotation, - STATE(4704), 1, + STATE(4947), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139094] = 6, - ACTIONS(6444), 1, + [140520] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4414), 1, + STATE(4149), 1, sym_type_annotation, - STATE(5138), 1, + STATE(4956), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139116] = 8, - ACTIONS(2478), 1, + [140542] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7402), 1, + ACTIONS(7466), 1, sym_identifier, - ACTIONS(7404), 1, + ACTIONS(7468), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5494), 1, + STATE(5255), 1, sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139142] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5234), 1, - sym_statement_block, + [140568] = 6, + ACTIONS(6504), 1, + anon_sym_EQ, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4150), 1, + sym_type_annotation, + STATE(4960), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 5, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139160] = 2, + [140590] = 6, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(4661), 1, + anon_sym_LPAREN, + STATE(2338), 1, + sym_arguments, + STATE(5478), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7024), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [139174] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, + ACTIONS(7464), 3, anon_sym_LBRACK, - ACTIONS(7300), 1, sym_identifier, - STATE(4476), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139196] = 8, - ACTIONS(6752), 1, + sym_private_property_identifier, + [140612] = 8, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2185), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5419), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139222] = 8, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(774), 1, + STATE(2080), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5269), 1, + STATE(5310), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139248] = 8, - ACTIONS(2478), 1, + [140638] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7408), 1, + ACTIONS(7470), 1, sym_identifier, - ACTIONS(7410), 1, + ACTIONS(7472), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5495), 1, + STATE(5253), 1, sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139274] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3950), 1, - sym_type_annotation, - STATE(4822), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139296] = 8, - ACTIONS(6784), 1, + [140664] = 8, + ACTIONS(6818), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6892), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6894), 1, anon_sym_implements, - STATE(1705), 1, + STATE(2326), 1, sym_class_body, - STATE(5174), 1, + STATE(4916), 1, sym_extends_clause, - STATE(5507), 1, + STATE(5602), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5943), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139322] = 6, - ACTIONS(6444), 1, + [140690] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, STATE(4156), 1, sym_type_annotation, - STATE(4669), 1, + STATE(4972), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139344] = 6, - ACTIONS(6444), 1, + [140712] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4158), 1, + STATE(4425), 1, sym_type_annotation, - STATE(4671), 1, + STATE(4827), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139366] = 6, - ACTIONS(6444), 1, + [140734] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4025), 1, + STATE(4104), 1, sym_type_annotation, - STATE(4772), 1, + STATE(4830), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(7456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139388] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, + [140756] = 8, + ACTIONS(6818), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + STATE(2121), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5460), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139408] = 6, - ACTIONS(6444), 1, + [140782] = 8, + ACTIONS(6892), 1, + anon_sym_extends, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(6920), 1, + anon_sym_LBRACE, + STATE(236), 1, + sym_class_body, + STATE(4916), 1, + sym_extends_clause, + STATE(5278), 1, + sym_class_heritage, + STATE(5943), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140808] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6510), 1, anon_sym_COLON, - STATE(4161), 1, + STATE(4202), 1, sym_type_annotation, - STATE(4681), 1, + STATE(5088), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6756), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139430] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7143), 7, - sym__automatic_semicolon, + [140830] = 6, + ACTIONS(6504), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + ACTIONS(6510), 1, anon_sym_COLON, - [139444] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + STATE(4399), 1, + sym_type_annotation, + STATE(5029), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 4, + ACTIONS(6726), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139464] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + anon_sym_SEMI, + [140852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 4, + ACTIONS(7474), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139484] = 3, - ACTIONS(7271), 1, - anon_sym_AMP, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140865] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 6, + ACTIONS(3718), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7476), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [139500] = 8, - ACTIONS(3521), 1, + anon_sym_SEMI, + [140882] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3938), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(7287), 1, - anon_sym_DOT, - STATE(1506), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, + ACTIONS(7478), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(5018), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139526] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [140905] = 4, + ACTIONS(7480), 1, anon_sym_COLON, - STATE(4199), 1, - sym_type_annotation, - STATE(4782), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6700), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139548] = 5, - ACTIONS(7271), 1, + ACTIONS(6849), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5580), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [140922] = 7, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(7273), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(6661), 1, anon_sym_extends, + ACTIONS(7482), 1, + anon_sym_COMMA, + ACTIONS(7484), 1, + anon_sym_GT, + STATE(4698), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4096), 4, + ACTIONS(7486), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139568] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140958] = 4, + STATE(3806), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 4, + ACTIONS(7490), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7488), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139588] = 4, - ACTIONS(2444), 1, + anon_sym_SEMI, + [140975] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(5413), 1, + STATE(2615), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7412), 5, + ACTIONS(7387), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139606] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4163), 1, - sym_type_annotation, - STATE(4685), 1, - sym__initializer, + [140992] = 4, + STATE(3808), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139628] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4358), 1, - sym_type_annotation, - STATE(5042), 1, - sym__initializer, + [141009] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7281), 3, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7494), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139650] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4359), 1, - sym_type_annotation, - STATE(5043), 1, - sym__initializer, + [141026] = 5, + ACTIONS(7496), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_PIPE, + ACTIONS(7500), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4388), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141045] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7281), 3, + ACTIONS(3728), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139672] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5352), 1, - sym_statement_block, + [141062] = 5, + ACTIONS(7496), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_PIPE, + ACTIONS(7500), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 5, - sym__automatic_semicolon, + ACTIONS(4396), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141081] = 7, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(7504), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139690] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5368), 1, - sym_statement_block, + ACTIONS(7506), 1, + anon_sym_GT, + STATE(4721), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141104] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7508), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(3732), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 5, + ACTIONS(7454), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139708] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, anon_sym_COLON, - STATE(4277), 1, - sym_type_annotation, - STATE(4891), 1, - sym__initializer, + [141140] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(3692), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139730] = 5, - ACTIONS(7271), 1, + [141157] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7512), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5296), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141180] = 5, + ACTIONS(7496), 1, anon_sym_AMP, - ACTIONS(7273), 1, + ACTIONS(7498), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(7500), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 4, - anon_sym_COMMA, + ACTIONS(4110), 3, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - [139750] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2607), 1, - sym_statement_block, + [141199] = 5, + ACTIONS(7496), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_PIPE, + ACTIONS(7500), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4168), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141218] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7514), 1, + anon_sym_export, + ACTIONS(7516), 1, + anon_sym_class, + ACTIONS(7518), 1, + anon_sym_abstract, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141241] = 7, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(7520), 1, + anon_sym_LBRACE, + ACTIONS(7522), 1, anon_sym_COMMA, - anon_sym_SEMI, - [139767] = 5, - ACTIONS(7416), 1, - anon_sym_default, - ACTIONS(7419), 1, - anon_sym_RBRACE, - ACTIONS(7421), 1, - anon_sym_case, + STATE(4637), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3768), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [139786] = 4, - STATE(3773), 1, + [141264] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(4246), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141287] = 4, + STATE(3892), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3720), 2, + ACTIONS(3696), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7424), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139803] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [141304] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3688), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7426), 3, + ACTIONS(7352), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139820] = 4, - STATE(3885), 1, + [141321] = 4, + STATE(3898), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3720), 2, + ACTIONS(3696), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7424), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139837] = 5, - ACTIONS(7431), 1, - anon_sym_BQUOTE, - ACTIONS(7433), 1, - anon_sym_DOLLAR_LBRACE, + [141338] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7528), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5450), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7428), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3772), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [139856] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [141361] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7530), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(3752), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3724), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7436), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139873] = 7, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(7367), 1, + [141384] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, sym_identifier, - STATE(3504), 1, - sym_nested_identifier, - STATE(3657), 1, - sym_string, - STATE(4416), 1, - sym__module, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5407), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139896] = 7, - ACTIONS(2478), 1, + [141407] = 7, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7438), 1, + ACTIONS(7534), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4991), 1, + STATE(3759), 1, sym__call_signature, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139919] = 7, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(7343), 1, + [141430] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(7440), 1, - anon_sym_LBRACE, - ACTIONS(7442), 1, - anon_sym_LBRACE_PIPE, - STATE(4601), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5149), 1, - sym_type_arguments, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7536), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(4042), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141453] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7538), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(3765), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139942] = 2, + [141476] = 5, + ACTIONS(7496), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_PIPE, + ACTIONS(7500), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 6, + ACTIONS(4326), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [139955] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7444), 1, - anon_sym_COMMA, - ACTIONS(7446), 1, - anon_sym_GT, - STATE(4731), 1, - aux_sym_implements_clause_repeat1, + [141495] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7540), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5507), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139978] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7375), 1, + [141518] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7542), 1, sym_identifier, - STATE(751), 1, - sym_nested_identifier, - STATE(781), 1, - sym_string, - STATE(904), 1, - sym__module, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5476), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140001] = 4, - STATE(3876), 1, - aux_sym_object_type_repeat1, + [141541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7450), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7448), 3, + ACTIONS(7344), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [140018] = 2, + anon_sym_COLON, + [141554] = 3, + ACTIONS(7496), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2330), 6, + ACTIONS(4336), 5, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [141569] = 5, + ACTIONS(7496), 1, anon_sym_AMP, + ACTIONS(7498), 1, anon_sym_PIPE, + ACTIONS(7500), 1, anon_sym_extends, - [140031] = 5, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(7452), 1, - sym_identifier, - ACTIONS(7454), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4350), 3, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, + [141588] = 3, + ACTIONS(7544), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4666), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140050] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2628), 1, - sym_statement_block, + ACTIONS(4358), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [141603] = 4, + STATE(3822), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 4, + ACTIONS(7548), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7546), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140067] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2342), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [141620] = 5, + ACTIONS(6657), 1, anon_sym_AMP, + ACTIONS(6659), 1, anon_sym_PIPE, + ACTIONS(6661), 1, anon_sym_extends, - [140080] = 7, - ACTIONS(2478), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7550), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_GT, + [141639] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_QMARK, - STATE(3396), 1, + ACTIONS(7552), 1, + sym_identifier, + STATE(3851), 1, sym_formal_parameters, - STATE(3856), 1, + STATE(5275), 1, + sym_type_parameters, + STATE(5440), 1, sym__call_signature, - STATE(5339), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141662] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7554), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, sym_type_parameters, + STATE(5551), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140103] = 4, - ACTIONS(7414), 1, + [141685] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2644), 1, + STATE(2663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 4, + ACTIONS(7442), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140120] = 3, - ACTIONS(4090), 1, + [141702] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7313), 1, sym_identifier, + STATE(743), 1, + sym_nested_identifier, + STATE(762), 1, + sym_string, + STATE(874), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 5, - anon_sym_LBRACE, + [141725] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140135] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2624), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7412), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140152] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2639), 1, - sym_statement_block, + ACTIONS(7556), 1, + anon_sym_QMARK, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5570), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140169] = 7, - ACTIONS(6617), 1, + [141748] = 7, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7558), 1, anon_sym_COMMA, - ACTIONS(7460), 1, + ACTIONS(7560), 1, anon_sym_GT, - STATE(4828), 1, + STATE(5140), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140192] = 7, - ACTIONS(2478), 1, + [141771] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7462), 1, + ACTIONS(7562), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5382), 1, + STATE(5578), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140215] = 7, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3521), 1, + [141794] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(7464), 1, - anon_sym_RPAREN, - ACTIONS(7466), 1, - anon_sym_DOT, - STATE(1270), 1, - sym_arguments, - STATE(5556), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140238] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, + ACTIONS(6518), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(7564), 1, anon_sym_QMARK, - [140253] = 5, - ACTIONS(7468), 1, - anon_sym_BQUOTE, - ACTIONS(7470), 1, - anon_sym_DOLLAR_LBRACE, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5582), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7213), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3812), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140272] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7472), 1, + [141817] = 6, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, + ACTIONS(7568), 1, anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3738), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140295] = 4, - ACTIONS(7474), 1, + ACTIONS(7566), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [141838] = 4, + ACTIONS(7570), 1, sym_identifier, - ACTIONS(7476), 1, + ACTIONS(7572), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7478), 4, + ACTIONS(7574), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [140312] = 3, - ACTIONS(4062), 1, + [141855] = 3, + ACTIONS(4206), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 5, + ACTIONS(4208), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [140327] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + [141870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, - anon_sym_EQ, + ACTIONS(7576), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [140346] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4096), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140365] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [141883] = 5, + ACTIONS(7578), 1, + anon_sym_default, + ACTIONS(7580), 1, + anon_sym_RBRACE, + ACTIONS(7582), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140384] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + STATE(3955), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141902] = 4, + ACTIONS(7480), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140403] = 7, - ACTIONS(2478), 1, + ACTIONS(6863), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5371), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [141919] = 7, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7488), 1, + ACTIONS(7584), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4382), 1, + STATE(4361), 1, sym__call_signature, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140426] = 7, - ACTIONS(2478), 1, + [141942] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7518), 1, + anon_sym_abstract, + ACTIONS(7586), 1, + anon_sym_export, + ACTIONS(7588), 1, + anon_sym_class, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141965] = 3, + ACTIONS(6612), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6614), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [141980] = 5, + ACTIONS(7590), 1, + anon_sym_BQUOTE, + ACTIONS(7592), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7245), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3952), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141999] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7490), 1, - sym_identifier, - STATE(3848), 1, + ACTIONS(7594), 1, + anon_sym_QMARK, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5502), 1, + STATE(5563), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140449] = 7, - ACTIONS(2478), 1, + [142022] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7440), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142039] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7596), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5501), 1, + STATE(5532), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140472] = 7, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7494), 1, - anon_sym_export, - ACTIONS(7496), 1, - anon_sym_class, - ACTIONS(7498), 1, - anon_sym_abstract, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140495] = 6, - ACTIONS(7271), 1, + [142062] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(7273), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(7502), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7500), 2, + ACTIONS(7598), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACK, - [140516] = 6, - ACTIONS(7341), 1, - anon_sym_DOT, - ACTIONS(7343), 1, - anon_sym_LT, - ACTIONS(7504), 1, - anon_sym_LBRACE, - STATE(5143), 1, - sym_type_arguments, + anon_sym_GT, + [142081] = 6, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(7363), 1, + anon_sym_EQ, + STATE(4604), 1, + sym_type_annotation, + STATE(5389), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7506), 2, + ACTIONS(7600), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [140537] = 2, + anon_sym_RPAREN, + [142102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7251), 6, + ACTIONS(7371), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [140550] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7508), 1, - anon_sym_COMMA, - ACTIONS(7510), 1, - anon_sym_GT, - STATE(4654), 1, - aux_sym_implements_clause_repeat1, + [142115] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(3673), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140573] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2645), 1, - sym_statement_block, + [142138] = 4, + STATE(3933), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 4, + ACTIONS(7606), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7604), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140590] = 4, - ACTIONS(7414), 1, + [142155] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2619), 1, + STATE(2667), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7249), 4, + ACTIONS(7399), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140607] = 5, - ACTIONS(7470), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7514), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7512), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3772), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140626] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7516), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3728), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140649] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7518), 1, + [142172] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - ACTIONS(7520), 1, - anon_sym_COMMA, - STATE(5088), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140672] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + STATE(2670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3692), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7522), 3, + ACTIONS(7401), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140689] = 7, - ACTIONS(2478), 1, + [142189] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - ACTIONS(7524), 1, + ACTIONS(7608), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5336), 1, + STATE(3945), 1, sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140712] = 2, + [142212] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7347), 6, + ACTIONS(7442), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140725] = 2, + [142229] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 6, + ACTIONS(7401), 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, - [140738] = 5, - ACTIONS(7470), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7528), 1, + [142246] = 5, + ACTIONS(7613), 1, anon_sym_BQUOTE, + ACTIONS(7615), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7512), 2, + ACTIONS(7610), 2, sym__template_chars, sym_escape_sequence, - STATE(3772), 2, + STATE(3869), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [140757] = 4, - STATE(3831), 1, - aux_sym_object_type_repeat1, + [142265] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2638), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7532), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7530), 3, + ACTIONS(7444), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140774] = 3, - ACTIONS(4122), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4124), 5, + [142282] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140789] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4348), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140808] = 2, + STATE(2639), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7257), 6, + ACTIONS(7446), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140821] = 2, + [142299] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(5836), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [140834] = 7, - ACTIONS(7159), 1, - anon_sym_GT, - ACTIONS(7536), 1, - sym_identifier, - ACTIONS(7538), 1, - sym_jsx_identifier, - ACTIONS(7540), 1, - anon_sym_SLASH_GT, - STATE(3125), 1, - sym_nested_identifier, - STATE(3412), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140857] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(3786), 4, anon_sym_LPAREN, - ACTIONS(7542), 1, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4052), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140880] = 7, - ACTIONS(2478), 1, + [142314] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - ACTIONS(7544), 1, + ACTIONS(7618), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(4366), 1, + STATE(3931), 1, sym__call_signature, - STATE(5435), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140903] = 4, - STATE(3855), 1, - aux_sym_object_type_repeat1, + [142337] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3738), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7546), 3, + ACTIONS(7444), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140920] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + [142354] = 5, + ACTIONS(7620), 1, + anon_sym_default, + ACTIONS(7623), 1, + anon_sym_RBRACE, + ACTIONS(7625), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140939] = 4, - STATE(3835), 1, - aux_sym_object_type_repeat1, + STATE(3875), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142373] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7628), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(4411), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3740), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7548), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140956] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [142396] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3740), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7548), 3, + ACTIONS(7399), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140973] = 2, + [142413] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7630), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(5232), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7550), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [140986] = 7, - ACTIONS(2478), 1, + [142436] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7552), 1, - anon_sym_QMARK, - STATE(3848), 1, + ACTIONS(7632), 1, + sym_identifier, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5375), 1, + STATE(5440), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141009] = 7, - ACTIONS(2478), 1, + [142459] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - ACTIONS(7554), 1, + ACTIONS(7634), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(3843), 1, + STATE(3871), 1, sym__call_signature, - STATE(5339), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141032] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [142482] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7636), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(5207), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3726), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7556), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141049] = 2, + [142505] = 7, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(7638), 1, + anon_sym_RPAREN, + ACTIONS(7640), 1, + anon_sym_DOT, + STATE(1267), 1, + sym_arguments, + STATE(5367), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7558), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + [142528] = 7, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(7642), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141062] = 7, - ACTIONS(7159), 1, + ACTIONS(7644), 1, anon_sym_GT, - ACTIONS(7560), 1, - sym_identifier, - ACTIONS(7562), 1, - sym_jsx_identifier, - ACTIONS(7564), 1, - anon_sym_SLASH_GT, - STATE(3117), 1, - sym_nested_identifier, - STATE(3373), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141085] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7566), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5344), 1, - sym__call_signature, + STATE(4878), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141108] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_statement_block, + [142551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3786), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [141125] = 5, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [142564] = 5, ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(7454), 1, - anon_sym_LBRACK, - ACTIONS(7568), 1, + ACTIONS(7646), 1, sym_identifier, + ACTIONS(7648), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4570), 3, + STATE(4508), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [141144] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7570), 1, - sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5262), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141167] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7375), 1, - sym_identifier, - STATE(751), 1, - sym_nested_identifier, - STATE(781), 1, - sym_string, - STATE(900), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141190] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7283), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141207] = 4, - STATE(3885), 1, + [142583] = 4, + STATE(3891), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3738), 2, + ACTIONS(7652), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7546), 3, + ACTIONS(7650), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141224] = 3, - ACTIONS(6546), 1, - sym_identifier, + [142600] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6548), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [141239] = 5, - ACTIONS(3378), 1, + ACTIONS(7440), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142617] = 5, + ACTIONS(3370), 1, anon_sym_LBRACE, - ACTIONS(3380), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, - ACTIONS(7572), 1, + ACTIONS(7654), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4623), 3, + STATE(4944), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [141258] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2608), 1, - sym_statement_block, + [142636] = 4, + STATE(3894), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 4, + ACTIONS(3700), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7656), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141275] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6770), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141292] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2326), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141305] = 7, - ACTIONS(2478), 1, + [142653] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7576), 1, + ACTIONS(7658), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5346), 1, + STATE(5302), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141328] = 7, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(7367), 1, - sym_identifier, - STATE(3504), 1, - sym_nested_identifier, - STATE(3657), 1, - sym_string, - STATE(4391), 1, - sym__module, + [142676] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141351] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7578), 1, - sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5451), 1, - sym__call_signature, + ACTIONS(3700), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7656), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142693] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141374] = 7, - ACTIONS(2478), 1, + ACTIONS(3694), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7660), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142710] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7580), 1, + ACTIONS(7662), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(3839), 1, + STATE(4059), 1, sym__call_signature, - STATE(5339), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141397] = 5, - ACTIONS(7582), 1, - anon_sym_default, - ACTIONS(7584), 1, - anon_sym_RBRACE, - ACTIONS(7586), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3768), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141416] = 4, - STATE(3885), 1, + [142733] = 4, + STATE(3898), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3722), 2, + ACTIONS(3704), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7588), 3, + ACTIONS(7664), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141433] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2611), 1, - sym_statement_block, + [142750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7353), 4, + ACTIONS(7462), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141450] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7590), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3932), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141473] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7592), 1, - anon_sym_COMMA, - ACTIONS(7594), 1, - anon_sym_GT, - STATE(4686), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141496] = 7, + anon_sym_COLON, + [142763] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(7319), 1, + ACTIONS(7420), 1, sym_identifier, - STATE(781), 1, + STATE(762), 1, sym_string, - STATE(904), 1, + STATE(790), 1, sym__module, - STATE(4574), 1, + STATE(4562), 1, sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141519] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6766), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141536] = 7, + [142786] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(7319), 1, + ACTIONS(7420), 1, sym_identifier, - STATE(781), 1, + STATE(762), 1, sym_string, - STATE(900), 1, + STATE(874), 1, sym__module, - STATE(4574), 1, + STATE(4562), 1, sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141559] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5451), 1, - sym__call_signature, + [142809] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141582] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7598), 1, + ACTIONS(7669), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7666), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7600), 1, - anon_sym_GT, - STATE(5211), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141605] = 7, - ACTIONS(2478), 1, + anon_sym_SEMI, + [142826] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7602), 1, - anon_sym_QMARK, - STATE(3848), 1, + ACTIONS(7671), 1, + sym_identifier, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5524), 1, + STATE(5257), 1, sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141628] = 7, - ACTIONS(2478), 1, + [142849] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7604), 1, + ACTIONS(7673), 1, sym_identifier, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5426), 1, + STATE(5257), 1, sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141651] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7606), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5367), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141674] = 7, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7496), 1, - anon_sym_class, - ACTIONS(7498), 1, - anon_sym_abstract, - ACTIONS(7608), 1, - anon_sym_export, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [142872] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141697] = 7, - ACTIONS(2478), 1, + ACTIONS(2326), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142885] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7610), 1, - anon_sym_QMARK, - STATE(3267), 1, + ACTIONS(7675), 1, + sym_identifier, + STATE(3851), 1, sym_formal_parameters, - STATE(3683), 1, - sym__call_signature, - STATE(5435), 1, + STATE(5275), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141720] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7612), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3764), 1, + STATE(5440), 1, sym__call_signature, - STATE(5435), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141743] = 7, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(7466), 1, - anon_sym_DOT, - ACTIONS(7614), 1, - anon_sym_RPAREN, - STATE(1270), 1, - sym_arguments, - STATE(5556), 1, - sym_type_arguments, + [142908] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141766] = 4, - STATE(3815), 1, - aux_sym_object_type_repeat1, + ACTIONS(7452), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142925] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3714), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7616), 3, - sym__automatic_semicolon, + ACTIONS(2338), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142938] = 7, + ACTIONS(7432), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141783] = 7, - ACTIONS(2478), 1, + ACTIONS(7436), 1, anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7618), 1, - sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5502), 1, - sym__call_signature, + ACTIONS(7677), 1, + anon_sym_LBRACE, + ACTIONS(7679), 1, + anon_sym_LBRACE_PIPE, + STATE(4565), 1, + aux_sym_extends_type_clause_repeat1, + STATE(4762), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141806] = 3, - ACTIONS(7482), 1, - anon_sym_AMP, + [142961] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 5, + ACTIONS(2334), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [141821] = 5, - ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7484), 1, anon_sym_PIPE, - ACTIONS(7486), 1, anon_sym_extends, + [142974] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 3, + ACTIONS(2342), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141840] = 3, - ACTIONS(7620), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, + [142987] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 5, + ACTIONS(2330), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - [141855] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + anon_sym_extends, + [143000] = 7, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(7681), 1, + anon_sym_COMMA, + ACTIONS(7683), 1, + anon_sym_GT, + STATE(4948), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3714), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7616), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141872] = 7, - ACTIONS(6617), 1, + [143023] = 7, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(7622), 1, + ACTIONS(7685), 1, anon_sym_COMMA, - ACTIONS(7624), 1, + ACTIONS(7687), 1, anon_sym_GT, - STATE(4830), 1, + STATE(5213), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141895] = 4, - STATE(3889), 1, + [143046] = 4, + STATE(3918), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 2, + ACTIONS(7691), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7626), 3, + ACTIONS(7689), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141912] = 7, - ACTIONS(2478), 1, + [143063] = 6, + ACTIONS(7434), 1, + anon_sym_DOT, + ACTIONS(7436), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(7693), 1, + anon_sym_LBRACE, + STATE(4752), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7695), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [143084] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7630), 1, + ACTIONS(7697), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3918), 1, - sym__call_signature, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5544), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141935] = 2, + [143107] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7699), 1, + anon_sym_QMARK, + STATE(3318), 1, + sym_formal_parameters, + STATE(4056), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [141948] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, + [143130] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7313), 1, + sym_identifier, + STATE(743), 1, + sym_nested_identifier, + STATE(762), 1, + sym_string, + STATE(790), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141965] = 4, - ACTIONS(7414), 1, + [143153] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2662), 1, + STATE(2613), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 4, + ACTIONS(7385), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141982] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7632), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5275), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142005] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7634), 1, - sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5502), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142028] = 4, - STATE(3885), 1, + [143170] = 4, + STATE(3926), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7639), 2, + ACTIONS(3708), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7636), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142045] = 4, - STATE(3896), 1, + [143187] = 4, + STATE(3898), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3734), 2, + ACTIONS(3708), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7641), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142062] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7643), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5310), 1, - sym__call_signature, + [143204] = 3, + ACTIONS(4214), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142085] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(4216), 5, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(7645), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5247), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142108] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [143219] = 5, + ACTIONS(7592), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7703), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3734), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7641), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142125] = 7, - ACTIONS(2478), 1, + ACTIONS(7213), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [143238] = 7, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7647), 1, + ACTIONS(7705), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(3575), 1, + STATE(3699), 1, sym__call_signature, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142148] = 5, - ACTIONS(7582), 1, - anon_sym_default, - ACTIONS(7586), 1, - anon_sym_case, - ACTIONS(7649), 1, - anon_sym_RBRACE, + [143261] = 3, + ACTIONS(4194), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3854), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142167] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(4196), 5, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(7651), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [143276] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7458), 1, sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5451), 1, - sym__call_signature, + STATE(3530), 1, + sym_nested_identifier, + STATE(3661), 1, + sym_string, + STATE(4038), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143299] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7458), 1, + sym_identifier, + STATE(3530), 1, + sym_nested_identifier, + STATE(3661), 1, + sym_string, + STATE(3964), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142190] = 7, - ACTIONS(2478), 1, + [143322] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7653), 1, + ACTIONS(7707), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4350), 1, - sym__call_signature, - STATE(5435), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5579), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142213] = 2, + [143345] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2334), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [142226] = 5, - ACTIONS(7470), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7655), 1, - anon_sym_BQUOTE, + ACTIONS(3712), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143362] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + ACTIONS(7711), 1, + anon_sym_QMARK, + STATE(3446), 1, + sym_formal_parameters, + STATE(3865), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7171), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142245] = 4, - STATE(3885), 1, + [143385] = 4, + STATE(3813), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3702), 2, + ACTIONS(3740), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7657), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142262] = 4, - ACTIONS(7414), 1, + [143402] = 5, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(2613), 1, + ACTIONS(7648), 1, + anon_sym_LBRACK, + ACTIONS(7715), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5128), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [143421] = 4, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2641), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 4, + ACTIONS(7448), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142279] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4262), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [142298] = 4, - ACTIONS(7414), 1, + [143438] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2643), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 4, + ACTIONS(7450), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142315] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2620), 1, - sym_statement_block, + [143455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 4, + ACTIONS(7717), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142332] = 2, + anon_sym_PIPE_RBRACE, + [143468] = 4, + STATE(3898), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7285), 6, + ACTIONS(3740), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7713), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142345] = 7, - ACTIONS(2478), 1, + [143485] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - ACTIONS(7659), 1, + ACTIONS(7719), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(3921), 1, + STATE(3916), 1, sym__call_signature, - STATE(5339), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142368] = 4, - STATE(3923), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7663), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7661), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142385] = 4, - ACTIONS(7414), 1, + [143508] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(2654), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 4, + ACTIONS(7385), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142402] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7665), 1, - sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5502), 1, - sym__call_signature, + [143525] = 5, + ACTIONS(7592), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7723), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142425] = 4, - STATE(3844), 1, - aux_sym_object_type_repeat1, + ACTIONS(7721), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3869), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [143544] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7516), 1, + anon_sym_class, + ACTIONS(7518), 1, + anon_sym_abstract, + ACTIONS(7725), 1, + anon_sym_export, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7669), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7667), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142442] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7671), 1, + [143567] = 7, + ACTIONS(7261), 1, + anon_sym_GT, + ACTIONS(7727), 1, sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5451), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142465] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3662), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + ACTIONS(7729), 1, + sym_jsx_identifier, + ACTIONS(7731), 1, + anon_sym_SLASH_GT, + STATE(3207), 1, + sym_nested_identifier, + STATE(3474), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142488] = 5, - ACTIONS(6617), 1, + [143590] = 7, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + anon_sym_GT, + STATE(4662), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143613] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + ACTIONS(7737), 1, + sym_identifier, + STATE(3851), 1, + sym_formal_parameters, + STATE(5257), 1, + sym__call_signature, + STATE(5275), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7675), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [142507] = 7, - ACTIONS(6617), 1, + [143636] = 5, + ACTIONS(7496), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(7498), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(7500), 1, anon_sym_extends, - ACTIONS(7677), 1, - anon_sym_COMMA, - ACTIONS(7679), 1, - anon_sym_GT, - STATE(4713), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142530] = 7, - ACTIONS(2478), 1, + ACTIONS(4106), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143655] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7681), 1, - anon_sym_QMARK, - STATE(3267), 1, + ACTIONS(7739), 1, + sym_identifier, + STATE(3851), 1, sym_formal_parameters, - STATE(4262), 1, + STATE(5257), 1, sym__call_signature, - STATE(5435), 1, + STATE(5275), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142553] = 4, - ACTIONS(7414), 1, + [143678] = 4, + STATE(3951), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7743), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7741), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143695] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7396), 4, + ACTIONS(7424), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142570] = 4, - ACTIONS(7414), 1, + [143712] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2634), 1, + STATE(2620), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 4, + ACTIONS(7426), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142587] = 7, - ACTIONS(2478), 1, + [143729] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - ACTIONS(7683), 1, + ACTIONS(7745), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(5215), 1, + STATE(3867), 1, sym__call_signature, - STATE(5435), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142610] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2621), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7333), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142627] = 7, - ACTIONS(2478), 1, + [143752] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, - anon_sym_QMARK, - STATE(3848), 1, + ACTIONS(7747), 1, + sym_identifier, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5315), 1, + STATE(5440), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142650] = 6, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(7237), 1, - anon_sym_EQ, - STATE(4477), 1, - sym_type_annotation, - STATE(5227), 1, - sym__initializer, + [143775] = 3, + ACTIONS(7496), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [142671] = 4, - ACTIONS(7414), 1, + ACTIONS(4242), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [143790] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2618), 1, + STATE(2635), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 4, + ACTIONS(7424), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142688] = 7, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7498), 1, - anon_sym_abstract, - ACTIONS(7689), 1, - anon_sym_export, - ACTIONS(7691), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [143807] = 4, + STATE(3798), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142711] = 4, - STATE(3770), 1, + ACTIONS(3716), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143824] = 4, + STATE(3898), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3690), 2, + ACTIONS(3716), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7693), 3, + ACTIONS(7749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142728] = 4, - ACTIONS(7414), 1, + [143841] = 5, + ACTIONS(7592), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7751), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7721), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3869), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [143860] = 4, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2635), 1, + STATE(2642), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 4, + ACTIONS(7426), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142745] = 3, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4286), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [142760] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [143877] = 7, + ACTIONS(7261), 1, + anon_sym_GT, + ACTIONS(7753), 1, + sym_identifier, + ACTIONS(7755), 1, + sym_jsx_identifier, + ACTIONS(7757), 1, + anon_sym_SLASH_GT, + STATE(3194), 1, + sym_nested_identifier, + STATE(3386), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3690), 2, + [143900] = 5, + ACTIONS(7578), 1, + anon_sym_default, + ACTIONS(7582), 1, + anon_sym_case, + ACTIONS(7759), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7693), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142777] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7695), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4890), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142800] = 4, - STATE(3771), 1, - aux_sym_object_type_repeat1, + STATE(3875), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [143919] = 7, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3515), 1, + anon_sym_LT, + ACTIONS(7640), 1, + anon_sym_DOT, + ACTIONS(7761), 1, + anon_sym_RPAREN, + STATE(1267), 1, + sym_arguments, + STATE(5367), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7699), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7697), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142817] = 7, - ACTIONS(2478), 1, + [143942] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - ACTIONS(7701), 1, - anon_sym_QMARK, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3900), 1, + STATE(5272), 1, sym__call_signature, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142840] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4754), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142856] = 3, - ACTIONS(7707), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7705), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [142870] = 4, - ACTIONS(6444), 1, + [143962] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4702), 1, + STATE(4913), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142886] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4703), 1, - sym__initializer, + [143978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7452), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142902] = 6, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [143990] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4050), 1, - sym__call_signature, - STATE(5435), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5569), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142922] = 2, + [144010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 5, + ACTIONS(2852), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142934] = 2, + [144022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7711), 5, + ACTIONS(2654), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142946] = 4, - ACTIONS(6444), 1, + [144034] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4725), 1, + STATE(4642), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142962] = 4, - ACTIONS(6444), 1, + [144050] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2796), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144062] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5163), 1, + STATE(5201), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142978] = 3, - ACTIONS(7719), 1, - anon_sym_LT, + [144078] = 3, + ACTIONS(4536), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7717), 4, - sym_jsx_text, + ACTIONS(4538), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [142992] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4739), 1, - sym__initializer, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [144092] = 3, + ACTIONS(4540), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143008] = 4, - ACTIONS(6444), 1, + ACTIONS(4542), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [144106] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4740), 1, + STATE(4912), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143024] = 4, - ACTIONS(6444), 1, + [144122] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4741), 1, + STATE(4978), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143040] = 4, - ACTIONS(6444), 1, + [144138] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4742), 1, + STATE(4990), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143056] = 4, - ACTIONS(6444), 1, + [144154] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4744), 1, + STATE(4919), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143072] = 3, - ACTIONS(7723), 1, - anon_sym_LT, + [144170] = 3, + ACTIONS(7769), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 4, - sym_jsx_text, + ACTIONS(7771), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [143086] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2926), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143098] = 2, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [144184] = 5, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6766), 1, + anon_sym_extends, + ACTIONS(7775), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2930), 5, + ACTIONS(7773), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143110] = 2, + [144202] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5577), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2934), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143122] = 2, + [144222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [143134] = 4, - ACTIONS(6444), 1, + ACTIONS(5239), 5, anon_sym_EQ, - STATE(4656), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7715), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [143150] = 4, - ACTIONS(7574), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7727), 1, - anon_sym_EQ_GT, + anon_sym_QMARK, + [144234] = 3, + ACTIONS(7779), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143166] = 4, - ACTIONS(6444), 1, + ACTIONS(7777), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [144248] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4747), 1, + STATE(4991), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143182] = 4, - ACTIONS(6444), 1, + [144264] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4748), 1, + STATE(5043), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143198] = 3, - ACTIONS(7732), 1, + [144280] = 6, + ACTIONS(2470), 1, anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(4015), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [143212] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4751), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143228] = 3, - ACTIONS(7732), 1, + [144300] = 3, + ACTIONS(7781), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7730), 4, + ACTIONS(7783), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [143242] = 2, + [144314] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5581), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143254] = 2, + [144334] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5168), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7734), 5, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143266] = 2, + [144350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 5, + ACTIONS(7401), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143278] = 2, + [144362] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5172), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7736), 5, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143290] = 2, + [144378] = 3, + ACTIONS(7787), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7785), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [143302] = 2, + sym_html_character_reference, + anon_sym_LT_SLASH, + [144392] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5585), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7550), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [143314] = 2, + [144412] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7558), 5, + ACTIONS(1757), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143326] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [144424] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4766), 1, + STATE(4920), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143342] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2702), 5, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143354] = 2, + [144440] = 3, + ACTIONS(7791), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143366] = 2, + ACTIONS(7789), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [144454] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, + ACTIONS(7793), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143378] = 2, + [144466] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2876), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143390] = 2, + ACTIONS(7795), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [144478] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4707), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2888), 5, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143402] = 2, + [144494] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4708), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 5, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143414] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2742), 5, - sym__automatic_semicolon, + [144510] = 6, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(5082), 1, anon_sym_COMMA, + ACTIONS(7797), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143426] = 2, + STATE(5035), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143438] = 2, + [144530] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4755), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143450] = 2, + [144546] = 5, + ACTIONS(7799), 1, + anon_sym_BQUOTE, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7803), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143462] = 5, - ACTIONS(7738), 1, + STATE(4326), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144564] = 3, + ACTIONS(7805), 1, sym_identifier, - ACTIONS(7740), 1, - anon_sym_LPAREN, - STATE(2606), 1, - sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2752), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [143480] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4662), 1, - sym__initializer, + ACTIONS(7807), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [144578] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7399), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143496] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4776), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(2778), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143512] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [144602] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4779), 1, + STATE(5061), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7809), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143528] = 4, - ACTIONS(6444), 1, + [144618] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4781), 1, + STATE(4922), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143544] = 2, + [144634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7744), 5, + ACTIONS(7486), 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, - [143556] = 2, + [144646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4960), 5, + ACTIONS(5124), 5, anon_sym_EQ, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - [143568] = 6, - ACTIONS(7237), 1, - anon_sym_EQ, - ACTIONS(7746), 1, - anon_sym_COMMA, - ACTIONS(7748), 1, - anon_sym_RBRACE, - STATE(4873), 1, - aux_sym_enum_body_repeat1, - STATE(5562), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143588] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2596), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143600] = 2, + anon_sym_QMARK, + [144658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2600), 5, + ACTIONS(2778), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143612] = 2, + [144670] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2664), 5, + ACTIONS(2778), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143624] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4670), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7742), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143640] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4794), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143656] = 4, - ACTIONS(6444), 1, + [144682] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4694), 1, + STATE(4902), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143672] = 4, - ACTIONS(6444), 1, + [144698] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4812), 1, + STATE(4756), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143688] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4824), 1, - sym__initializer, + [144714] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7813), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143704] = 4, - ACTIONS(6444), 1, + STATE(5471), 2, + sym__module_export_name, + sym_string, + [144732] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4701), 1, + STATE(5174), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143720] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4829), 1, - sym__initializer, + [144748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7444), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143736] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [144760] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4831), 1, + STATE(4923), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143752] = 4, - ACTIONS(3530), 1, - anon_sym_COLON, - STATE(5414), 1, - sym_type_annotation, + [144776] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_formal_parameters, + STATE(4231), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [143768] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7750), 1, - anon_sym_EQ_GT, + [144796] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(4291), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143784] = 6, - ACTIONS(7753), 1, - sym_identifier, - ACTIONS(7755), 1, - anon_sym_GT, - ACTIONS(7757), 1, - sym_jsx_identifier, - STATE(5258), 1, - sym_nested_identifier, - STATE(5602), 1, - sym_jsx_namespace_name, + [144816] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5496), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143804] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4836), 1, - sym__initializer, + [144836] = 6, + ACTIONS(7273), 1, + anon_sym_LBRACE, + ACTIONS(7815), 1, + anon_sym_SEMI, + ACTIONS(7817), 1, + sym__automatic_semicolon, + ACTIONS(7819), 1, + sym__function_signature_automatic_semicolon, + STATE(755), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143820] = 4, - ACTIONS(6444), 1, + [144856] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4843), 1, + STATE(4778), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143836] = 6, - ACTIONS(3758), 1, - anon_sym_COLON, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(7759), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143856] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7761), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143872] = 3, - ACTIONS(7766), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7764), 4, - sym_jsx_text, + [144872] = 6, + ACTIONS(7273), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [143886] = 5, - ACTIONS(7768), 1, - anon_sym_BQUOTE, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7772), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4026), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143904] = 2, + ACTIONS(7821), 1, + anon_sym_SEMI, + ACTIONS(7823), 1, + sym__automatic_semicolon, + ACTIONS(7825), 1, + sym__function_signature_automatic_semicolon, + STATE(4339), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143916] = 2, + [144892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 5, + ACTIONS(7827), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143928] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(7774), 1, - anon_sym_SEMI, - ACTIONS(7776), 1, - sym__automatic_semicolon, - ACTIONS(7778), 1, - sym__function_signature_automatic_semicolon, - STATE(2089), 1, - sym_statement_block, + [144904] = 4, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(7829), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143948] = 2, + STATE(5580), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 5, + ACTIONS(7832), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143960] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4852), 1, - sym__initializer, + [144932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7474), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143976] = 5, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7780), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5226), 2, - sym__module_export_name, - sym_string, - [143994] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4065), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144014] = 6, - ACTIONS(2478), 1, + [144944] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5290), 1, + STATE(5495), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144034] = 6, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1575), 1, - anon_sym_LBRACE, - ACTIONS(7373), 1, - anon_sym_extends, - STATE(4014), 1, - sym_object_type, - STATE(4821), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144054] = 6, - ACTIONS(7205), 1, + [144964] = 6, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(7774), 1, + ACTIONS(7834), 1, anon_sym_SEMI, - ACTIONS(7776), 1, + ACTIONS(7836), 1, sym__automatic_semicolon, - ACTIONS(7778), 1, + ACTIONS(7838), 1, sym__function_signature_automatic_semicolon, - STATE(766), 1, + STATE(231), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144074] = 4, - ACTIONS(6444), 1, + [144984] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4853), 1, + STATE(5040), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144090] = 4, - ACTIONS(6444), 1, + [145000] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4854), 1, + STATE(4924), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144106] = 2, + [145016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2552), 5, + ACTIONS(2822), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144118] = 2, + [145028] = 3, + ACTIONS(7844), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2556), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144130] = 2, + ACTIONS(7842), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [145042] = 3, + ACTIONS(4536), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2564), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144142] = 2, + ACTIONS(4538), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [145056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2572), 5, + ACTIONS(2826), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144154] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4856), 1, - sym__initializer, + [145068] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(2830), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144170] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7782), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144188] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4857), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [145080] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(2840), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144204] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7786), 1, - anon_sym_EQ_GT, + anon_sym_PIPE_RBRACE, + [145092] = 3, + ACTIONS(4756), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144220] = 6, - ACTIONS(2478), 1, + ACTIONS(4758), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [145106] = 3, + ACTIONS(4540), 1, anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5342), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144240] = 6, - ACTIONS(7205), 1, + ACTIONS(4542), 4, + sym_jsx_text, anon_sym_LBRACE, - ACTIONS(7789), 1, - anon_sym_SEMI, - ACTIONS(7791), 1, - sym__automatic_semicolon, - ACTIONS(7793), 1, - sym__function_signature_automatic_semicolon, - STATE(4044), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144260] = 3, - ACTIONS(7766), 1, - sym_identifier, + sym_html_character_reference, + anon_sym_LT_SLASH, + [145120] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7764), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [144274] = 5, - ACTIONS(6704), 1, + ACTIONS(7424), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145132] = 5, + ACTIONS(6762), 1, anon_sym_AMP, - ACTIONS(6708), 1, + ACTIONS(6766), 1, anon_sym_extends, - ACTIONS(7784), 1, + ACTIONS(7775), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7795), 2, + ACTIONS(7846), 2, sym__automatic_semicolon, anon_sym_SEMI, - [144292] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4863), 1, - sym__initializer, + [145150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144308] = 4, - ACTIONS(6444), 1, + ACTIONS(5247), 5, anon_sym_EQ, - STATE(4866), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [144324] = 5, - ACTIONS(7770), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145162] = 5, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7797), 1, + ACTIONS(7848), 1, anon_sym_BQUOTE, - ACTIONS(7799), 1, + ACTIONS(7850), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, + STATE(3996), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [144342] = 3, - ACTIONS(7801), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3577), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [144356] = 2, + [145180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2580), 5, + ACTIONS(1853), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144368] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4871), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144384] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(7803), 1, - anon_sym_SEMI, - ACTIONS(7805), 1, - sym__automatic_semicolon, - ACTIONS(7807), 1, - sym__function_signature_automatic_semicolon, - STATE(2301), 1, - sym_statement_block, + [145192] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_formal_parameters, + STATE(4359), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144404] = 2, + [145212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2584), 5, + ACTIONS(1857), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144416] = 2, + [145224] = 5, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6766), 1, + anon_sym_extends, + ACTIONS(7775), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2584), 5, + ACTIONS(7852), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144428] = 2, + [145242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2588), 5, + ACTIONS(7426), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144440] = 2, + [145254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 5, + ACTIONS(7717), 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, - [144452] = 2, + [145266] = 3, + ACTIONS(4762), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144464] = 2, + ACTIONS(4764), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [145280] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 5, + ACTIONS(7424), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144476] = 6, - ACTIONS(7237), 1, - anon_sym_EQ, - ACTIONS(7809), 1, - anon_sym_COMMA, - ACTIONS(7811), 1, - anon_sym_RBRACE, - STATE(4885), 1, - aux_sym_enum_body_repeat1, - STATE(5562), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144496] = 2, + [145292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2604), 5, + ACTIONS(7854), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144508] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4872), 1, - sym__initializer, + [145304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, + ACTIONS(5247), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [144524] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7813), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144540] = 4, - ACTIONS(7574), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7816), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144556] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4875), 1, - sym__initializer, + anon_sym_QMARK, + [145316] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5554), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144572] = 6, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7819), 1, - anon_sym_SEMI, - ACTIONS(7821), 1, - sym__automatic_semicolon, - ACTIONS(7823), 1, - sym__function_signature_automatic_semicolon, - STATE(4059), 1, - sym_statement_block, + [145336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144592] = 3, - ACTIONS(5557), 1, + ACTIONS(7856), 5, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1761), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144606] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7825), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144624] = 2, + [145348] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5284), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2620), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144636] = 4, - ACTIONS(6444), 1, + [145368] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5122), 1, + STATE(5021), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7858), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144652] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(3682), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + [145384] = 4, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(7860), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144672] = 5, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7827), 1, + STATE(5371), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [145400] = 3, + ACTIONS(7863), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5261), 2, - sym__module_export_name, - sym_string, - [144690] = 2, + ACTIONS(7865), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [145414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 5, + ACTIONS(7426), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144702] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(4259), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + [145426] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7518), 1, + anon_sym_abstract, + ACTIONS(7867), 1, + anon_sym_class, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144722] = 2, + [145446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 5, + ACTIONS(7446), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144734] = 2, + [145458] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_formal_parameters, + STATE(4034), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145478] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 5, + ACTIONS(7576), 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, - [144746] = 2, + [145490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7829), 5, + ACTIONS(7401), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144758] = 4, - ACTIONS(6444), 1, + [145502] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5121), 1, + STATE(4932), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144774] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7831), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144790] = 2, + [145518] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(4168), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144802] = 2, + [145538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7834), 5, + ACTIONS(2694), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144814] = 3, - ACTIONS(5173), 1, - sym__automatic_semicolon, + [145550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1813), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144828] = 3, - ACTIONS(5175), 1, + ACTIONS(7869), 5, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1823), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144842] = 2, + [145562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 5, + ACTIONS(7871), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144854] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(3727), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144874] = 3, - ACTIONS(7838), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7840), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [144888] = 6, - ACTIONS(2478), 1, + [145574] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5263), 1, + STATE(5529), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144908] = 6, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7803), 1, - anon_sym_SEMI, - ACTIONS(7805), 1, - sym__automatic_semicolon, - ACTIONS(7807), 1, - sym__function_signature_automatic_semicolon, - STATE(771), 1, - sym_statement_block, + [145594] = 4, + STATE(5424), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144928] = 4, - ACTIONS(6444), 1, + ACTIONS(7873), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7875), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145610] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4605), 1, + STATE(4938), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144944] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7842), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144962] = 4, - ACTIONS(6444), 1, + [145626] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(5066), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144978] = 3, - ACTIONS(5185), 1, - sym__automatic_semicolon, + [145642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1713), 4, + ACTIONS(2862), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144992] = 6, - ACTIONS(2478), 1, + [145654] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7877), 1, + anon_sym_class, + ACTIONS(7879), 1, + anon_sym_abstract, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145674] = 3, + ACTIONS(7883), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(3763), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145012] = 4, - ACTIONS(6444), 1, + ACTIONS(7881), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [145688] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4811), 1, + STATE(5068), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145028] = 4, - ACTIONS(6444), 1, + [145704] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5186), 1, + STATE(5070), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145044] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7844), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [145062] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(3660), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145082] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(3731), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145102] = 6, - ACTIONS(2478), 1, + [145720] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(3529), 1, + STATE(4210), 1, sym__call_signature, - STATE(5435), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145122] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5233), 1, - sym__call_signature, + [145740] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5076), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145142] = 6, - ACTIONS(2478), 1, + ACTIONS(7767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145756] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5363), 1, + STATE(5341), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145162] = 2, + [145776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 5, + ACTIONS(2874), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145174] = 2, + [145788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 5, + ACTIONS(2874), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145186] = 2, + [145800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 5, + ACTIONS(2878), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145198] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5187), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7742), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145214] = 2, + [145812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2682), 5, + ACTIONS(1689), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145226] = 6, - ACTIONS(2478), 1, + [145824] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3912), 1, - sym__call_signature, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5448), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145246] = 2, + [145844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2686), 5, + ACTIONS(1785), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145258] = 2, + [145856] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2690), 5, + ACTIONS(1815), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145270] = 2, + [145868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2694), 5, + ACTIONS(2906), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145282] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5273), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145302] = 2, + [145880] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5080), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2698), 5, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145314] = 2, + [145896] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2514), 5, - sym__automatic_semicolon, + ACTIONS(7885), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145326] = 2, + anon_sym_GT, + [145914] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4797), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7846), 5, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145338] = 2, + [145930] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4939), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7848), 5, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145350] = 4, - ACTIONS(6444), 1, + [145946] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4892), 1, + STATE(4996), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7850), 3, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145366] = 2, + [145962] = 3, + ACTIONS(5251), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2710), 5, - sym__automatic_semicolon, + ACTIONS(1833), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145378] = 2, + [145976] = 3, + ACTIONS(7889), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2710), 5, - sym__automatic_semicolon, + ACTIONS(7887), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [145990] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5165), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145390] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146002] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5148), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2722), 5, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145402] = 2, + [146018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 5, + ACTIONS(2642), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145414] = 2, + [146030] = 5, + ACTIONS(7891), 1, + sym_identifier, + ACTIONS(7893), 1, + anon_sym_LPAREN, + STATE(1211), 1, + sym_decorator_member_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1287), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [146048] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7895), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [146060] = 3, + ACTIONS(7883), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7881), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146074] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4853), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 5, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145426] = 2, + [146090] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + ACTIONS(2930), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145438] = 2, + [146102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2938), 5, + ACTIONS(2768), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145450] = 4, - ACTIONS(6444), 1, + [146114] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4894), 1, + STATE(5133), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7852), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145466] = 6, - ACTIONS(2478), 1, + [146130] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5282), 1, + STATE(3870), 1, sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145486] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5189), 1, - sym__initializer, + [146150] = 4, + STATE(5475), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7873), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7897), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [145502] = 4, - ACTIONS(6444), 1, + [146166] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4896), 1, + STATE(4852), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7899), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145518] = 6, - ACTIONS(2478), 1, + [146182] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5533), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146194] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5399), 1, + STATE(4477), 1, sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145538] = 6, - ACTIONS(7856), 1, - sym_identifier, - ACTIONS(7858), 1, - anon_sym_GT, - ACTIONS(7860), 1, - sym_jsx_identifier, - STATE(5534), 1, - sym_nested_identifier, - STATE(5887), 1, - sym_jsx_namespace_name, + [146214] = 6, + ACTIONS(7496), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_PIPE, + ACTIONS(7500), 1, + anon_sym_extends, + ACTIONS(7901), 1, + anon_sym_as, + ACTIONS(7903), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145558] = 4, - ACTIONS(6444), 1, + [146234] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4897), 1, + STATE(4953), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145574] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7862), 1, - anon_sym_BQUOTE, - ACTIONS(7864), 1, - sym__template_chars, + [146250] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145592] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(7789), 1, - anon_sym_SEMI, - ACTIONS(7791), 1, + ACTIONS(7905), 5, sym__automatic_semicolon, - ACTIONS(7793), 1, - sym__function_signature_automatic_semicolon, - STATE(2322), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146262] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(3944), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145612] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4898), 1, - sym__initializer, + [146282] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2514), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145628] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4899), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146294] = 5, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7803), 1, + sym__template_chars, + ACTIONS(7907), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145644] = 4, - ACTIONS(6444), 1, + STATE(4326), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146312] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4903), 1, + STATE(5136), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145660] = 6, - ACTIONS(2478), 1, + [146328] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5436), 1, + STATE(5385), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145680] = 4, - ACTIONS(6444), 1, + [146348] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4904), 1, + STATE(5191), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145696] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - sym__template_chars, - ACTIONS(7868), 1, - anon_sym_BQUOTE, + [146364] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5146), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145714] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(7819), 1, - anon_sym_SEMI, - ACTIONS(7821), 1, + ACTIONS(7763), 3, sym__automatic_semicolon, - ACTIONS(7823), 1, - sym__function_signature_automatic_semicolon, - STATE(2060), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [146380] = 6, + ACTIONS(7909), 1, + sym_identifier, + ACTIONS(7911), 1, + anon_sym_GT, + ACTIONS(7913), 1, + sym_jsx_identifier, + STATE(5295), 1, + sym_nested_identifier, + STATE(6015), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145734] = 4, - ACTIONS(6444), 1, + [146400] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4905), 1, + STATE(4952), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145750] = 2, + [146416] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4702), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2772), 5, + ACTIONS(7915), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145762] = 2, + [146432] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4892), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2776), 5, + ACTIONS(7917), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145774] = 2, + [146448] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5215), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2780), 5, + ACTIONS(7919), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145786] = 2, + [146464] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(3930), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2784), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145798] = 2, + [146484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2788), 5, + ACTIONS(2514), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145810] = 2, + [146496] = 3, + ACTIONS(7921), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2792), 5, + ACTIONS(7923), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [146510] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7925), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145822] = 2, + [146522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2796), 5, + ACTIONS(7927), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145834] = 4, - ACTIONS(6444), 1, + [146534] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4906), 1, + STATE(4955), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145850] = 4, - ACTIONS(7872), 1, - anon_sym_in, - ACTIONS(7874), 1, - anon_sym_of, + [146550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, + ACTIONS(2866), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145866] = 4, - ACTIONS(7876), 1, + anon_sym_PIPE_RBRACE, + [146562] = 3, + ACTIONS(7933), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7931), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146576] = 3, + ACTIONS(4876), 1, anon_sym_in, - ACTIONS(7878), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, + ACTIONS(5284), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [146590] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4975), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7935), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145882] = 2, + [146606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2812), 5, + ACTIONS(2894), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145894] = 2, + [146618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2816), 5, + ACTIONS(1795), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145906] = 2, + [146630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1727), 5, + ACTIONS(2514), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145918] = 4, - ACTIONS(6444), 1, + [146642] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4907), 1, + STATE(4998), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145934] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5439), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145954] = 6, - ACTIONS(7880), 1, - sym_identifier, - ACTIONS(7882), 1, - anon_sym_GT, - ACTIONS(7884), 1, - sym_jsx_identifier, - STATE(5222), 1, - sym_nested_identifier, - STATE(5685), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145974] = 4, - ACTIONS(6444), 1, + [146658] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4908), 1, + STATE(5002), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145990] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5334), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146002] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7886), 1, - anon_sym_BQUOTE, - ACTIONS(7888), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4142), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146020] = 4, - ACTIONS(6444), 1, + [146674] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4909), 1, + STATE(4861), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146036] = 4, - ACTIONS(6444), 1, + [146690] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5126), 1, + STATE(5004), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146052] = 4, - ACTIONS(6444), 1, + [146706] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4973), 1, + STATE(5006), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146068] = 4, - ACTIONS(6444), 1, + [146722] = 3, + ACTIONS(7941), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146736] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4913), 1, + STATE(4962), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146084] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4914), 1, - sym__initializer, + [146752] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7943), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146100] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - sym__template_chars, - ACTIONS(7890), 1, - anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [146764] = 6, + ACTIONS(4156), 1, + anon_sym_LBRACE, + ACTIONS(7834), 1, + anon_sym_SEMI, + ACTIONS(7836), 1, + sym__automatic_semicolon, + ACTIONS(7838), 1, + sym__function_signature_automatic_semicolon, + STATE(2086), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146118] = 4, - ACTIONS(6444), 1, + [146784] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4915), 1, + STATE(5071), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146134] = 2, + [146800] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5114), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2852), 5, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146146] = 2, + [146816] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5117), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146158] = 2, + [146832] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5216), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2860), 5, + ACTIONS(7947), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146170] = 2, + [146848] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2864), 5, + ACTIONS(2514), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146182] = 2, + [146860] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5118), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2872), 5, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146194] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5340), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146206] = 4, - ACTIONS(6444), 1, + [146876] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4927), 1, + STATE(5126), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146222] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5340), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146234] = 2, + [146892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5340), 5, - anon_sym_EQ, + ACTIONS(2698), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146246] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146904] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7892), 5, + ACTIONS(2698), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146258] = 6, - ACTIONS(2478), 1, + [146916] = 3, + ACTIONS(7883), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3789), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146278] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4930), 1, - sym__initializer, + ACTIONS(7881), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(2698), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146294] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [146942] = 4, + ACTIONS(1871), 1, + anon_sym_DOT, + ACTIONS(4438), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [146958] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4931), 1, + STATE(5134), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146310] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7894), 1, - anon_sym_BQUOTE, - ACTIONS(7896), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4162), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146328] = 4, - ACTIONS(6444), 1, + [146974] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4932), 1, + STATE(5144), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146344] = 2, + [146990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7898), 5, + ACTIONS(2858), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146356] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4936), 1, - sym__initializer, + [147002] = 4, + ACTIONS(1805), 1, + anon_sym_DOT, + ACTIONS(4438), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, - sym__automatic_semicolon, + ACTIONS(4440), 3, anon_sym_COMMA, - anon_sym_SEMI, - [146372] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4937), 1, - sym__initializer, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [147018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2660), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146388] = 5, - ACTIONS(7770), 1, + anon_sym_PIPE_RBRACE, + [147030] = 5, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - sym__template_chars, - ACTIONS(7900), 1, + ACTIONS(7949), 1, anon_sym_BQUOTE, + ACTIONS(7951), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, + STATE(4209), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146406] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4939), 1, - sym__initializer, + [147048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2736), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146422] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4946), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147060] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2744), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146438] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4947), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2574), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146454] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4983), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7902), 3, + ACTIONS(2578), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146470] = 6, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [147096] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5338), 1, + STATE(5227), 1, sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146490] = 2, + [147116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7904), 5, + ACTIONS(7352), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146502] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4951), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7866), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146518] = 5, - ACTIONS(7908), 1, + [147128] = 6, + ACTIONS(4156), 1, + anon_sym_LBRACE, + ACTIONS(7821), 1, anon_sym_SEMI, - ACTIONS(7910), 1, + ACTIONS(7823), 1, sym__automatic_semicolon, - STATE(5450), 1, - sym_import_attribute, + ACTIONS(7825), 1, + sym__function_signature_automatic_semicolon, + STATE(2082), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - [146536] = 4, - ACTIONS(6444), 1, + [147148] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4952), 1, + STATE(4963), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146552] = 4, - ACTIONS(6444), 1, + [147164] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4953), 1, + STATE(5217), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146568] = 4, - ACTIONS(6444), 1, + [147180] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4995), 1, + STATE(5220), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7912), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146584] = 3, - ACTIONS(4410), 1, - anon_sym_LT, + [147196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 4, - sym_jsx_text, + ACTIONS(7953), 5, + anon_sym_EQ, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146598] = 3, - ACTIONS(4449), 1, - anon_sym_LT, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [147208] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4971), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146612] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4954), 1, - sym__initializer, + ACTIONS(7763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2530), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146628] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [147236] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4955), 1, + STATE(5229), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7955), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146644] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4956), 1, - sym__initializer, + [147252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7957), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146660] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [147264] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4959), 1, + STATE(5222), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146676] = 4, - ACTIONS(6444), 1, + [147280] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5084), 1, + STATE(4862), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146692] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3847), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [147296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146712] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5033), 1, - sym__initializer, + ACTIONS(1757), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7914), 3, + ACTIONS(2638), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146728] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [147320] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4962), 1, + STATE(5090), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7955), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146744] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4963), 1, - sym__initializer, + [147336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2638), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146760] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4002), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [147348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146780] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4965), 1, - sym__initializer, + ACTIONS(2514), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147360] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2514), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146796] = 3, - ACTIONS(4565), 1, - anon_sym_LT, + anon_sym_PIPE_RBRACE, + [147372] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7516), 1, + anon_sym_class, + ACTIONS(7518), 1, + anon_sym_abstract, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4567), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146810] = 4, - STATE(5236), 1, - sym_import_attribute, + [147392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7916), 2, + ACTIONS(2538), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146826] = 4, - STATE(5241), 1, - sym_import_attribute, + anon_sym_PIPE_RBRACE, + [147404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7918), 2, + ACTIONS(1775), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146842] = 3, - ACTIONS(4569), 1, - anon_sym_LT, + anon_sym_PIPE_RBRACE, + [147416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4571), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146856] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4966), 1, - sym__initializer, + ACTIONS(1747), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(1765), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146872] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [147440] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2590), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147452] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4967), 1, + STATE(4652), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146888] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7496), 1, - anon_sym_class, - ACTIONS(7498), 1, - anon_sym_abstract, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [147468] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4992), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146908] = 6, - ACTIONS(2478), 1, + ACTIONS(7765), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147484] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(4021), 1, + STATE(4017), 1, sym__call_signature, - STATE(5339), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146928] = 3, - ACTIONS(4632), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4634), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146942] = 3, - ACTIONS(4636), 1, - anon_sym_LT, + [147504] = 4, + ACTIONS(7961), 1, + anon_sym_in, + ACTIONS(7963), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4638), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146956] = 4, - ACTIONS(6444), 1, + ACTIONS(7959), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147520] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4957), 1, + STATE(5233), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7955), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146972] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5349), 1, - sym__call_signature, + [147536] = 4, + ACTIONS(7965), 1, + anon_sym_in, + ACTIONS(7967), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146992] = 4, - ACTIONS(6444), 1, + ACTIONS(7959), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147552] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5036), 1, + STATE(4665), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7920), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147008] = 6, - ACTIONS(7922), 1, - sym_identifier, - ACTIONS(7924), 1, - anon_sym_GT, - ACTIONS(7926), 1, - sym_jsx_identifier, - STATE(5423), 1, - sym_nested_identifier, - STATE(5635), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147028] = 6, - ACTIONS(2478), 1, + [147568] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4030), 1, - sym__call_signature, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5351), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147048] = 2, + [147588] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4670), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7412), 5, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147060] = 2, + [147604] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7518), 1, + anon_sym_abstract, + ACTIONS(7588), 1, + anon_sym_class, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7928), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147072] = 6, - ACTIONS(2478), 1, + [147624] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5430), 1, + STATE(3751), 1, sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147092] = 4, - ACTIONS(6444), 1, + [147644] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4970), 1, + STATE(4884), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147108] = 4, - ACTIONS(6444), 1, + [147660] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4971), 1, + STATE(4673), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147124] = 4, - ACTIONS(6444), 1, + [147676] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4972), 1, + STATE(4993), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147140] = 4, - ACTIONS(6444), 1, + [147692] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4980), 1, + STATE(4994), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147156] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + [147708] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4995), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7930), 2, + ACTIONS(7763), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [147174] = 4, - ACTIONS(6444), 1, + anon_sym_SEMI, + [147724] = 4, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(7971), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5371), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [147740] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4986), 1, + STATE(4679), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147190] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4043), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [147756] = 5, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7803), 1, + sym__template_chars, + ACTIONS(7974), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147210] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5522), 1, - sym__call_signature, + STATE(4326), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147774] = 6, + ACTIONS(4156), 1, + anon_sym_LBRACE, + ACTIONS(7976), 1, + anon_sym_SEMI, + ACTIONS(7978), 1, + sym__automatic_semicolon, + ACTIONS(7980), 1, + sym__function_signature_automatic_semicolon, + STATE(2092), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147230] = 4, - ACTIONS(6444), 1, + [147794] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4988), 1, + STATE(4927), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7955), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147246] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5528), 1, - sym__call_signature, + [147810] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4997), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147266] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5530), 1, - sym__call_signature, + ACTIONS(7763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147286] = 4, - ACTIONS(6444), 1, + ACTIONS(2844), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147838] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4990), 1, + STATE(5016), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7955), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147302] = 4, - ACTIONS(6444), 1, + [147854] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4697), 1, + STATE(5026), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147318] = 4, - ACTIONS(6444), 1, + [147870] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5145), 1, + STATE(5053), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147334] = 4, - ACTIONS(6444), 1, + [147886] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5000), 1, + STATE(4682), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147350] = 4, - ACTIONS(6444), 1, + [147902] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5001), 1, + STATE(4687), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147366] = 4, - ACTIONS(6376), 1, - anon_sym_LBRACK, - ACTIONS(7932), 1, - anon_sym_RBRACE, + [147918] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4688), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147934] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4693), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147950] = 6, + ACTIONS(1029), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + ACTIONS(7325), 1, anon_sym_extends, - [147382] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5223), 1, - sym__call_signature, - STATE(5231), 1, - sym_type_parameters, + STATE(4030), 1, + sym_object_type, + STATE(5135), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147402] = 5, - ACTIONS(7934), 1, - anon_sym_BQUOTE, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7939), 1, - sym__template_chars, + [147970] = 6, + ACTIONS(7363), 1, + anon_sym_EQ, + ACTIONS(7984), 1, + anon_sym_COMMA, + ACTIONS(7986), 1, + anon_sym_RBRACE, + STATE(5180), 1, + aux_sym_enum_body_repeat1, + STATE(5587), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [147420] = 4, - ACTIONS(6444), 1, + [147990] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5002), 1, + STATE(4700), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147436] = 4, - ACTIONS(6444), 1, + [148006] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5003), 1, + STATE(4704), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147452] = 4, - ACTIONS(6444), 1, + [148022] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5005), 1, + STATE(4705), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147468] = 4, - ACTIONS(6444), 1, + [148038] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4698), 1, + STATE(4706), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147484] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5250), 1, - sym__call_signature, + [148054] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4709), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147504] = 3, - ACTIONS(4441), 1, - anon_sym_LT, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148070] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4712), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147518] = 3, - ACTIONS(4624), 1, - anon_sym_LT, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148086] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4716), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4626), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147532] = 3, - ACTIONS(4441), 1, - anon_sym_LT, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148102] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4865), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147546] = 3, - ACTIONS(4654), 1, - anon_sym_LT, + ACTIONS(7767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4656), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147560] = 3, - ACTIONS(4681), 1, - anon_sym_LT, + ACTIONS(7448), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148130] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5231), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147574] = 3, - ACTIONS(4441), 1, - anon_sym_LT, + ACTIONS(7767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148146] = 5, + ACTIONS(7988), 1, + anon_sym_SEMI, + ACTIONS(7990), 1, + sym__automatic_semicolon, + STATE(5322), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147588] = 4, - ACTIONS(6444), 1, + ACTIONS(7873), 2, + anon_sym_with, + anon_sym_assert, + [148164] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5052), 1, + STATE(4843), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7955), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147604] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5008), 1, - sym__initializer, + [148180] = 3, + ACTIONS(5241), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, - sym__automatic_semicolon, + ACTIONS(1723), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147620] = 6, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [148194] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5314), 1, + STATE(5454), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147640] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5012), 1, - sym__initializer, + [148214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7444), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147656] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [148226] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5013), 1, + STATE(4724), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147672] = 3, - ACTIONS(4587), 1, - anon_sym_LT, + [148242] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4725), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4589), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147686] = 3, - ACTIONS(4598), 1, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148258] = 6, + ACTIONS(2470), 1, anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_formal_parameters, + STATE(3758), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4600), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147700] = 4, - STATE(5533), 1, - sym_import_attribute, + [148278] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4726), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7944), 2, + ACTIONS(7937), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [147716] = 4, - ACTIONS(6444), 1, + [148294] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5014), 1, + STATE(4883), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7955), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147732] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5335), 1, - sym__call_signature, + [148310] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147752] = 4, - ACTIONS(6444), 1, + ACTIONS(5543), 5, anon_sym_EQ, - STATE(5015), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148322] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4864), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147768] = 6, - ACTIONS(2478), 1, + [148338] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5343), 1, + STATE(4373), 1, sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147788] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5357), 1, - sym__call_signature, + [148358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147808] = 4, - ACTIONS(6444), 1, + ACTIONS(7385), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148370] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5017), 1, + STATE(4727), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147824] = 5, - ACTIONS(7946), 1, - anon_sym_SEMI, - ACTIONS(7948), 1, + [148386] = 3, + ACTIONS(5243), 1, sym__automatic_semicolon, - STATE(5297), 1, - sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - [147842] = 4, - ACTIONS(6444), 1, + ACTIONS(1733), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148400] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5019), 1, + STATE(5187), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147858] = 6, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1495), 1, - anon_sym_LBRACE, - ACTIONS(7373), 1, - anon_sym_extends, - STATE(799), 1, - sym_object_type, - STATE(4807), 1, - sym_extends_type_clause, + [148416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147878] = 2, + ACTIONS(7992), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5597), 5, + ACTIONS(4899), 5, anon_sym_EQ, - anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_QMARK, - [147890] = 3, - ACTIONS(7950), 1, - sym_identifier, + [148440] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4728), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7952), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [147904] = 3, - ACTIONS(7954), 1, - sym_identifier, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7956), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [147918] = 3, - ACTIONS(7960), 1, + ACTIONS(5009), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [148468] = 3, + ACTIONS(4729), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7958), 4, + ACTIONS(4731), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [147932] = 3, - ACTIONS(7964), 1, - anon_sym_LT, + [148482] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7962), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147946] = 2, + ACTIONS(2562), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7966), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [147958] = 6, - ACTIONS(3758), 1, - anon_sym_COLON, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5027), 1, + ACTIONS(2922), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7968), 1, anon_sym_RBRACE, - STATE(5192), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148506] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5111), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147978] = 2, + ACTIONS(7763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 5, + ACTIONS(7994), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147990] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(4348), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148010] = 2, + [148534] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5067), 5, - anon_sym_EQ, + ACTIONS(2518), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148022] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 5, + ACTIONS(2582), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148034] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4710), 1, - sym__initializer, + [148558] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(4143), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148578] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(2546), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148050] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4759), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7970), 3, + ACTIONS(7669), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148066] = 2, + anon_sym_PIPE_RBRACE, + [148602] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 5, + ACTIONS(2550), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148078] = 2, + [148614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7972), 5, + ACTIONS(7996), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148090] = 4, - ACTIONS(6444), 1, + [148626] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4719), 1, + STATE(5012), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148106] = 3, - ACTIONS(4650), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4652), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [148120] = 3, - ACTIONS(4704), 1, - anon_sym_LT, + [148642] = 5, + ACTIONS(3006), 1, + anon_sym_DQUOTE, + ACTIONS(3008), 1, + anon_sym_SQUOTE, + ACTIONS(7998), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [148134] = 2, + STATE(4636), 2, + sym__module_export_name, + sym_string, + [148660] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7879), 1, + anon_sym_abstract, + ACTIONS(8000), 1, + anon_sym_class, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148146] = 2, + [148680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7974), 5, + ACTIONS(2566), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148158] = 6, - ACTIONS(2478), 1, + [148692] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5105), 1, - sym__call_signature, - STATE(5435), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5479), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148178] = 2, + [148712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7976), 5, + ACTIONS(7387), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148190] = 2, + [148724] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5384), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7978), 5, + ACTIONS(8002), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148202] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5034), 1, - sym__initializer, + [148748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7980), 3, + ACTIONS(2570), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148218] = 6, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [148760] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(3811), 1, - sym__call_signature, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5287), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148238] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5117), 1, - sym__initializer, + [148780] = 4, + STATE(5515), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7873), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(8004), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [148796] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2606), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148254] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [148808] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5037), 1, + STATE(4733), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148270] = 4, - ACTIONS(6444), 1, + [148824] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5038), 1, + STATE(4734), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148286] = 4, - ACTIONS(7574), 1, + [148840] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2630), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148852] = 4, + ACTIONS(7480), 1, anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(8006), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, + STATE(5371), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [148302] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4109), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [148868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148322] = 4, - ACTIONS(6444), 1, + ACTIONS(2634), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148880] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1843), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148892] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5039), 1, + STATE(4736), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148338] = 4, - ACTIONS(6444), 1, + [148908] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5041), 1, + STATE(4713), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148354] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7498), 1, - anon_sym_abstract, - ACTIONS(7987), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [148924] = 4, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(8009), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148374] = 4, - ACTIONS(6444), 1, + STATE(5580), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148940] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5118), 1, + STATE(4961), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148390] = 4, - ACTIONS(6444), 1, + [148956] = 6, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(7325), 1, + anon_sym_extends, + STATE(884), 1, + sym_object_type, + STATE(4926), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148976] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5388), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148988] = 3, + ACTIONS(4625), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4627), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [149002] = 6, + ACTIONS(7273), 1, + anon_sym_LBRACE, + ACTIONS(7834), 1, + anon_sym_SEMI, + ACTIONS(7836), 1, + sym__automatic_semicolon, + ACTIONS(7838), 1, + sym__function_signature_automatic_semicolon, + STATE(768), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149022] = 3, + ACTIONS(8014), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8012), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [149036] = 3, + ACTIONS(4774), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4776), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [149050] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5045), 1, + STATE(5055), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7989), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148406] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7991), 1, - anon_sym_class, - ACTIONS(7993), 1, - anon_sym_abstract, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [149066] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4739), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148426] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5048), 1, - sym__initializer, + ACTIONS(7840), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149082] = 6, + ACTIONS(8016), 1, + sym_identifier, + ACTIONS(8018), 1, + anon_sym_GT, + ACTIONS(8020), 1, + sym_jsx_identifier, + STATE(5333), 1, + sym_nested_identifier, + STATE(5855), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + [149102] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8022), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148442] = 2, + anon_sym_PIPE_RBRACE, + [149114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5189), 5, + ACTIONS(5388), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148454] = 6, - ACTIONS(2478), 1, + [149126] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4749), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149142] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4116), 1, + STATE(3764), 1, sym__call_signature, - STATE(5339), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148474] = 6, - ACTIONS(2478), 1, + [149162] = 3, + ACTIONS(4625), 1, anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5557), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148494] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5498), 1, - sym__call_signature, + ACTIONS(4627), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [149176] = 4, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(8024), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148514] = 4, - ACTIONS(6444), 1, + STATE(5371), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149192] = 3, + ACTIONS(4625), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4627), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [149206] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5388), 5, anon_sym_EQ, - STATE(5049), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149218] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4760), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148530] = 6, - ACTIONS(2478), 1, + [149234] = 5, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8027), 1, + anon_sym_BQUOTE, + ACTIONS(8029), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4348), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149252] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5265), 1, + STATE(5489), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148550] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5050), 1, - sym__initializer, + [149272] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, - sym__automatic_semicolon, + ACTIONS(8031), 2, anon_sym_COMMA, - anon_sym_SEMI, - [148566] = 4, - ACTIONS(6444), 1, + anon_sym_RBRACK, + [149290] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5054), 1, + STATE(4761), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148582] = 4, - ACTIONS(6444), 1, + [149306] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5056), 1, + STATE(4763), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148598] = 4, - ACTIONS(6444), 1, + [149322] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5247), 5, anon_sym_EQ, - STATE(5057), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149334] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148614] = 2, + [149350] = 3, + ACTIONS(4774), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5189), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4776), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [149364] = 6, + ACTIONS(7273), 1, + anon_sym_LBRACE, + ACTIONS(7976), 1, + anon_sym_SEMI, + ACTIONS(7978), 1, + sym__automatic_semicolon, + ACTIONS(7980), 1, + sym__function_signature_automatic_semicolon, + STATE(4235), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149384] = 4, + ACTIONS(7480), 1, anon_sym_COLON, - anon_sym_QMARK, - [148626] = 2, + ACTIONS(8033), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5189), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5371), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149400] = 4, + ACTIONS(7480), 1, anon_sym_COLON, - anon_sym_QMARK, - [148638] = 5, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7995), 1, - sym_identifier, + ACTIONS(8036), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5980), 2, - sym__module_export_name, - sym_string, - [148656] = 2, + STATE(5580), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149416] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5524), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5108), 5, + [149436] = 4, + ACTIONS(6504), 1, anon_sym_EQ, + STATE(5082), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7765), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + [149452] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4768), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7945), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149468] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5086), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149484] = 4, + ACTIONS(6420), 1, + anon_sym_LBRACK, + ACTIONS(8039), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4294), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149500] = 4, + ACTIONS(7480), 1, anon_sym_COLON, - anon_sym_QMARK, - [148668] = 5, - ACTIONS(7997), 1, - sym_identifier, - ACTIONS(7999), 1, - anon_sym_LPAREN, - STATE(1217), 1, - sym_decorator_member_expression, + ACTIONS(8041), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1284), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [148686] = 3, - ACTIONS(4410), 1, + STATE(5580), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149516] = 3, + ACTIONS(4671), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 4, + ACTIONS(4673), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148700] = 3, - ACTIONS(4449), 1, + [149530] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4769), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149546] = 3, + ACTIONS(4679), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 4, + ACTIONS(4681), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148714] = 4, - STATE(5547), 1, - sym_import_attribute, + [149560] = 5, + ACTIONS(8044), 1, + anon_sym_BQUOTE, + ACTIONS(8046), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8049), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(8001), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [148730] = 4, - ACTIONS(6444), 1, + STATE(4326), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149578] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5058), 1, + STATE(4770), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148746] = 2, + [149594] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4772), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5479), 5, - anon_sym_EQ, + ACTIONS(7937), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148758] = 4, - ACTIONS(6444), 1, + anon_sym_SEMI, + [149610] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5059), 1, + STATE(4773), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148774] = 6, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, - ACTIONS(8003), 1, - anon_sym_as, - ACTIONS(8005), 1, - anon_sym_RBRACK, + [149626] = 3, + ACTIONS(4625), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4627), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [149640] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_formal_parameters, + STATE(3728), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148794] = 2, + [149660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8007), 5, + ACTIONS(2748), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148806] = 4, - ACTIONS(6338), 1, - anon_sym_DOT, - ACTIONS(8009), 1, - sym_identifier, + [149672] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [148822] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5062), 1, - sym__initializer, + ACTIONS(2792), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(2800), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148838] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [149696] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5064), 1, + STATE(5087), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148854] = 3, - ACTIONS(4565), 1, - sym_identifier, + [149712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4567), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148868] = 3, - ACTIONS(4569), 1, - sym_identifier, + ACTIONS(2808), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4571), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148882] = 4, - ACTIONS(6444), 1, + ACTIONS(2836), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149736] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5065), 1, + STATE(4779), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148898] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3767), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [149752] = 3, + ACTIONS(5235), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148918] = 4, - ACTIONS(6444), 1, + ACTIONS(1861), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149766] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5067), 1, + STATE(4780), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148934] = 3, - ACTIONS(4632), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4634), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148948] = 3, - ACTIONS(4636), 1, + [149782] = 3, + ACTIONS(8052), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4638), 4, + ACTIONS(8054), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [148962] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5074), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7989), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148978] = 4, - ACTIONS(6444), 1, + [149796] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5075), 1, + STATE(4849), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7899), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148994] = 4, - ACTIONS(6444), 1, + [149812] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5076), 1, + STATE(4742), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149010] = 4, - ACTIONS(6444), 1, + [149828] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5200), 1, + STATE(5250), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8011), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149026] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5203), 1, - sym__initializer, + [149844] = 5, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6766), 1, + anon_sym_extends, + ACTIONS(7775), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8013), 3, + ACTIONS(8056), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [149042] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5078), 1, - sym__initializer, + [149862] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149058] = 4, - ACTIONS(6444), 1, + ACTIONS(4890), 5, anon_sym_EQ, - STATE(5080), 1, - sym__initializer, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [149874] = 5, + ACTIONS(7436), 1, + anon_sym_LT, + ACTIONS(8058), 1, + anon_sym_LBRACE, + STATE(4762), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, - sym__automatic_semicolon, + ACTIONS(8060), 2, anon_sym_COMMA, - anon_sym_SEMI, - [149074] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4735), 1, - sym__initializer, + anon_sym_LBRACE_PIPE, + [149892] = 5, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7803), 1, + sym__template_chars, + ACTIONS(8062), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8015), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149090] = 6, - ACTIONS(2478), 1, + STATE(4326), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149910] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(5214), 1, + STATE(3864), 1, sym__call_signature, - STATE(5435), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149110] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5081), 1, - sym__initializer, + [149930] = 5, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6766), 1, + anon_sym_extends, + ACTIONS(7775), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8064), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [149126] = 4, - ACTIONS(6444), 1, + [149948] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5082), 1, + STATE(4781), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149142] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7498), 1, - anon_sym_abstract, - ACTIONS(7691), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149162] = 4, - ACTIONS(6444), 1, + [149964] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4765), 1, + STATE(4782), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149178] = 4, - ACTIONS(6444), 1, + [149980] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5085), 1, + STATE(4784), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149194] = 4, - ACTIONS(6444), 1, + [149996] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5086), 1, + STATE(4785), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149210] = 3, - ACTIONS(4441), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4443), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149224] = 3, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4626), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149238] = 3, - ACTIONS(4441), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4443), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149252] = 4, - ACTIONS(6444), 1, + [150012] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4752), 1, + STATE(4787), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149268] = 3, - ACTIONS(4654), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4656), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149282] = 3, - ACTIONS(4681), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4683), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149296] = 3, - ACTIONS(4441), 1, - sym_identifier, + [150028] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5537), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149310] = 5, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(8019), 1, - sym_identifier, + [150048] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_formal_parameters, + STATE(3766), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4629), 2, - sym__module_export_name, - sym_string, - [149328] = 4, - ACTIONS(6444), 1, + [150068] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5087), 1, + STATE(4850), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(7899), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149344] = 3, - ACTIONS(4587), 1, - sym_identifier, + [150084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4589), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149358] = 3, - ACTIONS(4598), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4600), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149372] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7349), 5, + ACTIONS(7440), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149384] = 6, - ACTIONS(2478), 1, + [150096] = 6, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4378), 1, + STATE(4010), 1, sym__call_signature, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149404] = 2, + [150116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7353), 5, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149416] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4883), 1, - sym__initializer, + [150128] = 3, + ACTIONS(4733), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149432] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5026), 1, - sym__initializer, + ACTIONS(4735), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(7440), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149448] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5092), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [150154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8021), 3, + ACTIONS(8066), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149464] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [150166] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_formal_parameters, + STATE(3959), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150186] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4611), 1, + STATE(4815), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8021), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149480] = 2, + [150202] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(4314), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149492] = 2, + [150222] = 3, + ACTIONS(4625), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149504] = 2, + ACTIONS(4627), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8025), 5, + ACTIONS(2898), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149516] = 4, - ACTIONS(6444), 1, + [150248] = 6, + ACTIONS(7363), 1, anon_sym_EQ, - STATE(5091), 1, + ACTIONS(8068), 1, + anon_sym_COMMA, + ACTIONS(8070), 1, + anon_sym_RBRACE, + STATE(4882), 1, + aux_sym_enum_body_repeat1, + STATE(5587), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8027), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149532] = 4, - ACTIONS(6444), 1, + [150268] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5096), 1, + STATE(5097), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8027), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149548] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5127), 1, - sym__initializer, + [150284] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5506), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149564] = 3, - ACTIONS(4650), 1, - sym_identifier, + [150304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4652), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149578] = 3, - ACTIONS(4704), 1, - sym_identifier, + ACTIONS(7399), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150316] = 3, + ACTIONS(8074), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 4, + ACTIONS(8072), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149592] = 4, - ACTIONS(6444), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150330] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5213), 1, + STATE(4746), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149608] = 2, + [150346] = 5, + ACTIONS(8076), 1, + sym_identifier, + ACTIONS(8078), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5489), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149620] = 6, - ACTIONS(2478), 1, + STATE(2765), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [150364] = 6, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(4456), 1, + STATE(3698), 1, sym__call_signature, - STATE(5435), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149640] = 2, + [150384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 5, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149652] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7993), 1, - anon_sym_abstract, - ACTIONS(8029), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [150396] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(8080), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149672] = 2, + STATE(5684), 2, + sym__module_export_name, + sym_string, + [150414] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5509), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8031), 5, + [150434] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5511), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150454] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2902), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149684] = 6, - ACTIONS(2478), 1, + [150466] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(4009), 1, - sym__call_signature, - STATE(5339), 1, + STATE(5275), 1, sym_type_parameters, + STATE(5527), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149704] = 2, + [150486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 5, + ACTIONS(8082), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149716] = 2, + [150498] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8033), 5, + ACTIONS(2910), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149728] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5097), 1, - sym__initializer, + [150510] = 3, + ACTIONS(4729), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8027), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149744] = 4, - ACTIONS(6444), 1, + ACTIONS(4731), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150524] = 3, + ACTIONS(4733), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4735), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150538] = 3, + ACTIONS(4625), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4627), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150552] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5098), 1, + STATE(5208), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8027), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149760] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - sym__template_chars, - ACTIONS(8035), 1, - anon_sym_BQUOTE, + [150568] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [149778] = 2, + ACTIONS(8084), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7639), 5, + ACTIONS(8086), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149790] = 2, + [150592] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5030), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 5, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149802] = 2, + [150608] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5051), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8037), 5, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149814] = 2, + [150624] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4796), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7396), 5, + ACTIONS(8088), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149826] = 6, - ACTIONS(2478), 1, + [150640] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3446), 1, sym_formal_parameters, - STATE(4389), 1, + STATE(3903), 1, sym__call_signature, - STATE(5435), 1, + STATE(5301), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149846] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(8039), 1, - anon_sym_EQ_GT, + [150660] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4748), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149862] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5471), 1, - sym__call_signature, + ACTIONS(7767), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150676] = 4, + STATE(5572), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149882] = 2, + ACTIONS(7873), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(8090), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [150692] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5107), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 5, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149894] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(8042), 1, - anon_sym_EQ_GT, + [150708] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4799), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149910] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(8045), 1, - anon_sym_EQ_GT, + ACTIONS(8092), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150724] = 3, + ACTIONS(4621), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149926] = 6, - ACTIONS(2478), 1, + ACTIONS(4623), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150738] = 3, + ACTIONS(4675), 1, anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5490), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149946] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5523), 1, - sym__call_signature, + ACTIONS(4677), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150752] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5108), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150768] = 4, + ACTIONS(3536), 1, + anon_sym_COLON, + STATE(5418), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149966] = 4, - ACTIONS(7574), 1, + ACTIONS(3562), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [150784] = 4, + ACTIONS(7480), 1, anon_sym_COLON, - ACTIONS(8048), 1, + ACTIONS(8094), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, + STATE(5371), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149982] = 6, - ACTIONS(1657), 1, - anon_sym_LBRACE, - ACTIONS(7803), 1, - anon_sym_SEMI, - ACTIONS(7805), 1, - sym__automatic_semicolon, - ACTIONS(7807), 1, - sym__function_signature_automatic_semicolon, - STATE(243), 1, - sym_statement_block, + [150800] = 4, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(8097), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150002] = 2, + STATE(5580), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [150816] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7249), 5, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150014] = 4, - ACTIONS(6444), 1, + [150832] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5144), 1, + STATE(5109), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150030] = 2, + [150848] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5293), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150868] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4801), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 5, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150042] = 2, + [150884] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4802), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 5, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150054] = 2, + [150900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 5, + ACTIONS(7450), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150066] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5147), 1, - sym__initializer, + [150912] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5300), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150082] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8051), 1, - anon_sym_BQUOTE, - ACTIONS(8053), 1, - sym__template_chars, + [150932] = 4, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(8100), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [150100] = 4, - ACTIONS(6444), 1, + STATE(5580), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [150948] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5156), 1, + STATE(4811), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8103), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150116] = 4, - ACTIONS(6444), 1, + [150964] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4734), 1, + STATE(4812), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150132] = 2, + [150980] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4816), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2844), 5, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150144] = 2, + [150996] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4817), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 5, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150156] = 4, - ACTIONS(6444), 1, + [151012] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(4464), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151032] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5158), 1, + STATE(5009), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8105), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150172] = 3, - ACTIONS(8055), 1, + [151048] = 3, + ACTIONS(4621), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 4, + ACTIONS(4623), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [150186] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, + [151062] = 3, + ACTIONS(4671), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4673), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [151076] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4818), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8059), 2, + ACTIONS(8092), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150204] = 5, - ACTIONS(7343), 1, + [151092] = 3, + ACTIONS(8074), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8072), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [151106] = 3, + ACTIONS(7863), 1, anon_sym_LT, - ACTIONS(8061), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7865), 4, + sym_jsx_text, anon_sym_LBRACE, - STATE(5149), 1, - sym_type_arguments, + sym_html_character_reference, + anon_sym_LT_SLASH, + [151120] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4851), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8063), 2, + ACTIONS(7899), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [150222] = 4, - ACTIONS(6444), 1, + anon_sym_SEMI, + [151136] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5159), 1, + STATE(4819), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150238] = 4, - ACTIONS(6444), 1, + [151152] = 6, + ACTIONS(8107), 1, + sym_identifier, + ACTIONS(8109), 1, + anon_sym_GT, + ACTIONS(8111), 1, + sym_jsx_identifier, + STATE(5439), 1, + sym_nested_identifier, + STATE(5641), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151172] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5535), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151192] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4777), 1, + STATE(4820), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150254] = 4, - ACTIONS(6444), 1, + [151208] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4964), 1, + STATE(4821), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150270] = 4, - ACTIONS(6444), 1, + [151224] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5170), 1, + STATE(4822), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150286] = 4, - ACTIONS(6444), 1, + [151240] = 5, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8113), 1, + anon_sym_BQUOTE, + ACTIONS(8115), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4447), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [151258] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5171), 1, + STATE(4823), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150302] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4413), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [151274] = 3, + ACTIONS(4675), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150322] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4388), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + ACTIONS(4677), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [151288] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4824), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150342] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5470), 1, - sym__call_signature, + ACTIONS(8092), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151304] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8117), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151316] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5162), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7765), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150362] = 6, - ACTIONS(2478), 1, + ACTIONS(8119), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151344] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3851), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5355), 1, + STATE(5340), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150382] = 6, - ACTIONS(1657), 1, - anon_sym_LBRACE, - ACTIONS(7774), 1, - anon_sym_SEMI, - ACTIONS(7776), 1, - sym__automatic_semicolon, - ACTIONS(7778), 1, - sym__function_signature_automatic_semicolon, - STATE(237), 1, - sym_statement_block, + [151364] = 3, + ACTIONS(4679), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150402] = 4, - ACTIONS(6444), 1, + ACTIONS(4681), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [151378] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5172), 1, + STATE(5234), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150418] = 2, + [151394] = 4, + ACTIONS(6408), 1, + anon_sym_DOT, + ACTIONS(8121), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6406), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -260459,17537 +261544,17628 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150430] = 2, + [151422] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(4023), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2904), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150442] = 3, - ACTIONS(7723), 1, + [151442] = 6, + ACTIONS(2470), 1, anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5468), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150456] = 4, - ACTIONS(6444), 1, + [151462] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5208), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150472] = 3, - ACTIONS(8067), 1, - anon_sym_LT, + [151478] = 5, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7803), 1, + sym__template_chars, + ACTIONS(8123), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8065), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150486] = 4, - ACTIONS(6444), 1, + STATE(4326), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [151496] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4808), 1, + STATE(4826), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150502] = 3, - ACTIONS(8069), 1, + [151512] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_LPAREN, + STATE(3446), 1, + sym_formal_parameters, + STATE(3857), 1, + sym__call_signature, + STATE(5301), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151532] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5550), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151552] = 3, + ACTIONS(4452), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8071), 4, + ACTIONS(4454), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [150516] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4621), 1, - sym__initializer, + [151566] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3851), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_parameters, + STATE(5552), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150532] = 4, - ACTIONS(6444), 1, + [151586] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4626), 1, + STATE(5240), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150548] = 5, - ACTIONS(6617), 1, + [151602] = 5, + ACTIONS(6762), 1, anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6766), 1, anon_sym_extends, + ACTIONS(7775), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8073), 2, + ACTIONS(8125), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151620] = 6, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4546), 1, + anon_sym_EQ, + ACTIONS(5082), 1, anon_sym_COMMA, - anon_sym_GT, - [150566] = 4, - ACTIONS(6444), 1, + ACTIONS(8127), 1, + anon_sym_RBRACE, + STATE(4664), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151640] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4627), 1, + STATE(5038), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8129), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150582] = 4, - ACTIONS(6444), 1, + [151656] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(5110), 1, + STATE(5242), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150598] = 3, - ACTIONS(8077), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8075), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150612] = 2, + [151672] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4831), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 5, + ACTIONS(8103), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [150624] = 4, - ACTIONS(1699), 1, - anon_sym_DOT, - ACTIONS(4250), 1, - anon_sym_LBRACE, + [151688] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4834), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 3, + ACTIONS(8092), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [150640] = 4, - ACTIONS(6444), 1, + anon_sym_SEMI, + [151704] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4635), 1, + STATE(4835), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150656] = 2, + [151720] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4836), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2746), 5, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150668] = 4, - ACTIONS(1791), 1, - anon_sym_DOT, - ACTIONS(4250), 1, - anon_sym_LBRACE, + [151736] = 3, + ACTIONS(8131), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 3, + ACTIONS(3546), 4, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [150684] = 4, - ACTIONS(6444), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [151750] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4636), 1, + STATE(5243), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150700] = 2, + [151766] = 6, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(7815), 1, + anon_sym_SEMI, + ACTIONS(7817), 1, + sym__automatic_semicolon, + ACTIONS(7819), 1, + sym__function_signature_automatic_semicolon, + STATE(251), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2916), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150712] = 2, + [151786] = 3, + ACTIONS(4456), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8079), 5, - anon_sym_EQ, + ACTIONS(4458), 4, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [150724] = 4, - ACTIONS(6444), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [151800] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4637), 1, + STATE(5245), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150740] = 3, - ACTIONS(8083), 1, + [151816] = 3, + ACTIONS(4452), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8081), 4, + ACTIONS(4454), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [150754] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4638), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [151830] = 5, + ACTIONS(8133), 1, anon_sym_SEMI, - [150770] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4639), 1, - sym__initializer, + ACTIONS(8135), 1, + sym__automatic_semicolon, + STATE(5586), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150786] = 3, - ACTIONS(7723), 1, + ACTIONS(7873), 2, + anon_sym_with, + anon_sym_assert, + [151848] = 3, + ACTIONS(4456), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 4, + ACTIONS(4458), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [150800] = 3, - ACTIONS(4863), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5242), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [150814] = 4, - ACTIONS(6444), 1, + [151862] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4845), 1, + STATE(5141), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8137), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150830] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4651), 1, - sym__initializer, + [151878] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8139), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150846] = 6, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [151890] = 5, + ACTIONS(7801), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8141), 1, + anon_sym_BQUOTE, + ACTIONS(8143), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4112), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [151908] = 6, + ACTIONS(8145), 1, + sym_identifier, + ACTIONS(8147), 1, + anon_sym_GT, + ACTIONS(8149), 1, + sym_jsx_identifier, + STATE(5490), 1, + sym_nested_identifier, + STATE(5758), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151928] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3318), 1, sym_formal_parameters, - STATE(3915), 1, + STATE(5177), 1, sym__call_signature, - STATE(5339), 1, + STATE(5270), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150866] = 4, - ACTIONS(6444), 1, + [151948] = 4, + ACTIONS(6408), 1, + anon_sym_DOT, + ACTIONS(8151), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6406), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151964] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4851), 1, + STATE(4837), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150882] = 4, - ACTIONS(6444), 1, + [151980] = 6, + ACTIONS(4156), 1, + anon_sym_LBRACE, + ACTIONS(7815), 1, + anon_sym_SEMI, + ACTIONS(7817), 1, + sym__automatic_semicolon, + ACTIONS(7819), 1, + sym__function_signature_automatic_semicolon, + STATE(2221), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152000] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(8153), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5283), 2, + sym__module_export_name, + sym_string, + [152018] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4864), 1, + STATE(4838), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150898] = 4, - ACTIONS(6444), 1, + [152034] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4677), 1, + STATE(4839), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150914] = 3, - ACTIONS(8087), 1, + [152050] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3318), 1, + sym_formal_parameters, + STATE(4907), 1, + sym__call_signature, + STATE(5270), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152070] = 3, + ACTIONS(4756), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8085), 4, + ACTIONS(4758), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [150928] = 2, + [152084] = 3, + ACTIONS(4762), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4946), 5, + ACTIONS(4764), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [152098] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [150940] = 2, + STATE(4910), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4933), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [150952] = 4, - ACTIONS(6444), 1, + ACTIONS(7763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152114] = 4, + ACTIONS(6504), 1, anon_sym_EQ, - STATE(4802), 1, + STATE(5110), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8089), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150968] = 4, - ACTIONS(6338), 1, - anon_sym_DOT, - ACTIONS(8091), 1, - sym_identifier, + [152130] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4840), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [150984] = 2, + ACTIONS(8092), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152146] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(4841), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2652), 5, + ACTIONS(8092), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150996] = 2, + [152162] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5239), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8093), 5, + ACTIONS(7840), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151008] = 2, + [152178] = 4, + ACTIONS(6504), 1, + anon_sym_EQ, + STATE(5244), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2656), 5, + ACTIONS(7767), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151020] = 2, + [152194] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 5, + ACTIONS(7385), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [151032] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(4867), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151052] = 4, - ACTIONS(6444), 1, + [152206] = 4, + ACTIONS(7363), 1, anon_sym_EQ, - STATE(4688), 1, + STATE(5587), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, + ACTIONS(8155), 2, anon_sym_COMMA, - anon_sym_SEMI, - [151068] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5079), 1, - sym__initializer, + anon_sym_RBRACE, + [152221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8157), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [151084] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5244), 1, - sym__call_signature, - ACTIONS(5), 2, + [152232] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8159), 1, + anon_sym_DQUOTE, + STATE(4497), 1, + aux_sym_string_repeat1, + ACTIONS(8161), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152249] = 5, + ACTIONS(3), 1, sym_comment, - [151104] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8159), 1, + anon_sym_SQUOTE, + STATE(4498), 1, + aux_sym_string_repeat2, + ACTIONS(8163), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152266] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8095), 1, - sym_html_character_reference, - ACTIONS(8097), 1, + ACTIONS(8165), 1, anon_sym_DQUOTE, - ACTIONS(8099), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4522), 1, - aux_sym__jsx_string_repeat1, - [151123] = 5, + STATE(4618), 1, + aux_sym_string_repeat1, + ACTIONS(8167), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152283] = 4, + ACTIONS(8169), 1, + anon_sym_from, + STATE(5354), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5056), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152298] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8101), 1, + ACTIONS(8171), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4623), 1, aux_sym_string_repeat1, - ACTIONS(8103), 2, + ACTIONS(8173), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151140] = 5, + [152315] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8101), 1, + ACTIONS(8171), 1, anon_sym_SQUOTE, - STATE(4572), 1, + STATE(4624), 1, aux_sym_string_repeat2, - ACTIONS(8105), 2, + ACTIONS(8175), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151157] = 4, - ACTIONS(8109), 1, + [152332] = 4, + ACTIONS(8179), 1, anon_sym_COMMA, - STATE(4464), 1, + STATE(4542), 1, aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8107), 2, + ACTIONS(8177), 2, anon_sym_LBRACE, anon_sym_implements, - [151172] = 5, - ACTIONS(3938), 1, + [152347] = 3, + ACTIONS(6408), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6406), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [152360] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8165), 1, + anon_sym_SQUOTE, + STATE(4619), 1, + aux_sym_string_repeat2, + ACTIONS(8181), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152377] = 5, + ACTIONS(3495), 1, anon_sym_LPAREN, - ACTIONS(8112), 1, + ACTIONS(6386), 1, anon_sym_LT, - STATE(1535), 1, + STATE(3111), 1, sym_arguments, - STATE(1536), 1, + STATE(3225), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151189] = 5, - ACTIONS(6617), 1, + [152394] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8114), 1, + ACTIONS(8183), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151206] = 5, + [152411] = 5, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(8116), 1, + ACTIONS(8185), 1, anon_sym_export, - STATE(1253), 1, + STATE(1225), 1, aux_sym_export_statement_repeat1, - STATE(1290), 1, + STATE(1322), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151223] = 5, - ACTIONS(3443), 1, + [152428] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(8187), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152445] = 5, + ACTIONS(3445), 1, anon_sym_LPAREN, - ACTIONS(6291), 1, + ACTIONS(6351), 1, anon_sym_LT, - STATE(2880), 1, + STATE(2898), 1, sym_arguments, - STATE(2987), 1, + STATE(2918), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151240] = 5, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(7440), 1, - anon_sym_LBRACE, - ACTIONS(7442), 1, - anon_sym_LBRACE_PIPE, - STATE(4602), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151257] = 4, - ACTIONS(8118), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8121), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151272] = 5, - ACTIONS(6617), 1, + [152462] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8123), 1, + ACTIONS(8189), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151289] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, + [152479] = 4, + ACTIONS(8191), 1, + anon_sym_EQ, + STATE(5325), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8127), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151304] = 4, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5440), 1, - sym__from_clause, + ACTIONS(6844), 2, + anon_sym_in, + anon_sym_of, + [152494] = 4, + ACTIONS(8193), 1, + anon_sym_COMMA, + STATE(4568), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8131), 2, + ACTIONS(8195), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151319] = 4, - ACTIONS(8135), 1, - anon_sym_COMMA, - STATE(4600), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8133), 2, - anon_sym_LBRACE, - anon_sym_implements, - [151334] = 5, + [152509] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8137), 1, + ACTIONS(8197), 1, anon_sym_DQUOTE, - STATE(4546), 1, + STATE(4513), 1, aux_sym_string_repeat1, - ACTIONS(8139), 2, + ACTIONS(8199), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151351] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4472), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8141), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151366] = 4, - ACTIONS(7237), 1, - anon_sym_EQ, - STATE(5441), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, + [152526] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [151381] = 4, - ACTIONS(4967), 1, - anon_sym_COMMA, - STATE(4584), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(7269), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151396] = 5, - ACTIONS(6617), 1, + ACTIONS(8197), 1, + anon_sym_SQUOTE, + STATE(4514), 1, + aux_sym_string_repeat2, + ACTIONS(8201), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152543] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8145), 1, + ACTIONS(8203), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151413] = 5, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - ACTIONS(8149), 1, - anon_sym_GT, - STATE(5384), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, + [152560] = 5, + ACTIONS(3), 1, sym_comment, - [151430] = 5, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(8151), 1, - anon_sym_LT, - STATE(1901), 1, - sym_arguments, - STATE(1902), 1, - sym_type_arguments, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8205), 1, + anon_sym_DQUOTE, + STATE(4623), 1, + aux_sym_string_repeat1, + ACTIONS(8173), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152577] = 5, + ACTIONS(3), 1, sym_comment, - [151447] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3637), 1, - sym_formal_parameters, - STATE(5422), 1, - sym_type_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [151464] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8153), 1, - anon_sym_RPAREN, + ACTIONS(8205), 1, + anon_sym_SQUOTE, + STATE(4624), 1, + aux_sym_string_repeat2, + ACTIONS(8175), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152594] = 4, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4546), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151481] = 4, - ACTIONS(8125), 1, + ACTIONS(8207), 2, anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACE, + [152609] = 5, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(8209), 1, + anon_sym_LT, + STATE(1599), 1, + sym_arguments, + STATE(1600), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151496] = 5, - ACTIONS(6617), 1, + [152626] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8157), 1, - anon_sym_RBRACK, + ACTIONS(8211), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151513] = 5, - ACTIONS(2478), 1, + [152643] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(5444), 1, + STATE(5429), 1, sym_type_parameters, - STATE(5885), 1, + STATE(5615), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151530] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4517), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8159), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151545] = 5, - ACTIONS(6617), 1, + [152660] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8161), 1, + ACTIONS(8213), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151562] = 4, - ACTIONS(8125), 1, + [152677] = 4, + ACTIONS(8193), 1, anon_sym_COMMA, - STATE(4470), 1, + STATE(4570), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 2, + ACTIONS(8215), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151577] = 5, - ACTIONS(6617), 1, + [152692] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8165), 1, + ACTIONS(8217), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151594] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5461), 1, - sym_type_parameters, - STATE(5718), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151611] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5442), 1, - sym_type_parameters, - STATE(5669), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151628] = 3, - ACTIONS(6068), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [151641] = 3, - ACTIONS(8167), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8169), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [151654] = 5, - ACTIONS(3467), 1, - anon_sym_LPAREN, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(3046), 1, - sym_arguments, - STATE(3197), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151671] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4489), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8172), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151686] = 5, + [152709] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8174), 1, + ACTIONS(8219), 1, anon_sym_DQUOTE, - STATE(4501), 1, + STATE(4524), 1, aux_sym_string_repeat1, - ACTIONS(8176), 2, + ACTIONS(8221), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151703] = 5, + [152726] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8174), 1, + ACTIONS(8219), 1, anon_sym_SQUOTE, - STATE(4503), 1, + STATE(4525), 1, aux_sym_string_repeat2, - ACTIONS(8178), 2, + ACTIONS(8223), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151720] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5452), 1, - sym_type_parameters, - STATE(5763), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151737] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8180), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151754] = 5, + [152743] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8182), 1, + ACTIONS(8225), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4623), 1, aux_sym_string_repeat1, - ACTIONS(8103), 2, + ACTIONS(8173), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151771] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5277), 1, - sym_type_parameters, - STATE(5920), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151788] = 5, + [152760] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8182), 1, + ACTIONS(8225), 1, anon_sym_SQUOTE, - STATE(4572), 1, + STATE(4624), 1, aux_sym_string_repeat2, - ACTIONS(8105), 2, + ACTIONS(8175), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151805] = 5, - ACTIONS(7271), 1, + [152777] = 5, + ACTIONS(6440), 1, + anon_sym_LPAREN, + ACTIONS(6446), 1, + anon_sym_LT, + STATE(3249), 1, + sym_arguments, + STATE(3357), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152794] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(7273), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8184), 1, - anon_sym_QMARK, + ACTIONS(8227), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151822] = 5, - ACTIONS(6617), 1, + [152811] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8186), 1, + ACTIONS(8229), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151839] = 4, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5324), 1, - sym__from_clause, + [152828] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(8231), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5166), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151854] = 5, + [152845] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8233), 1, + anon_sym_DQUOTE, + STATE(4532), 1, + aux_sym_string_repeat1, + ACTIONS(8235), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152862] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8137), 1, + ACTIONS(8233), 1, anon_sym_SQUOTE, - STATE(4548), 1, + STATE(4533), 1, aux_sym_string_repeat2, - ACTIONS(8188), 2, + ACTIONS(8237), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151871] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8190), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151888] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8192), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, + [152879] = 5, + ACTIONS(3), 1, sym_comment, - [151905] = 2, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8239), 1, + anon_sym_DQUOTE, + STATE(4623), 1, + aux_sym_string_repeat1, + ACTIONS(8173), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152896] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8194), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [151916] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5278), 1, - sym_type_parameters, - STATE(5755), 1, - sym_formal_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [151933] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5417), 1, - sym_type_parameters, - STATE(5614), 1, - sym_formal_parameters, + ACTIONS(8239), 1, + anon_sym_SQUOTE, + STATE(4624), 1, + aux_sym_string_repeat2, + ACTIONS(8175), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152913] = 4, + ACTIONS(6363), 1, + anon_sym_EQ, + STATE(5533), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151950] = 5, - ACTIONS(1779), 1, + ACTIONS(8241), 2, anon_sym_COMMA, - ACTIONS(8196), 1, - anon_sym_EQ, - ACTIONS(8198), 1, - anon_sym_RBRACK, - STATE(4620), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, + anon_sym_GT, + [152928] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8243), 1, + anon_sym_DQUOTE, + STATE(4537), 1, + aux_sym_string_repeat1, + ACTIONS(8245), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152945] = 5, + ACTIONS(3), 1, sym_comment, - [151967] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8200), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8243), 1, + anon_sym_SQUOTE, + STATE(4538), 1, + aux_sym_string_repeat2, + ACTIONS(8247), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152962] = 5, + ACTIONS(3), 1, sym_comment, - [151984] = 5, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6692), 1, - anon_sym_LPAREN, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8249), 1, + anon_sym_DQUOTE, + STATE(4623), 1, + aux_sym_string_repeat1, + ACTIONS(8173), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152979] = 5, + ACTIONS(3), 1, sym_comment, - [152001] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8249), 1, + anon_sym_SQUOTE, + STATE(4624), 1, + aux_sym_string_repeat2, + ACTIONS(8175), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152996] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8251), 1, + anon_sym_class, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8202), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152016] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, + [153013] = 3, + ACTIONS(8253), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8204), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152031] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6406), 3, anon_sym_LPAREN, - STATE(5481), 1, - sym_type_parameters, - STATE(5970), 1, - sym_formal_parameters, + anon_sym_QMARK_DOT, + anon_sym_LT, + [153026] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8255), 1, + anon_sym_class, + STATE(1225), 1, + aux_sym_export_statement_repeat1, + STATE(1322), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152048] = 5, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, - anon_sym_LT, - STATE(3186), 1, - sym_arguments, - STATE(3296), 1, - sym_type_arguments, + [153043] = 4, + ACTIONS(8259), 1, + anon_sym_COMMA, + STATE(4542), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152065] = 5, - ACTIONS(6617), 1, + ACTIONS(8257), 2, + anon_sym_LBRACE, + anon_sym_implements, + [153058] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8206), 1, - anon_sym_RPAREN, + ACTIONS(8262), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152082] = 3, - ACTIONS(7932), 1, - anon_sym_RBRACE, + [153075] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3718), 1, + sym_formal_parameters, + STATE(5431), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152095] = 6, + [153092] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8208), 1, + ACTIONS(8264), 1, sym_html_character_reference, - ACTIONS(8210), 1, + ACTIONS(8267), 1, anon_sym_DQUOTE, - ACTIONS(8212), 1, + ACTIONS(8269), 1, sym_unescaped_double_jsx_string_fragment, - STATE(4547), 1, + STATE(4545), 1, aux_sym__jsx_string_repeat1, - [152114] = 6, + [153111] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8210), 1, - anon_sym_SQUOTE, - ACTIONS(8214), 1, + ACTIONS(8272), 1, sym_html_character_reference, - ACTIONS(8216), 1, + ACTIONS(8275), 1, + anon_sym_SQUOTE, + ACTIONS(8277), 1, sym_unescaped_single_jsx_string_fragment, - STATE(4551), 1, + STATE(4546), 1, aux_sym__jsx_string_repeat2, - [152133] = 5, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - ACTIONS(8218), 1, - anon_sym_GT, - STATE(5384), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152150] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8220), 1, - anon_sym_RBRACK, + [153130] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5463), 1, + sym_type_parameters, + STATE(5698), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152167] = 2, + [153147] = 3, + ACTIONS(8039), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6001), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152178] = 5, - ACTIONS(6617), 1, + ACTIONS(4294), 3, anon_sym_AMP, - ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8222), 1, - anon_sym_RBRACK, + [153160] = 5, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(8280), 1, + sym_identifier, + ACTIONS(8282), 1, + anon_sym_GT, + STATE(5430), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152195] = 5, - ACTIONS(8224), 1, - anon_sym_LBRACE, - ACTIONS(8226), 1, - anon_sym_COMMA, - ACTIONS(8229), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + [153177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152212] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8231), 1, - anon_sym_DQUOTE, - STATE(4536), 1, - aux_sym_string_repeat1, - ACTIONS(8233), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8284), 4, + sym__template_chars, sym_escape_sequence, - [152229] = 5, - ACTIONS(1779), 1, - anon_sym_COMMA, - ACTIONS(8196), 1, - anon_sym_EQ, - ACTIONS(8235), 1, - anon_sym_RBRACK, - STATE(5175), 1, - aux_sym_array_pattern_repeat1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [153188] = 5, + ACTIONS(6351), 1, + anon_sym_LT, + ACTIONS(6728), 1, + anon_sym_LPAREN, + STATE(2898), 1, + sym_arguments, + STATE(2918), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152246] = 4, - ACTIONS(7237), 1, - anon_sym_EQ, - STATE(5562), 1, - sym__initializer, + [153205] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5505), 1, + sym_type_parameters, + STATE(5825), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8237), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [152261] = 5, - ACTIONS(6617), 1, + [153222] = 5, + ACTIONS(7354), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(7356), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(7358), 1, anon_sym_extends, - ACTIONS(8239), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152278] = 4, - ACTIONS(6303), 1, - anon_sym_EQ, - STATE(5535), 1, - sym_default_type, + ACTIONS(8286), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8241), 2, + [153239] = 4, + ACTIONS(8288), 1, anon_sym_COMMA, - anon_sym_GT, - [152293] = 3, - ACTIONS(6338), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [152306] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8243), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8245), 1, - anon_sym_DQUOTE, - STATE(4567), 1, - aux_sym_string_repeat1, - ACTIONS(8103), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152340] = 5, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(8247), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + STATE(4554), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152357] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8245), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152374] = 5, - ACTIONS(6617), 1, + ACTIONS(7550), 2, + anon_sym_LBRACE, + anon_sym_GT, + [153254] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8249), 1, + ACTIONS(8291), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152391] = 4, - ACTIONS(7237), 1, - anon_sym_EQ, - STATE(5229), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8251), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [152406] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8253), 1, - anon_sym_SQUOTE, - STATE(4545), 1, - aux_sym_string_repeat2, - ACTIONS(8255), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152423] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8257), 1, - anon_sym_COLON, + [153271] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5313), 1, + sym_type_parameters, + STATE(5699), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152440] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8259), 1, - anon_sym_RBRACK, + [153288] = 4, + ACTIONS(6398), 1, + anon_sym_STAR, + ACTIONS(6402), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152457] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8261), 1, - anon_sym_DQUOTE, - STATE(4567), 1, - aux_sym_string_repeat1, - ACTIONS(8103), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152474] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8261), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8263), 1, - anon_sym_DQUOTE, - STATE(4567), 1, - aux_sym_string_repeat1, - ACTIONS(8103), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152508] = 6, + STATE(6000), 2, + sym_namespace_import, + sym_named_imports, + [153303] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8265), 1, + ACTIONS(8293), 1, sym_html_character_reference, - ACTIONS(8268), 1, + ACTIONS(8295), 1, anon_sym_DQUOTE, - ACTIONS(8270), 1, + ACTIONS(8297), 1, sym_unescaped_double_jsx_string_fragment, - STATE(4547), 1, + STATE(4614), 1, aux_sym__jsx_string_repeat1, - [152527] = 5, + [153322] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8263), 1, + ACTIONS(8295), 1, anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152544] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5329), 1, - sym_type_parameters, - STATE(5820), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152561] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5330), 1, - sym_type_parameters, - STATE(5807), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152578] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8273), 1, + ACTIONS(8299), 1, sym_html_character_reference, - ACTIONS(8276), 1, - anon_sym_SQUOTE, - ACTIONS(8278), 1, + ACTIONS(8301), 1, sym_unescaped_single_jsx_string_fragment, - STATE(4551), 1, + STATE(4615), 1, aux_sym__jsx_string_repeat2, - [152597] = 5, - ACTIONS(7271), 1, + [153341] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(7273), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8281), 1, - anon_sym_QMARK, + ACTIONS(8303), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8283), 1, - anon_sym_DQUOTE, - STATE(4557), 1, - aux_sym_string_repeat1, - ACTIONS(8285), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152631] = 4, - ACTIONS(6303), 1, - anon_sym_EQ, - STATE(5537), 1, - sym_default_type, + [153358] = 5, + ACTIONS(1665), 1, + anon_sym_while, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(6376), 1, + anon_sym_DOT, + STATE(820), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8287), 2, - anon_sym_COMMA, - anon_sym_GT, - [152646] = 2, + [153375] = 5, + ACTIONS(1665), 1, + anon_sym_while, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(6744), 1, + anon_sym_DOT, + STATE(820), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8289), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [152657] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [153392] = 5, + ACTIONS(8305), 1, + sym_identifier, + STATE(4347), 1, + sym_nested_type_identifier, + STATE(5153), 1, + sym_generic_type, + STATE(5823), 1, + sym_nested_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8283), 1, - anon_sym_SQUOTE, - STATE(4558), 1, - aux_sym_string_repeat2, - ACTIONS(8291), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152674] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [153409] = 5, + ACTIONS(7432), 1, + anon_sym_COMMA, + ACTIONS(8307), 1, + anon_sym_LBRACE, + ACTIONS(8309), 1, + anon_sym_LBRACE_PIPE, + STATE(4616), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8293), 1, - anon_sym_DQUOTE, - STATE(4567), 1, - aux_sym_string_repeat1, - ACTIONS(8103), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152691] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [153426] = 5, + ACTIONS(7432), 1, + anon_sym_COMMA, + ACTIONS(8311), 1, + anon_sym_LBRACE, + ACTIONS(8313), 1, + anon_sym_LBRACE_PIPE, + STATE(4616), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8293), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152708] = 4, - ACTIONS(8295), 1, + sym_comment, + [153443] = 5, + ACTIONS(7432), 1, anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(8311), 1, + anon_sym_LBRACE, + ACTIONS(8313), 1, + anon_sym_LBRACE_PIPE, + STATE(4616), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7675), 2, - anon_sym_LBRACE, - anon_sym_GT, - [152723] = 5, - ACTIONS(6617), 1, + [153460] = 5, + ACTIONS(7354), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(7356), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(7358), 1, anon_sym_extends, - ACTIONS(8298), 1, - anon_sym_RBRACK, + ACTIONS(8315), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152740] = 2, + [153477] = 4, + ACTIONS(8193), 1, + anon_sym_COMMA, + STATE(4571), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8300), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152751] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(8317), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153492] = 4, + ACTIONS(8169), 1, + anon_sym_from, + STATE(5410), 1, + sym__from_clause, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8231), 1, - anon_sym_SQUOTE, - STATE(4538), 1, - aux_sym_string_repeat2, - ACTIONS(8302), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152768] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8304), 1, - anon_sym_DQUOTE, + ACTIONS(8319), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153507] = 4, + ACTIONS(8193), 1, + anon_sym_COMMA, STATE(4571), 1, - aux_sym_string_repeat1, - ACTIONS(8306), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152785] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8308), 1, - anon_sym_COLON, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152802] = 5, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - ACTIONS(8310), 1, - anon_sym_GT, - STATE(5384), 1, - sym_type_parameter, + ACTIONS(8321), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153522] = 4, + ACTIONS(8323), 1, + anon_sym_COMMA, + STATE(4571), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152819] = 4, - ACTIONS(8312), 1, + ACTIONS(8326), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153537] = 4, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(4566), 1, - aux_sym_array_repeat1, + STATE(4610), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5567), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [152834] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(7411), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153552] = 5, + ACTIONS(7432), 1, + anon_sym_COMMA, + ACTIONS(7677), 1, + anon_sym_LBRACE, + ACTIONS(7679), 1, + anon_sym_LBRACE_PIPE, + STATE(4566), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8315), 1, - anon_sym_DQUOTE, - STATE(4567), 1, - aux_sym_string_repeat1, - ACTIONS(8317), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152851] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8304), 1, - anon_sym_SQUOTE, - STATE(4581), 1, - aux_sym_string_repeat2, - ACTIONS(8320), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152868] = 3, - ACTIONS(8322), 1, - anon_sym_EQ_GT, + [153569] = 4, + ACTIONS(8179), 1, + anon_sym_COMMA, + STATE(4499), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [152881] = 4, - ACTIONS(8324), 1, + ACTIONS(8328), 2, + anon_sym_LBRACE, + anon_sym_implements, + [153584] = 4, + ACTIONS(6363), 1, anon_sym_EQ, - STATE(5306), 1, - sym__initializer, + STATE(5328), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [152896] = 5, + ACTIONS(8330), 2, + anon_sym_COMMA, + anon_sym_GT, + [153599] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8326), 1, + ACTIONS(8332), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4591), 1, aux_sym_string_repeat1, - ACTIONS(8103), 2, + ACTIONS(8334), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152913] = 5, + [153616] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8328), 1, + ACTIONS(8332), 1, anon_sym_SQUOTE, - STATE(4572), 1, + STATE(4592), 1, aux_sym_string_repeat2, - ACTIONS(8330), 2, + ACTIONS(8336), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152930] = 5, - ACTIONS(1653), 1, - anon_sym_while, - ACTIONS(2444), 1, - anon_sym_LBRACE, - ACTIONS(6316), 1, - anon_sym_DOT, - STATE(911), 1, - sym_statement_block, + [153633] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5308), 1, + sym_type_parameters, + STATE(5757), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152947] = 5, - ACTIONS(1653), 1, - anon_sym_while, - ACTIONS(2444), 1, - anon_sym_LBRACE, - ACTIONS(6651), 1, - anon_sym_DOT, - STATE(911), 1, - sym_statement_block, + [153650] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5311), 1, + sym_type_parameters, + STATE(5648), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152964] = 4, - ACTIONS(8129), 1, + [153667] = 4, + ACTIONS(8169), 1, anon_sym_from, - STATE(5353), 1, + STATE(5383), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4999), 2, + ACTIONS(8338), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152979] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, - ACTIONS(8333), 1, - anon_sym_QMARK, + [153682] = 5, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(8280), 1, + sym_identifier, + ACTIONS(8340), 1, + anon_sym_GT, + STATE(5430), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152996] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5362), 1, - sym_type_parameters, - STATE(5645), 1, - sym_formal_parameters, + [153699] = 3, + ACTIONS(6150), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153013] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3786), 3, anon_sym_LPAREN, - STATE(5364), 1, - sym_type_parameters, - STATE(5797), 1, - sym_formal_parameters, + anon_sym_LT, + anon_sym_QMARK, + [153712] = 3, + ACTIONS(8342), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153030] = 4, - ACTIONS(6328), 1, - anon_sym_STAR, - ACTIONS(6332), 1, - anon_sym_LBRACE, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [153725] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(8344), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5982), 2, - sym_namespace_import, - sym_named_imports, - [153045] = 5, - ACTIONS(7271), 1, + [153742] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(7273), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8335), 1, - anon_sym_QMARK, + ACTIONS(8346), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8326), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [153079] = 4, - ACTIONS(3758), 1, - anon_sym_COLON, - ACTIONS(4429), 1, + [153759] = 4, + ACTIONS(7363), 1, anon_sym_EQ, + STATE(5399), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8337), 2, + ACTIONS(8348), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [153094] = 5, - ACTIONS(7271), 1, + anon_sym_RPAREN, + [153774] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(7273), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8339), 1, - anon_sym_QMARK, + ACTIONS(8350), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153111] = 4, - ACTIONS(8341), 1, + [153791] = 4, + ACTIONS(8193), 1, anon_sym_COMMA, - STATE(4584), 1, - aux_sym_sequence_expression_repeat1, + STATE(4601), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(8352), 2, sym__automatic_semicolon, anon_sym_SEMI, - [153126] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8097), 1, - anon_sym_SQUOTE, - ACTIONS(8344), 1, - sym_html_character_reference, - ACTIONS(8346), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4523), 1, - aux_sym__jsx_string_repeat2, - [153145] = 3, - ACTIONS(8348), 1, - anon_sym_DOT, + [153806] = 4, + ACTIONS(8193), 1, + anon_sym_COMMA, + STATE(4603), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [153158] = 4, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5521), 1, - sym__from_clause, + ACTIONS(8354), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153821] = 5, + ACTIONS(1707), 1, + anon_sym_COMMA, + ACTIONS(8356), 1, + anon_sym_EQ, + ACTIONS(8358), 1, + anon_sym_RBRACK, + STATE(5050), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153173] = 5, + [153838] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8352), 1, + ACTIONS(8360), 1, anon_sym_DQUOTE, - STATE(4462), 1, + STATE(4623), 1, aux_sym_string_repeat1, - ACTIONS(8354), 2, + ACTIONS(8173), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [153190] = 5, - ACTIONS(6617), 1, + [153855] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8360), 1, + anon_sym_SQUOTE, + STATE(4624), 1, + aux_sym_string_repeat2, + ACTIONS(8175), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153872] = 3, + ACTIONS(8362), 1, + sym_escape_sequence, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8364), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [153885] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8356), 1, + ACTIONS(8367), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153207] = 5, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(8358), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [153902] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(8369), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153224] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8352), 1, - anon_sym_SQUOTE, - STATE(4463), 1, - aux_sym_string_repeat2, - ACTIONS(8360), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [153241] = 5, - ACTIONS(2478), 1, + [153919] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(5561), 1, + STATE(5353), 1, sym_type_parameters, - STATE(5673), 1, + STATE(5614), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153258] = 5, - ACTIONS(2478), 1, + [153936] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(5564), 1, + STATE(5355), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5770), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153275] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8362), 1, - anon_sym_RBRACK, + [153953] = 4, + ACTIONS(8169), 1, + anon_sym_from, + STATE(5444), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153292] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, - ACTIONS(8364), 1, - anon_sym_QMARK, + ACTIONS(5223), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153968] = 5, + ACTIONS(8371), 1, + sym_identifier, + STATE(3905), 1, + sym_nested_type_identifier, + STATE(4573), 1, + sym_generic_type, + STATE(5823), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153309] = 5, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - ACTIONS(8366), 1, - anon_sym_GT, - STATE(5384), 1, - sym_type_parameter, + [153985] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5391), 1, + sym_type_parameters, + STATE(5742), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153326] = 5, - ACTIONS(8368), 1, - sym_identifier, - STATE(4403), 1, - sym_nested_type_identifier, - STATE(5124), 1, - sym_generic_type, - STATE(5806), 1, - sym_nested_identifier, + [154002] = 4, + ACTIONS(8193), 1, + anon_sym_COMMA, + STATE(4571), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8373), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154017] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5393), 1, + sym_type_parameters, + STATE(5920), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153343] = 5, - ACTIONS(7339), 1, + [154034] = 4, + ACTIONS(8193), 1, anon_sym_COMMA, - ACTIONS(8370), 1, - anon_sym_LBRACE, - ACTIONS(8372), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + STATE(4571), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153360] = 5, - ACTIONS(8374), 1, - sym_identifier, - STATE(3776), 1, - sym_nested_type_identifier, - STATE(4469), 1, - sym_generic_type, - STATE(5806), 1, - sym_nested_identifier, + ACTIONS(8375), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154049] = 4, + ACTIONS(7363), 1, + anon_sym_EQ, + STATE(5261), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153377] = 4, - ACTIONS(8135), 1, + ACTIONS(8377), 2, anon_sym_COMMA, - STATE(4464), 1, - aux_sym_extends_clause_repeat1, + anon_sym_RPAREN, + [154064] = 5, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(8280), 1, + sym_identifier, + ACTIONS(8379), 1, + anon_sym_GT, + STATE(5430), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8376), 2, - anon_sym_LBRACE, - anon_sym_implements, - [153392] = 5, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(8378), 1, - anon_sym_LBRACE, - ACTIONS(8380), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + [154081] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5465), 1, + sym_type_parameters, + STATE(5695), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153409] = 5, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(8378), 1, - anon_sym_LBRACE, - ACTIONS(8380), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + [154098] = 5, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(8381), 1, + anon_sym_LT, + STATE(1913), 1, + sym_arguments, + STATE(1914), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153426] = 5, - ACTIONS(7271), 1, + [154115] = 5, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(7273), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(6661), 1, anon_sym_extends, - ACTIONS(8382), 1, - anon_sym_QMARK, + ACTIONS(8383), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153443] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [154132] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5474), 1, + sym_type_parameters, + STATE(5784), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8253), 1, - anon_sym_DQUOTE, - STATE(4544), 1, - aux_sym_string_repeat1, - ACTIONS(8384), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [153460] = 2, + sym_comment, + [154149] = 4, + ACTIONS(8385), 1, + anon_sym_COMMA, + STATE(4610), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(4778), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153470] = 4, + [154164] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, ACTIONS(8388), 1, - sym_identifier, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154181] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(8390), 1, - anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154198] = 5, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(8280), 1, + sym_identifier, ACTIONS(8392), 1, - sym_private_property_identifier, + anon_sym_GT, + STATE(5430), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153484] = 4, + [154215] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(8394), 1, - sym_identifier, + sym_html_character_reference, ACTIONS(8396), 1, - anon_sym_LBRACK, + anon_sym_DQUOTE, ACTIONS(8398), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, + sym_unescaped_double_jsx_string_fragment, + STATE(4545), 1, + aux_sym__jsx_string_repeat1, + [154234] = 6, + ACTIONS(3), 1, sym_comment, - [153498] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8396), 1, + anon_sym_SQUOTE, ACTIONS(8400), 1, - sym_identifier, + sym_html_character_reference, ACTIONS(8402), 1, - anon_sym_LBRACK, + sym_unescaped_single_jsx_string_fragment, + STATE(4546), 1, + aux_sym__jsx_string_repeat2, + [154253] = 5, ACTIONS(8404), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153512] = 4, + anon_sym_LBRACE, ACTIONS(8406), 1, - sym_identifier, - ACTIONS(8408), 1, - anon_sym_LBRACK, - ACTIONS(8410), 1, - sym_private_property_identifier, + anon_sym_COMMA, + ACTIONS(8409), 1, + anon_sym_LBRACE_PIPE, + STATE(4616), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153526] = 4, - ACTIONS(2548), 1, - anon_sym_RBRACK, - ACTIONS(8412), 1, + [154270] = 5, + ACTIONS(1707), 1, anon_sym_COMMA, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8356), 1, + anon_sym_EQ, + ACTIONS(8411), 1, + anon_sym_RBRACK, + STATE(5193), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153540] = 2, - ACTIONS(5), 2, - sym_html_comment, + [154287] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8414), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153550] = 4, - ACTIONS(8416), 1, - anon_sym_COMMA, - ACTIONS(8419), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8413), 1, + anon_sym_DQUOTE, + STATE(4623), 1, + aux_sym_string_repeat1, + ACTIONS(8173), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [154304] = 5, + ACTIONS(3), 1, sym_comment, - [153564] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8413), 1, + anon_sym_SQUOTE, + STATE(4624), 1, + aux_sym_string_repeat2, + ACTIONS(8175), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [154321] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, + ACTIONS(8415), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153574] = 2, + [154338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8417), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [153584] = 4, - ACTIONS(8423), 1, + [154349] = 4, + ACTIONS(8419), 1, anon_sym_COMMA, - ACTIONS(8426), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153598] = 2, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153608] = 4, - ACTIONS(1641), 1, + ACTIONS(5627), 2, anon_sym_RPAREN, - ACTIONS(8430), 1, - anon_sym_COMMA, - STATE(4847), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, + anon_sym_RBRACK, + [154364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8422), 1, + anon_sym_DQUOTE, + STATE(4623), 1, + aux_sym_string_repeat1, + ACTIONS(8424), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [154381] = 5, + ACTIONS(3), 1, sym_comment, - [153622] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8427), 1, + anon_sym_SQUOTE, + STATE(4624), 1, + aux_sym_string_repeat2, + ACTIONS(8429), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [154398] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, ACTIONS(8432), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153636] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, + [154415] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(8434), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153650] = 4, - ACTIONS(1779), 1, - anon_sym_COMMA, + [154432] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, ACTIONS(8436), 1, - anon_sym_RBRACK, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153664] = 2, + [154449] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, + ACTIONS(8438), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153674] = 4, - ACTIONS(5027), 1, - anon_sym_COMMA, + [154466] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(8440), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153688] = 3, + [154483] = 5, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(8442), 1, - sym__automatic_semicolon, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [153700] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym_array_repeat1, + [154500] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5592), 1, + sym_type_parameters, + STATE(5703), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153714] = 2, + [154517] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5595), 1, + sym_type_parameters, + STATE(5722), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7347), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [153724] = 2, + [154534] = 5, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, + ACTIONS(8444), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153734] = 2, + [154551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(6048), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153744] = 2, + [154562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153754] = 3, - ACTIONS(8446), 1, + [154572] = 3, + ACTIONS(8448), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8448), 2, + ACTIONS(8450), 2, anon_sym_COMMA, anon_sym_RBRACE, - [153766] = 2, + [154584] = 4, + ACTIONS(7522), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_LBRACE, + STATE(4554), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8450), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [153776] = 2, + [154598] = 4, + ACTIONS(8454), 1, + anon_sym_COMMA, + ACTIONS(8456), 1, + anon_sym_RPAREN, + STATE(4686), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153786] = 2, + [154622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8460), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153796] = 4, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(8454), 1, - anon_sym_DOT, - STATE(1530), 1, - sym_arguments, + [154632] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153810] = 2, + ACTIONS(8462), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [154642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153820] = 2, + [154652] = 4, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(8466), 1, + sym_identifier, + STATE(4496), 1, + sym_export_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153830] = 2, + [154676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153840] = 2, + [154686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153850] = 2, + [154696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153860] = 2, + [154706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153870] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + [154716] = 4, + ACTIONS(6440), 1, + anon_sym_LPAREN, + ACTIONS(8474), 1, + anon_sym_DOT, + STATE(3293), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153884] = 4, + [154730] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5336), 1, + ACTIONS(5404), 1, anon_sym_RPAREN, - STATE(4652), 1, + STATE(4661), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153898] = 4, + [154744] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5336), 1, + ACTIONS(5404), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4622), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153912] = 2, + [154758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153922] = 2, + [154768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153932] = 2, + [154778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153942] = 4, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8460), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153956] = 2, + [154788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153966] = 4, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(8462), 1, - anon_sym_DOT, - STATE(1893), 1, - sym_arguments, + [154798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153980] = 4, - ACTIONS(8464), 1, + ACTIONS(8480), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [154808] = 4, + ACTIONS(8482), 1, anon_sym_COMMA, - ACTIONS(8466), 1, + ACTIONS(8484), 1, anon_sym_RBRACK, - STATE(4659), 1, + STATE(4671), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153994] = 4, - ACTIONS(4080), 1, - anon_sym_extends, - ACTIONS(8468), 1, + [154822] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154832] = 4, + ACTIONS(6902), 1, anon_sym_AMP, - ACTIONS(8470), 1, + ACTIONS(6904), 1, anon_sym_PIPE, + ACTIONS(6906), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154008] = 2, + [154846] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154018] = 4, + [154856] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8472), 1, + ACTIONS(8486), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4622), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154032] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8421), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154042] = 4, - ACTIONS(3212), 1, + [154870] = 4, + ACTIONS(3198), 1, anon_sym_GT, - ACTIONS(8474), 1, + ACTIONS(8488), 1, anon_sym_COMMA, - STATE(4559), 1, + STATE(4554), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154056] = 4, - ACTIONS(8476), 1, + [154884] = 4, + ACTIONS(5601), 1, anon_sym_COMMA, - ACTIONS(8479), 1, - anon_sym_GT, - STATE(4655), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154070] = 2, + ACTIONS(8490), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + [154898] = 4, + ACTIONS(5082), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154080] = 4, - ACTIONS(7126), 1, + ACTIONS(8492), 1, anon_sym_RBRACE, - ACTIONS(8481), 1, - anon_sym_COMMA, - STATE(4881), 1, - aux_sym_export_clause_repeat1, + STATE(4710), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154094] = 4, - ACTIONS(8483), 1, - sym_identifier, - STATE(3792), 1, - sym_decorator_member_expression, - STATE(5915), 1, - sym_decorator_call_expression, + [154912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154108] = 4, - ACTIONS(2568), 1, - anon_sym_RBRACK, - ACTIONS(8485), 1, + ACTIONS(8476), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154122] = 2, + anon_sym_SEMI, + [154922] = 4, + ACTIONS(8494), 1, + sym_identifier, + ACTIONS(8496), 1, + anon_sym_LBRACK, + ACTIONS(8498), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154132] = 2, + [154936] = 4, + ACTIONS(8500), 1, + sym_identifier, + ACTIONS(8502), 1, + anon_sym_LBRACK, + ACTIONS(8504), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154142] = 2, + [154950] = 4, + ACTIONS(8506), 1, + sym_identifier, + ACTIONS(8508), 1, + anon_sym_LBRACK, + ACTIONS(8510), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154152] = 4, - ACTIONS(8149), 1, - anon_sym_GT, - ACTIONS(8489), 1, - anon_sym_COMMA, - STATE(4655), 1, - aux_sym_type_parameters_repeat1, + [154964] = 4, + ACTIONS(8512), 1, + sym_identifier, + ACTIONS(8514), 1, + anon_sym_LBRACK, + ACTIONS(8516), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154166] = 2, + [154978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154176] = 4, - ACTIONS(5027), 1, + [154988] = 4, + ACTIONS(2820), 1, + anon_sym_RBRACK, + ACTIONS(8520), 1, anon_sym_COMMA, - ACTIONS(8440), 1, - anon_sym_RBRACE, - STATE(5060), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154190] = 4, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(8493), 1, - anon_sym_RPAREN, - STATE(5868), 1, - sym_type_annotation, + STATE(5131), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154204] = 4, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1575), 1, - anon_sym_LBRACE, - STATE(4013), 1, - sym_object_type, + [155002] = 4, + ACTIONS(7078), 1, + anon_sym_RBRACE, + ACTIONS(8522), 1, + anon_sym_COMMA, + STATE(5123), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154218] = 2, + [155016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154228] = 2, + [155026] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154238] = 2, + [155036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154248] = 2, + [155046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154258] = 3, - ACTIONS(8495), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7725), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [154270] = 4, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(8497), 1, - anon_sym_DOT, - STATE(3286), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154284] = 4, - ACTIONS(1928), 1, + [155056] = 4, + ACTIONS(8524), 1, anon_sym_COMMA, - ACTIONS(5299), 1, - anon_sym_RPAREN, - STATE(4826), 1, - aux_sym_array_repeat1, + ACTIONS(8527), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154298] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5342), 1, - anon_sym_RPAREN, - STATE(4684), 1, - aux_sym_array_repeat1, + [155070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154312] = 4, - ACTIONS(1928), 1, + ACTIONS(8478), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5342), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154326] = 2, + anon_sym_SEMI, + [155080] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154336] = 4, - ACTIONS(1928), 1, + [155090] = 4, + ACTIONS(8529), 1, anon_sym_COMMA, - ACTIONS(5299), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + ACTIONS(8531), 1, + anon_sym_RBRACE, + STATE(4672), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154350] = 2, + [155104] = 4, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(8533), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154360] = 2, + [155118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154370] = 2, + [155128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8535), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154380] = 4, - ACTIONS(8499), 1, - anon_sym_COMMA, - ACTIONS(8501), 1, - anon_sym_RBRACK, - STATE(4695), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154394] = 4, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154408] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(8503), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154422] = 2, + [155138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154432] = 4, - ACTIONS(3176), 1, - anon_sym_GT, - ACTIONS(8505), 1, + [155148] = 4, + ACTIONS(5601), 1, anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(8537), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154446] = 4, - ACTIONS(5533), 1, + [155162] = 4, + ACTIONS(1635), 1, + anon_sym_RPAREN, + ACTIONS(8539), 1, anon_sym_COMMA, - ACTIONS(8432), 1, - anon_sym_RBRACE, - STATE(5094), 1, - aux_sym_object_repeat1, + STATE(5028), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154460] = 2, + [155176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154470] = 2, + [155186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154480] = 4, - ACTIONS(8507), 1, - sym_identifier, - ACTIONS(8509), 1, - anon_sym_LBRACK, - ACTIONS(8511), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154494] = 4, - ACTIONS(8513), 1, - sym_identifier, - ACTIONS(8515), 1, - anon_sym_LBRACK, - ACTIONS(8517), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154508] = 4, - ACTIONS(8519), 1, - sym_identifier, - ACTIONS(8521), 1, - anon_sym_LBRACK, - ACTIONS(8523), 1, - sym_private_property_identifier, + [155196] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5406), 1, + anon_sym_RPAREN, + STATE(4696), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154522] = 4, - ACTIONS(8525), 1, - sym_identifier, - ACTIONS(8527), 1, - anon_sym_LBRACK, - ACTIONS(8529), 1, - sym_private_property_identifier, + [155210] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5406), 1, + anon_sym_RPAREN, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154536] = 2, + [155224] = 3, + ACTIONS(8356), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154546] = 4, - ACTIONS(2576), 1, - anon_sym_RBRACK, - ACTIONS(8531), 1, + ACTIONS(8541), 2, anon_sym_COMMA, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154560] = 2, + anon_sym_RBRACE, + [155236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8543), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154570] = 2, + [155246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154580] = 2, + [155256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154590] = 2, + [155266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8533), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154600] = 2, + [155276] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8545), 1, + anon_sym_RPAREN, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154610] = 2, + [155290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154620] = 2, + [155300] = 4, + ACTIONS(3200), 1, + anon_sym_GT, + ACTIONS(8547), 1, + anon_sym_COMMA, + STATE(4554), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154630] = 2, + [155314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154640] = 2, + [155324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154650] = 2, + [155334] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8543), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154660] = 2, + [155344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8549), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154670] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(4711), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154684] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + [155354] = 3, + ACTIONS(8551), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154698] = 2, + ACTIONS(7795), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [155366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154708] = 2, + [155376] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154718] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(8535), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154732] = 2, + [155386] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154742] = 4, - ACTIONS(3196), 1, - anon_sym_GT, - ACTIONS(8537), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154756] = 3, - ACTIONS(8539), 1, - anon_sym_as, + [155396] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 2, + ACTIONS(8464), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [154768] = 4, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(8541), 1, - sym_identifier, - STATE(5456), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154782] = 2, + anon_sym_SEMI, + [155406] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8533), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154792] = 2, + [155416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154802] = 4, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(8543), 1, - sym_identifier, - STATE(5457), 1, - sym__import_identifier, + [155426] = 4, + ACTIONS(8555), 1, + anon_sym_COMMA, + ACTIONS(8558), 1, + anon_sym_RBRACE, + STATE(4710), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154816] = 2, + [155440] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154826] = 2, + [155450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8545), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154836] = 4, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8547), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154850] = 2, + [155460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8533), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154860] = 4, + [155470] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5358), 1, + ACTIONS(5410), 1, anon_sym_RPAREN, - STATE(4729), 1, + STATE(4720), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154874] = 4, + [155484] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5358), 1, + ACTIONS(5410), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4622), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154888] = 2, + [155498] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154898] = 4, - ACTIONS(6780), 1, - anon_sym_RBRACE, - ACTIONS(8549), 1, - anon_sym_COMMA, - STATE(5106), 1, - aux_sym_named_imports_repeat1, + [155508] = 4, + ACTIONS(3495), 1, + anon_sym_LPAREN, + ACTIONS(8562), 1, + anon_sym_DOT, + STATE(3187), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154912] = 3, - ACTIONS(7207), 1, - anon_sym_DOT, + [155522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8551), 2, + ACTIONS(8470), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [154924] = 2, + [155532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154934] = 4, + [155542] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8553), 1, + ACTIONS(8564), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4622), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154948] = 2, + [155556] = 4, + ACTIONS(3184), 1, + anon_sym_GT, + ACTIONS(8566), 1, + anon_sym_COMMA, + STATE(4554), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8555), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154958] = 4, - ACTIONS(3200), 1, - anon_sym_GT, - ACTIONS(8557), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, + [155580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154972] = 2, + ACTIONS(8568), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154982] = 2, + [155600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8555), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154992] = 2, + [155610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155002] = 2, + [155620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8559), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155012] = 2, + [155630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155022] = 2, + [155640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155032] = 3, - ACTIONS(7209), 1, - anon_sym_DOT, + [155650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8551), 2, + ACTIONS(8478), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [155044] = 2, + [155660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155054] = 2, + [155670] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155064] = 2, + [155680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155074] = 2, + [155690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155084] = 4, - ACTIONS(8561), 1, + [155700] = 4, + ACTIONS(8570), 1, anon_sym_LPAREN, - ACTIONS(8563), 1, + ACTIONS(8572), 1, anon_sym_await, - STATE(50), 1, + STATE(49), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155098] = 2, + [155714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155108] = 2, + [155724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155118] = 2, + [155734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155128] = 2, + [155744] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155138] = 2, + [155754] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8460), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155148] = 4, - ACTIONS(8129), 1, - anon_sym_from, - ACTIONS(8565), 1, - anon_sym_as, - STATE(5467), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155162] = 4, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(8567), 1, - sym_identifier, - STATE(4506), 1, - sym_export_clause, + [155764] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155176] = 2, + ACTIONS(6594), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [155774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155186] = 2, + [155784] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155196] = 4, - ACTIONS(8571), 1, + [155794] = 4, + ACTIONS(8169), 1, + anon_sym_from, + ACTIONS(8578), 1, + anon_sym_as, + STATE(5377), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155808] = 4, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, sym_identifier, - ACTIONS(8573), 1, - anon_sym_LBRACK, - ACTIONS(8575), 1, - sym_private_property_identifier, + STATE(4598), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155210] = 2, + [155822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8577), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155220] = 2, + [155832] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155230] = 2, + [155842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155240] = 2, + [155852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155250] = 2, + [155862] = 3, + ACTIONS(8582), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8581), 3, - sym__automatic_semicolon, + ACTIONS(8584), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155260] = 2, + anon_sym_from, + [155874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155270] = 4, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - STATE(5029), 1, - sym_type_parameter, + [155884] = 3, + ACTIONS(4344), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155284] = 2, + ACTIONS(4346), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [155896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, + ACTIONS(8588), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [155294] = 2, + anon_sym_implements, + [155906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155304] = 2, + [155916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155314] = 4, - ACTIONS(8585), 1, - sym_identifier, - STATE(3870), 1, - sym_decorator_member_expression, - STATE(5795), 1, - sym_decorator_call_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155328] = 2, + [155926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155338] = 2, + [155936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155348] = 2, + [155946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155358] = 3, - ACTIONS(8587), 1, - anon_sym_EQ, + [155956] = 4, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(8280), 1, + sym_identifier, + STATE(5007), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8589), 2, - anon_sym_COMMA, - anon_sym_from, - [155370] = 2, + [155970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8591), 3, - anon_sym_LBRACE, + ACTIONS(8476), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [155380] = 2, + anon_sym_SEMI, + [155980] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155390] = 2, + [155990] = 3, + ACTIONS(4366), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8121), 3, - sym__automatic_semicolon, + ACTIONS(4368), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155400] = 2, + anon_sym_LBRACE_PIPE, + [156002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155410] = 2, + [156012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155420] = 3, - ACTIONS(7207), 1, - anon_sym_DOT, + [156022] = 4, + ACTIONS(8590), 1, + sym_identifier, + STATE(3882), 1, + sym_decorator_member_expression, + STATE(5974), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8593), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [155432] = 3, - ACTIONS(7209), 1, - anon_sym_DOT, + [156036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8593), 2, + ACTIONS(8470), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [155444] = 2, + [156046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155454] = 2, + [156056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155464] = 2, + [156066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155474] = 2, + [156076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155484] = 2, + [156086] = 3, + ACTIONS(8592), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, + ACTIONS(8594), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155494] = 2, + anon_sym_RBRACE, + [156098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155504] = 2, + [156108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8595), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155514] = 4, - ACTIONS(2492), 1, - anon_sym_while, - ACTIONS(8597), 1, - anon_sym_else, - STATE(850), 1, - sym_else_clause, + [156118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155528] = 4, - ACTIONS(8599), 1, + ACTIONS(8470), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8601), 1, - anon_sym_RBRACK, - STATE(4870), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155542] = 2, + anon_sym_SEMI, + [156128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155552] = 4, - ACTIONS(5964), 1, - anon_sym_LPAREN, - ACTIONS(8603), 1, - anon_sym_DOT, - STATE(2890), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155566] = 4, - ACTIONS(4979), 1, - anon_sym_extends, - ACTIONS(8605), 1, - anon_sym_AMP, - ACTIONS(8607), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155580] = 4, - ACTIONS(8609), 1, - sym_identifier, - ACTIONS(8611), 1, - anon_sym_LBRACK, - ACTIONS(8613), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155594] = 4, - ACTIONS(8615), 1, - sym_identifier, - ACTIONS(8617), 1, - anon_sym_LBRACK, - ACTIONS(8619), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155608] = 2, + [156138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155618] = 4, - ACTIONS(8621), 1, + [156148] = 4, + ACTIONS(8596), 1, sym_identifier, - ACTIONS(8623), 1, + ACTIONS(8598), 1, anon_sym_LBRACK, - ACTIONS(8625), 1, + ACTIONS(8600), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155632] = 2, + [156162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155642] = 4, - ACTIONS(8627), 1, - sym_identifier, - ACTIONS(8629), 1, - anon_sym_LBRACK, - ACTIONS(8631), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155656] = 2, + [156172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8476), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155666] = 2, + [156182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155676] = 2, + [156192] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8595), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155686] = 2, + [156202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155696] = 2, + [156212] = 4, + ACTIONS(8602), 1, + sym_identifier, + ACTIONS(8604), 1, + anon_sym_LBRACK, + ACTIONS(8606), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155706] = 2, + [156226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155716] = 3, - ACTIONS(8633), 1, - anon_sym_as, + [156236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8589), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [155728] = 4, - ACTIONS(8635), 1, + ACTIONS(8518), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8637), 1, - anon_sym_GT, - STATE(5180), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155742] = 2, + anon_sym_SEMI, + [156246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8639), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155752] = 2, + [156256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155762] = 2, + [156266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155772] = 4, - ACTIONS(8641), 1, - anon_sym_COMMA, - ACTIONS(8643), 1, - anon_sym_RBRACE, - STATE(4726), 1, - aux_sym_named_imports_repeat1, + [156276] = 4, + ACTIONS(2480), 1, + anon_sym_while, + ACTIONS(8608), 1, + anon_sym_else, + STATE(785), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155786] = 2, + [156290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155796] = 4, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1495), 1, - anon_sym_LBRACE, - STATE(841), 1, - sym_object_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155810] = 2, + [156300] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155820] = 4, - ACTIONS(2676), 1, - anon_sym_RBRACK, - ACTIONS(8645), 1, + [156310] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5374), 1, + anon_sym_RPAREN, + STATE(4877), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155834] = 2, + [156324] = 4, + ACTIONS(6052), 1, + anon_sym_LPAREN, + ACTIONS(8610), 1, + anon_sym_DOT, + STATE(2914), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155844] = 2, + [156338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155854] = 2, + [156348] = 4, + ACTIONS(8612), 1, + sym_identifier, + ACTIONS(8614), 1, + anon_sym_LBRACK, + ACTIONS(8616), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155864] = 2, + [156362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8618), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155874] = 2, + [156372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155884] = 4, - ACTIONS(8647), 1, - anon_sym_COMMA, - ACTIONS(8649), 1, - anon_sym_RBRACE, - STATE(4876), 1, - aux_sym_enum_body_repeat1, + [156382] = 4, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, + anon_sym_LBRACK, + ACTIONS(8624), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155898] = 2, + [156396] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155908] = 4, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + [156406] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155922] = 2, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155932] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(8651), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + [156426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155946] = 2, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156436] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155956] = 4, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1575), 1, - anon_sym_LBRACE, - STATE(4087), 1, - sym_object_type, + [156446] = 3, + ACTIONS(8630), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155970] = 2, + ACTIONS(8584), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [156458] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155980] = 4, - ACTIONS(8653), 1, + [156468] = 4, + ACTIONS(8632), 1, anon_sym_COMMA, - ACTIONS(8655), 1, + ACTIONS(8634), 1, anon_sym_RBRACE, - STATE(4887), 1, - aux_sym_enum_body_repeat1, + STATE(4871), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155994] = 2, + [156482] = 4, + ACTIONS(2658), 1, + anon_sym_RBRACK, + ACTIONS(8636), 1, + anon_sym_COMMA, + STATE(5131), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156004] = 2, + [156496] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156014] = 4, + [156506] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8657), 1, + ACTIONS(5374), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4622), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156028] = 2, + [156520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156038] = 4, - ACTIONS(3170), 1, - anon_sym_GT, - ACTIONS(8659), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156052] = 2, + [156530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156062] = 4, - ACTIONS(3178), 1, - anon_sym_GT, - ACTIONS(8661), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, + [156540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156076] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8444), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156086] = 2, + [156550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156096] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7279), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [156106] = 4, - ACTIONS(5027), 1, + [156560] = 4, + ACTIONS(8640), 1, anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_RBRACE, - STATE(5197), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(8643), 1, + anon_sym_GT, + STATE(4814), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156120] = 3, - ACTIONS(8665), 1, - anon_sym_EQ, + [156574] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8589), 2, + ACTIONS(8560), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [156132] = 2, + anon_sym_SEMI, + [156584] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156142] = 2, + [156594] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8667), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156152] = 2, + [156604] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156162] = 2, + [156614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156172] = 2, + [156624] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156182] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8669), 1, - anon_sym_RBRACE, - STATE(5207), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156196] = 2, + [156634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156206] = 2, + [156644] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156216] = 2, + [156654] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7285), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156226] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8386), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156236] = 2, + [156664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156246] = 4, - ACTIONS(8671), 1, - anon_sym_COMMA, - ACTIONS(8674), 1, - anon_sym_RPAREN, - STATE(4847), 1, - aux_sym_formal_parameters_repeat1, + [156674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156260] = 4, - ACTIONS(5533), 1, + ACTIONS(8626), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8669), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [156684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156274] = 4, - ACTIONS(5027), 1, + ACTIONS(8626), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156288] = 2, + anon_sym_SEMI, + [156694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156298] = 2, + [156704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156308] = 2, + [156714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156318] = 2, + [156724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8628), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156328] = 2, + [156734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8638), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156338] = 4, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_require, - STATE(4738), 1, - sym_nested_identifier, + [156744] = 4, + ACTIONS(7496), 1, + anon_sym_AMP, + ACTIONS(7498), 1, + anon_sym_PIPE, + ACTIONS(7500), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156352] = 2, + [156758] = 4, + ACTIONS(6376), 1, + anon_sym_DOT, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(8645), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156362] = 2, + [156772] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156372] = 2, + [156782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156382] = 2, + [156792] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156392] = 2, + [156802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156402] = 4, - ACTIONS(8680), 1, - anon_sym_COMMA, - ACTIONS(8682), 1, - anon_sym_RPAREN, - STATE(4943), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156416] = 2, + [156812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156426] = 2, + [156822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156436] = 2, + [156832] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156446] = 2, + [156842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156456] = 2, + [156852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156466] = 2, + [156862] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8684), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156476] = 4, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - STATE(5384), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156490] = 2, + [156872] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8686), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [156500] = 4, - ACTIONS(2920), 1, - anon_sym_RBRACK, - ACTIONS(8688), 1, anon_sym_COMMA, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156514] = 2, + anon_sym_SEMI, + [156882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156524] = 2, + [156892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156534] = 4, - ACTIONS(8690), 1, - anon_sym_COMMA, - ACTIONS(8692), 1, - anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156548] = 2, + [156902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156558] = 2, + [156912] = 4, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, + anon_sym_require, + STATE(4876), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156568] = 4, - ACTIONS(8694), 1, - anon_sym_COMMA, - ACTIONS(8696), 1, - anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + [156926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156582] = 2, + ACTIONS(8653), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156592] = 2, + [156946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, + ACTIONS(8653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156602] = 2, + [156956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8653), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156612] = 2, + [156966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156622] = 4, - ACTIONS(8698), 1, + [156976] = 4, + ACTIONS(5601), 1, anon_sym_COMMA, - ACTIONS(8701), 1, + ACTIONS(8655), 1, anon_sym_RBRACE, - STATE(4881), 1, - aux_sym_export_clause_repeat1, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156636] = 2, + [156990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156646] = 2, + [157000] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156656] = 2, + [157010] = 4, + ACTIONS(8657), 1, + anon_sym_COMMA, + ACTIONS(8659), 1, + anon_sym_RPAREN, + STATE(4965), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8667), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156666] = 4, - ACTIONS(8703), 1, - anon_sym_COMMA, - ACTIONS(8705), 1, - anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + [157034] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156680] = 2, + ACTIONS(6406), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [157044] = 3, + ACTIONS(8661), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156690] = 4, - ACTIONS(8707), 1, + ACTIONS(6594), 2, anon_sym_COMMA, - ACTIONS(8709), 1, anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + [157056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156704] = 2, + ACTIONS(8560), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156714] = 4, - ACTIONS(8711), 1, + [157076] = 4, + ACTIONS(8663), 1, anon_sym_COMMA, - ACTIONS(8713), 1, - anon_sym_RPAREN, - STATE(4617), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156728] = 2, + ACTIONS(8665), 1, + anon_sym_RBRACK, + STATE(4909), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8715), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156738] = 2, + [157090] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156748] = 2, + [157100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8717), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156758] = 2, + [157110] = 4, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6766), 1, + anon_sym_extends, + ACTIONS(7775), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8719), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156768] = 2, + [157124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8721), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156778] = 2, + [157134] = 4, + ACTIONS(6592), 1, + anon_sym_type, + ACTIONS(8667), 1, + sym_identifier, + STATE(5258), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156788] = 2, + [157148] = 4, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(8610), 1, + anon_sym_DOT, + STATE(2914), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156798] = 2, + [157162] = 4, + ACTIONS(6592), 1, + anon_sym_type, + ACTIONS(8669), 1, + sym_identifier, + STATE(5274), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, + [157176] = 4, + ACTIONS(6828), 1, + anon_sym_RBRACE, + ACTIONS(8671), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156808] = 2, + STATE(4976), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156818] = 2, + [157190] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156828] = 2, + [157200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156838] = 4, - ACTIONS(1779), 1, - anon_sym_COMMA, - ACTIONS(8198), 1, - anon_sym_RBRACK, - STATE(4620), 1, - aux_sym_array_pattern_repeat1, + [157210] = 4, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(8280), 1, + sym_identifier, + STATE(5430), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156852] = 2, + [157224] = 3, + ACTIONS(7275), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8673), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [156862] = 2, + [157236] = 3, + ACTIONS(7277), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8673), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [156872] = 2, + [157248] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8675), 1, + anon_sym_RPAREN, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, + [157262] = 4, + ACTIONS(3172), 1, + anon_sym_GT, + ACTIONS(8677), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156882] = 2, + STATE(4554), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156892] = 2, + [157276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156902] = 2, + [157286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156912] = 2, + [157296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156922] = 2, + [157306] = 4, + ACTIONS(8679), 1, + anon_sym_COMMA, + ACTIONS(8681), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156932] = 2, + [157320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156942] = 2, + [157330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156952] = 4, - ACTIONS(1928), 1, + [157340] = 4, + ACTIONS(8685), 1, anon_sym_COMMA, - ACTIONS(5253), 1, - anon_sym_RBRACK, - STATE(4619), 1, - aux_sym_array_repeat1, + ACTIONS(8687), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156966] = 2, + [157354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(6048), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156976] = 2, + [157364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156986] = 2, + [157374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(7959), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156996] = 2, + [157384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157006] = 2, + [157394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8729), 3, + ACTIONS(8689), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [157016] = 2, + [157404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157026] = 4, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(8733), 1, - anon_sym_EQ, - STATE(5706), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157040] = 2, + [157414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157050] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5253), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, + [157424] = 4, + ACTIONS(8693), 1, + sym_identifier, + ACTIONS(8695), 1, + anon_sym_LBRACK, + ACTIONS(8697), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157438] = 4, + ACTIONS(8699), 1, + sym_identifier, + ACTIONS(8701), 1, + anon_sym_LBRACK, + ACTIONS(8703), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157064] = 2, + [157452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(7959), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157074] = 4, - ACTIONS(1779), 1, - anon_sym_COMMA, - ACTIONS(8198), 1, - anon_sym_RBRACK, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, + [157462] = 4, + ACTIONS(8705), 1, + sym_identifier, + ACTIONS(8707), 1, + anon_sym_LBRACK, + ACTIONS(8709), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157088] = 4, - ACTIONS(6692), 1, - anon_sym_LPAREN, - ACTIONS(8603), 1, - anon_sym_DOT, - STATE(2890), 1, - sym_arguments, + [157476] = 4, + ACTIONS(8711), 1, + sym_identifier, + ACTIONS(8713), 1, + anon_sym_LBRACK, + ACTIONS(8715), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157102] = 3, - ACTIONS(4090), 1, - anon_sym_LBRACE, + [157490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 2, + ACTIONS(8717), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157114] = 2, + anon_sym_SEMI, + [157500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8719), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157124] = 2, + [157510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157134] = 2, + [157520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157144] = 2, + [157530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8721), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157154] = 2, + [157540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8326), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157164] = 2, + [157550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157174] = 2, + [157560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8689), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157184] = 2, + [157570] = 3, + ACTIONS(4194), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, + ACTIONS(4196), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157194] = 2, + anon_sym_LBRACE_PIPE, + [157582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157204] = 3, - ACTIONS(7801), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3635), 2, - anon_sym_in, - anon_sym_of, - [157216] = 2, + [157592] = 4, + ACTIONS(8725), 1, + sym_identifier, + ACTIONS(8727), 1, + anon_sym_LBRACK, + ACTIONS(8729), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, + [157606] = 4, + ACTIONS(2776), 1, + anon_sym_RBRACK, + ACTIONS(8731), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157226] = 2, + STATE(5131), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157236] = 2, + [157620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157246] = 2, + [157630] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, + ACTIONS(4208), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157256] = 2, + anon_sym_LBRACE_PIPE, + [157642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157266] = 2, + [157652] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157276] = 2, + [157662] = 3, + ACTIONS(4214), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7257), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157286] = 4, - ACTIONS(1627), 1, - anon_sym_RPAREN, - ACTIONS(8735), 1, + ACTIONS(4216), 2, anon_sym_COMMA, - STATE(4847), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_LBRACE_PIPE, + [157674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157300] = 4, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - STATE(4510), 1, - sym_string, + ACTIONS(8446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157684] = 4, + ACTIONS(6894), 1, + anon_sym_implements, + ACTIONS(8733), 1, + anon_sym_LBRACE, + STATE(6010), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157314] = 2, + [157698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157324] = 2, + [157708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157334] = 2, + [157718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157344] = 2, + [157728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157354] = 2, + [157738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157364] = 2, + [157748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157374] = 2, + [157758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157384] = 2, + [157768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157394] = 2, + [157778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157404] = 2, + [157788] = 4, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(854), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157414] = 2, + [157802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157424] = 2, + [157812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157434] = 2, + [157822] = 4, + ACTIONS(6592), 1, + anon_sym_type, + ACTIONS(8735), 1, + sym_identifier, + STATE(5306), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157836] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157444] = 4, - ACTIONS(8129), 1, - anon_sym_from, - ACTIONS(8565), 1, - anon_sym_as, - STATE(5304), 1, - sym__from_clause, + [157846] = 4, + ACTIONS(8737), 1, + anon_sym_COMMA, + ACTIONS(8739), 1, + anon_sym_RBRACE, + STATE(4885), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157458] = 2, + [157860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157468] = 2, + [157870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8741), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157478] = 2, + [157880] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8743), 1, + anon_sym_RPAREN, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157488] = 2, + [157894] = 4, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(8745), 1, + anon_sym_EQ, + STATE(5679), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157498] = 2, + [157908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157508] = 2, + [157918] = 4, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(8747), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157518] = 2, + [157932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157528] = 2, + [157942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157538] = 2, + [157952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157548] = 2, + [157962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157558] = 2, + [157972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157568] = 2, + [157982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157578] = 2, + [157992] = 3, + ACTIONS(8751), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157588] = 2, + ACTIONS(6844), 2, + anon_sym_in, + anon_sym_of, + [158004] = 4, + ACTIONS(6728), 1, + anon_sym_LPAREN, + ACTIONS(8610), 1, + anon_sym_DOT, + STATE(2914), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157598] = 2, + [158018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157608] = 2, + [158028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157618] = 2, + [158038] = 4, + ACTIONS(3174), 1, + anon_sym_GT, + ACTIONS(8753), 1, + anon_sym_COMMA, + STATE(4554), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157628] = 2, + [158052] = 3, + ACTIONS(8131), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157638] = 2, + ACTIONS(3630), 2, + anon_sym_in, + anon_sym_of, + [158064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157648] = 2, + ACTIONS(7371), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8739), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157658] = 2, + [158084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157668] = 2, + [158094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157678] = 2, + [158104] = 3, + ACTIONS(8755), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8739), 3, - sym__automatic_semicolon, + ACTIONS(8584), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157688] = 2, + anon_sym_from, + [158116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157698] = 2, + [158126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157708] = 2, + [158136] = 4, + ACTIONS(8340), 1, + anon_sym_GT, + ACTIONS(8759), 1, + anon_sym_COMMA, + STATE(4814), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157718] = 2, + [158160] = 4, + ACTIONS(6592), 1, + anon_sym_type, + ACTIONS(8761), 1, + sym_identifier, + STATE(5307), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LT, - [157728] = 2, + [158174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157738] = 2, + [158184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157748] = 2, + [158194] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157758] = 2, + [158204] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8743), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157768] = 2, + [158214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, + ACTIONS(7462), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158224] = 4, + ACTIONS(1637), 1, + anon_sym_RPAREN, + ACTIONS(8763), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157778] = 2, + STATE(5028), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8745), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157788] = 2, + [158238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8747), 3, + ACTIONS(8765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157798] = 2, + [158248] = 4, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(8767), 1, + anon_sym_RBRACE, + STATE(5036), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8739), 3, - sym__automatic_semicolon, + [158262] = 4, + ACTIONS(5601), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157808] = 2, + ACTIONS(8769), 1, + anon_sym_RBRACE, + STATE(5037), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, + [158276] = 4, + ACTIONS(5601), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157818] = 2, + ACTIONS(8769), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, - sym__automatic_semicolon, + [158290] = 4, + ACTIONS(5082), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157828] = 2, + ACTIONS(8767), 1, + anon_sym_RBRACE, + STATE(4710), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157838] = 2, + [158314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8745), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157848] = 2, + [158324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157858] = 4, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8751), 1, - anon_sym_GT, + [158334] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157872] = 2, + ACTIONS(7454), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157882] = 2, + [158354] = 4, + ACTIONS(8773), 1, + anon_sym_COMMA, + ACTIONS(8776), 1, + anon_sym_RBRACE, + STATE(4976), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157892] = 2, + [158368] = 4, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157902] = 2, + [158382] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157912] = 2, + [158392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157922] = 2, + [158402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157932] = 2, + [158412] = 4, + ACTIONS(8778), 1, + anon_sym_COMMA, + ACTIONS(8780), 1, + anon_sym_RPAREN, + STATE(5047), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157942] = 2, + [158426] = 4, + ACTIONS(8782), 1, + anon_sym_LPAREN, + ACTIONS(8784), 1, + anon_sym_await, + STATE(36), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157952] = 2, + [158440] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157962] = 2, + [158450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8786), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157972] = 2, + [158460] = 4, + ACTIONS(1707), 1, + anon_sym_COMMA, + ACTIONS(8358), 1, + anon_sym_RBRACK, + STATE(5050), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, - sym__automatic_semicolon, + [158474] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157982] = 2, + ACTIONS(5305), 1, + anon_sym_RBRACK, + STATE(5049), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7251), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157992] = 2, + [158488] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158002] = 2, + [158498] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5305), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, + [158512] = 4, + ACTIONS(1707), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158012] = 2, + ACTIONS(8358), 1, + anon_sym_RBRACK, + STATE(5196), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158022] = 2, + [158526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158032] = 2, + [158536] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158042] = 2, + [158546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158052] = 2, + [158556] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158062] = 2, + [158566] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158072] = 2, + [158576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6001), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158082] = 2, + [158586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8755), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [158092] = 3, - ACTIONS(8757), 1, - anon_sym_LBRACE, + [158596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7966), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [158104] = 4, - ACTIONS(8759), 1, + ACTIONS(8553), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8761), 1, - anon_sym_RBRACE, - STATE(4657), 1, - aux_sym_export_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158118] = 3, - ACTIONS(4062), 1, - anon_sym_LBRACE, + anon_sym_SEMI, + [158606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 2, + ACTIONS(8518), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158130] = 2, + anon_sym_SEMI, + [158616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158140] = 2, + [158626] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8788), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158150] = 3, - ACTIONS(8763), 1, - anon_sym_as, + [158636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8765), 2, + ACTIONS(8749), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [158162] = 2, + anon_sym_SEMI, + [158646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158172] = 4, - ACTIONS(8767), 1, - anon_sym_COMMA, - ACTIONS(8769), 1, - anon_sym_GT, - STATE(4663), 1, - aux_sym_type_parameters_repeat1, + [158656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158186] = 2, + ACTIONS(8788), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158196] = 2, + [158676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158206] = 2, + [158686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158216] = 2, + [158696] = 4, + ACTIONS(8790), 1, + anon_sym_COMMA, + ACTIONS(8792), 1, + anon_sym_GT, + STATE(5072), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158710] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8773), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158226] = 2, + [158720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8775), 3, + ACTIONS(8794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158236] = 2, + [158730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158246] = 2, + [158740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8777), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158256] = 2, + [158750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158266] = 2, + [158760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8786), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158276] = 2, + [158770] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158286] = 2, + [158780] = 4, + ACTIONS(8796), 1, + sym_identifier, + ACTIONS(8798), 1, + anon_sym_LBRACK, + ACTIONS(8800), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158296] = 2, + [158794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158306] = 2, + [158804] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158316] = 2, + [158814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 3, + ACTIONS(8802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158326] = 2, + [158824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8783), 3, + ACTIONS(8804), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158336] = 2, + [158834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8785), 3, + ACTIONS(8788), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158346] = 2, + [158844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8806), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158356] = 3, - ACTIONS(8196), 1, - anon_sym_EQ, + [158854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8787), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [158368] = 2, + ACTIONS(7344), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158378] = 2, + [158874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8786), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158388] = 2, + [158884] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158398] = 2, + [158894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8808), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158408] = 2, + [158904] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8789), 3, + ACTIONS(8810), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158418] = 2, + [158914] = 4, + ACTIONS(8812), 1, + anon_sym_COMMA, + ACTIONS(8815), 1, + anon_sym_RPAREN, + STATE(5028), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158428] = 2, + [158928] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158438] = 3, - ACTIONS(8791), 1, - sym_identifier, + [158938] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8793), 2, + ACTIONS(8560), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [158450] = 2, + [158948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158460] = 2, + [158958] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8810), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158470] = 2, + [158968] = 4, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(883), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, - sym__automatic_semicolon, + [158982] = 4, + ACTIONS(5601), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158480] = 2, + ACTIONS(8817), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, - sym__automatic_semicolon, + [158996] = 4, + ACTIONS(5082), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158490] = 4, - ACTIONS(5027), 1, + ACTIONS(8819), 1, + anon_sym_RBRACE, + STATE(4710), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159010] = 4, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(8795), 1, + ACTIONS(8821), 1, anon_sym_RBRACE, - STATE(4615), 1, + STATE(4710), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158504] = 4, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(8797), 1, - anon_sym_EQ, - STATE(5633), 1, - sym_type_parameters, + [159024] = 4, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(8823), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158518] = 2, + [159038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158528] = 2, + [159048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158538] = 2, + [159058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158548] = 2, + [159068] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8810), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158558] = 4, - ACTIONS(8801), 1, - anon_sym_COMMA, - ACTIONS(8803), 1, - anon_sym_RBRACK, - STATE(4809), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158572] = 2, + [159078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158582] = 2, + [159088] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158592] = 3, - ACTIONS(8805), 1, - anon_sym_LBRACE, + [159098] = 4, + ACTIONS(8827), 1, + anon_sym_COMMA, + ACTIONS(8829), 1, + anon_sym_RBRACK, + STATE(4807), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8079), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [158604] = 2, + [159112] = 4, + ACTIONS(3922), 1, + anon_sym_LPAREN, + ACTIONS(8831), 1, + anon_sym_DOT, + STATE(1590), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158614] = 3, - ACTIONS(4122), 1, - anon_sym_LBRACE, + [159126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 2, + ACTIONS(8446), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158626] = 4, - ACTIONS(8807), 1, - sym_identifier, - ACTIONS(8809), 1, - anon_sym_LBRACK, - ACTIONS(8811), 1, - sym_private_property_identifier, + anon_sym_SEMI, + [159136] = 4, + ACTIONS(1645), 1, + anon_sym_RPAREN, + ACTIONS(8833), 1, + anon_sym_COMMA, + STATE(5028), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158640] = 2, + [159150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158650] = 2, + [159160] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8835), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8785), 3, - sym__automatic_semicolon, + [159174] = 4, + ACTIONS(1707), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158660] = 2, + ACTIONS(8837), 1, + anon_sym_RBRACK, + STATE(5196), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158670] = 2, + [159188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158680] = 4, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158694] = 2, + [159198] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158704] = 2, + [159208] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8808), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158714] = 2, + [159218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8810), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158724] = 2, + [159228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158734] = 2, + [159238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8810), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158744] = 3, - ACTIONS(7323), 1, - anon_sym_EQ, + [159248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3635), 2, - anon_sym_in, - anon_sym_of, - [158756] = 2, + ACTIONS(8478), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8839), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158766] = 2, + [159268] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158776] = 2, + [159278] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8839), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158786] = 2, + [159288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158796] = 4, - ACTIONS(7520), 1, + [159298] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8813), 1, - anon_sym_LBRACE, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(5412), 1, + anon_sym_RPAREN, + STATE(4934), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158810] = 4, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + [159312] = 4, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(8843), 1, + anon_sym_DOT, + STATE(1904), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158824] = 2, + [159326] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5412), 1, + anon_sym_RPAREN, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8783), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158834] = 2, + [159340] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158844] = 2, + [159350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8414), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158854] = 4, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(8817), 1, - sym_identifier, - STATE(4575), 1, - sym_export_clause, + [159360] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158868] = 4, - ACTIONS(5533), 1, + ACTIONS(8446), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8819), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158882] = 4, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(8821), 1, - sym_identifier, - STATE(5291), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158896] = 2, + anon_sym_SEMI, + [159370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158906] = 2, + [159380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158916] = 2, + [159390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158926] = 4, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(8823), 1, - sym_identifier, - STATE(5293), 1, - sym__import_identifier, + [159400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158940] = 4, - ACTIONS(5533), 1, + ACTIONS(8476), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8825), 1, - anon_sym_RBRACE, - STATE(5137), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [159410] = 4, + ACTIONS(8379), 1, + anon_sym_GT, + ACTIONS(8845), 1, + anon_sym_COMMA, + STATE(4814), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158954] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8825), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [159424] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158968] = 2, + ACTIONS(8810), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159434] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158978] = 3, - ACTIONS(8827), 1, - sym_identifier, + [159444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8829), 2, + ACTIONS(8446), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [158990] = 4, - ACTIONS(8831), 1, anon_sym_COMMA, - ACTIONS(8834), 1, - anon_sym_RBRACK, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, + anon_sym_SEMI, + [159454] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159004] = 2, + ACTIONS(8576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8836), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159014] = 4, - ACTIONS(8838), 1, - anon_sym_COMMA, - ACTIONS(8841), 1, - anon_sym_RBRACE, - STATE(5106), 1, - aux_sym_named_imports_repeat1, + [159474] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159028] = 2, + ACTIONS(8810), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159484] = 4, + ACTIONS(1029), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + STATE(4029), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8843), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [159038] = 2, + [159498] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159048] = 4, - ACTIONS(8845), 1, - anon_sym_COMMA, + [159508] = 4, ACTIONS(8847), 1, - anon_sym_RPAREN, - STATE(5141), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_COMMA, + ACTIONS(8849), 1, + anon_sym_GT, + STATE(4957), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159062] = 2, + [159522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159072] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - ACTIONS(8849), 1, - anon_sym_LPAREN, - STATE(759), 1, - sym_statement_block, + [159532] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5355), 1, + anon_sym_RPAREN, + STATE(5138), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159086] = 4, - ACTIONS(1779), 1, + [159546] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8235), 1, - anon_sym_RBRACK, - STATE(5175), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(5355), 1, + anon_sym_RPAREN, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159100] = 2, + [159560] = 3, + ACTIONS(8851), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8853), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159110] = 2, + [159572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159120] = 4, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(8603), 1, - anon_sym_DOT, - STATE(2890), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159134] = 4, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - STATE(5748), 1, - sym_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159148] = 2, + [159582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159158] = 2, + [159592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8855), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159168] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5523), 1, - anon_sym_RBRACK, - STATE(5161), 1, - aux_sym_array_repeat1, + [159602] = 3, + ACTIONS(8857), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159182] = 2, + ACTIONS(7895), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [159614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159192] = 2, + [159624] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159202] = 2, + [159634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159212] = 2, + [159644] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159222] = 3, - ACTIONS(8061), 1, - anon_sym_LBRACE, + [159654] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8063), 2, + ACTIONS(8446), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159234] = 2, + anon_sym_SEMI, + [159664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159244] = 2, + [159674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8859), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [159254] = 2, + [159684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159264] = 2, + [159694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159274] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8851), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [159704] = 4, + ACTIONS(8861), 1, + sym_identifier, + STATE(3956), 1, + sym_decorator_member_expression, + STATE(5658), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159288] = 2, + [159718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159298] = 4, - ACTIONS(5027), 1, + [159728] = 4, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(8853), 1, + ACTIONS(8863), 1, anon_sym_RBRACE, - STATE(4615), 1, + STATE(5210), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159312] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5523), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159326] = 4, - ACTIONS(8855), 1, - anon_sym_COMMA, - ACTIONS(8858), 1, - anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + [159742] = 4, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(8865), 1, + anon_sym_EQ, + STATE(5663), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159340] = 4, - ACTIONS(1779), 1, - anon_sym_COMMA, - ACTIONS(8235), 1, - anon_sym_RBRACK, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, + [159756] = 4, + ACTIONS(6376), 1, + anon_sym_DOT, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(8867), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159354] = 2, + [159770] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159364] = 4, - ACTIONS(5533), 1, + [159780] = 4, + ACTIONS(5601), 1, anon_sym_COMMA, - ACTIONS(8860), 1, + ACTIONS(8747), 1, anon_sym_RBRACE, - STATE(4612), 1, + STATE(4854), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159378] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8862), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [159794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159392] = 2, + ACTIONS(8855), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159804] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159402] = 2, + [159814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5567), 3, + ACTIONS(8553), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [159412] = 3, - ACTIONS(8196), 1, - anon_sym_EQ, + anon_sym_SEMI, + [159824] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8864), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [159424] = 4, - ACTIONS(1645), 1, - anon_sym_RPAREN, - ACTIONS(8866), 1, + ACTIONS(8553), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4847), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [159834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159438] = 2, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159448] = 3, - ACTIONS(4188), 1, - anon_sym_LBRACE, + [159854] = 3, + ACTIONS(7422), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159460] = 2, + ACTIONS(3630), 2, + anon_sym_in, + anon_sym_of, + [159866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159470] = 2, + [159876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159480] = 2, + [159886] = 3, + ACTIONS(7275), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8869), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159490] = 2, + [159898] = 3, + ACTIONS(7277), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8869), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159500] = 2, + [159910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159510] = 3, - ACTIONS(4210), 1, - anon_sym_LBRACE, + [159920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 2, + ACTIONS(8518), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159522] = 2, + anon_sym_SEMI, + [159930] = 4, + ACTIONS(8871), 1, + anon_sym_COMMA, + ACTIONS(8873), 1, + anon_sym_RBRACK, + STATE(5167), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159532] = 2, + [159944] = 4, + ACTIONS(5036), 1, + anon_sym_extends, + ACTIONS(8875), 1, + anon_sym_AMP, + ACTIONS(8877), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, - sym__automatic_semicolon, + [159958] = 4, + ACTIONS(7354), 1, + anon_sym_AMP, + ACTIONS(7356), 1, + anon_sym_PIPE, + ACTIONS(7358), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159972] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159542] = 2, + ACTIONS(5390), 1, + anon_sym_RPAREN, + STATE(5212), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, - sym__automatic_semicolon, + [159986] = 4, + ACTIONS(8879), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159552] = 4, - ACTIONS(3467), 1, - anon_sym_LPAREN, - ACTIONS(8868), 1, - anon_sym_DOT, - STATE(3176), 1, - sym_arguments, + ACTIONS(8882), 1, + anon_sym_RBRACE, + STATE(5123), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159566] = 2, + [160000] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, + ACTIONS(7464), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [160010] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159576] = 2, + ACTIONS(5390), 1, + anon_sym_RPAREN, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159586] = 2, + [160024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159596] = 2, + [160034] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159606] = 2, + [160044] = 4, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(8884), 1, + anon_sym_RPAREN, + STATE(5834), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159616] = 2, + [160058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159626] = 2, + [160068] = 3, + ACTIONS(8886), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8888), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159636] = 4, - ACTIONS(1928), 1, + [160080] = 4, + ACTIONS(8890), 1, anon_sym_COMMA, - ACTIONS(8870), 1, + ACTIONS(8893), 1, anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, + STATE(5131), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159650] = 4, - ACTIONS(8872), 1, - anon_sym_LPAREN, - ACTIONS(8874), 1, - anon_sym_await, - STATE(75), 1, - sym__for_header, + [160094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159664] = 2, + ACTIONS(8895), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [160104] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159674] = 2, + [160114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159684] = 2, + [160124] = 4, + ACTIONS(1029), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + STATE(4163), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159694] = 4, - ACTIONS(2492), 1, - anon_sym_while, - ACTIONS(8876), 1, - anon_sym_else, - STATE(850), 1, - sym_else_clause, + [160138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159708] = 4, - ACTIONS(1928), 1, + ACTIONS(8553), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5314), 1, - anon_sym_RPAREN, - STATE(5209), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [160148] = 4, + ACTIONS(8897), 1, + anon_sym_COMMA, + ACTIONS(8899), 1, + anon_sym_RBRACE, + STATE(5182), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159722] = 4, + [160162] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5314), 1, + ACTIONS(8901), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4622), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159736] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159746] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8438), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159756] = 2, + [160176] = 4, + ACTIONS(6376), 1, + anon_sym_DOT, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(8903), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, + [160190] = 4, + ACTIONS(3162), 1, + anon_sym_GT, + ACTIONS(8905), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159766] = 2, + STATE(4554), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159776] = 2, + [160204] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8907), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159786] = 4, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(8878), 1, + [160214] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5783), 1, - sym_implements_clause, + ACTIONS(8909), 1, + anon_sym_LPAREN, + STATE(763), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159800] = 4, - ACTIONS(1779), 1, + [160228] = 4, + ACTIONS(1707), 1, anon_sym_COMMA, - ACTIONS(8880), 1, + ACTIONS(8411), 1, anon_sym_RBRACK, - STATE(5177), 1, + STATE(5193), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159814] = 2, + [160242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159824] = 4, - ACTIONS(8864), 1, - anon_sym_RBRACK, - ACTIONS(8882), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159838] = 4, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - STATE(4801), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159852] = 4, - ACTIONS(6316), 1, + [160252] = 4, + ACTIONS(6376), 1, anon_sym_DOT, - ACTIONS(6601), 1, + ACTIONS(6679), 1, anon_sym_COLON, - ACTIONS(8885), 1, + ACTIONS(8911), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159866] = 4, - ACTIONS(8310), 1, - anon_sym_GT, - ACTIONS(8887), 1, + [160266] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4655), 1, - aux_sym_type_parameters_repeat1, + anon_sym_SEMI, + [160276] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5581), 1, + anon_sym_RBRACK, + STATE(5179), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159880] = 2, + [160290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159890] = 2, + [160300] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159900] = 3, - ACTIONS(8889), 1, - anon_sym_EQ, + [160310] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 2, + ACTIONS(8749), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [159912] = 2, + anon_sym_SEMI, + [160320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159922] = 2, + [160330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159932] = 2, + [160340] = 3, + ACTIONS(8058), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + ACTIONS(8060), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159942] = 2, + anon_sym_LBRACE_PIPE, + [160352] = 4, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6661), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159952] = 4, - ACTIONS(8892), 1, - anon_sym_LPAREN, - ACTIONS(8894), 1, - anon_sym_await, - STATE(66), 1, - sym__for_header, + [160366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159966] = 2, + ACTIONS(8470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160376] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159976] = 2, + [160386] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159986] = 4, - ACTIONS(5533), 1, + [160396] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8896), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + ACTIONS(5581), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160000] = 4, - ACTIONS(5027), 1, + [160410] = 4, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(8898), 1, + ACTIONS(8916), 1, anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, + STATE(5159), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160424] = 4, + ACTIONS(1707), 1, + anon_sym_COMMA, + ACTIONS(8411), 1, + anon_sym_RBRACK, + STATE(5196), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160014] = 2, + [160438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160024] = 4, - ACTIONS(8900), 1, + [160448] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8902), 1, - anon_sym_RBRACK, - STATE(4610), 1, - aux_sym_tuple_type_repeat1, + anon_sym_SEMI, + [160458] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160038] = 2, + ACTIONS(8446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8918), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160048] = 2, + [160478] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8904), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160058] = 4, - ACTIONS(5027), 1, + [160488] = 4, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(8906), 1, + ACTIONS(8863), 1, anon_sym_RBRACE, - STATE(4615), 1, + STATE(4710), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160072] = 2, + [160502] = 4, + ACTIONS(2692), 1, + anon_sym_RBRACK, + ACTIONS(8920), 1, + anon_sym_COMMA, + STATE(5131), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160516] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8904), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160082] = 2, + [160526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, - sym__automatic_semicolon, + ACTIONS(5627), 3, anon_sym_COMMA, - anon_sym_SEMI, - [160092] = 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [160536] = 3, + ACTIONS(8356), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8908), 3, - sym__automatic_semicolon, + ACTIONS(8922), 2, anon_sym_COMMA, - anon_sym_SEMI, - [160102] = 4, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, + anon_sym_RBRACK, + [160548] = 4, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(8924), 1, + anon_sym_RBRACE, + STATE(4685), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160116] = 2, + [160562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160126] = 2, + [160572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8910), 3, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160136] = 2, + [160582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160146] = 2, + [160592] = 4, + ACTIONS(8926), 1, + anon_sym_COMMA, + ACTIONS(8928), 1, + anon_sym_RBRACK, + STATE(5223), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8912), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160156] = 2, + [160616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8930), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160166] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8914), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [160626] = 3, + ACTIONS(8932), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160180] = 2, + ACTIONS(7953), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [160638] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8934), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160190] = 4, - ACTIONS(1928), 1, + [160652] = 4, + ACTIONS(8936), 1, anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + ACTIONS(8938), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160204] = 2, + [160666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160214] = 4, - ACTIONS(3166), 1, - anon_sym_GT, - ACTIONS(8918), 1, + [160676] = 4, + ACTIONS(8940), 1, anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(8942), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160228] = 2, + [160690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8912), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160238] = 2, + [160700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160248] = 2, + [160710] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8920), 3, + ACTIONS(8568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160258] = 2, + [160720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8922), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160268] = 2, + [160730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160278] = 4, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1495), 1, - anon_sym_LBRACE, - STATE(797), 1, - sym_object_type, + [160740] = 4, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + STATE(4492), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160292] = 2, + [160754] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8920), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160302] = 2, + [160764] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8904), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160312] = 2, + [160774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8560), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160322] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(778), 1, - sym_statement_block, + [160784] = 4, + ACTIONS(8944), 1, + anon_sym_LPAREN, + ACTIONS(8946), 1, + anon_sym_await, + STATE(74), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160333] = 3, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(8924), 1, - anon_sym_GT, + [160798] = 4, + ACTIONS(1707), 1, + anon_sym_COMMA, + ACTIONS(8948), 1, + anon_sym_RBRACK, + STATE(5196), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160344] = 3, + [160812] = 4, ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2114), 1, - sym_statement_block, + anon_sym_extends, + ACTIONS(8950), 1, + anon_sym_AMP, + ACTIONS(8952), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160355] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(4120), 1, - sym_class_body, + [160826] = 4, + ACTIONS(2480), 1, + anon_sym_while, + ACTIONS(8954), 1, + anon_sym_else, + STATE(785), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160366] = 2, + [160840] = 4, + ACTIONS(8922), 1, + anon_sym_RBRACK, + ACTIONS(8956), 1, + anon_sym_COMMA, + STATE(5196), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7550), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [160375] = 2, + [160854] = 4, + ACTIONS(7259), 1, + anon_sym_const, + ACTIONS(8280), 1, + sym_identifier, + STATE(5081), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8926), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160384] = 2, + [160868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8928), 2, + ACTIONS(8470), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [160393] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2648), 1, - sym_statement_block, + anon_sym_SEMI, + [160878] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160404] = 2, + ACTIONS(8918), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8930), 2, + ACTIONS(8749), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [160413] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(2535), 1, - sym_class_body, + anon_sym_SEMI, + [160898] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160424] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3860), 1, - sym_formal_parameters, + ACTIONS(8576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160908] = 4, + ACTIONS(8169), 1, + anon_sym_from, + ACTIONS(8578), 1, + anon_sym_as, + STATE(5548), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160435] = 2, + [160922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 2, + ACTIONS(8446), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [160444] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5386), 1, - sym_statement_block, + anon_sym_SEMI, + [160932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160455] = 2, + ACTIONS(8458), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6005), 2, + ACTIONS(8446), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [160464] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2120), 1, - sym_class_body, + anon_sym_SEMI, + [160952] = 3, + ACTIONS(8959), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160475] = 2, + ACTIONS(3562), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [160964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8932), 2, + ACTIONS(8962), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [160484] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(4128), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160495] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2631), 1, - sym_statement_block, + [160974] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160506] = 3, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1644), 1, - sym_arguments, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160517] = 3, - ACTIONS(8934), 1, - sym_identifier, - ACTIONS(8936), 1, - sym_private_property_identifier, + ACTIONS(8478), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160994] = 4, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(8964), 1, + anon_sym_RBRACE, + STATE(4710), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160528] = 2, + [161008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8938), 2, + ACTIONS(8966), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [160537] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(1713), 1, - sym_class_body, + [161018] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8968), 1, + anon_sym_RPAREN, + STATE(4622), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160548] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(4130), 1, - sym_class_body, + [161032] = 4, + ACTIONS(3196), 1, + anon_sym_GT, + ACTIONS(8970), 1, + anon_sym_COMMA, + STATE(4554), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160559] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2607), 1, - sym_statement_block, + [161046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160570] = 2, + ACTIONS(8966), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8940), 2, + ACTIONS(8972), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [160579] = 2, + anon_sym_SEMI, + [161066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8942), 2, - anon_sym_in, - anon_sym_of, - [160588] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2620), 1, - sym_statement_block, + ACTIONS(8974), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160599] = 3, - ACTIONS(8944), 1, - anon_sym_LBRACE, - STATE(831), 1, - sym_enum_body, + ACTIONS(8476), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160610] = 3, - ACTIONS(8946), 1, - sym_identifier, - ACTIONS(8948), 1, - sym_private_property_identifier, + ACTIONS(8472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160621] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_statement_block, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160632] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(1703), 1, - sym_class_body, + ACTIONS(8518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160643] = 3, - ACTIONS(8950), 1, - sym_identifier, - ACTIONS(8952), 1, - sym_private_property_identifier, + ACTIONS(8976), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160654] = 3, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8547), 1, - anon_sym_GT, + ACTIONS(8518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161136] = 4, + ACTIONS(2804), 1, + anon_sym_RBRACK, + ACTIONS(8978), 1, + anon_sym_COMMA, + STATE(5131), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160665] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(770), 1, - sym_class_body, + [161150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160676] = 3, - ACTIONS(8954), 1, - sym_identifier, - ACTIONS(8956), 1, - sym_private_property_identifier, + ACTIONS(8446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160687] = 3, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_class_body, + ACTIONS(8976), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161170] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160698] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1717), 1, - sym_statement_block, + ACTIONS(8478), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160709] = 3, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(8958), 1, - anon_sym_GT, + ACTIONS(8980), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161190] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160720] = 3, - ACTIONS(6900), 1, - anon_sym_LBRACE, - STATE(876), 1, - sym_class_body, + ACTIONS(8446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160731] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2083), 1, - sym_class_body, + ACTIONS(8647), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161210] = 4, + ACTIONS(5601), 1, + anon_sym_COMMA, + ACTIONS(8924), 1, + anon_sym_RBRACE, + STATE(4677), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160742] = 2, + [161224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8960), 2, + ACTIONS(8576), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [160751] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1707), 1, - sym_statement_block, + anon_sym_SEMI, + [161234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160762] = 3, - ACTIONS(7205), 1, - anon_sym_LBRACE, - STATE(776), 1, - sym_statement_block, + ACTIONS(8982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161244] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160773] = 3, - ACTIONS(8962), 1, - sym_identifier, - ACTIONS(8964), 1, - sym_private_property_identifier, + ACTIONS(8647), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160784] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2066), 1, - sym_statement_block, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160795] = 3, - ACTIONS(8966), 1, - sym_identifier, - ACTIONS(8968), 1, - sym_private_property_identifier, + ACTIONS(8446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161274] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160806] = 3, - ACTIONS(8970), 1, - sym_identifier, - ACTIONS(8972), 1, - sym_private_property_identifier, + ACTIONS(8980), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161284] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160817] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5944), 1, - sym_formal_parameters, + ACTIONS(8458), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160828] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(777), 1, - sym_class_body, + ACTIONS(8446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160839] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_statement_block, + ACTIONS(8560), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160850] = 2, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8974), 2, + ACTIONS(8966), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [160859] = 2, + [161334] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 2, + ACTIONS(8553), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [160868] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5497), 1, - sym_statement_block, + anon_sym_SEMI, + [161344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160879] = 2, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 2, + ACTIONS(8576), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [160888] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5499), 1, - sym_statement_block, + anon_sym_SEMI, + [161364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160899] = 3, - ACTIONS(8976), 1, - sym_identifier, - ACTIONS(8978), 1, - sym_private_property_identifier, + ACTIONS(8576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160910] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5742), 1, - sym_formal_parameters, + ACTIONS(8568), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160921] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5747), 1, - sym_formal_parameters, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160932] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_class_body, + ACTIONS(8472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160943] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2068), 1, - sym_class_body, + ACTIONS(8446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161414] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8560), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161424] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(4019), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160954] = 3, - ACTIONS(8980), 1, - sym_identifier, - ACTIONS(8982), 1, - sym_private_property_identifier, + [161435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160965] = 3, - ACTIONS(4116), 1, + ACTIONS(8984), 2, + anon_sym_COMMA, + anon_sym_GT, + [161444] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(2334), 1, + STATE(2126), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160976] = 3, - ACTIONS(8984), 1, - sym_identifier, + [161455] = 3, ACTIONS(8986), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160987] = 3, - ACTIONS(8988), 1, - sym_identifier, - ACTIONS(8990), 1, - sym_private_property_identifier, + anon_sym_LBRACE, + STATE(906), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160998] = 3, - ACTIONS(6752), 1, + [161466] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(2335), 1, - sym_class_body, + STATE(2331), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161009] = 3, - ACTIONS(8992), 1, + [161477] = 3, + ACTIONS(8988), 1, sym_identifier, - ACTIONS(8994), 1, - sym_private_property_identifier, + STATE(4876), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161020] = 3, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8751), 1, - anon_sym_GT, + [161488] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(2129), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161031] = 3, - ACTIONS(8571), 1, - sym_identifier, - ACTIONS(8575), 1, - sym_private_property_identifier, + [161499] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161042] = 3, - ACTIONS(7414), 1, + ACTIONS(8990), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161508] = 3, + ACTIONS(6920), 1, anon_sym_LBRACE, - STATE(2649), 1, - sym_statement_block, + STATE(228), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161053] = 3, - ACTIONS(7205), 1, + [161519] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(772), 1, - sym_statement_block, + STATE(2295), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161064] = 2, + [161530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8996), 2, + ACTIONS(8992), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [161073] = 2, + anon_sym_RPAREN, + [161539] = 3, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(2556), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161082] = 2, + [161550] = 3, + ACTIONS(8994), 1, + sym_identifier, + ACTIONS(8996), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8998), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161091] = 3, - ACTIONS(9000), 1, - anon_sym_COMMA, - ACTIONS(9002), 1, - anon_sym_from, + [161561] = 3, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(775), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161102] = 2, + [161572] = 3, + ACTIONS(8998), 1, + sym_identifier, + ACTIONS(9000), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4616), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161111] = 2, + [161583] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9004), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161120] = 3, - ACTIONS(9006), 1, - anon_sym_SEMI, - ACTIONS(9008), 1, - sym__automatic_semicolon, + ACTIONS(8541), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161592] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161131] = 3, - ACTIONS(9010), 1, + [161603] = 3, + ACTIONS(9002), 1, anon_sym_LPAREN, - STATE(48), 1, + STATE(35), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161142] = 3, - ACTIONS(6784), 1, + [161614] = 3, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(1647), 1, + STATE(2558), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161153] = 3, - ACTIONS(9010), 1, + [161625] = 3, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(49), 1, - sym_parenthesized_expression, + STATE(3311), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161164] = 2, + [161636] = 3, + ACTIONS(3188), 1, + sym_jsx_identifier, + ACTIONS(9004), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161173] = 2, + [161647] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(2293), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7558), 2, + [161658] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161182] = 3, - ACTIONS(9012), 1, - sym_identifier, - STATE(4738), 1, - sym_nested_identifier, + STATE(2633), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161193] = 3, - ACTIONS(9014), 1, - anon_sym_SEMI, - ACTIONS(9016), 1, - sym__automatic_semicolon, + [161669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161204] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2218), 1, - sym_class_body, + ACTIONS(9006), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161678] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(3800), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161215] = 3, - ACTIONS(7872), 1, - anon_sym_in, - ACTIONS(7874), 1, - anon_sym_of, + [161689] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161226] = 3, - ACTIONS(9010), 1, + ACTIONS(9008), 2, + anon_sym_in, + anon_sym_of, + [161698] = 3, + ACTIONS(9002), 1, anon_sym_LPAREN, - STATE(51), 1, + STATE(5472), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161237] = 3, - ACTIONS(6784), 1, + [161709] = 3, + ACTIONS(6920), 1, anon_sym_LBRACE, - STATE(2556), 1, + STATE(247), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161248] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(764), 1, - sym_class_body, + [161720] = 3, + ACTIONS(9010), 1, + sym_identifier, + ACTIONS(9012), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161259] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5360), 1, - sym_statement_block, + [161731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161270] = 3, - ACTIONS(6916), 1, + ACTIONS(9014), 2, + anon_sym_COMMA, + anon_sym_GT, + [161740] = 3, + ACTIONS(6912), 1, anon_sym_LBRACE, - STATE(4148), 1, + STATE(818), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161281] = 3, - ACTIONS(9018), 1, - sym_identifier, - ACTIONS(9020), 1, - sym_private_property_identifier, + [161751] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161292] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2657), 1, - sym_statement_block, + [161762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161303] = 3, - ACTIONS(7414), 1, + ACTIONS(9016), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161771] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2621), 1, + STATE(5574), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161314] = 3, - ACTIONS(7414), 1, + [161782] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2635), 1, + STATE(2645), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161325] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_class_body, + [161793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161336] = 3, - ACTIONS(7414), 1, + ACTIONS(6092), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161802] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2638), 1, + STATE(766), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161347] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(9022), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161356] = 2, + [161813] = 3, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(8645), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9024), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161365] = 3, - ACTIONS(6784), 1, + [161824] = 3, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(1704), 1, + STATE(779), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161376] = 3, - ACTIONS(4126), 1, + [161835] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(1649), 1, + STATE(719), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161387] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2656), 1, - sym_statement_block, + [161846] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161398] = 3, - ACTIONS(4750), 1, + ACTIONS(9018), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161855] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6072), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161864] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2665), 1, + STATE(5528), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161409] = 3, - ACTIONS(9026), 1, - anon_sym_SEMI, - ACTIONS(9028), 1, - sym__automatic_semicolon, + [161875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161420] = 3, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5517), 1, - sym__from_clause, + ACTIONS(6076), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161884] = 3, + ACTIONS(6744), 1, + anon_sym_DOT, + ACTIONS(9020), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161431] = 3, - ACTIONS(7414), 1, + [161895] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2645), 1, + STATE(5530), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161442] = 3, - ACTIONS(9030), 1, - anon_sym_in, - ACTIONS(9032), 1, + [161906] = 3, + ACTIONS(6920), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161917] = 3, + ACTIONS(3536), 1, anon_sym_COLON, + STATE(5418), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161453] = 3, - ACTIONS(6450), 1, + [161928] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(5734), 1, + STATE(5987), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161464] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5985), 1, - sym_formal_parameters, + [161939] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(2347), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161475] = 3, - ACTIONS(6450), 1, + [161950] = 3, + ACTIONS(6568), 1, anon_sym_LPAREN, - STATE(5687), 1, + STATE(3366), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161486] = 2, + [161961] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5555), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9034), 2, + ACTIONS(4609), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161495] = 3, - ACTIONS(6916), 1, + [161981] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(4034), 1, + STATE(2348), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161506] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2643), 1, - sym_statement_block, + [161992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161517] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2651), 1, - sym_statement_block, + ACTIONS(4619), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162001] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9022), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162010] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9024), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162019] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5638), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161528] = 3, - ACTIONS(7414), 1, + [162030] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(2608), 1, - sym_statement_block, + STATE(2211), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161539] = 3, - ACTIONS(7414), 1, + [162041] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(2611), 1, - sym_statement_block, + STATE(2091), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161550] = 3, - ACTIONS(9036), 1, + [162052] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(52), 1, - sym__for_header, + STATE(5799), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161561] = 3, - ACTIONS(4116), 1, + [162063] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2191), 1, + STATE(2626), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161572] = 3, - ACTIONS(6462), 1, + [162074] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3334), 1, + STATE(6013), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161583] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2616), 1, - sym_statement_block, + [162085] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161594] = 2, + ACTIONS(8558), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, + ACTIONS(4580), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161603] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5272), 1, - sym_statement_block, + [162103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161614] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161625] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_statement_block, + ACTIONS(9026), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162112] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161636] = 3, - ACTIONS(8129), 1, - anon_sym_from, - STATE(4170), 1, - sym__from_clause, + ACTIONS(8527), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162121] = 3, + ACTIONS(9028), 1, + sym_identifier, + ACTIONS(9030), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161647] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_statement_block, + [162132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161658] = 3, - ACTIONS(7414), 1, + ACTIONS(8776), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162141] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2628), 1, + STATE(2623), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161669] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_class_body, + [162152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161680] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1615), 1, - sym_statement_block, + ACTIONS(5026), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162161] = 3, + ACTIONS(9032), 1, + anon_sym_SEMI, + ACTIONS(9034), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161691] = 2, + [162172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4969), 2, + ACTIONS(5180), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161700] = 2, + [162181] = 3, + ACTIONS(9036), 1, + sym_identifier, + ACTIONS(9038), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161709] = 2, + [162192] = 3, + ACTIONS(7961), 1, + anon_sym_in, + ACTIONS(7963), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161718] = 3, - ACTIONS(9038), 1, - anon_sym_SEMI, - ACTIONS(9040), 1, - sym__automatic_semicolon, + [162203] = 3, + ACTIONS(9002), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161729] = 3, - ACTIONS(7414), 1, + [162214] = 3, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(2613), 1, - sym_statement_block, + STATE(2571), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161740] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym_statement_block, + [162225] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161751] = 3, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3630), 1, - sym_formal_parameters, + ACTIONS(9040), 2, + anon_sym_COMMA, + anon_sym_GT, + [162234] = 3, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(8911), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161762] = 3, - ACTIONS(7414), 1, + [162245] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2619), 1, + STATE(777), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161773] = 2, + [162256] = 3, + ACTIONS(9002), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5974), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161782] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2612), 1, - sym_statement_block, + [162267] = 3, + ACTIONS(9042), 1, + sym_identifier, + ACTIONS(9044), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161793] = 2, + [162278] = 3, + ACTIONS(6744), 1, + anon_sym_DOT, + ACTIONS(9046), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161802] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5702), 1, - sym_formal_parameters, + [162289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161813] = 3, - ACTIONS(6450), 1, + ACTIONS(9048), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162298] = 3, + ACTIONS(9002), 1, anon_sym_LPAREN, - STATE(5794), 1, - sym_formal_parameters, + STATE(50), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161824] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5232), 1, - sym_statement_block, + [162309] = 3, + ACTIONS(9050), 1, + sym_identifier, + ACTIONS(9052), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161835] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5858), 1, - sym_formal_parameters, + [162320] = 3, + ACTIONS(9054), 1, + anon_sym_in, + ACTIONS(9056), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161846] = 2, + [162331] = 3, + ACTIONS(8169), 1, + anon_sym_from, + STATE(4468), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5980), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161855] = 3, - ACTIONS(4535), 1, + [162342] = 3, + ACTIONS(9002), 1, anon_sym_LPAREN, - STATE(2088), 1, - sym_arguments, + STATE(44), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161866] = 3, - ACTIONS(2444), 1, + [162353] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(5234), 1, + STATE(2213), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161877] = 2, + [162364] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(2093), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6027), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161886] = 3, - ACTIONS(6924), 1, + [162375] = 3, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(250), 1, + STATE(1686), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161897] = 3, - ACTIONS(7414), 1, + [162386] = 3, + ACTIONS(4230), 1, anon_sym_LBRACE, - STATE(2652), 1, + STATE(1713), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161908] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2115), 1, - sym_class_body, + [162397] = 3, + ACTIONS(8169), 1, + anon_sym_from, + STATE(5382), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161919] = 3, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(240), 1, - sym_class_body, + [162408] = 3, + ACTIONS(9058), 1, + sym_identifier, + ACTIONS(9060), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161930] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2650), 1, - sym_statement_block, + [162419] = 3, + ACTIONS(9062), 1, + sym_identifier, + ACTIONS(9064), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162430] = 3, + ACTIONS(9066), 1, + sym_identifier, + ACTIONS(9068), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162441] = 3, + ACTIONS(8169), 1, + anon_sym_from, + STATE(4233), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162452] = 3, + ACTIONS(9070), 1, + sym_identifier, + ACTIONS(9072), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161941] = 2, + [162463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 2, + ACTIONS(6018), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161950] = 3, - ACTIONS(2444), 1, + [162472] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(5365), 1, + STATE(2294), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161961] = 3, - ACTIONS(5964), 1, + [162483] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(2753), 1, - sym_arguments, + STATE(5676), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161972] = 3, - ACTIONS(9010), 1, + [162494] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(63), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161983] = 2, + STATE(5769), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9042), 2, - sym__automatic_semicolon, + [162505] = 3, + ACTIONS(9074), 1, anon_sym_SEMI, - [161992] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2179), 1, - sym_class_body, + ACTIONS(9076), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162003] = 3, - ACTIONS(6450), 1, + [162516] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(5625), 1, + STATE(5843), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162014] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2647), 1, - sym_statement_block, + [162527] = 3, + ACTIONS(9078), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162025] = 3, - ACTIONS(2444), 1, + [162538] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(5274), 1, + STATE(4213), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162036] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2634), 1, - sym_statement_block, + [162549] = 3, + ACTIONS(9080), 1, + sym_identifier, + ACTIONS(9082), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162047] = 2, + [162560] = 3, + ACTIONS(9084), 1, + anon_sym_LBRACE, + STATE(3961), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8479), 2, - anon_sym_COMMA, - anon_sym_GT, - [162056] = 3, - ACTIONS(7205), 1, + [162571] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(3943), 1, - sym_statement_block, + STATE(2325), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162067] = 2, + [162582] = 3, + ACTIONS(9086), 1, + sym_identifier, + ACTIONS(9088), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162076] = 3, - ACTIONS(9036), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym__for_header, + [162593] = 3, + ACTIONS(8796), 1, + sym_identifier, + ACTIONS(8800), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162087] = 3, - ACTIONS(9044), 1, - sym_identifier, - ACTIONS(9046), 1, - sym_private_property_identifier, + [162604] = 3, + ACTIONS(3922), 1, + anon_sym_LPAREN, + STATE(1654), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162098] = 2, + [162615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4664), 2, + ACTIONS(5182), 2, sym__automatic_semicolon, anon_sym_SEMI, - [162107] = 3, - ACTIONS(8609), 1, + [162624] = 3, + ACTIONS(9090), 1, sym_identifier, - ACTIONS(8613), 1, + ACTIONS(9092), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162118] = 2, + [162635] = 3, + ACTIONS(9094), 1, + sym_identifier, + ACTIONS(9096), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4668), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162127] = 3, - ACTIONS(8944), 1, + [162646] = 3, + ACTIONS(3445), 1, + anon_sym_LPAREN, + STATE(1273), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162657] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(910), 1, - sym_enum_body, + STATE(2098), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162138] = 3, - ACTIONS(9048), 1, + [162668] = 3, + ACTIONS(9098), 1, sym_identifier, - ACTIONS(9050), 1, + ACTIONS(9100), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162149] = 3, - ACTIONS(9052), 1, + [162679] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(3945), 1, - sym_enum_body, + STATE(2674), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162160] = 3, - ACTIONS(9054), 1, + [162690] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7717), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [162699] = 3, + ACTIONS(9102), 1, sym_identifier, - ACTIONS(9056), 1, + ACTIONS(9104), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162171] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2663), 1, - sym_statement_block, + [162710] = 3, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3714), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162182] = 3, - ACTIONS(9058), 1, + [162721] = 3, + ACTIONS(9106), 1, sym_identifier, - ACTIONS(9060), 1, + ACTIONS(9108), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162732] = 3, + ACTIONS(9110), 1, + sym_identifier, + ACTIONS(9112), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162743] = 3, + ACTIONS(9114), 1, + sym_identifier, + ACTIONS(9116), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162193] = 2, + [162754] = 3, + ACTIONS(9118), 1, + anon_sym_SEMI, + ACTIONS(9120), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162765] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162774] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2654), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8787), 2, + ACTIONS(6084), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162202] = 3, + [162794] = 3, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5411), 1, + STATE(5286), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162213] = 3, - ACTIONS(9062), 1, - sym_identifier, - ACTIONS(9064), 1, - sym_private_property_identifier, + [162805] = 3, + ACTIONS(9122), 1, + anon_sym_SEMI, + ACTIONS(9124), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162224] = 3, - ACTIONS(9066), 1, - sym_identifier, - ACTIONS(9068), 1, - sym_private_property_identifier, + [162816] = 3, + ACTIONS(9126), 1, + anon_sym_SEMI, + ACTIONS(9128), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162235] = 3, - ACTIONS(7414), 1, + [162827] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2640), 1, + STATE(2624), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162246] = 3, - ACTIONS(9070), 1, + [162838] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5408), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162849] = 3, + ACTIONS(9130), 1, sym_identifier, - ACTIONS(9072), 1, + ACTIONS(9132), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162257] = 3, - ACTIONS(8807), 1, + [162860] = 3, + ACTIONS(8596), 1, sym_identifier, - ACTIONS(8811), 1, + ACTIONS(8600), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162268] = 3, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1660), 1, - sym_arguments, + [162871] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162279] = 2, + [162882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 2, + ACTIONS(9134), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162288] = 2, + anon_sym_RPAREN, + [162891] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5763), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162297] = 3, - ACTIONS(9074), 1, - sym_identifier, - ACTIONS(9076), 1, - anon_sym_STAR, + [162902] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5914), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162308] = 3, - ACTIONS(9078), 1, + [162913] = 3, + ACTIONS(9136), 1, sym_identifier, - ACTIONS(9080), 1, - anon_sym_STAR, + ACTIONS(9138), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162319] = 3, - ACTIONS(6450), 1, + [162924] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(4041), 1, + STATE(5994), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162330] = 2, + [162935] = 3, + ACTIONS(9084), 1, + anon_sym_LBRACE, + STATE(4385), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162339] = 3, - ACTIONS(3530), 1, - anon_sym_COLON, - STATE(5459), 1, - sym_type_annotation, + [162946] = 3, + ACTIONS(6920), 1, + anon_sym_LBRACE, + STATE(234), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162350] = 2, + [162957] = 3, + ACTIONS(9140), 1, + anon_sym_SEMI, + ACTIONS(9142), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162359] = 2, + [162968] = 3, + ACTIONS(8699), 1, + sym_identifier, + ACTIONS(8703), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9082), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162368] = 3, - ACTIONS(3530), 1, - anon_sym_COLON, - STATE(5414), 1, - sym_type_annotation, + [162979] = 3, + ACTIONS(6818), 1, + anon_sym_LBRACE, + STATE(2119), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162379] = 2, + [162990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9084), 2, + ACTIONS(9144), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [162388] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5696), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162399] = 3, - ACTIONS(6752), 1, + anon_sym_RPAREN, + [162999] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2273), 1, - sym_class_body, + STATE(2634), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162410] = 3, - ACTIONS(6752), 1, + [163010] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(2271), 1, + STATE(2290), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162421] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162432] = 3, - ACTIONS(9086), 1, + [163021] = 3, + ACTIONS(9146), 1, sym_identifier, - STATE(4775), 1, - sym_nested_identifier, + ACTIONS(9148), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162443] = 3, - ACTIONS(3244), 1, + [163032] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(3564), 1, + STATE(5718), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162454] = 3, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(9088), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162465] = 3, - ACTIONS(9090), 1, - sym_identifier, - ACTIONS(9092), 1, - anon_sym_STAR, + [163043] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2646), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162476] = 3, - ACTIONS(6900), 1, + [163054] = 3, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(839), 1, + STATE(1626), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162487] = 3, - ACTIONS(4126), 1, + [163065] = 3, + ACTIONS(4230), 1, anon_sym_LBRACE, - STATE(1686), 1, + STATE(1631), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162498] = 3, - ACTIONS(2444), 1, + [163076] = 3, + ACTIONS(4230), 1, anon_sym_LBRACE, - STATE(908), 1, + STATE(1641), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162509] = 2, + [163087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9094), 2, + ACTIONS(6100), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162518] = 3, - ACTIONS(9096), 1, + [163096] = 3, + ACTIONS(9150), 1, sym_identifier, - ACTIONS(9098), 1, + ACTIONS(9152), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162529] = 3, - ACTIONS(4116), 1, + [163107] = 3, + ACTIONS(9154), 1, + anon_sym_SEMI, + ACTIONS(9156), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163118] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2303), 1, + STATE(2647), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162540] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3997), 1, - sym_formal_parameters, + [163129] = 3, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(2540), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162551] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(4280), 1, - sym_formal_parameters, + [163140] = 3, + ACTIONS(9158), 1, + sym_identifier, + ACTIONS(9160), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162562] = 3, - ACTIONS(6450), 1, + [163151] = 3, + ACTIONS(6052), 1, anon_sym_LPAREN, - STATE(5700), 1, - sym_formal_parameters, + STATE(2759), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162573] = 3, - ACTIONS(9100), 1, - sym_identifier, - ACTIONS(9102), 1, - sym_private_property_identifier, + [163162] = 3, + ACTIONS(6818), 1, + anon_sym_LBRACE, + STATE(2079), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162584] = 3, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3266), 1, - sym_formal_parameters, + [163173] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2650), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162595] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2274), 1, - sym_statement_block, + [163184] = 3, + ACTIONS(3536), 1, + anon_sym_COLON, + STATE(5477), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162606] = 3, - ACTIONS(9104), 1, + [163195] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9162), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163204] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9164), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163213] = 3, + ACTIONS(9166), 1, sym_identifier, - ACTIONS(9106), 1, + ACTIONS(9168), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162617] = 3, - ACTIONS(9108), 1, - anon_sym_SEMI, - ACTIONS(9110), 1, - sym__automatic_semicolon, + [163224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162628] = 3, - ACTIONS(4116), 1, + ACTIONS(9170), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163233] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1661), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163242] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2275), 1, + STATE(2614), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162639] = 3, - ACTIONS(9112), 1, - anon_sym_SEMI, - ACTIONS(9114), 1, + [163253] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9172), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [163262] = 3, + ACTIONS(9174), 1, + sym_identifier, + ACTIONS(9176), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162650] = 2, + [163273] = 3, + ACTIONS(9002), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9116), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162659] = 3, - ACTIONS(6450), 1, + [163284] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(5762), 1, + STATE(4286), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162670] = 3, - ACTIONS(6752), 1, + [163295] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2276), 1, - sym_class_body, + STATE(2637), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162681] = 3, - ACTIONS(6450), 1, + [163306] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(5940), 1, + STATE(5741), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162692] = 3, - ACTIONS(9118), 1, - sym_identifier, - ACTIONS(9120), 1, - sym_private_property_identifier, + [163317] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8643), 2, + anon_sym_COMMA, + anon_sym_GT, + [163326] = 3, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3664), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162703] = 3, - ACTIONS(7414), 1, + [163337] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2605), 1, + STATE(2642), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162714] = 3, - ACTIONS(9122), 1, + [163348] = 3, + ACTIONS(9178), 1, sym_identifier, - ACTIONS(9124), 1, + ACTIONS(9180), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162725] = 3, - ACTIONS(9126), 1, - sym_identifier, - ACTIONS(9128), 1, - sym_private_property_identifier, + [163359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162736] = 3, - ACTIONS(9130), 1, + ACTIONS(6076), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163368] = 3, + ACTIONS(9182), 1, sym_identifier, - ACTIONS(9132), 1, - sym_private_property_identifier, + STATE(5116), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162747] = 3, - ACTIONS(9134), 1, - anon_sym_SEMI, - ACTIONS(9136), 1, - sym__automatic_semicolon, + [163379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162758] = 3, - ACTIONS(4116), 1, + ACTIONS(6072), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163388] = 3, + ACTIONS(3922), 1, + anon_sym_LPAREN, + STATE(1701), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163399] = 3, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(8867), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163410] = 3, + ACTIONS(6744), 1, + anon_sym_DOT, + ACTIONS(9184), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163421] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(2237), 1, + STATE(2251), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162769] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5830), 1, - sym_formal_parameters, + [163432] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(888), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162780] = 3, - ACTIONS(6752), 1, + [163443] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9186), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163452] = 3, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(2189), 1, + STATE(1729), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162791] = 3, - ACTIONS(6916), 1, + [163463] = 3, + ACTIONS(9188), 1, + anon_sym_SEMI, + ACTIONS(9190), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163474] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9192), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163483] = 3, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(4085), 1, + STATE(4080), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162802] = 3, - ACTIONS(9138), 1, - sym_identifier, - ACTIONS(9140), 1, - sym_private_property_identifier, + [163494] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162813] = 2, + [163505] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(2101), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9142), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162822] = 2, + [163516] = 3, + ACTIONS(8986), 1, + anon_sym_LBRACE, + STATE(890), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9144), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162831] = 2, + [163527] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2613), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162840] = 2, + [163538] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9146), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162849] = 2, + [163549] = 3, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(1708), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8834), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162858] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5724), 1, - sym_formal_parameters, + [163560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162869] = 3, - ACTIONS(9148), 1, - sym_identifier, - ACTIONS(9150), 1, - sym_private_property_identifier, + ACTIONS(6088), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163569] = 3, + ACTIONS(4230), 1, + anon_sym_LBRACE, + STATE(1640), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162880] = 3, - ACTIONS(9152), 1, - anon_sym_LPAREN, - STATE(758), 1, - sym_parenthesized_expression, + [163580] = 3, + ACTIONS(6818), 1, + anon_sym_LBRACE, + STATE(2102), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162891] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2646), 1, - sym_statement_block, + [163591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162902] = 3, - ACTIONS(6450), 1, + ACTIONS(8882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163600] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(4056), 1, + STATE(5732), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162913] = 3, - ACTIONS(9052), 1, - anon_sym_LBRACE, - STATE(3982), 1, - sym_enum_body, + [163611] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(4413), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162924] = 3, - ACTIONS(9154), 1, - anon_sym_SEMI, - ACTIONS(9156), 1, - sym__automatic_semicolon, + [163622] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2655), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162935] = 3, - ACTIONS(2444), 1, + [163633] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(902), 1, - sym_statement_block, + STATE(2322), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162946] = 2, + [163644] = 3, + ACTIONS(9194), 1, + sym_identifier, + ACTIONS(9196), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162955] = 3, - ACTIONS(1657), 1, + [163655] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(244), 1, + STATE(2636), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162966] = 3, - ACTIONS(7205), 1, - anon_sym_LBRACE, - STATE(4060), 1, - sym_statement_block, + [163666] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5821), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162977] = 3, - ACTIONS(9158), 1, + [163677] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(833), 1, - sym_switch_body, + STATE(2629), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162988] = 3, - ACTIONS(8507), 1, - sym_identifier, - ACTIONS(8511), 1, - sym_private_property_identifier, + [163688] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5781), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162999] = 3, - ACTIONS(9160), 1, + [163699] = 3, + ACTIONS(9198), 1, sym_identifier, - ACTIONS(9162), 1, + ACTIONS(9200), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163010] = 2, + [163710] = 3, + ACTIONS(9078), 1, + anon_sym_LPAREN, + STATE(61), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 2, + [163721] = 3, + ACTIONS(1669), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [163019] = 3, - ACTIONS(9164), 1, + STATE(232), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163732] = 3, + ACTIONS(9202), 1, sym_identifier, - ACTIONS(9166), 1, + ACTIONS(9204), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163030] = 3, - ACTIONS(9168), 1, + [163743] = 3, + ACTIONS(9206), 1, sym_identifier, - ACTIONS(9170), 1, + ACTIONS(9208), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163041] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2653), 1, - sym_statement_block, + [163754] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163052] = 3, - ACTIONS(9172), 1, - sym_identifier, - ACTIONS(9174), 1, - sym_private_property_identifier, + ACTIONS(9210), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163763] = 3, + ACTIONS(9212), 1, + anon_sym_LBRACE, + STATE(811), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163063] = 3, - ACTIONS(7414), 1, + [163774] = 3, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(2644), 1, - sym_statement_block, + STATE(772), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163074] = 3, - ACTIONS(6450), 1, + [163785] = 3, + ACTIONS(6518), 1, anon_sym_LPAREN, - STATE(5784), 1, + STATE(5844), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163085] = 3, - ACTIONS(2444), 1, + [163796] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9214), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163805] = 3, + ACTIONS(4230), 1, anon_sym_LBRACE, - STATE(5413), 1, + STATE(1714), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163096] = 3, - ACTIONS(8129), 1, - anon_sym_from, - STATE(4249), 1, - sym__from_clause, + [163816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163107] = 2, + ACTIONS(9216), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163825] = 3, + ACTIONS(4661), 1, + anon_sym_LPAREN, + STATE(2174), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9176), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163116] = 2, + [163836] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(2089), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9178), 2, - anon_sym_COMMA, - anon_sym_GT, - [163125] = 2, + [163847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9180), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163134] = 3, - ACTIONS(6450), 1, + ACTIONS(8893), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163856] = 3, + ACTIONS(9218), 1, anon_sym_LPAREN, - STATE(5675), 1, - sym_formal_parameters, + STATE(757), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163145] = 3, - ACTIONS(6752), 1, + [163867] = 3, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(2097), 1, + STATE(4160), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163156] = 2, + [163878] = 3, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(8903), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [163165] = 3, - ACTIONS(7205), 1, - anon_sym_LBRACE, - STATE(4069), 1, - sym_statement_block, + [163889] = 3, + ACTIONS(9220), 1, + sym_identifier, + ACTIONS(9222), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163176] = 2, + [163900] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(4405), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163185] = 2, + [163911] = 3, + ACTIONS(9224), 1, + sym_identifier, + ACTIONS(9226), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8864), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [163194] = 3, - ACTIONS(6900), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_class_body, + [163922] = 3, + ACTIONS(9228), 1, + sym_identifier, + ACTIONS(9230), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163205] = 3, - ACTIONS(4116), 1, + [163933] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2099), 1, + STATE(814), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163216] = 3, - ACTIONS(4116), 1, + [163944] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2086), 1, + STATE(4248), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163227] = 2, + [163955] = 3, + ACTIONS(6744), 1, + anon_sym_DOT, + ACTIONS(9232), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1667), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163236] = 2, + [163966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 2, + ACTIONS(6039), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163245] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5352), 1, - sym_statement_block, + [163975] = 3, + ACTIONS(9234), 1, + sym_identifier, + ACTIONS(9236), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163986] = 3, + ACTIONS(9238), 1, + anon_sym_COMMA, + ACTIONS(9240), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163256] = 2, + [163997] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 2, + ACTIONS(6022), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163265] = 3, - ACTIONS(6752), 1, + [164006] = 3, + ACTIONS(1669), 1, anon_sym_LBRACE, - STATE(2319), 1, - sym_class_body, + STATE(246), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163276] = 3, - ACTIONS(2444), 1, + [164017] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(5368), 1, + STATE(771), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163287] = 3, - ACTIONS(4116), 1, + [164028] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2105), 1, + STATE(2663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163298] = 3, - ACTIONS(6752), 1, + [164039] = 3, + ACTIONS(6818), 1, anon_sym_LBRACE, - STATE(2312), 1, + STATE(2105), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163309] = 3, - ACTIONS(7414), 1, + [164050] = 3, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(2602), 1, - sym_statement_block, + STATE(1655), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163320] = 2, + [164061] = 3, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(4187), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6027), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163329] = 3, - ACTIONS(7414), 1, + [164072] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2651), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163340] = 3, - ACTIONS(6784), 1, + [164083] = 3, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(1718), 1, + STATE(4188), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163351] = 2, + [164094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8674), 2, + ACTIONS(9242), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [163360] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, + anon_sym_RBRACE, + [164103] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2640), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163371] = 3, - ACTIONS(3194), 1, - sym_jsx_identifier, - ACTIONS(9182), 1, - sym_identifier, + [164114] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5897), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163382] = 3, - ACTIONS(6916), 1, + [164125] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(4097), 1, - sym_class_body, + STATE(2667), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163393] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(5472), 1, - sym_parenthesized_expression, + [164136] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163404] = 3, - ACTIONS(6916), 1, + [164147] = 3, + ACTIONS(6826), 1, anon_sym_LBRACE, - STATE(4098), 1, + STATE(1656), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163415] = 2, + [164158] = 3, + ACTIONS(4230), 1, + anon_sym_LBRACE, + STATE(1662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9184), 2, - anon_sym_COMMA, - anon_sym_GT, - [163424] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(74), 1, - sym_parenthesized_expression, + [164169] = 3, + ACTIONS(9244), 1, + anon_sym_LBRACE, + STATE(5593), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163435] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(76), 1, - sym_parenthesized_expression, + [164180] = 3, + ACTIONS(4230), 1, + anon_sym_LBRACE, + STATE(1665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163446] = 3, - ACTIONS(9186), 1, - anon_sym_SEMI, - ACTIONS(9188), 1, - sym__automatic_semicolon, + [164191] = 3, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(1666), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163457] = 3, - ACTIONS(7414), 1, + [164202] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2662), 1, + STATE(2656), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163468] = 3, - ACTIONS(9036), 1, - anon_sym_LPAREN, - STATE(77), 1, - sym__for_header, + [164213] = 3, + ACTIONS(9246), 1, + sym_identifier, + ACTIONS(9248), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163479] = 2, + [164224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8426), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163488] = 3, - ACTIONS(9190), 1, - anon_sym_SEMI, - ACTIONS(9192), 1, + ACTIONS(9250), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [164233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163499] = 3, - ACTIONS(7414), 1, + ACTIONS(9252), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [164242] = 3, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(2639), 1, - sym_statement_block, + STATE(774), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163510] = 3, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_statement_block, + [164253] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163521] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_statement_block, + ACTIONS(6064), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164262] = 3, + ACTIONS(9254), 1, + sym_identifier, + ACTIONS(9256), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163532] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(1724), 1, - sym_class_body, + [164273] = 3, + ACTIONS(9258), 1, + sym_identifier, + ACTIONS(9260), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163543] = 3, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_class_body, + [164284] = 3, + ACTIONS(9262), 1, + sym_identifier, + ACTIONS(9264), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163554] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_statement_block, + [164295] = 3, + ACTIONS(9266), 1, + sym_identifier, + ACTIONS(9268), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163565] = 3, - ACTIONS(4126), 1, + [164306] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(1627), 1, + STATE(2671), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163576] = 3, - ACTIONS(9194), 1, + [164317] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(5319), 1, - sym_object, + STATE(4090), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163587] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1643), 1, - sym_statement_block, + [164328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163598] = 3, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8885), 1, - anon_sym_GT, + ACTIONS(8922), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [164337] = 3, + ACTIONS(6912), 1, + anon_sym_LBRACE, + STATE(886), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163609] = 3, - ACTIONS(6784), 1, + [164348] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(1645), 1, - sym_class_body, + STATE(5534), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163620] = 2, + [164359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9196), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163629] = 3, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(9198), 1, - anon_sym_GT, + ACTIONS(6039), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164368] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5518), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163640] = 2, + [164379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9200), 2, + ACTIONS(6022), 2, anon_sym_COMMA, - anon_sym_GT, - [163649] = 3, + anon_sym_RBRACE, + [164388] = 3, + ACTIONS(8494), 1, + sym_identifier, + ACTIONS(8498), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164399] = 3, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(5561), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163660] = 2, + [164410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9202), 2, + ACTIONS(9270), 2, anon_sym_COMMA, anon_sym_GT, - [163669] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_class_body, + [164419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163680] = 3, - ACTIONS(7414), 1, + ACTIONS(6058), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164428] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(2637), 1, + STATE(2224), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163691] = 3, - ACTIONS(7414), 1, + [164439] = 3, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(4262), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164450] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2604), 1, + STATE(5380), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163702] = 2, + [164461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8419), 2, + ACTIONS(6080), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163711] = 3, - ACTIONS(9204), 1, + [164470] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6064), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164479] = 3, + ACTIONS(9272), 1, sym_identifier, - ACTIONS(9206), 1, + ACTIONS(9274), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163722] = 3, - ACTIONS(9208), 1, + [164490] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6068), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164499] = 3, + ACTIONS(8693), 1, sym_identifier, - ACTIONS(9210), 1, + ACTIONS(8697), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163733] = 3, - ACTIONS(9212), 1, + [164510] = 3, + ACTIONS(9276), 1, sym_identifier, - ACTIONS(9214), 1, + ACTIONS(9278), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163744] = 3, - ACTIONS(7414), 1, + [164521] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2660), 1, + STATE(5453), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163755] = 3, - ACTIONS(7414), 1, + [164532] = 3, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(2610), 1, + STATE(2659), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163766] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7918), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163775] = 3, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5438), 1, - sym__from_clause, + [164543] = 3, + ACTIONS(6818), 1, + anon_sym_LBRACE, + STATE(2238), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163786] = 3, - ACTIONS(6900), 1, + [164554] = 3, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(868), 1, + STATE(4280), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163797] = 3, - ACTIONS(9216), 1, - sym_identifier, - ACTIONS(9218), 1, - sym_private_property_identifier, + [164565] = 3, + ACTIONS(9280), 1, + anon_sym_SEMI, + ACTIONS(9282), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163808] = 3, - ACTIONS(6784), 1, + [164576] = 3, + ACTIONS(6938), 1, anon_sym_LBRACE, - STATE(2522), 1, + STATE(4283), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163819] = 3, - ACTIONS(9220), 1, - sym_identifier, - ACTIONS(9222), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163830] = 2, + [164587] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2619), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8701), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163839] = 3, - ACTIONS(9224), 1, - sym_identifier, - ACTIONS(9226), 1, - sym_private_property_identifier, + [164598] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163850] = 3, - ACTIONS(9228), 1, - sym_identifier, - ACTIONS(9230), 1, - sym_private_property_identifier, + [164609] = 3, + ACTIONS(4230), 1, + anon_sym_LBRACE, + STATE(1695), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163861] = 3, - ACTIONS(3443), 1, - anon_sym_LPAREN, - STATE(1259), 1, - sym_arguments, + [164620] = 3, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(1706), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163872] = 3, - ACTIONS(4116), 1, + [164631] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2061), 1, + STATE(5292), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163883] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2624), 1, - sym_statement_block, + [164642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163894] = 3, - ACTIONS(6450), 1, + ACTIONS(6018), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164651] = 3, + ACTIONS(9002), 1, anon_sym_LPAREN, - STATE(5680), 1, - sym_formal_parameters, + STATE(73), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163905] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(4384), 1, - sym_formal_parameters, + [164662] = 3, + ACTIONS(6912), 1, + anon_sym_LBRACE, + STATE(830), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163916] = 3, - ACTIONS(6450), 1, + [164673] = 3, + ACTIONS(9002), 1, anon_sym_LPAREN, - STATE(5691), 1, - sym_formal_parameters, + STATE(75), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163927] = 2, + [164684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9232), 2, + ACTIONS(6058), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163936] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(4387), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163947] = 3, - ACTIONS(6450), 1, + [164693] = 3, + ACTIONS(9078), 1, anon_sym_LPAREN, - STATE(5698), 1, - sym_formal_parameters, + STATE(76), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163958] = 2, + [164704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5974), 2, + ACTIONS(6068), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163967] = 3, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8460), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163978] = 3, - ACTIONS(9234), 1, + [164713] = 3, + ACTIONS(9284), 1, sym_identifier, - ACTIONS(9236), 1, + ACTIONS(9286), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163989] = 3, - ACTIONS(6752), 1, + [164724] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2064), 1, - sym_class_body, + STATE(5294), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164000] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(67), 1, - sym_parenthesized_expression, + [164735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164011] = 3, - ACTIONS(9238), 1, - sym_identifier, - ACTIONS(9240), 1, - sym_private_property_identifier, + ACTIONS(7486), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [164744] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164022] = 3, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4758), 1, - sym_type_annotation, + ACTIONS(9288), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164753] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164033] = 3, - ACTIONS(4535), 1, - anon_sym_LPAREN, - STATE(2155), 1, - sym_arguments, + [164764] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2632), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164044] = 3, - ACTIONS(8388), 1, - sym_identifier, - ACTIONS(8392), 1, - sym_private_property_identifier, + [164775] = 3, + ACTIONS(6938), 1, + anon_sym_LBRACE, + STATE(4337), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164055] = 2, - ACTIONS(9242), 1, - anon_sym_target, + [164786] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164063] = 2, - ACTIONS(9244), 1, - anon_sym_EQ_GT, + [164797] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164071] = 2, - ACTIONS(9246), 1, - anon_sym_RBRACK, + [164808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164079] = 2, - ACTIONS(9248), 1, - sym_identifier, + ACTIONS(7474), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [164817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164087] = 2, - ACTIONS(9250), 1, - sym_identifier, + ACTIONS(7897), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [164826] = 3, + ACTIONS(8169), 1, + anon_sym_from, + STATE(5396), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164095] = 2, - ACTIONS(9252), 1, - anon_sym_RBRACK, + [164837] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164103] = 2, - ACTIONS(9254), 1, - sym_identifier, + ACTIONS(6026), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164846] = 3, + ACTIONS(6912), 1, + anon_sym_LBRACE, + STATE(793), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164111] = 2, - ACTIONS(9256), 1, - anon_sym_RBRACK, + [164857] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164119] = 2, - ACTIONS(9258), 1, - anon_sym_symbol, + [164868] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2638), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164127] = 2, - ACTIONS(9260), 1, - anon_sym_RBRACK, + [164879] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2639), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164135] = 2, - ACTIONS(4913), 1, - anon_sym_RPAREN, + [164890] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5538), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164143] = 2, - ACTIONS(9262), 1, - anon_sym_RBRACK, + [164901] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164151] = 2, - ACTIONS(9264), 1, + ACTIONS(7576), 2, + anon_sym_LBRACE, anon_sym_EQ_GT, + [164910] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164159] = 2, - ACTIONS(9266), 1, - anon_sym_from, + [164921] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2643), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164167] = 2, - ACTIONS(9268), 1, - anon_sym_RBRACK, + [164932] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2635), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164175] = 2, - ACTIONS(9270), 1, - anon_sym_RBRACK, + [164943] = 3, + ACTIONS(4830), 1, + anon_sym_LBRACE, + STATE(2676), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164183] = 2, - ACTIONS(5283), 1, - anon_sym_in, + [164954] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164191] = 2, - ACTIONS(9272), 1, - anon_sym_LBRACK, + [164965] = 3, + ACTIONS(9290), 1, + anon_sym_SEMI, + ACTIONS(9292), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164199] = 2, - ACTIONS(9274), 1, - anon_sym_class, + [164976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164207] = 2, - ACTIONS(9276), 1, - sym_identifier, + ACTIONS(9294), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164985] = 3, + ACTIONS(6818), 1, + anon_sym_LBRACE, + STATE(2292), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164215] = 2, - ACTIONS(9278), 1, - anon_sym_EQ_GT, + [164996] = 3, + ACTIONS(4661), 1, + anon_sym_LPAREN, + STATE(2324), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164223] = 2, - ACTIONS(9280), 1, - anon_sym_RBRACK, + [165007] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5710), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164231] = 2, - ACTIONS(9282), 1, - anon_sym_EQ, + [165018] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(4316), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164239] = 2, - ACTIONS(9284), 1, - anon_sym_namespace, + [165029] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5721), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164247] = 2, - ACTIONS(9286), 1, - sym_identifier, + [165040] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164255] = 2, - ACTIONS(9288), 1, - anon_sym_RBRACK, + ACTIONS(9296), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [165049] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(4322), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164263] = 2, - ACTIONS(9290), 1, - anon_sym_RBRACK, + [165060] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(5728), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164271] = 2, - ACTIONS(8803), 1, - anon_sym_RBRACK, + [165071] = 3, + ACTIONS(6510), 1, + anon_sym_COLON, + STATE(4898), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164279] = 2, - ACTIONS(8547), 1, - anon_sym_GT, + [165082] = 3, + ACTIONS(6818), 1, + anon_sym_LBRACE, + STATE(2182), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164287] = 2, - ACTIONS(9292), 1, - anon_sym_as, + [165093] = 3, + ACTIONS(6518), 1, + anon_sym_LPAREN, + STATE(6005), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164295] = 2, - ACTIONS(9294), 1, - sym_identifier, + [165104] = 3, + ACTIONS(9002), 1, + anon_sym_LPAREN, + STATE(32), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164303] = 2, - ACTIONS(9296), 1, - sym_identifier, + [165115] = 3, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(2672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164311] = 2, - ACTIONS(9298), 1, - anon_sym_RBRACK, + [165126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164319] = 2, - ACTIONS(5322), 1, - anon_sym_RPAREN, + ACTIONS(4715), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [165135] = 3, + ACTIONS(6818), 1, + anon_sym_LBRACE, + STATE(2124), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164327] = 2, + [165146] = 3, + ACTIONS(9298), 1, + sym_identifier, ACTIONS(9300), 1, - anon_sym_RBRACK, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164335] = 2, + [165157] = 2, ACTIONS(9302), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164343] = 2, + [165165] = 2, ACTIONS(9304), 1, - anon_sym_EQ_GT, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164351] = 2, + [165173] = 2, ACTIONS(9306), 1, - anon_sym_COLON, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164359] = 2, + [165181] = 2, ACTIONS(9308), 1, - anon_sym_EQ_GT, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165189] = 2, + ACTIONS(5589), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165197] = 2, + ACTIONS(5360), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164367] = 2, + [165205] = 2, ACTIONS(9310), 1, - anon_sym_EQ_GT, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165213] = 2, + ACTIONS(5372), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164375] = 2, + [165221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9312), 1, - anon_sym_EQ_GT, + sym_regex_pattern, + [165231] = 2, + ACTIONS(5378), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164383] = 2, + [165239] = 2, ACTIONS(9314), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164391] = 2, + [165247] = 2, ACTIONS(9316), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164399] = 2, + [165255] = 2, ACTIONS(9318), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164407] = 2, + [165263] = 2, ACTIONS(9320), 1, - anon_sym_RBRACK, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164415] = 2, + [165271] = 2, ACTIONS(9322), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164423] = 2, + [165279] = 2, ACTIONS(9324), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164431] = 2, - ACTIONS(9326), 1, - sym_identifier, + [165287] = 2, + ACTIONS(5343), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164439] = 2, + [165295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9326), 1, + anon_sym_SLASH2, + [165305] = 2, ACTIONS(9328), 1, - anon_sym_EQ, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164447] = 2, - ACTIONS(9330), 1, - anon_sym_RBRACK, + [165313] = 2, + ACTIONS(5868), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164455] = 2, - ACTIONS(8567), 1, - sym_identifier, + [165321] = 2, + ACTIONS(9330), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164463] = 2, + [165329] = 2, ACTIONS(9332), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164471] = 2, + [165337] = 2, ACTIONS(9334), 1, - anon_sym_class, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [165345] = 2, ACTIONS(9336), 1, - sym_regex_pattern, - [164489] = 2, + anon_sym_namespace, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165353] = 2, ACTIONS(9338), 1, - sym_number, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164497] = 2, + [165361] = 2, ACTIONS(9340), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164505] = 2, + [165369] = 2, ACTIONS(9342), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164513] = 2, + [165377] = 2, ACTIONS(9344), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164521] = 2, + [165385] = 2, ACTIONS(9346), 1, - anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164529] = 2, + [165393] = 2, ACTIONS(9348), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164537] = 2, + [165401] = 2, ACTIONS(9350), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164545] = 2, - ACTIONS(8751), 1, - anon_sym_GT, + [165409] = 2, + ACTIONS(8466), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165417] = 2, + ACTIONS(5362), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164553] = 2, + [165425] = 2, ACTIONS(9352), 1, - anon_sym_RBRACK, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164561] = 2, + [165433] = 2, ACTIONS(9354), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164569] = 2, + [165441] = 2, ACTIONS(9356), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164577] = 2, + [165449] = 2, ACTIONS(9358), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164585] = 2, - ACTIONS(5304), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164593] = 2, - ACTIONS(8501), 1, - anon_sym_RBRACK, + [165457] = 2, + ACTIONS(8867), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164601] = 2, + [165465] = 2, ACTIONS(9360), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164609] = 2, + [165473] = 2, ACTIONS(9362), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164617] = 2, + [165481] = 2, ACTIONS(9364), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164625] = 2, + [165489] = 2, ACTIONS(9366), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164633] = 2, + [165497] = 2, ACTIONS(9368), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164641] = 2, + [165505] = 2, ACTIONS(9370), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164649] = 2, + [165513] = 2, ACTIONS(9372), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164657] = 2, + [165521] = 2, ACTIONS(9374), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164665] = 2, + [165529] = 2, ACTIONS(9376), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164673] = 2, + [165537] = 2, ACTIONS(9378), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164681] = 2, + [165545] = 2, ACTIONS(9380), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164689] = 2, + [165553] = 2, ACTIONS(9382), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165561] = 2, + ACTIONS(8580), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164697] = 2, + [165569] = 2, ACTIONS(9384), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164705] = 2, + [165577] = 2, ACTIONS(9386), 1, - anon_sym_new, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164713] = 2, + [165585] = 2, ACTIONS(9388), 1, - sym_identifier, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164721] = 2, + [165593] = 2, + ACTIONS(7761), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165601] = 2, ACTIONS(9390), 1, - anon_sym_RBRACK, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164729] = 2, + [165609] = 2, ACTIONS(9392), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164737] = 2, + [165617] = 2, ACTIONS(9394), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164745] = 2, + [165625] = 2, ACTIONS(9396), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164753] = 2, + [165633] = 2, ACTIONS(9398), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164761] = 2, + [165641] = 2, ACTIONS(9400), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164769] = 2, - ACTIONS(9402), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [165649] = 3, + ACTIONS(3), 1, sym_comment, - [164777] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9402), 1, + anon_sym_SLASH2, + [165659] = 2, ACTIONS(9404), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164785] = 2, - ACTIONS(5306), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164793] = 2, + [165667] = 2, ACTIONS(9406), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164801] = 2, + [165675] = 2, ACTIONS(9408), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164809] = 2, + [165683] = 2, ACTIONS(9410), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164817] = 2, + [165691] = 2, ACTIONS(9412), 1, - anon_sym_EQ_GT, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164825] = 2, + [165699] = 2, ACTIONS(9414), 1, - sym_identifier, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164833] = 2, - ACTIONS(5519), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_html_comment, + [165707] = 3, + ACTIONS(3), 1, sym_comment, - [164841] = 2, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9416), 1, + anon_sym_SLASH2, + [165717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9418), 1, + sym_regex_pattern, + [165727] = 2, + ACTIONS(9420), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164849] = 2, - ACTIONS(9418), 1, + [165735] = 2, + ACTIONS(9422), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165743] = 2, + ACTIONS(9424), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164857] = 2, - ACTIONS(9420), 1, - anon_sym_target, + [165751] = 2, + ACTIONS(9426), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164865] = 2, - ACTIONS(9422), 1, + [165759] = 2, + ACTIONS(9428), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164873] = 2, - ACTIONS(7323), 1, + [165767] = 2, + ACTIONS(9430), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164881] = 2, - ACTIONS(5231), 1, - anon_sym_RBRACK, + [165775] = 2, + ACTIONS(4894), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164889] = 2, - ACTIONS(5316), 1, - anon_sym_COLON, + [165783] = 2, + ACTIONS(9432), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164897] = 2, - ACTIONS(9424), 1, - sym_identifier, + [165791] = 2, + ACTIONS(9434), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164905] = 2, - ACTIONS(9426), 1, - anon_sym_EQ_GT, + [165799] = 2, + ACTIONS(9436), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164913] = 2, - ACTIONS(9428), 1, - anon_sym_COLON, + [165807] = 2, + ACTIONS(9438), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164921] = 2, - ACTIONS(9430), 1, - anon_sym_RBRACK, + [165815] = 2, + ACTIONS(9440), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164929] = 2, - ACTIONS(9432), 1, + [165823] = 2, + ACTIONS(9442), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164937] = 2, - ACTIONS(7211), 1, - anon_sym_is, + [165831] = 2, + ACTIONS(9444), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164945] = 2, - ACTIONS(8460), 1, - anon_sym_GT, + [165839] = 2, + ACTIONS(9446), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164953] = 2, - ACTIONS(9434), 1, - anon_sym_as, + [165847] = 2, + ACTIONS(9448), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164961] = 2, - ACTIONS(9436), 1, - anon_sym_EQ_GT, + [165855] = 2, + ACTIONS(9450), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164969] = 2, - ACTIONS(9438), 1, - anon_sym_symbol, + [165863] = 2, + ACTIONS(9452), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164977] = 2, - ACTIONS(5521), 1, - anon_sym_SEMI, + [165871] = 2, + ACTIONS(9454), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164985] = 2, - ACTIONS(9440), 1, - anon_sym_RBRACK, + [165879] = 2, + ACTIONS(9456), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164993] = 2, - ACTIONS(9442), 1, - anon_sym_EQ_GT, + [165887] = 2, + ACTIONS(9458), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165001] = 2, - ACTIONS(9444), 1, + [165895] = 2, + ACTIONS(9460), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165009] = 2, - ACTIONS(9446), 1, - sym_identifier, + [165903] = 2, + ACTIONS(8873), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165017] = 2, - ACTIONS(9448), 1, - anon_sym_RBRACK, + [165911] = 2, + ACTIONS(9240), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165025] = 2, - ACTIONS(9450), 1, - anon_sym_from, + [165919] = 2, + ACTIONS(9462), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165033] = 2, - ACTIONS(9452), 1, + [165927] = 2, + ACTIONS(9464), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165041] = 2, - ACTIONS(9454), 1, + [165935] = 2, + ACTIONS(9466), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165049] = 2, - ACTIONS(9456), 1, - anon_sym_EQ_GT, + [165943] = 2, + ACTIONS(5573), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165057] = 2, - ACTIONS(9458), 1, - anon_sym_RBRACK, + [165951] = 2, + ACTIONS(9468), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165065] = 2, - ACTIONS(9460), 1, + [165959] = 2, + ACTIONS(9470), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165073] = 2, - ACTIONS(9462), 1, + [165967] = 2, + ACTIONS(9414), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165975] = 2, + ACTIONS(9472), 1, + anon_sym_while, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165983] = 2, + ACTIONS(9474), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165081] = 2, - ACTIONS(9464), 1, - anon_sym_EQ_GT, + [165991] = 2, + ACTIONS(9476), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165089] = 2, - ACTIONS(9466), 1, - anon_sym_RBRACK, + [165999] = 2, + ACTIONS(9478), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165097] = 2, - ACTIONS(9468), 1, - anon_sym_from, + [166007] = 2, + ACTIONS(9480), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165105] = 2, - ACTIONS(6068), 1, + [166015] = 2, + ACTIONS(9482), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165113] = 2, - ACTIONS(9470), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165121] = 2, - ACTIONS(9472), 1, - anon_sym_RBRACK, + [166023] = 2, + ACTIONS(9484), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165129] = 2, - ACTIONS(9474), 1, - anon_sym_RBRACK, + [166031] = 2, + ACTIONS(9486), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165137] = 2, - ACTIONS(9476), 1, + [166039] = 2, + ACTIONS(8829), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165145] = 2, - ACTIONS(9478), 1, - sym_number, + [166047] = 2, + ACTIONS(7281), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165153] = 2, - ACTIONS(9480), 1, - sym_identifier, + [166055] = 2, + ACTIONS(5514), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165161] = 2, - ACTIONS(9482), 1, - ts_builtin_sym_end, + [166063] = 2, + ACTIONS(4876), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165169] = 2, - ACTIONS(9484), 1, + [166071] = 2, + ACTIONS(5315), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165177] = 2, - ACTIONS(9486), 1, - sym_identifier, + [166079] = 2, + ACTIONS(9488), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165185] = 2, - ACTIONS(9488), 1, - anon_sym_RBRACK, + [166087] = 2, + ACTIONS(5575), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165193] = 2, + [166095] = 2, ACTIONS(9490), 1, - sym_number, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165201] = 2, + [166103] = 2, ACTIONS(9492), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165209] = 2, + [166111] = 2, ACTIONS(9494), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165217] = 2, + [166119] = 2, ACTIONS(9496), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165225] = 2, + [166127] = 2, ACTIONS(9498), 1, - anon_sym_symbol, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165233] = 2, - ACTIONS(9500), 1, - sym_identifier, + [166135] = 2, + ACTIONS(5516), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165241] = 2, - ACTIONS(4034), 1, - anon_sym_is, + [166143] = 2, + ACTIONS(9500), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165249] = 2, + [166151] = 2, ACTIONS(9502), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165257] = 2, + [166159] = 2, ACTIONS(9504), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165265] = 2, - ACTIONS(9506), 1, - anon_sym_RBRACK, + [166167] = 2, + ACTIONS(6738), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165273] = 2, - ACTIONS(9508), 1, - anon_sym_class, + [166175] = 2, + ACTIONS(9506), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165281] = 2, + [166183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9508), 1, + anon_sym_SLASH2, + [166193] = 2, ACTIONS(9510), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165289] = 2, - ACTIONS(4935), 1, - anon_sym_RPAREN, + [166201] = 2, + ACTIONS(9512), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9512), 1, - sym_regex_pattern, - [165307] = 2, - ACTIONS(9514), 1, - sym_identifier, + [166209] = 2, + ACTIONS(4961), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165315] = 2, - ACTIONS(9516), 1, + [166217] = 2, + ACTIONS(9514), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165323] = 2, - ACTIONS(9518), 1, - anon_sym_EQ_GT, + [166225] = 2, + ACTIONS(8484), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165331] = 2, - ACTIONS(7390), 1, - anon_sym_is, + [166233] = 2, + ACTIONS(9516), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165339] = 2, - ACTIONS(9520), 1, - anon_sym_EQ_GT, + [166241] = 2, + ACTIONS(5231), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165347] = 2, - ACTIONS(9522), 1, + [166249] = 2, + ACTIONS(9518), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165355] = 2, - ACTIONS(5255), 1, - anon_sym_RBRACE, + [166257] = 2, + ACTIONS(9520), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165363] = 2, - ACTIONS(9524), 1, - anon_sym_from, + [166265] = 2, + ACTIONS(9522), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165371] = 2, - ACTIONS(8322), 1, + [166273] = 2, + ACTIONS(9524), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165379] = 2, + [166281] = 2, ACTIONS(9526), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165387] = 2, + [166289] = 2, ACTIONS(9528), 1, - anon_sym_new, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165395] = 2, + [166297] = 2, ACTIONS(9530), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165403] = 2, + [166305] = 2, ACTIONS(9532), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165411] = 2, + [166313] = 2, ACTIONS(9534), 1, - sym_identifier, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166321] = 2, + ACTIONS(5370), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166329] = 2, + ACTIONS(8131), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165419] = 2, + [166337] = 2, ACTIONS(9536), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165427] = 2, - ACTIONS(9538), 1, + [166345] = 2, + ACTIONS(8665), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165435] = 2, + [166353] = 2, + ACTIONS(7350), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166361] = 2, + ACTIONS(9538), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166369] = 2, ACTIONS(9540), 1, anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165443] = 2, + [166377] = 2, ACTIONS(9542), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165451] = 2, + [166385] = 2, ACTIONS(9544), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165459] = 2, - ACTIONS(5318), 1, - anon_sym_RPAREN, + [166393] = 2, + ACTIONS(9546), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9546), 1, - anon_sym_SLASH2, - [165477] = 2, - ACTIONS(5387), 1, - anon_sym_RPAREN, + [166401] = 2, + ACTIONS(8903), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165485] = 2, - ACTIONS(5324), 1, - anon_sym_SEMI, + [166409] = 2, + ACTIONS(4973), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165493] = 2, + [166417] = 2, ACTIONS(9548), 1, - anon_sym_DOT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165501] = 2, + [166425] = 2, ACTIONS(9550), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165509] = 2, + [166433] = 2, ACTIONS(9552), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165517] = 2, - ACTIONS(5460), 1, - anon_sym_SEMI, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165525] = 2, - ACTIONS(4863), 1, - anon_sym_in, + [166441] = 2, + ACTIONS(9554), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165533] = 2, - ACTIONS(5308), 1, + [166449] = 2, + ACTIONS(5364), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165541] = 2, - ACTIONS(9554), 1, - anon_sym_RBRACK, + [166457] = 2, + ACTIONS(5433), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165549] = 2, + [166465] = 2, ACTIONS(9556), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165557] = 2, - ACTIONS(5697), 1, - anon_sym_in, + [166473] = 2, + ACTIONS(6857), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165565] = 2, + [166481] = 2, ACTIONS(9558), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165573] = 2, + [166489] = 2, ACTIONS(9560), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165581] = 2, + [166497] = 2, ACTIONS(9562), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165589] = 2, - ACTIONS(8466), 1, + [166505] = 2, + ACTIONS(9564), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165597] = 2, - ACTIONS(5559), 1, - anon_sym_SEMI, + [166513] = 2, + ACTIONS(8634), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165605] = 2, - ACTIONS(9564), 1, - anon_sym_EQ_GT, + [166521] = 2, + ACTIONS(9566), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165613] = 2, - ACTIONS(9566), 1, - anon_sym_RBRACK, + [166529] = 2, + ACTIONS(9568), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165621] = 2, - ACTIONS(9568), 1, - anon_sym_EQ_GT, + [166537] = 2, + ACTIONS(5527), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165629] = 2, + [166545] = 2, ACTIONS(9570), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165637] = 2, + [166553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9572), 1, - sym_identifier, + sym_regex_pattern, + [166563] = 2, + ACTIONS(9574), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165645] = 2, - ACTIONS(9574), 1, - anon_sym_function, + [166571] = 2, + ACTIONS(6150), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165653] = 2, + [166579] = 2, ACTIONS(9576), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165661] = 2, + [166587] = 2, ACTIONS(9578), 1, - anon_sym_while, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165669] = 2, - ACTIONS(9002), 1, - anon_sym_from, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165677] = 2, + [166595] = 2, ACTIONS(9580), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165685] = 2, - ACTIONS(5471), 1, + [166603] = 2, + ACTIONS(5529), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165693] = 2, + [166611] = 2, ACTIONS(9582), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165701] = 2, - ACTIONS(5153), 1, - anon_sym_in, + [166619] = 2, + ACTIONS(5291), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165709] = 2, + [166627] = 2, ACTIONS(9584), 1, - anon_sym_EQ_GT, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165717] = 2, + [166635] = 2, ACTIONS(9586), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165725] = 2, - ACTIONS(9588), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165733] = 2, - ACTIONS(9590), 1, - anon_sym_LBRACE, + [166643] = 2, + ACTIONS(5690), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165741] = 2, - ACTIONS(9592), 1, + [166651] = 2, + ACTIONS(9588), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165749] = 2, - ACTIONS(9594), 1, - anon_sym_EQ, + [166659] = 2, + ACTIONS(9590), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165757] = 2, - ACTIONS(4958), 1, - anon_sym_RPAREN, + [166667] = 2, + ACTIONS(9592), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165765] = 2, - ACTIONS(6813), 1, - anon_sym_is, + [166675] = 2, + ACTIONS(9594), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165773] = 2, + [166683] = 2, ACTIONS(9596), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165781] = 2, + [166691] = 2, ACTIONS(9598), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165789] = 2, + [166699] = 2, ACTIONS(9600), 1, - anon_sym_EQ_GT, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165797] = 2, + [166707] = 2, ACTIONS(9602), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165805] = 2, - ACTIONS(5297), 1, - anon_sym_RBRACK, + [166715] = 2, + ACTIONS(4091), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165813] = 2, + [166723] = 2, ACTIONS(9604), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165821] = 2, + [166731] = 2, ACTIONS(9606), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165829] = 2, - ACTIONS(7614), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165837] = 2, + [166739] = 2, ACTIONS(9608), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165845] = 2, - ACTIONS(9610), 1, - anon_sym_EQ_GT, + [166747] = 2, + ACTIONS(4498), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165853] = 2, - ACTIONS(9612), 1, - anon_sym_EQ, + [166755] = 2, + ACTIONS(6540), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165861] = 3, + [166763] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, + ACTIONS(9610), 1, + anon_sym_SLASH2, + [166773] = 2, + ACTIONS(9612), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166781] = 2, ACTIONS(9614), 1, - sym_regex_pattern, - [165871] = 2, - ACTIONS(5395), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165879] = 2, + [166789] = 2, ACTIONS(9616), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165887] = 2, + [166797] = 2, ACTIONS(9618), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165895] = 2, + [166805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9620), 1, - anon_sym_RBRACK, + sym_regex_pattern, + [166815] = 2, + ACTIONS(5210), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165903] = 2, + [166823] = 2, ACTIONS(9622), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165911] = 2, - ACTIONS(5795), 1, - anon_sym_in, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165919] = 2, + [166831] = 2, ACTIONS(9624), 1, - anon_sym_DOT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165927] = 2, + [166839] = 2, ACTIONS(9626), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165935] = 2, + [166847] = 2, ACTIONS(9628), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165943] = 2, - ACTIONS(4487), 1, - anon_sym_in, + [166855] = 2, + ACTIONS(5380), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165951] = 2, - ACTIONS(5397), 1, - anon_sym_RPAREN, + [166863] = 2, + ACTIONS(9630), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165959] = 2, - ACTIONS(9630), 1, + [166871] = 2, + ACTIONS(9632), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165967] = 2, - ACTIONS(5320), 1, + [166879] = 2, + ACTIONS(5443), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165975] = 2, - ACTIONS(9632), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165983] = 2, + [166887] = 2, ACTIONS(9634), 1, - anon_sym_LPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165991] = 2, + [166895] = 2, ACTIONS(9636), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165999] = 2, + [166903] = 2, ACTIONS(9638), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166007] = 2, + [166911] = 2, ACTIONS(9640), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166015] = 2, - ACTIONS(5473), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166023] = 2, + [166919] = 2, ACTIONS(9642), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166031] = 2, + [166927] = 2, ACTIONS(9644), 1, - anon_sym_EQ_GT, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166039] = 2, + [166935] = 2, ACTIONS(9646), 1, - sym_number, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166047] = 2, + [166943] = 2, ACTIONS(9648), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166055] = 2, + [166951] = 2, ACTIONS(9650), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166063] = 2, - ACTIONS(5475), 1, + [166959] = 2, + ACTIONS(9652), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166071] = 2, - ACTIONS(9652), 1, - sym_identifier, + [166967] = 2, + ACTIONS(9654), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166079] = 2, - ACTIONS(9654), 1, - anon_sym_symbol, + [166975] = 2, + ACTIONS(5445), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166087] = 2, + [166983] = 2, + ACTIONS(5233), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166991] = 2, ACTIONS(9656), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166095] = 2, + [166999] = 2, ACTIONS(9658), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166103] = 2, + [167007] = 2, ACTIONS(9660), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166111] = 2, + [167015] = 2, ACTIONS(9662), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166119] = 2, + [167023] = 2, ACTIONS(9664), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166127] = 2, + [167031] = 2, ACTIONS(9666), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166135] = 2, - ACTIONS(9668), 1, - anon_sym_RBRACK, + [167039] = 2, + ACTIONS(9352), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166143] = 2, - ACTIONS(9670), 1, - anon_sym_DOT, + [167047] = 2, + ACTIONS(9668), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166151] = 2, - ACTIONS(6690), 1, - anon_sym_is, + [167055] = 2, + ACTIONS(9670), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166159] = 2, + [167063] = 2, ACTIONS(9672), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166167] = 2, + [167071] = 2, ACTIONS(9674), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166175] = 2, + [167079] = 2, ACTIONS(9676), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166183] = 2, + [167087] = 2, ACTIONS(9678), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166191] = 2, - ACTIONS(5405), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166199] = 2, + [167095] = 2, ACTIONS(9680), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166207] = 2, + [167103] = 2, ACTIONS(9682), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166215] = 2, + [167111] = 2, ACTIONS(9684), 1, - anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167119] = 2, + ACTIONS(8531), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166223] = 2, + [167127] = 2, ACTIONS(9686), 1, - anon_sym_RBRACK, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166231] = 2, + [167135] = 2, ACTIONS(9688), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166239] = 2, + [167143] = 2, ACTIONS(9690), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166247] = 2, + [167151] = 2, + ACTIONS(8342), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167159] = 2, ACTIONS(9692), 1, - anon_sym_RPAREN, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166255] = 2, + [167167] = 2, ACTIONS(9694), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166263] = 2, + [167175] = 2, ACTIONS(9696), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166271] = 2, - ACTIONS(8761), 1, - anon_sym_RBRACE, + [167183] = 2, + ACTIONS(8911), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166279] = 2, - ACTIONS(9698), 1, - anon_sym_RPAREN, + [167191] = 2, + ACTIONS(8121), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166287] = 2, - ACTIONS(9700), 1, - anon_sym_RBRACK, + [167199] = 2, + ACTIONS(9698), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166295] = 2, - ACTIONS(7801), 1, - anon_sym_EQ, + [167207] = 2, + ACTIONS(9700), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166303] = 2, + [167215] = 2, ACTIONS(9702), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166311] = 2, - ACTIONS(5577), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166319] = 2, + [167223] = 2, ACTIONS(9704), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166327] = 2, + [167231] = 2, ACTIONS(9706), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166335] = 2, + [167239] = 2, ACTIONS(9708), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166343] = 2, - ACTIONS(5581), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166351] = 2, + [167247] = 2, ACTIONS(9710), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166359] = 2, - ACTIONS(5583), 1, - anon_sym_RPAREN, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166367] = 2, - ACTIONS(5579), 1, + [167255] = 2, + ACTIONS(5451), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166375] = 2, + [167263] = 2, ACTIONS(9712), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166383] = 2, - ACTIONS(5585), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166391] = 2, - ACTIONS(8817), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [167271] = 2, ACTIONS(9714), 1, - anon_sym_SLASH2, - [166409] = 2, - ACTIONS(9716), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166417] = 2, - ACTIONS(9718), 1, + [167279] = 2, + ACTIONS(9716), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166425] = 2, - ACTIONS(5443), 1, - anon_sym_in, + [167287] = 2, + ACTIONS(9718), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166433] = 2, + [167295] = 2, ACTIONS(9720), 1, - anon_sym_class, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166441] = 2, + [167303] = 2, ACTIONS(9722), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166449] = 2, - ACTIONS(8601), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166457] = 2, + [167311] = 2, ACTIONS(9724), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [167319] = 2, ACTIONS(9726), 1, - anon_sym_SLASH2, - [166475] = 2, - ACTIONS(9728), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166483] = 2, - ACTIONS(8643), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166491] = 2, - ACTIONS(9242), 1, - anon_sym_meta, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166499] = 2, - ACTIONS(4885), 1, - anon_sym_in, + [167327] = 2, + ACTIONS(9728), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166507] = 2, + [167335] = 2, ACTIONS(9730), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166515] = 2, - ACTIONS(5587), 1, - anon_sym_RPAREN, + [167343] = 2, + ACTIONS(9732), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166523] = 2, - ACTIONS(9732), 1, - anon_sym_EQ_GT, + [167351] = 2, + ACTIONS(5637), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166531] = 2, + [167359] = 2, ACTIONS(9734), 1, - anon_sym_RBRACK, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166539] = 2, + [167367] = 2, ACTIONS(9736), 1, - anon_sym_EQ, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166547] = 2, + [167375] = 2, ACTIONS(9738), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166555] = 2, + [167383] = 2, ACTIONS(9740), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166563] = 2, + [167391] = 2, ACTIONS(9742), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166571] = 2, - ACTIONS(8885), 1, - anon_sym_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166579] = 2, + [167399] = 2, ACTIONS(9744), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166587] = 2, + [167407] = 2, ACTIONS(9746), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166595] = 2, + [167415] = 2, ACTIONS(9748), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166603] = 2, + [167423] = 2, + ACTIONS(5639), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167431] = 2, ACTIONS(9750), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166611] = 2, + [167439] = 2, ACTIONS(9752), 1, - sym_identifier, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166619] = 2, + [167447] = 2, ACTIONS(9754), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166627] = 2, - ACTIONS(5249), 1, - anon_sym_RBRACE, + [167455] = 2, + ACTIONS(5641), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166635] = 2, + [167463] = 2, ACTIONS(9756), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166643] = 2, - ACTIONS(9420), 1, - anon_sym_meta, + [167471] = 2, + ACTIONS(5643), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166651] = 2, + [167479] = 2, ACTIONS(9758), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166659] = 2, + [167487] = 2, ACTIONS(9760), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166667] = 2, + [167495] = 2, + ACTIONS(5647), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167503] = 2, ACTIONS(9762), 1, - anon_sym_DOT, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166675] = 2, + [167511] = 2, ACTIONS(9764), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166683] = 2, + [167519] = 2, ACTIONS(9766), 1, - anon_sym_new, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166691] = 2, - ACTIONS(9768), 1, - anon_sym_RBRACK, + [167527] = 2, + ACTIONS(5376), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166699] = 2, - ACTIONS(9770), 1, - anon_sym_RBRACK, + [167535] = 2, + ACTIONS(5645), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166707] = 2, - ACTIONS(9772), 1, - anon_sym_EQ_GT, + [167543] = 2, + ACTIONS(9768), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166715] = 2, - ACTIONS(5589), 1, - anon_sym_SEMI, + [167551] = 2, + ACTIONS(9770), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166723] = 2, - ACTIONS(9774), 1, + [167559] = 2, + ACTIONS(9772), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166731] = 2, - ACTIONS(9776), 1, - anon_sym_EQ_GT, + [167567] = 2, + ACTIONS(9774), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166739] = 2, - ACTIONS(5591), 1, - anon_sym_SEMI, + [167575] = 2, + ACTIONS(9776), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166747] = 2, + [167583] = 2, ACTIONS(9778), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166755] = 2, + [167591] = 2, ACTIONS(9780), 1, - anon_sym_RPAREN, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166763] = 2, + [167599] = 2, ACTIONS(9782), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166771] = 2, - ACTIONS(9784), 1, - anon_sym_RBRACK, + [167607] = 2, + ACTIONS(4927), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166779] = 2, - ACTIONS(8902), 1, + [167615] = 2, + ACTIONS(9784), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [167623] = 2, + ACTIONS(5501), 1, + anon_sym_in, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [167631] = 2, ACTIONS(9786), 1, - sym_regex_pattern, - [166797] = 2, - ACTIONS(7464), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166805] = 2, + [167639] = 2, ACTIONS(9788), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166813] = 2, + [167647] = 2, ACTIONS(9790), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166821] = 2, + [167655] = 2, ACTIONS(9792), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166829] = 2, + [167663] = 2, ACTIONS(9794), 1, - anon_sym_new, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166837] = 2, + [167671] = 2, ACTIONS(9796), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166845] = 2, + [167679] = 2, ACTIONS(9798), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166853] = 2, + [167687] = 2, ACTIONS(9800), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166861] = 2, + [167695] = 2, ACTIONS(9802), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166869] = 2, + [167703] = 2, ACTIONS(9804), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166877] = 2, + [167711] = 2, ACTIONS(9806), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166885] = 2, - ACTIONS(5745), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166893] = 2, + [167719] = 2, ACTIONS(9808), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166901] = 2, + [167727] = 2, ACTIONS(9810), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166909] = 2, + [167735] = 2, ACTIONS(9812), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166917] = 2, + [167743] = 2, ACTIONS(9814), 1, - anon_sym_new, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166925] = 2, + [167751] = 2, ACTIONS(9816), 1, - anon_sym_as, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166933] = 2, + [167759] = 2, ACTIONS(9818), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166941] = 2, + [167767] = 2, ACTIONS(9820), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166949] = 2, + [167775] = 2, ACTIONS(9822), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166957] = 2, + [167783] = 2, ACTIONS(9824), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166965] = 2, + [167791] = 2, ACTIONS(9826), 1, - anon_sym_EQ_GT, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166973] = 2, + [167799] = 2, ACTIONS(9828), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166981] = 2, + [167807] = 2, ACTIONS(9830), 1, - anon_sym_new, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166989] = 2, + [167815] = 2, ACTIONS(9832), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166997] = 2, + [167823] = 2, + ACTIONS(5649), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167831] = 2, ACTIONS(9834), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167005] = 2, - ACTIONS(8091), 1, - sym_identifier, + [167839] = 2, + ACTIONS(9836), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167013] = 2, - ACTIONS(9836), 1, - anon_sym_function, + [167847] = 2, + ACTIONS(5651), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167021] = 2, + [167855] = 2, ACTIONS(9838), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167029] = 2, + [167863] = 2, ACTIONS(9840), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167037] = 2, + [167871] = 2, ACTIONS(9842), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167045] = 2, + [167879] = 2, ACTIONS(9844), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167053] = 2, - ACTIONS(9846), 1, - sym_identifier, + [167887] = 2, + ACTIONS(8733), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167061] = 2, - ACTIONS(5593), 1, - anon_sym_SEMI, + [167895] = 2, + ACTIONS(5787), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167069] = 2, - ACTIONS(9848), 1, - anon_sym_require, + [167903] = 2, + ACTIONS(9846), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167077] = 2, - ACTIONS(9850), 1, - anon_sym_new, + [167911] = 2, + ACTIONS(9848), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167085] = 2, - ACTIONS(9852), 1, - sym_identifier, + [167919] = 2, + ACTIONS(9850), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167093] = 2, - ACTIONS(8878), 1, - anon_sym_LBRACE, + [167927] = 2, + ACTIONS(9852), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167101] = 2, + [167935] = 2, ACTIONS(9854), 1, - sym_identifier, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167109] = 2, + [167943] = 2, ACTIONS(9856), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167117] = 2, + [167951] = 2, ACTIONS(9858), 1, - sym_identifier, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167125] = 2, + [167959] = 2, ACTIONS(9860), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167133] = 2, + [167967] = 2, ACTIONS(9862), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [167975] = 2, ACTIONS(9864), 1, - sym_regex_pattern, - [167151] = 2, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167983] = 2, ACTIONS(9866), 1, - anon_sym_from, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167159] = 2, + [167991] = 2, ACTIONS(9868), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167167] = 2, + [167999] = 2, ACTIONS(9870), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168007] = 2, + ACTIONS(9872), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168015] = 2, + ACTIONS(9874), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168023] = 2, + ACTIONS(9876), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168031] = 2, + ACTIONS(9878), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168039] = 2, + ACTIONS(9880), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167175] = 2, - ACTIONS(6581), 1, - anon_sym_is, + [168047] = 2, + ACTIONS(9882), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167183] = 2, - ACTIONS(9872), 1, + [168055] = 2, + ACTIONS(9884), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168063] = 2, + ACTIONS(9886), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168071] = 2, + ACTIONS(9888), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168079] = 2, + ACTIONS(9890), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168087] = 2, + ACTIONS(9892), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168095] = 2, + ACTIONS(9894), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167191] = 2, - ACTIONS(9874), 1, + [168103] = 2, + ACTIONS(9896), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168111] = 2, + ACTIONS(8151), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168119] = 2, + ACTIONS(9898), 1, + anon_sym_function, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168127] = 2, + ACTIONS(9900), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167199] = 2, - ACTIONS(9876), 1, + [168135] = 2, + ACTIONS(7638), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168143] = 2, + ACTIONS(9902), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168151] = 2, + ACTIONS(9904), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167207] = 2, - ACTIONS(9878), 1, - anon_sym_DOT, + [168159] = 2, + ACTIONS(9906), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167215] = 2, - ACTIONS(9880), 1, + [168167] = 2, + ACTIONS(5653), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168175] = 2, + ACTIONS(9908), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168183] = 2, + ACTIONS(9910), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168191] = 2, + ACTIONS(9912), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168199] = 2, + ACTIONS(9914), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167223] = 2, - ACTIONS(8009), 1, + [168207] = 2, + ACTIONS(9916), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167231] = 2, - ACTIONS(4954), 1, - anon_sym_is, + [168215] = 2, + ACTIONS(9918), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167239] = 2, - ACTIONS(9882), 1, + [168223] = 2, + ACTIONS(9920), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168231] = 2, + ACTIONS(9922), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168239] = 2, + ACTIONS(9924), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167247] = 3, + [168247] = 2, + ACTIONS(9926), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168255] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9884), 1, - anon_sym_SLASH2, - [167257] = 2, - ACTIONS(9886), 1, - anon_sym_RBRACK, + ACTIONS(9928), 1, + sym_regex_pattern, + [168265] = 2, + ACTIONS(9930), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167265] = 2, - ACTIONS(9888), 1, - anon_sym_EQ_GT, + [168273] = 2, + ACTIONS(5020), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167273] = 2, - ACTIONS(4918), 1, + [168281] = 2, + ACTIONS(4943), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167281] = 2, - ACTIONS(9890), 1, + [168289] = 2, + ACTIONS(7422), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168297] = 2, + ACTIONS(9932), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168305] = 2, + ACTIONS(9934), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168313] = 2, + ACTIONS(9936), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167289] = 3, - ACTIONS(3), 1, + [168321] = 2, + ACTIONS(9938), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [168329] = 2, + ACTIONS(9940), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9892), 1, - anon_sym_SLASH2, - [167299] = 2, - ACTIONS(5573), 1, + sym_comment, + [168337] = 2, + ACTIONS(9942), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168345] = 2, + ACTIONS(9944), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168353] = 2, + ACTIONS(9946), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168361] = 2, + ACTIONS(9948), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168369] = 2, + ACTIONS(9950), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168377] = 2, + ACTIONS(9952), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168385] = 2, + ACTIONS(9954), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168393] = 2, + ACTIONS(9956), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [168401] = 2, + ACTIONS(5249), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167307] = 2, - ACTIONS(9894), 1, + [168409] = 2, + ACTIONS(9958), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167315] = 2, - ACTIONS(9896), 1, - anon_sym_namespace, + [168417] = 2, + ACTIONS(8928), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167323] = 2, - ACTIONS(9898), 1, - anon_sym_from, + [168425] = 2, + ACTIONS(9960), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167331] = 2, - ACTIONS(9900), 1, + [168433] = 2, + ACTIONS(9962), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167339] = 2, - ACTIONS(9902), 1, - anon_sym_from, + [168441] = 2, + ACTIONS(9964), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167347] = 2, - ACTIONS(9904), 1, + [168449] = 2, + ACTIONS(9966), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167355] = 2, - ACTIONS(9906), 1, - anon_sym_readonly, + [168457] = 2, + ACTIONS(9968), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167363] = 2, - ACTIONS(9908), 1, - anon_sym_EQ_GT, + [168465] = 2, + ACTIONS(8645), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1167)] = 0, - [SMALL_STATE(1168)] = 93, - [SMALL_STATE(1169)] = 186, - [SMALL_STATE(1170)] = 257, - [SMALL_STATE(1171)] = 350, - [SMALL_STATE(1172)] = 423, - [SMALL_STATE(1173)] = 494, - [SMALL_STATE(1174)] = 567, - [SMALL_STATE(1175)] = 638, - [SMALL_STATE(1176)] = 731, - [SMALL_STATE(1177)] = 824, - [SMALL_STATE(1178)] = 895, - [SMALL_STATE(1179)] = 966, - [SMALL_STATE(1180)] = 1037, - [SMALL_STATE(1181)] = 1108, - [SMALL_STATE(1182)] = 1197, - [SMALL_STATE(1183)] = 1292, - [SMALL_STATE(1184)] = 1381, - [SMALL_STATE(1185)] = 1472, - [SMALL_STATE(1186)] = 1542, - [SMALL_STATE(1187)] = 1634, - [SMALL_STATE(1188)] = 1726, - [SMALL_STATE(1189)] = 1814, - [SMALL_STATE(1190)] = 1900, - [SMALL_STATE(1191)] = 1990, - [SMALL_STATE(1192)] = 2080, - [SMALL_STATE(1193)] = 2170, - [SMALL_STATE(1194)] = 2258, - [SMALL_STATE(1195)] = 2344, - [SMALL_STATE(1196)] = 2418, - [SMALL_STATE(1197)] = 2506, - [SMALL_STATE(1198)] = 2594, - [SMALL_STATE(1199)] = 2682, - [SMALL_STATE(1200)] = 2772, - [SMALL_STATE(1201)] = 2860, - [SMALL_STATE(1202)] = 2950, - [SMALL_STATE(1203)] = 3038, - [SMALL_STATE(1204)] = 3128, - [SMALL_STATE(1205)] = 3218, - [SMALL_STATE(1206)] = 3308, - [SMALL_STATE(1207)] = 3396, - [SMALL_STATE(1208)] = 3484, - [SMALL_STATE(1209)] = 3554, - [SMALL_STATE(1210)] = 3641, - [SMALL_STATE(1211)] = 3728, - [SMALL_STATE(1212)] = 3815, - [SMALL_STATE(1213)] = 3904, - [SMALL_STATE(1214)] = 3995, - [SMALL_STATE(1215)] = 4076, - [SMALL_STATE(1216)] = 4167, - [SMALL_STATE(1217)] = 4254, - [SMALL_STATE(1218)] = 4333, - [SMALL_STATE(1219)] = 4428, - [SMALL_STATE(1220)] = 4517, - [SMALL_STATE(1221)] = 4608, - [SMALL_STATE(1222)] = 4699, - [SMALL_STATE(1223)] = 4773, - [SMALL_STATE(1224)] = 4851, - [SMALL_STATE(1225)] = 4937, - [SMALL_STATE(1226)] = 5011, - [SMALL_STATE(1227)] = 5085, - [SMALL_STATE(1228)] = 5163, - [SMALL_STATE(1229)] = 5249, - [SMALL_STATE(1230)] = 5335, - [SMALL_STATE(1231)] = 5425, - [SMALL_STATE(1232)] = 5499, - [SMALL_STATE(1233)] = 5589, - [SMALL_STATE(1234)] = 5675, - [SMALL_STATE(1235)] = 5753, - [SMALL_STATE(1236)] = 5839, - [SMALL_STATE(1237)] = 5929, - [SMALL_STATE(1238)] = 6015, - [SMALL_STATE(1239)] = 6101, - [SMALL_STATE(1240)] = 6187, - [SMALL_STATE(1241)] = 6273, - [SMALL_STATE(1242)] = 6359, - [SMALL_STATE(1243)] = 6445, - [SMALL_STATE(1244)] = 6525, - [SMALL_STATE(1245)] = 6617, - [SMALL_STATE(1246)] = 6695, - [SMALL_STATE(1247)] = 6785, - [SMALL_STATE(1248)] = 6853, - [SMALL_STATE(1249)] = 6939, - [SMALL_STATE(1250)] = 7031, - [SMALL_STATE(1251)] = 7109, - [SMALL_STATE(1252)] = 7187, - [SMALL_STATE(1253)] = 7273, - [SMALL_STATE(1254)] = 7347, - [SMALL_STATE(1255)] = 7432, - [SMALL_STATE(1256)] = 7519, - [SMALL_STATE(1257)] = 7608, - [SMALL_STATE(1258)] = 7677, - [SMALL_STATE(1259)] = 7756, - [SMALL_STATE(1260)] = 7823, - [SMALL_STATE(1261)] = 7892, - [SMALL_STATE(1262)] = 7969, - [SMALL_STATE(1263)] = 8040, - [SMALL_STATE(1264)] = 8125, - [SMALL_STATE(1265)] = 8214, - [SMALL_STATE(1266)] = 8289, - [SMALL_STATE(1267)] = 8358, - [SMALL_STATE(1268)] = 8427, - [SMALL_STATE(1269)] = 8502, - [SMALL_STATE(1270)] = 8585, - [SMALL_STATE(1271)] = 8652, - [SMALL_STATE(1272)] = 8741, - [SMALL_STATE(1273)] = 8830, - [SMALL_STATE(1274)] = 8905, - [SMALL_STATE(1275)] = 8980, - [SMALL_STATE(1276)] = 9059, - [SMALL_STATE(1277)] = 9144, - [SMALL_STATE(1278)] = 9221, - [SMALL_STATE(1279)] = 9290, - [SMALL_STATE(1280)] = 9367, - [SMALL_STATE(1281)] = 9450, - [SMALL_STATE(1282)] = 9519, - [SMALL_STATE(1283)] = 9601, - [SMALL_STATE(1284)] = 9673, - [SMALL_STATE(1285)] = 9739, - [SMALL_STATE(1286)] = 9817, - [SMALL_STATE(1287)] = 9897, - [SMALL_STATE(1288)] = 9963, - [SMALL_STATE(1289)] = 10029, - [SMALL_STATE(1290)] = 10099, - [SMALL_STATE(1291)] = 10165, - [SMALL_STATE(1292)] = 10239, - [SMALL_STATE(1293)] = 10313, - [SMALL_STATE(1294)] = 10379, - [SMALL_STATE(1295)] = 10445, - [SMALL_STATE(1296)] = 10511, - [SMALL_STATE(1297)] = 10599, - [SMALL_STATE(1298)] = 10675, - [SMALL_STATE(1299)] = 10747, - [SMALL_STATE(1300)] = 10813, - [SMALL_STATE(1301)] = 10879, - [SMALL_STATE(1302)] = 10963, - [SMALL_STATE(1303)] = 11029, - [SMALL_STATE(1304)] = 11095, - [SMALL_STATE(1305)] = 11167, - [SMALL_STATE(1306)] = 11239, - [SMALL_STATE(1307)] = 11311, - [SMALL_STATE(1308)] = 11383, - [SMALL_STATE(1309)] = 11461, - [SMALL_STATE(1310)] = 11539, - [SMALL_STATE(1311)] = 11611, - [SMALL_STATE(1312)] = 11685, - [SMALL_STATE(1313)] = 11759, - [SMALL_STATE(1314)] = 11833, - [SMALL_STATE(1315)] = 11905, - [SMALL_STATE(1316)] = 11979, - [SMALL_STATE(1317)] = 12063, - [SMALL_STATE(1318)] = 12143, - [SMALL_STATE(1319)] = 12227, - [SMALL_STATE(1320)] = 12315, - [SMALL_STATE(1321)] = 12381, - [SMALL_STATE(1322)] = 12458, - [SMALL_STATE(1323)] = 12527, - [SMALL_STATE(1324)] = 12596, - [SMALL_STATE(1325)] = 12673, - [SMALL_STATE(1326)] = 12746, - [SMALL_STATE(1327)] = 12813, - [SMALL_STATE(1328)] = 12896, - [SMALL_STATE(1329)] = 12969, - [SMALL_STATE(1330)] = 13040, - [SMALL_STATE(1331)] = 13107, - [SMALL_STATE(1332)] = 13182, - [SMALL_STATE(1333)] = 13259, - [SMALL_STATE(1334)] = 13330, - [SMALL_STATE(1335)] = 13403, - [SMALL_STATE(1336)] = 13472, - [SMALL_STATE(1337)] = 13551, - [SMALL_STATE(1338)] = 13620, - [SMALL_STATE(1339)] = 13697, - [SMALL_STATE(1340)] = 13768, - [SMALL_STATE(1341)] = 13839, - [SMALL_STATE(1342)] = 13914, - [SMALL_STATE(1343)] = 13987, - [SMALL_STATE(1344)] = 14059, - [SMALL_STATE(1345)] = 14133, - [SMALL_STATE(1346)] = 14253, - [SMALL_STATE(1347)] = 14323, - [SMALL_STATE(1348)] = 14393, - [SMALL_STATE(1349)] = 14465, - [SMALL_STATE(1350)] = 14531, - [SMALL_STATE(1351)] = 14605, - [SMALL_STATE(1352)] = 14725, - [SMALL_STATE(1353)] = 14845, - [SMALL_STATE(1354)] = 14919, - [SMALL_STATE(1355)] = 14991, - [SMALL_STATE(1356)] = 15065, - [SMALL_STATE(1357)] = 15131, - [SMALL_STATE(1358)] = 15251, - [SMALL_STATE(1359)] = 15321, - [SMALL_STATE(1360)] = 15391, - [SMALL_STATE(1361)] = 15461, - [SMALL_STATE(1362)] = 15581, - [SMALL_STATE(1363)] = 15651, - [SMALL_STATE(1364)] = 15771, - [SMALL_STATE(1365)] = 15841, - [SMALL_STATE(1366)] = 15909, - [SMALL_STATE(1367)] = 15985, - [SMALL_STATE(1368)] = 16055, - [SMALL_STATE(1369)] = 16124, - [SMALL_STATE(1370)] = 16193, - [SMALL_STATE(1371)] = 16264, - [SMALL_STATE(1372)] = 16333, - [SMALL_STATE(1373)] = 16402, - [SMALL_STATE(1374)] = 16471, - [SMALL_STATE(1375)] = 16538, - [SMALL_STATE(1376)] = 16605, - [SMALL_STATE(1377)] = 16676, - [SMALL_STATE(1378)] = 16745, - [SMALL_STATE(1379)] = 16818, - [SMALL_STATE(1380)] = 16891, - [SMALL_STATE(1381)] = 16960, - [SMALL_STATE(1382)] = 17029, - [SMALL_STATE(1383)] = 17095, - [SMALL_STATE(1384)] = 17211, - [SMALL_STATE(1385)] = 17327, - [SMALL_STATE(1386)] = 17443, - [SMALL_STATE(1387)] = 17559, - [SMALL_STATE(1388)] = 17627, - [SMALL_STATE(1389)] = 17743, - [SMALL_STATE(1390)] = 17811, - [SMALL_STATE(1391)] = 17879, - [SMALL_STATE(1392)] = 17947, - [SMALL_STATE(1393)] = 18015, - [SMALL_STATE(1394)] = 18083, - [SMALL_STATE(1395)] = 18199, - [SMALL_STATE(1396)] = 18315, - [SMALL_STATE(1397)] = 18383, - [SMALL_STATE(1398)] = 18451, - [SMALL_STATE(1399)] = 18519, - [SMALL_STATE(1400)] = 18587, - [SMALL_STATE(1401)] = 18655, - [SMALL_STATE(1402)] = 18723, - [SMALL_STATE(1403)] = 18839, - [SMALL_STATE(1404)] = 18907, - [SMALL_STATE(1405)] = 19023, - [SMALL_STATE(1406)] = 19139, - [SMALL_STATE(1407)] = 19205, - [SMALL_STATE(1408)] = 19273, - [SMALL_STATE(1409)] = 19389, - [SMALL_STATE(1410)] = 19457, - [SMALL_STATE(1411)] = 19525, - [SMALL_STATE(1412)] = 19641, - [SMALL_STATE(1413)] = 19757, - [SMALL_STATE(1414)] = 19825, - [SMALL_STATE(1415)] = 19941, - [SMALL_STATE(1416)] = 20011, - [SMALL_STATE(1417)] = 20079, - [SMALL_STATE(1418)] = 20147, - [SMALL_STATE(1419)] = 20263, - [SMALL_STATE(1420)] = 20379, - [SMALL_STATE(1421)] = 20447, - [SMALL_STATE(1422)] = 20563, - [SMALL_STATE(1423)] = 20679, - [SMALL_STATE(1424)] = 20747, - [SMALL_STATE(1425)] = 20812, - [SMALL_STATE(1426)] = 20877, - [SMALL_STATE(1427)] = 20942, - [SMALL_STATE(1428)] = 21007, - [SMALL_STATE(1429)] = 21072, - [SMALL_STATE(1430)] = 21137, - [SMALL_STATE(1431)] = 21202, - [SMALL_STATE(1432)] = 21267, - [SMALL_STATE(1433)] = 21332, - [SMALL_STATE(1434)] = 21444, - [SMALL_STATE(1435)] = 21556, - [SMALL_STATE(1436)] = 21668, - [SMALL_STATE(1437)] = 21780, - [SMALL_STATE(1438)] = 21892, - [SMALL_STATE(1439)] = 22004, - [SMALL_STATE(1440)] = 22116, - [SMALL_STATE(1441)] = 22235, - [SMALL_STATE(1442)] = 22346, - [SMALL_STATE(1443)] = 22457, - [SMALL_STATE(1444)] = 22568, - [SMALL_STATE(1445)] = 22679, - [SMALL_STATE(1446)] = 22790, - [SMALL_STATE(1447)] = 22909, - [SMALL_STATE(1448)] = 23028, - [SMALL_STATE(1449)] = 23139, - [SMALL_STATE(1450)] = 23250, - [SMALL_STATE(1451)] = 23361, - [SMALL_STATE(1452)] = 23480, - [SMALL_STATE(1453)] = 23591, - [SMALL_STATE(1454)] = 23702, - [SMALL_STATE(1455)] = 23821, - [SMALL_STATE(1456)] = 23932, - [SMALL_STATE(1457)] = 24034, - [SMALL_STATE(1458)] = 24136, - [SMALL_STATE(1459)] = 24238, - [SMALL_STATE(1460)] = 24316, - [SMALL_STATE(1461)] = 24418, - [SMALL_STATE(1462)] = 24520, - [SMALL_STATE(1463)] = 24622, - [SMALL_STATE(1464)] = 24689, - [SMALL_STATE(1465)] = 24800, - [SMALL_STATE(1466)] = 24865, - [SMALL_STATE(1467)] = 24932, - [SMALL_STATE(1468)] = 24989, - [SMALL_STATE(1469)] = 25056, - [SMALL_STATE(1470)] = 25165, - [SMALL_STATE(1471)] = 25222, - [SMALL_STATE(1472)] = 25290, - [SMALL_STATE(1473)] = 25346, - [SMALL_STATE(1474)] = 25404, - [SMALL_STATE(1475)] = 25460, - [SMALL_STATE(1476)] = 25518, - [SMALL_STATE(1477)] = 25574, - [SMALL_STATE(1478)] = 25632, - [SMALL_STATE(1479)] = 25688, - [SMALL_STATE(1480)] = 25782, - [SMALL_STATE(1481)] = 25838, - [SMALL_STATE(1482)] = 25898, - [SMALL_STATE(1483)] = 25960, - [SMALL_STATE(1484)] = 26016, - [SMALL_STATE(1485)] = 26078, - [SMALL_STATE(1486)] = 26138, - [SMALL_STATE(1487)] = 26194, - [SMALL_STATE(1488)] = 26249, - [SMALL_STATE(1489)] = 26312, - [SMALL_STATE(1490)] = 26373, - [SMALL_STATE(1491)] = 26432, - [SMALL_STATE(1492)] = 26487, - [SMALL_STATE(1493)] = 26542, - [SMALL_STATE(1494)] = 26603, - [SMALL_STATE(1495)] = 26664, - [SMALL_STATE(1496)] = 26727, - [SMALL_STATE(1497)] = 26790, - [SMALL_STATE(1498)] = 26851, - [SMALL_STATE(1499)] = 26912, - [SMALL_STATE(1500)] = 26967, - [SMALL_STATE(1501)] = 27026, - [SMALL_STATE(1502)] = 27087, - [SMALL_STATE(1503)] = 27148, - [SMALL_STATE(1504)] = 27207, - [SMALL_STATE(1505)] = 27266, - [SMALL_STATE(1506)] = 27323, - [SMALL_STATE(1507)] = 27382, - [SMALL_STATE(1508)] = 27437, - [SMALL_STATE(1509)] = 27492, - [SMALL_STATE(1510)] = 27547, - [SMALL_STATE(1511)] = 27602, - [SMALL_STATE(1512)] = 27661, - [SMALL_STATE(1513)] = 27718, - [SMALL_STATE(1514)] = 27773, - [SMALL_STATE(1515)] = 27830, - [SMALL_STATE(1516)] = 27885, - [SMALL_STATE(1517)] = 27940, - [SMALL_STATE(1518)] = 27997, - [SMALL_STATE(1519)] = 28054, - [SMALL_STATE(1520)] = 28109, - [SMALL_STATE(1521)] = 28164, - [SMALL_STATE(1522)] = 28219, - [SMALL_STATE(1523)] = 28276, - [SMALL_STATE(1524)] = 28331, - [SMALL_STATE(1525)] = 28386, - [SMALL_STATE(1526)] = 28441, - [SMALL_STATE(1527)] = 28502, - [SMALL_STATE(1528)] = 28563, - [SMALL_STATE(1529)] = 28620, - [SMALL_STATE(1530)] = 28677, - [SMALL_STATE(1531)] = 28732, - [SMALL_STATE(1532)] = 28787, - [SMALL_STATE(1533)] = 28842, - [SMALL_STATE(1534)] = 28901, - [SMALL_STATE(1535)] = 28956, - [SMALL_STATE(1536)] = 29011, - [SMALL_STATE(1537)] = 29066, - [SMALL_STATE(1538)] = 29121, - [SMALL_STATE(1539)] = 29176, - [SMALL_STATE(1540)] = 29231, - [SMALL_STATE(1541)] = 29286, - [SMALL_STATE(1542)] = 29341, - [SMALL_STATE(1543)] = 29396, - [SMALL_STATE(1544)] = 29453, - [SMALL_STATE(1545)] = 29508, - [SMALL_STATE(1546)] = 29563, - [SMALL_STATE(1547)] = 29620, - [SMALL_STATE(1548)] = 29675, - [SMALL_STATE(1549)] = 29736, - [SMALL_STATE(1550)] = 29791, - [SMALL_STATE(1551)] = 29846, - [SMALL_STATE(1552)] = 29901, - [SMALL_STATE(1553)] = 29956, - [SMALL_STATE(1554)] = 30011, - [SMALL_STATE(1555)] = 30068, - [SMALL_STATE(1556)] = 30125, - [SMALL_STATE(1557)] = 30180, - [SMALL_STATE(1558)] = 30237, - [SMALL_STATE(1559)] = 30296, - [SMALL_STATE(1560)] = 30351, - [SMALL_STATE(1561)] = 30406, - [SMALL_STATE(1562)] = 30463, - [SMALL_STATE(1563)] = 30524, - [SMALL_STATE(1564)] = 30579, - [SMALL_STATE(1565)] = 30634, - [SMALL_STATE(1566)] = 30689, - [SMALL_STATE(1567)] = 30744, - [SMALL_STATE(1568)] = 30799, - [SMALL_STATE(1569)] = 30854, - [SMALL_STATE(1570)] = 30909, - [SMALL_STATE(1571)] = 30964, - [SMALL_STATE(1572)] = 31019, - [SMALL_STATE(1573)] = 31074, - [SMALL_STATE(1574)] = 31129, - [SMALL_STATE(1575)] = 31184, - [SMALL_STATE(1576)] = 31239, - [SMALL_STATE(1577)] = 31294, - [SMALL_STATE(1578)] = 31355, - [SMALL_STATE(1579)] = 31410, - [SMALL_STATE(1580)] = 31471, - [SMALL_STATE(1581)] = 31526, - [SMALL_STATE(1582)] = 31581, - [SMALL_STATE(1583)] = 31642, - [SMALL_STATE(1584)] = 31697, - [SMALL_STATE(1585)] = 31752, - [SMALL_STATE(1586)] = 31807, - [SMALL_STATE(1587)] = 31862, - [SMALL_STATE(1588)] = 31917, - [SMALL_STATE(1589)] = 31972, - [SMALL_STATE(1590)] = 32027, - [SMALL_STATE(1591)] = 32082, - [SMALL_STATE(1592)] = 32137, - [SMALL_STATE(1593)] = 32192, - [SMALL_STATE(1594)] = 32247, - [SMALL_STATE(1595)] = 32302, - [SMALL_STATE(1596)] = 32357, - [SMALL_STATE(1597)] = 32412, - [SMALL_STATE(1598)] = 32467, - [SMALL_STATE(1599)] = 32522, - [SMALL_STATE(1600)] = 32577, - [SMALL_STATE(1601)] = 32632, - [SMALL_STATE(1602)] = 32687, - [SMALL_STATE(1603)] = 32742, - [SMALL_STATE(1604)] = 32797, - [SMALL_STATE(1605)] = 32852, - [SMALL_STATE(1606)] = 32907, - [SMALL_STATE(1607)] = 32962, - [SMALL_STATE(1608)] = 33017, - [SMALL_STATE(1609)] = 33072, - [SMALL_STATE(1610)] = 33127, - [SMALL_STATE(1611)] = 33183, - [SMALL_STATE(1612)] = 33237, - [SMALL_STATE(1613)] = 33307, - [SMALL_STATE(1614)] = 33361, - [SMALL_STATE(1615)] = 33415, - [SMALL_STATE(1616)] = 33469, - [SMALL_STATE(1617)] = 33523, - [SMALL_STATE(1618)] = 33609, - [SMALL_STATE(1619)] = 33663, - [SMALL_STATE(1620)] = 33717, - [SMALL_STATE(1621)] = 33771, - [SMALL_STATE(1622)] = 33825, - [SMALL_STATE(1623)] = 33879, - [SMALL_STATE(1624)] = 33989, - [SMALL_STATE(1625)] = 34099, - [SMALL_STATE(1626)] = 34209, - [SMALL_STATE(1627)] = 34319, - [SMALL_STATE(1628)] = 34373, - [SMALL_STATE(1629)] = 34427, - [SMALL_STATE(1630)] = 34481, - [SMALL_STATE(1631)] = 34535, - [SMALL_STATE(1632)] = 34589, - [SMALL_STATE(1633)] = 34699, - [SMALL_STATE(1634)] = 34753, - [SMALL_STATE(1635)] = 34807, - [SMALL_STATE(1636)] = 34861, - [SMALL_STATE(1637)] = 34915, - [SMALL_STATE(1638)] = 34969, - [SMALL_STATE(1639)] = 35029, - [SMALL_STATE(1640)] = 35083, - [SMALL_STATE(1641)] = 35157, - [SMALL_STATE(1642)] = 35211, - [SMALL_STATE(1643)] = 35265, - [SMALL_STATE(1644)] = 35319, - [SMALL_STATE(1645)] = 35373, - [SMALL_STATE(1646)] = 35427, - [SMALL_STATE(1647)] = 35481, - [SMALL_STATE(1648)] = 35535, - [SMALL_STATE(1649)] = 35589, - [SMALL_STATE(1650)] = 35643, - [SMALL_STATE(1651)] = 35697, - [SMALL_STATE(1652)] = 35751, - [SMALL_STATE(1653)] = 35805, - [SMALL_STATE(1654)] = 35859, - [SMALL_STATE(1655)] = 35969, - [SMALL_STATE(1656)] = 36023, - [SMALL_STATE(1657)] = 36133, - [SMALL_STATE(1658)] = 36217, - [SMALL_STATE(1659)] = 36271, - [SMALL_STATE(1660)] = 36357, - [SMALL_STATE(1661)] = 36411, + [SMALL_STATE(1169)] = 0, + [SMALL_STATE(1170)] = 71, + [SMALL_STATE(1171)] = 164, + [SMALL_STATE(1172)] = 255, + [SMALL_STATE(1173)] = 326, + [SMALL_STATE(1174)] = 397, + [SMALL_STATE(1175)] = 490, + [SMALL_STATE(1176)] = 585, + [SMALL_STATE(1177)] = 678, + [SMALL_STATE(1178)] = 749, + [SMALL_STATE(1179)] = 842, + [SMALL_STATE(1180)] = 913, + [SMALL_STATE(1181)] = 984, + [SMALL_STATE(1182)] = 1073, + [SMALL_STATE(1183)] = 1144, + [SMALL_STATE(1184)] = 1233, + [SMALL_STATE(1185)] = 1326, + [SMALL_STATE(1186)] = 1396, + [SMALL_STATE(1187)] = 1488, + [SMALL_STATE(1188)] = 1578, + [SMALL_STATE(1189)] = 1668, + [SMALL_STATE(1190)] = 1738, + [SMALL_STATE(1191)] = 1826, + [SMALL_STATE(1192)] = 1914, + [SMALL_STATE(1193)] = 2000, + [SMALL_STATE(1194)] = 2088, + [SMALL_STATE(1195)] = 2176, + [SMALL_STATE(1196)] = 2264, + [SMALL_STATE(1197)] = 2352, + [SMALL_STATE(1198)] = 2442, + [SMALL_STATE(1199)] = 2516, + [SMALL_STATE(1200)] = 2606, + [SMALL_STATE(1201)] = 2696, + [SMALL_STATE(1202)] = 2786, + [SMALL_STATE(1203)] = 2876, + [SMALL_STATE(1204)] = 2968, + [SMALL_STATE(1205)] = 3056, + [SMALL_STATE(1206)] = 3142, + [SMALL_STATE(1207)] = 3230, + [SMALL_STATE(1208)] = 3320, + [SMALL_STATE(1209)] = 3408, + [SMALL_STATE(1210)] = 3489, + [SMALL_STATE(1211)] = 3576, + [SMALL_STATE(1212)] = 3655, + [SMALL_STATE(1213)] = 3742, + [SMALL_STATE(1214)] = 3829, + [SMALL_STATE(1215)] = 3916, + [SMALL_STATE(1216)] = 4005, + [SMALL_STATE(1217)] = 4096, + [SMALL_STATE(1218)] = 4187, + [SMALL_STATE(1219)] = 4276, + [SMALL_STATE(1220)] = 4367, + [SMALL_STATE(1221)] = 4458, + [SMALL_STATE(1222)] = 4553, + [SMALL_STATE(1223)] = 4627, + [SMALL_STATE(1224)] = 4705, + [SMALL_STATE(1225)] = 4783, + [SMALL_STATE(1226)] = 4857, + [SMALL_STATE(1227)] = 4949, + [SMALL_STATE(1228)] = 5035, + [SMALL_STATE(1229)] = 5107, + [SMALL_STATE(1230)] = 5185, + [SMALL_STATE(1231)] = 5263, + [SMALL_STATE(1232)] = 5335, + [SMALL_STATE(1233)] = 5427, + [SMALL_STATE(1234)] = 5513, + [SMALL_STATE(1235)] = 5599, + [SMALL_STATE(1236)] = 5667, + [SMALL_STATE(1237)] = 5753, + [SMALL_STATE(1238)] = 5831, + [SMALL_STATE(1239)] = 5903, + [SMALL_STATE(1240)] = 5983, + [SMALL_STATE(1241)] = 6057, + [SMALL_STATE(1242)] = 6143, + [SMALL_STATE(1243)] = 6233, + [SMALL_STATE(1244)] = 6319, + [SMALL_STATE(1245)] = 6405, + [SMALL_STATE(1246)] = 6491, + [SMALL_STATE(1247)] = 6577, + [SMALL_STATE(1248)] = 6663, + [SMALL_STATE(1249)] = 6749, + [SMALL_STATE(1250)] = 6823, + [SMALL_STATE(1251)] = 6909, + [SMALL_STATE(1252)] = 6983, + [SMALL_STATE(1253)] = 7061, + [SMALL_STATE(1254)] = 7147, + [SMALL_STATE(1255)] = 7237, + [SMALL_STATE(1256)] = 7309, + [SMALL_STATE(1257)] = 7381, + [SMALL_STATE(1258)] = 7471, + [SMALL_STATE(1259)] = 7543, + [SMALL_STATE(1260)] = 7633, + [SMALL_STATE(1261)] = 7708, + [SMALL_STATE(1262)] = 7785, + [SMALL_STATE(1263)] = 7860, + [SMALL_STATE(1264)] = 7935, + [SMALL_STATE(1265)] = 8018, + [SMALL_STATE(1266)] = 8107, + [SMALL_STATE(1267)] = 8196, + [SMALL_STATE(1268)] = 8263, + [SMALL_STATE(1269)] = 8342, + [SMALL_STATE(1270)] = 8421, + [SMALL_STATE(1271)] = 8510, + [SMALL_STATE(1272)] = 8587, + [SMALL_STATE(1273)] = 8672, + [SMALL_STATE(1274)] = 8739, + [SMALL_STATE(1275)] = 8826, + [SMALL_STATE(1276)] = 8911, + [SMALL_STATE(1277)] = 8982, + [SMALL_STATE(1278)] = 9067, + [SMALL_STATE(1279)] = 9150, + [SMALL_STATE(1280)] = 9239, + [SMALL_STATE(1281)] = 9316, + [SMALL_STATE(1282)] = 9391, + [SMALL_STATE(1283)] = 9479, + [SMALL_STATE(1284)] = 9551, + [SMALL_STATE(1285)] = 9617, + [SMALL_STATE(1286)] = 9683, + [SMALL_STATE(1287)] = 9749, + [SMALL_STATE(1288)] = 9815, + [SMALL_STATE(1289)] = 9881, + [SMALL_STATE(1290)] = 9953, + [SMALL_STATE(1291)] = 10025, + [SMALL_STATE(1292)] = 10097, + [SMALL_STATE(1293)] = 10167, + [SMALL_STATE(1294)] = 10239, + [SMALL_STATE(1295)] = 10305, + [SMALL_STATE(1296)] = 10377, + [SMALL_STATE(1297)] = 10453, + [SMALL_STATE(1298)] = 10525, + [SMALL_STATE(1299)] = 10591, + [SMALL_STATE(1300)] = 10661, + [SMALL_STATE(1301)] = 10727, + [SMALL_STATE(1302)] = 10805, + [SMALL_STATE(1303)] = 10887, + [SMALL_STATE(1304)] = 10961, + [SMALL_STATE(1305)] = 11027, + [SMALL_STATE(1306)] = 11105, + [SMALL_STATE(1307)] = 11171, + [SMALL_STATE(1308)] = 11259, + [SMALL_STATE(1309)] = 11337, + [SMALL_STATE(1310)] = 11403, + [SMALL_STATE(1311)] = 11477, + [SMALL_STATE(1312)] = 11557, + [SMALL_STATE(1313)] = 11631, + [SMALL_STATE(1314)] = 11705, + [SMALL_STATE(1315)] = 11779, + [SMALL_STATE(1316)] = 11859, + [SMALL_STATE(1317)] = 11931, + [SMALL_STATE(1318)] = 12001, + [SMALL_STATE(1319)] = 12085, + [SMALL_STATE(1320)] = 12169, + [SMALL_STATE(1321)] = 12243, + [SMALL_STATE(1322)] = 12315, + [SMALL_STATE(1323)] = 12381, + [SMALL_STATE(1324)] = 12453, + [SMALL_STATE(1325)] = 12537, + [SMALL_STATE(1326)] = 12614, + [SMALL_STATE(1327)] = 12689, + [SMALL_STATE(1328)] = 12758, + [SMALL_STATE(1329)] = 12829, + [SMALL_STATE(1330)] = 12898, + [SMALL_STATE(1331)] = 12977, + [SMALL_STATE(1332)] = 13060, + [SMALL_STATE(1333)] = 13137, + [SMALL_STATE(1334)] = 13210, + [SMALL_STATE(1335)] = 13281, + [SMALL_STATE(1336)] = 13354, + [SMALL_STATE(1337)] = 13429, + [SMALL_STATE(1338)] = 13498, + [SMALL_STATE(1339)] = 13575, + [SMALL_STATE(1340)] = 13652, + [SMALL_STATE(1341)] = 13723, + [SMALL_STATE(1342)] = 13796, + [SMALL_STATE(1343)] = 13867, + [SMALL_STATE(1344)] = 13936, + [SMALL_STATE(1345)] = 14009, + [SMALL_STATE(1346)] = 14081, + [SMALL_STATE(1347)] = 14201, + [SMALL_STATE(1348)] = 14271, + [SMALL_STATE(1349)] = 14391, + [SMALL_STATE(1350)] = 14511, + [SMALL_STATE(1351)] = 14631, + [SMALL_STATE(1352)] = 14703, + [SMALL_STATE(1353)] = 14777, + [SMALL_STATE(1354)] = 14847, + [SMALL_STATE(1355)] = 14923, + [SMALL_STATE(1356)] = 14993, + [SMALL_STATE(1357)] = 15063, + [SMALL_STATE(1358)] = 15133, + [SMALL_STATE(1359)] = 15207, + [SMALL_STATE(1360)] = 15277, + [SMALL_STATE(1361)] = 15351, + [SMALL_STATE(1362)] = 15419, + [SMALL_STATE(1363)] = 15491, + [SMALL_STATE(1364)] = 15561, + [SMALL_STATE(1365)] = 15635, + [SMALL_STATE(1366)] = 15755, + [SMALL_STATE(1367)] = 15875, + [SMALL_STATE(1368)] = 15945, + [SMALL_STATE(1369)] = 16016, + [SMALL_STATE(1370)] = 16085, + [SMALL_STATE(1371)] = 16154, + [SMALL_STATE(1372)] = 16223, + [SMALL_STATE(1373)] = 16292, + [SMALL_STATE(1374)] = 16363, + [SMALL_STATE(1375)] = 16432, + [SMALL_STATE(1376)] = 16505, + [SMALL_STATE(1377)] = 16574, + [SMALL_STATE(1378)] = 16641, + [SMALL_STATE(1379)] = 16708, + [SMALL_STATE(1380)] = 16777, + [SMALL_STATE(1381)] = 16846, + [SMALL_STATE(1382)] = 16919, + [SMALL_STATE(1383)] = 16987, + [SMALL_STATE(1384)] = 17103, + [SMALL_STATE(1385)] = 17219, + [SMALL_STATE(1386)] = 17335, + [SMALL_STATE(1387)] = 17451, + [SMALL_STATE(1388)] = 17567, + [SMALL_STATE(1389)] = 17635, + [SMALL_STATE(1390)] = 17703, + [SMALL_STATE(1391)] = 17771, + [SMALL_STATE(1392)] = 17887, + [SMALL_STATE(1393)] = 17955, + [SMALL_STATE(1394)] = 18071, + [SMALL_STATE(1395)] = 18187, + [SMALL_STATE(1396)] = 18255, + [SMALL_STATE(1397)] = 18371, + [SMALL_STATE(1398)] = 18439, + [SMALL_STATE(1399)] = 18555, + [SMALL_STATE(1400)] = 18671, + [SMALL_STATE(1401)] = 18787, + [SMALL_STATE(1402)] = 18903, + [SMALL_STATE(1403)] = 18971, + [SMALL_STATE(1404)] = 19087, + [SMALL_STATE(1405)] = 19155, + [SMALL_STATE(1406)] = 19223, + [SMALL_STATE(1407)] = 19339, + [SMALL_STATE(1408)] = 19455, + [SMALL_STATE(1409)] = 19523, + [SMALL_STATE(1410)] = 19639, + [SMALL_STATE(1411)] = 19707, + [SMALL_STATE(1412)] = 19775, + [SMALL_STATE(1413)] = 19843, + [SMALL_STATE(1414)] = 19913, + [SMALL_STATE(1415)] = 19981, + [SMALL_STATE(1416)] = 20049, + [SMALL_STATE(1417)] = 20117, + [SMALL_STATE(1418)] = 20185, + [SMALL_STATE(1419)] = 20253, + [SMALL_STATE(1420)] = 20321, + [SMALL_STATE(1421)] = 20389, + [SMALL_STATE(1422)] = 20455, + [SMALL_STATE(1423)] = 20521, + [SMALL_STATE(1424)] = 20637, + [SMALL_STATE(1425)] = 20702, + [SMALL_STATE(1426)] = 20767, + [SMALL_STATE(1427)] = 20832, + [SMALL_STATE(1428)] = 20897, + [SMALL_STATE(1429)] = 20962, + [SMALL_STATE(1430)] = 21027, + [SMALL_STATE(1431)] = 21092, + [SMALL_STATE(1432)] = 21157, + [SMALL_STATE(1433)] = 21222, + [SMALL_STATE(1434)] = 21334, + [SMALL_STATE(1435)] = 21446, + [SMALL_STATE(1436)] = 21558, + [SMALL_STATE(1437)] = 21670, + [SMALL_STATE(1438)] = 21782, + [SMALL_STATE(1439)] = 21894, + [SMALL_STATE(1440)] = 22006, + [SMALL_STATE(1441)] = 22117, + [SMALL_STATE(1442)] = 22228, + [SMALL_STATE(1443)] = 22347, + [SMALL_STATE(1444)] = 22458, + [SMALL_STATE(1445)] = 22569, + [SMALL_STATE(1446)] = 22688, + [SMALL_STATE(1447)] = 22799, + [SMALL_STATE(1448)] = 22910, + [SMALL_STATE(1449)] = 23021, + [SMALL_STATE(1450)] = 23132, + [SMALL_STATE(1451)] = 23251, + [SMALL_STATE(1452)] = 23370, + [SMALL_STATE(1453)] = 23481, + [SMALL_STATE(1454)] = 23592, + [SMALL_STATE(1455)] = 23703, + [SMALL_STATE(1456)] = 23822, + [SMALL_STATE(1457)] = 23924, + [SMALL_STATE(1458)] = 24026, + [SMALL_STATE(1459)] = 24104, + [SMALL_STATE(1460)] = 24206, + [SMALL_STATE(1461)] = 24308, + [SMALL_STATE(1462)] = 24410, + [SMALL_STATE(1463)] = 24512, + [SMALL_STATE(1464)] = 24623, + [SMALL_STATE(1465)] = 24680, + [SMALL_STATE(1466)] = 24747, + [SMALL_STATE(1467)] = 24814, + [SMALL_STATE(1468)] = 24871, + [SMALL_STATE(1469)] = 24938, + [SMALL_STATE(1470)] = 25003, + [SMALL_STATE(1471)] = 25112, + [SMALL_STATE(1472)] = 25172, + [SMALL_STATE(1473)] = 25232, + [SMALL_STATE(1474)] = 25292, + [SMALL_STATE(1475)] = 25348, + [SMALL_STATE(1476)] = 25442, + [SMALL_STATE(1477)] = 25510, + [SMALL_STATE(1478)] = 25568, + [SMALL_STATE(1479)] = 25628, + [SMALL_STATE(1480)] = 25684, + [SMALL_STATE(1481)] = 25740, + [SMALL_STATE(1482)] = 25796, + [SMALL_STATE(1483)] = 25852, + [SMALL_STATE(1484)] = 25914, + [SMALL_STATE(1485)] = 25974, + [SMALL_STATE(1486)] = 26036, + [SMALL_STATE(1487)] = 26096, + [SMALL_STATE(1488)] = 26156, + [SMALL_STATE(1489)] = 26212, + [SMALL_STATE(1490)] = 26268, + [SMALL_STATE(1491)] = 26326, + [SMALL_STATE(1492)] = 26384, + [SMALL_STATE(1493)] = 26444, + [SMALL_STATE(1494)] = 26503, + [SMALL_STATE(1495)] = 26558, + [SMALL_STATE(1496)] = 26619, + [SMALL_STATE(1497)] = 26674, + [SMALL_STATE(1498)] = 26729, + [SMALL_STATE(1499)] = 26784, + [SMALL_STATE(1500)] = 26839, + [SMALL_STATE(1501)] = 26894, + [SMALL_STATE(1502)] = 26957, + [SMALL_STATE(1503)] = 27016, + [SMALL_STATE(1504)] = 27071, + [SMALL_STATE(1505)] = 27126, + [SMALL_STATE(1506)] = 27187, + [SMALL_STATE(1507)] = 27248, + [SMALL_STATE(1508)] = 27307, + [SMALL_STATE(1509)] = 27362, + [SMALL_STATE(1510)] = 27417, + [SMALL_STATE(1511)] = 27478, + [SMALL_STATE(1512)] = 27533, + [SMALL_STATE(1513)] = 27588, + [SMALL_STATE(1514)] = 27643, + [SMALL_STATE(1515)] = 27698, + [SMALL_STATE(1516)] = 27753, + [SMALL_STATE(1517)] = 27808, + [SMALL_STATE(1518)] = 27863, + [SMALL_STATE(1519)] = 27918, + [SMALL_STATE(1520)] = 27973, + [SMALL_STATE(1521)] = 28028, + [SMALL_STATE(1522)] = 28087, + [SMALL_STATE(1523)] = 28146, + [SMALL_STATE(1524)] = 28201, + [SMALL_STATE(1525)] = 28256, + [SMALL_STATE(1526)] = 28311, + [SMALL_STATE(1527)] = 28366, + [SMALL_STATE(1528)] = 28421, + [SMALL_STATE(1529)] = 28476, + [SMALL_STATE(1530)] = 28531, + [SMALL_STATE(1531)] = 28586, + [SMALL_STATE(1532)] = 28641, + [SMALL_STATE(1533)] = 28696, + [SMALL_STATE(1534)] = 28751, + [SMALL_STATE(1535)] = 28810, + [SMALL_STATE(1536)] = 28865, + [SMALL_STATE(1537)] = 28920, + [SMALL_STATE(1538)] = 28981, + [SMALL_STATE(1539)] = 29042, + [SMALL_STATE(1540)] = 29101, + [SMALL_STATE(1541)] = 29156, + [SMALL_STATE(1542)] = 29213, + [SMALL_STATE(1543)] = 29268, + [SMALL_STATE(1544)] = 29331, + [SMALL_STATE(1545)] = 29388, + [SMALL_STATE(1546)] = 29443, + [SMALL_STATE(1547)] = 29498, + [SMALL_STATE(1548)] = 29553, + [SMALL_STATE(1549)] = 29608, + [SMALL_STATE(1550)] = 29663, + [SMALL_STATE(1551)] = 29718, + [SMALL_STATE(1552)] = 29773, + [SMALL_STATE(1553)] = 29828, + [SMALL_STATE(1554)] = 29883, + [SMALL_STATE(1555)] = 29946, + [SMALL_STATE(1556)] = 30001, + [SMALL_STATE(1557)] = 30056, + [SMALL_STATE(1558)] = 30113, + [SMALL_STATE(1559)] = 30168, + [SMALL_STATE(1560)] = 30229, + [SMALL_STATE(1561)] = 30284, + [SMALL_STATE(1562)] = 30339, + [SMALL_STATE(1563)] = 30394, + [SMALL_STATE(1564)] = 30453, + [SMALL_STATE(1565)] = 30510, + [SMALL_STATE(1566)] = 30565, + [SMALL_STATE(1567)] = 30622, + [SMALL_STATE(1568)] = 30677, + [SMALL_STATE(1569)] = 30732, + [SMALL_STATE(1570)] = 30787, + [SMALL_STATE(1571)] = 30844, + [SMALL_STATE(1572)] = 30899, + [SMALL_STATE(1573)] = 30954, + [SMALL_STATE(1574)] = 31011, + [SMALL_STATE(1575)] = 31068, + [SMALL_STATE(1576)] = 31129, + [SMALL_STATE(1577)] = 31184, + [SMALL_STATE(1578)] = 31245, + [SMALL_STATE(1579)] = 31300, + [SMALL_STATE(1580)] = 31355, + [SMALL_STATE(1581)] = 31412, + [SMALL_STATE(1582)] = 31469, + [SMALL_STATE(1583)] = 31524, + [SMALL_STATE(1584)] = 31579, + [SMALL_STATE(1585)] = 31634, + [SMALL_STATE(1586)] = 31695, + [SMALL_STATE(1587)] = 31756, + [SMALL_STATE(1588)] = 31813, + [SMALL_STATE(1589)] = 31870, + [SMALL_STATE(1590)] = 31925, + [SMALL_STATE(1591)] = 31980, + [SMALL_STATE(1592)] = 32035, + [SMALL_STATE(1593)] = 32090, + [SMALL_STATE(1594)] = 32145, + [SMALL_STATE(1595)] = 32200, + [SMALL_STATE(1596)] = 32255, + [SMALL_STATE(1597)] = 32310, + [SMALL_STATE(1598)] = 32365, + [SMALL_STATE(1599)] = 32426, + [SMALL_STATE(1600)] = 32481, + [SMALL_STATE(1601)] = 32536, + [SMALL_STATE(1602)] = 32597, + [SMALL_STATE(1603)] = 32652, + [SMALL_STATE(1604)] = 32707, + [SMALL_STATE(1605)] = 32762, + [SMALL_STATE(1606)] = 32817, + [SMALL_STATE(1607)] = 32872, + [SMALL_STATE(1608)] = 32927, + [SMALL_STATE(1609)] = 32982, + [SMALL_STATE(1610)] = 33037, + [SMALL_STATE(1611)] = 33092, + [SMALL_STATE(1612)] = 33153, + [SMALL_STATE(1613)] = 33208, + [SMALL_STATE(1614)] = 33265, + [SMALL_STATE(1615)] = 33322, + [SMALL_STATE(1616)] = 33377, + [SMALL_STATE(1617)] = 33431, + [SMALL_STATE(1618)] = 33485, + [SMALL_STATE(1619)] = 33539, + [SMALL_STATE(1620)] = 33593, + [SMALL_STATE(1621)] = 33647, + [SMALL_STATE(1622)] = 33757, + [SMALL_STATE(1623)] = 33811, + [SMALL_STATE(1624)] = 33865, + [SMALL_STATE(1625)] = 33975, + [SMALL_STATE(1626)] = 34029, + [SMALL_STATE(1627)] = 34083, + [SMALL_STATE(1628)] = 34137, + [SMALL_STATE(1629)] = 34221, + [SMALL_STATE(1630)] = 34275, + [SMALL_STATE(1631)] = 34385, + [SMALL_STATE(1632)] = 34439, + [SMALL_STATE(1633)] = 34493, + [SMALL_STATE(1634)] = 34603, + [SMALL_STATE(1635)] = 34657, + [SMALL_STATE(1636)] = 34711, + [SMALL_STATE(1637)] = 34797, + [SMALL_STATE(1638)] = 34853, + [SMALL_STATE(1639)] = 34907, + [SMALL_STATE(1640)] = 35017, + [SMALL_STATE(1641)] = 35071, + [SMALL_STATE(1642)] = 35125, + [SMALL_STATE(1643)] = 35235, + [SMALL_STATE(1644)] = 35289, + [SMALL_STATE(1645)] = 35343, + [SMALL_STATE(1646)] = 35399, + [SMALL_STATE(1647)] = 35453, + [SMALL_STATE(1648)] = 35563, + [SMALL_STATE(1649)] = 35673, + [SMALL_STATE(1650)] = 35727, + [SMALL_STATE(1651)] = 35783, + [SMALL_STATE(1652)] = 35869, + [SMALL_STATE(1653)] = 35923, + [SMALL_STATE(1654)] = 36033, + [SMALL_STATE(1655)] = 36087, + [SMALL_STATE(1656)] = 36141, + [SMALL_STATE(1657)] = 36195, + [SMALL_STATE(1658)] = 36249, + [SMALL_STATE(1659)] = 36303, + [SMALL_STATE(1660)] = 36377, + [SMALL_STATE(1661)] = 36431, [SMALL_STATE(1662)] = 36485, [SMALL_STATE(1663)] = 36539, - [SMALL_STATE(1664)] = 36637, - [SMALL_STATE(1665)] = 36737, - [SMALL_STATE(1666)] = 36817, - [SMALL_STATE(1667)] = 36909, - [SMALL_STATE(1668)] = 37003, - [SMALL_STATE(1669)] = 37057, - [SMALL_STATE(1670)] = 37111, - [SMALL_STATE(1671)] = 37197, - [SMALL_STATE(1672)] = 37275, - [SMALL_STATE(1673)] = 37355, - [SMALL_STATE(1674)] = 37409, - [SMALL_STATE(1675)] = 37463, - [SMALL_STATE(1676)] = 37523, - [SMALL_STATE(1677)] = 37579, - [SMALL_STATE(1678)] = 37639, - [SMALL_STATE(1679)] = 37693, - [SMALL_STATE(1680)] = 37781, - [SMALL_STATE(1681)] = 37883, - [SMALL_STATE(1682)] = 37937, - [SMALL_STATE(1683)] = 37991, - [SMALL_STATE(1684)] = 38045, - [SMALL_STATE(1685)] = 38099, - [SMALL_STATE(1686)] = 38153, - [SMALL_STATE(1687)] = 38207, - [SMALL_STATE(1688)] = 38317, - [SMALL_STATE(1689)] = 38427, - [SMALL_STATE(1690)] = 38481, - [SMALL_STATE(1691)] = 38535, - [SMALL_STATE(1692)] = 38589, - [SMALL_STATE(1693)] = 38643, - [SMALL_STATE(1694)] = 38697, - [SMALL_STATE(1695)] = 38751, - [SMALL_STATE(1696)] = 38807, - [SMALL_STATE(1697)] = 38861, - [SMALL_STATE(1698)] = 38915, - [SMALL_STATE(1699)] = 38969, - [SMALL_STATE(1700)] = 39041, - [SMALL_STATE(1701)] = 39095, - [SMALL_STATE(1702)] = 39149, + [SMALL_STATE(1664)] = 36593, + [SMALL_STATE(1665)] = 36647, + [SMALL_STATE(1666)] = 36701, + [SMALL_STATE(1667)] = 36755, + [SMALL_STATE(1668)] = 36865, + [SMALL_STATE(1669)] = 36919, + [SMALL_STATE(1670)] = 37005, + [SMALL_STATE(1671)] = 37059, + [SMALL_STATE(1672)] = 37113, + [SMALL_STATE(1673)] = 37167, + [SMALL_STATE(1674)] = 37221, + [SMALL_STATE(1675)] = 37291, + [SMALL_STATE(1676)] = 37389, + [SMALL_STATE(1677)] = 37489, + [SMALL_STATE(1678)] = 37561, + [SMALL_STATE(1679)] = 37615, + [SMALL_STATE(1680)] = 37669, + [SMALL_STATE(1681)] = 37749, + [SMALL_STATE(1682)] = 37835, + [SMALL_STATE(1683)] = 37889, + [SMALL_STATE(1684)] = 37949, + [SMALL_STATE(1685)] = 38003, + [SMALL_STATE(1686)] = 38095, + [SMALL_STATE(1687)] = 38149, + [SMALL_STATE(1688)] = 38223, + [SMALL_STATE(1689)] = 38317, + [SMALL_STATE(1690)] = 38371, + [SMALL_STATE(1691)] = 38467, + [SMALL_STATE(1692)] = 38545, + [SMALL_STATE(1693)] = 38625, + [SMALL_STATE(1694)] = 38679, + [SMALL_STATE(1695)] = 38733, + [SMALL_STATE(1696)] = 38787, + [SMALL_STATE(1697)] = 38841, + [SMALL_STATE(1698)] = 38895, + [SMALL_STATE(1699)] = 38981, + [SMALL_STATE(1700)] = 39035, + [SMALL_STATE(1701)] = 39089, + [SMALL_STATE(1702)] = 39143, [SMALL_STATE(1703)] = 39203, [SMALL_STATE(1704)] = 39257, [SMALL_STATE(1705)] = 39311, [SMALL_STATE(1706)] = 39365, [SMALL_STATE(1707)] = 39419, - [SMALL_STATE(1708)] = 39473, - [SMALL_STATE(1709)] = 39551, - [SMALL_STATE(1710)] = 39605, - [SMALL_STATE(1711)] = 39715, - [SMALL_STATE(1712)] = 39769, - [SMALL_STATE(1713)] = 39855, - [SMALL_STATE(1714)] = 39909, - [SMALL_STATE(1715)] = 39963, - [SMALL_STATE(1716)] = 40073, - [SMALL_STATE(1717)] = 40159, - [SMALL_STATE(1718)] = 40213, - [SMALL_STATE(1719)] = 40267, - [SMALL_STATE(1720)] = 40321, - [SMALL_STATE(1721)] = 40431, - [SMALL_STATE(1722)] = 40485, - [SMALL_STATE(1723)] = 40595, - [SMALL_STATE(1724)] = 40705, - [SMALL_STATE(1725)] = 40759, - [SMALL_STATE(1726)] = 40855, - [SMALL_STATE(1727)] = 40932, - [SMALL_STATE(1728)] = 40985, - [SMALL_STATE(1729)] = 41064, - [SMALL_STATE(1730)] = 41117, - [SMALL_STATE(1731)] = 41194, - [SMALL_STATE(1732)] = 41303, - [SMALL_STATE(1733)] = 41382, - [SMALL_STATE(1734)] = 41437, - [SMALL_STATE(1735)] = 41518, - [SMALL_STATE(1736)] = 41575, - [SMALL_STATE(1737)] = 41628, - [SMALL_STATE(1738)] = 41707, - [SMALL_STATE(1739)] = 41768, - [SMALL_STATE(1740)] = 41845, - [SMALL_STATE(1741)] = 41898, - [SMALL_STATE(1742)] = 41977, - [SMALL_STATE(1743)] = 42038, - [SMALL_STATE(1744)] = 42091, - [SMALL_STATE(1745)] = 42168, - [SMALL_STATE(1746)] = 42231, - [SMALL_STATE(1747)] = 42294, - [SMALL_STATE(1748)] = 42357, - [SMALL_STATE(1749)] = 42436, - [SMALL_STATE(1750)] = 42491, - [SMALL_STATE(1751)] = 42544, - [SMALL_STATE(1752)] = 42621, - [SMALL_STATE(1753)] = 42700, - [SMALL_STATE(1754)] = 42779, - [SMALL_STATE(1755)] = 42836, - [SMALL_STATE(1756)] = 42893, - [SMALL_STATE(1757)] = 42957, - [SMALL_STATE(1758)] = 43019, - [SMALL_STATE(1759)] = 43101, - [SMALL_STATE(1760)] = 43161, - [SMALL_STATE(1761)] = 43243, - [SMALL_STATE(1762)] = 43303, - [SMALL_STATE(1763)] = 43365, - [SMALL_STATE(1764)] = 43425, - [SMALL_STATE(1765)] = 43503, - [SMALL_STATE(1766)] = 43555, - [SMALL_STATE(1767)] = 43609, - [SMALL_STATE(1768)] = 43717, - [SMALL_STATE(1769)] = 43825, - [SMALL_STATE(1770)] = 43933, - [SMALL_STATE(1771)] = 44005, - [SMALL_STATE(1772)] = 44077, - [SMALL_STATE(1773)] = 44149, - [SMALL_STATE(1774)] = 44257, - [SMALL_STATE(1775)] = 44365, - [SMALL_STATE(1776)] = 44461, - [SMALL_STATE(1777)] = 44519, - [SMALL_STATE(1778)] = 44613, - [SMALL_STATE(1779)] = 44721, - [SMALL_STATE(1780)] = 44829, - [SMALL_STATE(1781)] = 44937, - [SMALL_STATE(1782)] = 45007, - [SMALL_STATE(1783)] = 45083, - [SMALL_STATE(1784)] = 45191, - [SMALL_STATE(1785)] = 45299, - [SMALL_STATE(1786)] = 45373, - [SMALL_STATE(1787)] = 45433, - [SMALL_STATE(1788)] = 45519, - [SMALL_STATE(1789)] = 45595, - [SMALL_STATE(1790)] = 45667, - [SMALL_STATE(1791)] = 45719, - [SMALL_STATE(1792)] = 45835, - [SMALL_STATE(1793)] = 45903, - [SMALL_STATE(1794)] = 46019, - [SMALL_STATE(1795)] = 46117, - [SMALL_STATE(1796)] = 46189, - [SMALL_STATE(1797)] = 46289, - [SMALL_STATE(1798)] = 46397, - [SMALL_STATE(1799)] = 46471, - [SMALL_STATE(1800)] = 46579, - [SMALL_STATE(1801)] = 46635, - [SMALL_STATE(1802)] = 46731, - [SMALL_STATE(1803)] = 46783, - [SMALL_STATE(1804)] = 46891, - [SMALL_STATE(1805)] = 46945, - [SMALL_STATE(1806)] = 47053, - [SMALL_STATE(1807)] = 47169, - [SMALL_STATE(1808)] = 47277, - [SMALL_STATE(1809)] = 47355, - [SMALL_STATE(1810)] = 47463, - [SMALL_STATE(1811)] = 47571, - [SMALL_STATE(1812)] = 47679, - [SMALL_STATE(1813)] = 47787, - [SMALL_STATE(1814)] = 47841, - [SMALL_STATE(1815)] = 47893, - [SMALL_STATE(1816)] = 47951, - [SMALL_STATE(1817)] = 48059, - [SMALL_STATE(1818)] = 48111, - [SMALL_STATE(1819)] = 48219, - [SMALL_STATE(1820)] = 48317, - [SMALL_STATE(1821)] = 48393, - [SMALL_STATE(1822)] = 48449, - [SMALL_STATE(1823)] = 48535, - [SMALL_STATE(1824)] = 48613, - [SMALL_STATE(1825)] = 48681, - [SMALL_STATE(1826)] = 48789, - [SMALL_STATE(1827)] = 48843, - [SMALL_STATE(1828)] = 48903, - [SMALL_STATE(1829)] = 48961, - [SMALL_STATE(1830)] = 49031, - [SMALL_STATE(1831)] = 49139, - [SMALL_STATE(1832)] = 49247, - [SMALL_STATE(1833)] = 49337, - [SMALL_STATE(1834)] = 49445, - [SMALL_STATE(1835)] = 49499, - [SMALL_STATE(1836)] = 49557, - [SMALL_STATE(1837)] = 49649, - [SMALL_STATE(1838)] = 49703, - [SMALL_STATE(1839)] = 49803, - [SMALL_STATE(1840)] = 49875, - [SMALL_STATE(1841)] = 49929, - [SMALL_STATE(1842)] = 50037, - [SMALL_STATE(1843)] = 50109, - [SMALL_STATE(1844)] = 50165, - [SMALL_STATE(1845)] = 50223, - [SMALL_STATE(1846)] = 50301, - [SMALL_STATE(1847)] = 50409, - [SMALL_STATE(1848)] = 50503, - [SMALL_STATE(1849)] = 50581, - [SMALL_STATE(1850)] = 50671, - [SMALL_STATE(1851)] = 50763, - [SMALL_STATE(1852)] = 50879, - [SMALL_STATE(1853)] = 50987, - [SMALL_STATE(1854)] = 51063, - [SMALL_STATE(1855)] = 51119, - [SMALL_STATE(1856)] = 51194, - [SMALL_STATE(1857)] = 51263, - [SMALL_STATE(1858)] = 51316, - [SMALL_STATE(1859)] = 51373, - [SMALL_STATE(1860)] = 51428, - [SMALL_STATE(1861)] = 51511, - [SMALL_STATE(1862)] = 51622, - [SMALL_STATE(1863)] = 51673, - [SMALL_STATE(1864)] = 51724, - [SMALL_STATE(1865)] = 51775, - [SMALL_STATE(1866)] = 51826, - [SMALL_STATE(1867)] = 51879, - [SMALL_STATE(1868)] = 51930, - [SMALL_STATE(1869)] = 51983, - [SMALL_STATE(1870)] = 52034, - [SMALL_STATE(1871)] = 52087, - [SMALL_STATE(1872)] = 52144, - [SMALL_STATE(1873)] = 52199, - [SMALL_STATE(1874)] = 52256, - [SMALL_STATE(1875)] = 52313, - [SMALL_STATE(1876)] = 52372, - [SMALL_STATE(1877)] = 52429, - [SMALL_STATE(1878)] = 52480, - [SMALL_STATE(1879)] = 52533, - [SMALL_STATE(1880)] = 52586, - [SMALL_STATE(1881)] = 52637, - [SMALL_STATE(1882)] = 52700, - [SMALL_STATE(1883)] = 52763, - [SMALL_STATE(1884)] = 52814, - [SMALL_STATE(1885)] = 52865, - [SMALL_STATE(1886)] = 52918, - [SMALL_STATE(1887)] = 52969, - [SMALL_STATE(1888)] = 53020, - [SMALL_STATE(1889)] = 53071, - [SMALL_STATE(1890)] = 53128, - [SMALL_STATE(1891)] = 53185, - [SMALL_STATE(1892)] = 53238, - [SMALL_STATE(1893)] = 53291, - [SMALL_STATE(1894)] = 53342, - [SMALL_STATE(1895)] = 53393, - [SMALL_STATE(1896)] = 53444, - [SMALL_STATE(1897)] = 53495, - [SMALL_STATE(1898)] = 53606, - [SMALL_STATE(1899)] = 53717, - [SMALL_STATE(1900)] = 53828, - [SMALL_STATE(1901)] = 53879, - [SMALL_STATE(1902)] = 53930, - [SMALL_STATE(1903)] = 53981, - [SMALL_STATE(1904)] = 54032, - [SMALL_STATE(1905)] = 54083, - [SMALL_STATE(1906)] = 54134, - [SMALL_STATE(1907)] = 54185, - [SMALL_STATE(1908)] = 54236, - [SMALL_STATE(1909)] = 54287, - [SMALL_STATE(1910)] = 54398, - [SMALL_STATE(1911)] = 54449, - [SMALL_STATE(1912)] = 54502, - [SMALL_STATE(1913)] = 54553, - [SMALL_STATE(1914)] = 54604, - [SMALL_STATE(1915)] = 54657, - [SMALL_STATE(1916)] = 54708, - [SMALL_STATE(1917)] = 54765, - [SMALL_STATE(1918)] = 54816, - [SMALL_STATE(1919)] = 54867, - [SMALL_STATE(1920)] = 54918, - [SMALL_STATE(1921)] = 54969, - [SMALL_STATE(1922)] = 55020, - [SMALL_STATE(1923)] = 55073, - [SMALL_STATE(1924)] = 55124, - [SMALL_STATE(1925)] = 55175, - [SMALL_STATE(1926)] = 55226, - [SMALL_STATE(1927)] = 55277, - [SMALL_STATE(1928)] = 55328, - [SMALL_STATE(1929)] = 55379, - [SMALL_STATE(1930)] = 55430, - [SMALL_STATE(1931)] = 55481, - [SMALL_STATE(1932)] = 55532, - [SMALL_STATE(1933)] = 55583, - [SMALL_STATE(1934)] = 55634, - [SMALL_STATE(1935)] = 55685, - [SMALL_STATE(1936)] = 55736, - [SMALL_STATE(1937)] = 55787, - [SMALL_STATE(1938)] = 55838, - [SMALL_STATE(1939)] = 55889, - [SMALL_STATE(1940)] = 55940, - [SMALL_STATE(1941)] = 55991, - [SMALL_STATE(1942)] = 56042, - [SMALL_STATE(1943)] = 56099, - [SMALL_STATE(1944)] = 56150, - [SMALL_STATE(1945)] = 56201, - [SMALL_STATE(1946)] = 56258, - [SMALL_STATE(1947)] = 56309, - [SMALL_STATE(1948)] = 56360, - [SMALL_STATE(1949)] = 56411, - [SMALL_STATE(1950)] = 56462, - [SMALL_STATE(1951)] = 56513, - [SMALL_STATE(1952)] = 56564, - [SMALL_STATE(1953)] = 56615, - [SMALL_STATE(1954)] = 56666, - [SMALL_STATE(1955)] = 56717, - [SMALL_STATE(1956)] = 56768, - [SMALL_STATE(1957)] = 56819, - [SMALL_STATE(1958)] = 56870, - [SMALL_STATE(1959)] = 56921, - [SMALL_STATE(1960)] = 56972, - [SMALL_STATE(1961)] = 57023, - [SMALL_STATE(1962)] = 57074, - [SMALL_STATE(1963)] = 57125, - [SMALL_STATE(1964)] = 57176, - [SMALL_STATE(1965)] = 57227, - [SMALL_STATE(1966)] = 57278, - [SMALL_STATE(1967)] = 57329, - [SMALL_STATE(1968)] = 57396, - [SMALL_STATE(1969)] = 57447, - [SMALL_STATE(1970)] = 57498, - [SMALL_STATE(1971)] = 57549, - [SMALL_STATE(1972)] = 57600, - [SMALL_STATE(1973)] = 57651, - [SMALL_STATE(1974)] = 57708, - [SMALL_STATE(1975)] = 57763, - [SMALL_STATE(1976)] = 57846, - [SMALL_STATE(1977)] = 57901, - [SMALL_STATE(1978)] = 57958, - [SMALL_STATE(1979)] = 58067, - [SMALL_STATE(1980)] = 58130, - [SMALL_STATE(1981)] = 58193, - [SMALL_STATE(1982)] = 58244, - [SMALL_STATE(1983)] = 58301, - [SMALL_STATE(1984)] = 58358, - [SMALL_STATE(1985)] = 58441, - [SMALL_STATE(1986)] = 58514, - [SMALL_STATE(1987)] = 58571, - [SMALL_STATE(1988)] = 58644, - [SMALL_STATE(1989)] = 58713, - [SMALL_STATE(1990)] = 58786, - [SMALL_STATE(1991)] = 58855, - [SMALL_STATE(1992)] = 58914, - [SMALL_STATE(1993)] = 58969, - [SMALL_STATE(1994)] = 59026, - [SMALL_STATE(1995)] = 59099, - [SMALL_STATE(1996)] = 59162, - [SMALL_STATE(1997)] = 59225, - [SMALL_STATE(1998)] = 59308, - [SMALL_STATE(1999)] = 59361, - [SMALL_STATE(2000)] = 59424, - [SMALL_STATE(2001)] = 59487, - [SMALL_STATE(2002)] = 59540, - [SMALL_STATE(2003)] = 59593, - [SMALL_STATE(2004)] = 59676, - [SMALL_STATE(2005)] = 59741, - [SMALL_STATE(2006)] = 59806, - [SMALL_STATE(2007)] = 59863, - [SMALL_STATE(2008)] = 59920, - [SMALL_STATE(2009)] = 59977, - [SMALL_STATE(2010)] = 60030, - [SMALL_STATE(2011)] = 60103, - [SMALL_STATE(2012)] = 60162, - [SMALL_STATE(2013)] = 60217, - [SMALL_STATE(2014)] = 60274, - [SMALL_STATE(2015)] = 60327, - [SMALL_STATE(2016)] = 60434, - [SMALL_STATE(2017)] = 60487, - [SMALL_STATE(2018)] = 60570, - [SMALL_STATE(2019)] = 60643, - [SMALL_STATE(2020)] = 60712, - [SMALL_STATE(2021)] = 60785, - [SMALL_STATE(2022)] = 60848, - [SMALL_STATE(2023)] = 60907, - [SMALL_STATE(2024)] = 60976, - [SMALL_STATE(2025)] = 61047, - [SMALL_STATE(2026)] = 61120, - [SMALL_STATE(2027)] = 61173, - [SMALL_STATE(2028)] = 61284, - [SMALL_STATE(2029)] = 61395, - [SMALL_STATE(2030)] = 61448, - [SMALL_STATE(2031)] = 61555, - [SMALL_STATE(2032)] = 61662, - [SMALL_STATE(2033)] = 61769, - [SMALL_STATE(2034)] = 61876, - [SMALL_STATE(2035)] = 61983, - [SMALL_STATE(2036)] = 62064, - [SMALL_STATE(2037)] = 62135, - [SMALL_STATE(2038)] = 62230, - [SMALL_STATE(2039)] = 62327, - [SMALL_STATE(2040)] = 62404, - [SMALL_STATE(2041)] = 62493, - [SMALL_STATE(2042)] = 62584, - [SMALL_STATE(2043)] = 62677, - [SMALL_STATE(2044)] = 62752, - [SMALL_STATE(2045)] = 62829, - [SMALL_STATE(2046)] = 62914, - [SMALL_STATE(2047)] = 63013, - [SMALL_STATE(2048)] = 63120, - [SMALL_STATE(2049)] = 63227, - [SMALL_STATE(2050)] = 63334, - [SMALL_STATE(2051)] = 63441, - [SMALL_STATE(2052)] = 63548, - [SMALL_STATE(2053)] = 63655, - [SMALL_STATE(2054)] = 63762, - [SMALL_STATE(2055)] = 63869, - [SMALL_STATE(2056)] = 63978, - [SMALL_STATE(2057)] = 64047, - [SMALL_STATE(2058)] = 64154, - [SMALL_STATE(2059)] = 64205, - [SMALL_STATE(2060)] = 64315, - [SMALL_STATE(2061)] = 64369, - [SMALL_STATE(2062)] = 64423, - [SMALL_STATE(2063)] = 64529, - [SMALL_STATE(2064)] = 64593, - [SMALL_STATE(2065)] = 64645, - [SMALL_STATE(2066)] = 64697, - [SMALL_STATE(2067)] = 64751, - [SMALL_STATE(2068)] = 64805, - [SMALL_STATE(2069)] = 64857, - [SMALL_STATE(2070)] = 64911, - [SMALL_STATE(2071)] = 64965, - [SMALL_STATE(2072)] = 65015, - [SMALL_STATE(2073)] = 65089, - [SMALL_STATE(2074)] = 65155, - [SMALL_STATE(2075)] = 65231, - [SMALL_STATE(2076)] = 65337, - [SMALL_STATE(2077)] = 65447, - [SMALL_STATE(2078)] = 65511, - [SMALL_STATE(2079)] = 65577, - [SMALL_STATE(2080)] = 65629, - [SMALL_STATE(2081)] = 65679, - [SMALL_STATE(2082)] = 65737, - [SMALL_STATE(2083)] = 65791, - [SMALL_STATE(2084)] = 65841, - [SMALL_STATE(2085)] = 65905, - [SMALL_STATE(2086)] = 65955, - [SMALL_STATE(2087)] = 66005, - [SMALL_STATE(2088)] = 66113, - [SMALL_STATE(2089)] = 66163, - [SMALL_STATE(2090)] = 66217, - [SMALL_STATE(2091)] = 66267, - [SMALL_STATE(2092)] = 66331, - [SMALL_STATE(2093)] = 66395, - [SMALL_STATE(2094)] = 66461, - [SMALL_STATE(2095)] = 66511, - [SMALL_STATE(2096)] = 66617, - [SMALL_STATE(2097)] = 66667, - [SMALL_STATE(2098)] = 66717, - [SMALL_STATE(2099)] = 66767, - [SMALL_STATE(2100)] = 66817, - [SMALL_STATE(2101)] = 66867, - [SMALL_STATE(2102)] = 66941, - [SMALL_STATE(2103)] = 66999, - [SMALL_STATE(2104)] = 67075, - [SMALL_STATE(2105)] = 67125, - [SMALL_STATE(2106)] = 67175, - [SMALL_STATE(2107)] = 67231, - [SMALL_STATE(2108)] = 67341, - [SMALL_STATE(2109)] = 67391, - [SMALL_STATE(2110)] = 67441, - [SMALL_STATE(2111)] = 67495, - [SMALL_STATE(2112)] = 67545, - [SMALL_STATE(2113)] = 67609, - [SMALL_STATE(2114)] = 67665, - [SMALL_STATE(2115)] = 67719, - [SMALL_STATE(2116)] = 67773, - [SMALL_STATE(2117)] = 67823, - [SMALL_STATE(2118)] = 67873, - [SMALL_STATE(2119)] = 67923, - [SMALL_STATE(2120)] = 67997, - [SMALL_STATE(2121)] = 68051, - [SMALL_STATE(2122)] = 68127, - [SMALL_STATE(2123)] = 68189, - [SMALL_STATE(2124)] = 68251, - [SMALL_STATE(2125)] = 68301, - [SMALL_STATE(2126)] = 68351, - [SMALL_STATE(2127)] = 68401, - [SMALL_STATE(2128)] = 68451, - [SMALL_STATE(2129)] = 68503, - [SMALL_STATE(2130)] = 68561, - [SMALL_STATE(2131)] = 68619, - [SMALL_STATE(2132)] = 68669, - [SMALL_STATE(2133)] = 68731, - [SMALL_STATE(2134)] = 68793, - [SMALL_STATE(2135)] = 68851, - [SMALL_STATE(2136)] = 68911, - [SMALL_STATE(2137)] = 68971, - [SMALL_STATE(2138)] = 69033, - [SMALL_STATE(2139)] = 69095, - [SMALL_STATE(2140)] = 69157, - [SMALL_STATE(2141)] = 69219, - [SMALL_STATE(2142)] = 69281, - [SMALL_STATE(2143)] = 69343, - [SMALL_STATE(2144)] = 69393, - [SMALL_STATE(2145)] = 69503, - [SMALL_STATE(2146)] = 69613, - [SMALL_STATE(2147)] = 69723, - [SMALL_STATE(2148)] = 69773, - [SMALL_STATE(2149)] = 69883, - [SMALL_STATE(2150)] = 69933, - [SMALL_STATE(2151)] = 70039, - [SMALL_STATE(2152)] = 70145, - [SMALL_STATE(2153)] = 70207, - [SMALL_STATE(2154)] = 70317, - [SMALL_STATE(2155)] = 70423, - [SMALL_STATE(2156)] = 70473, - [SMALL_STATE(2157)] = 70523, - [SMALL_STATE(2158)] = 70573, - [SMALL_STATE(2159)] = 70679, - [SMALL_STATE(2160)] = 70785, - [SMALL_STATE(2161)] = 70865, - [SMALL_STATE(2162)] = 70975, - [SMALL_STATE(2163)] = 71045, - [SMALL_STATE(2164)] = 71155, - [SMALL_STATE(2165)] = 71249, - [SMALL_STATE(2166)] = 71345, - [SMALL_STATE(2167)] = 71421, - [SMALL_STATE(2168)] = 71509, - [SMALL_STATE(2169)] = 71599, - [SMALL_STATE(2170)] = 71691, - [SMALL_STATE(2171)] = 71765, - [SMALL_STATE(2172)] = 71841, - [SMALL_STATE(2173)] = 71891, - [SMALL_STATE(2174)] = 71945, - [SMALL_STATE(2175)] = 72029, - [SMALL_STATE(2176)] = 72127, - [SMALL_STATE(2177)] = 72237, - [SMALL_STATE(2178)] = 72343, - [SMALL_STATE(2179)] = 72449, - [SMALL_STATE(2180)] = 72499, - [SMALL_STATE(2181)] = 72605, - [SMALL_STATE(2182)] = 72711, - [SMALL_STATE(2183)] = 72817, - [SMALL_STATE(2184)] = 72923, - [SMALL_STATE(2185)] = 73029, - [SMALL_STATE(2186)] = 73079, - [SMALL_STATE(2187)] = 73189, - [SMALL_STATE(2188)] = 73295, - [SMALL_STATE(2189)] = 73363, - [SMALL_STATE(2190)] = 73413, - [SMALL_STATE(2191)] = 73463, - [SMALL_STATE(2192)] = 73513, - [SMALL_STATE(2193)] = 73563, - [SMALL_STATE(2194)] = 73613, - [SMALL_STATE(2195)] = 73723, - [SMALL_STATE(2196)] = 73833, - [SMALL_STATE(2197)] = 73943, - [SMALL_STATE(2198)] = 74053, - [SMALL_STATE(2199)] = 74163, - [SMALL_STATE(2200)] = 74213, - [SMALL_STATE(2201)] = 74287, - [SMALL_STATE(2202)] = 74397, - [SMALL_STATE(2203)] = 74461, - [SMALL_STATE(2204)] = 74515, - [SMALL_STATE(2205)] = 74625, - [SMALL_STATE(2206)] = 74679, - [SMALL_STATE(2207)] = 74733, - [SMALL_STATE(2208)] = 74809, - [SMALL_STATE(2209)] = 74863, - [SMALL_STATE(2210)] = 74973, - [SMALL_STATE(2211)] = 75037, - [SMALL_STATE(2212)] = 75103, - [SMALL_STATE(2213)] = 75213, - [SMALL_STATE(2214)] = 75323, - [SMALL_STATE(2215)] = 75389, - [SMALL_STATE(2216)] = 75457, - [SMALL_STATE(2217)] = 75563, - [SMALL_STATE(2218)] = 75637, - [SMALL_STATE(2219)] = 75691, - [SMALL_STATE(2220)] = 75757, - [SMALL_STATE(2221)] = 75823, - [SMALL_STATE(2222)] = 75889, - [SMALL_STATE(2223)] = 75953, - [SMALL_STATE(2224)] = 76019, - [SMALL_STATE(2225)] = 76073, - [SMALL_STATE(2226)] = 76123, - [SMALL_STATE(2227)] = 76173, - [SMALL_STATE(2228)] = 76233, - [SMALL_STATE(2229)] = 76297, - [SMALL_STATE(2230)] = 76347, - [SMALL_STATE(2231)] = 76457, - [SMALL_STATE(2232)] = 76521, - [SMALL_STATE(2233)] = 76631, - [SMALL_STATE(2234)] = 76741, - [SMALL_STATE(2235)] = 76805, - [SMALL_STATE(2236)] = 76915, - [SMALL_STATE(2237)] = 76979, - [SMALL_STATE(2238)] = 77029, - [SMALL_STATE(2239)] = 77079, - [SMALL_STATE(2240)] = 77129, - [SMALL_STATE(2241)] = 77179, - [SMALL_STATE(2242)] = 77243, - [SMALL_STATE(2243)] = 77307, - [SMALL_STATE(2244)] = 77373, - [SMALL_STATE(2245)] = 77479, - [SMALL_STATE(2246)] = 77585, - [SMALL_STATE(2247)] = 77691, - [SMALL_STATE(2248)] = 77797, - [SMALL_STATE(2249)] = 77903, - [SMALL_STATE(2250)] = 77983, - [SMALL_STATE(2251)] = 78053, - [SMALL_STATE(2252)] = 78147, - [SMALL_STATE(2253)] = 78243, - [SMALL_STATE(2254)] = 78319, - [SMALL_STATE(2255)] = 78407, - [SMALL_STATE(2256)] = 78497, - [SMALL_STATE(2257)] = 78589, - [SMALL_STATE(2258)] = 78663, - [SMALL_STATE(2259)] = 78739, - [SMALL_STATE(2260)] = 78823, - [SMALL_STATE(2261)] = 78921, - [SMALL_STATE(2262)] = 79027, - [SMALL_STATE(2263)] = 79133, - [SMALL_STATE(2264)] = 79239, - [SMALL_STATE(2265)] = 79345, - [SMALL_STATE(2266)] = 79451, - [SMALL_STATE(2267)] = 79557, - [SMALL_STATE(2268)] = 79663, - [SMALL_STATE(2269)] = 79769, - [SMALL_STATE(2270)] = 79843, - [SMALL_STATE(2271)] = 79907, - [SMALL_STATE(2272)] = 79957, - [SMALL_STATE(2273)] = 80007, - [SMALL_STATE(2274)] = 80057, - [SMALL_STATE(2275)] = 80107, - [SMALL_STATE(2276)] = 80157, - [SMALL_STATE(2277)] = 80207, - [SMALL_STATE(2278)] = 80257, - [SMALL_STATE(2279)] = 80367, - [SMALL_STATE(2280)] = 80435, - [SMALL_STATE(2281)] = 80509, - [SMALL_STATE(2282)] = 80615, - [SMALL_STATE(2283)] = 80681, - [SMALL_STATE(2284)] = 80791, - [SMALL_STATE(2285)] = 80843, - [SMALL_STATE(2286)] = 80897, - [SMALL_STATE(2287)] = 80973, - [SMALL_STATE(2288)] = 81083, - [SMALL_STATE(2289)] = 81133, - [SMALL_STATE(2290)] = 81243, - [SMALL_STATE(2291)] = 81297, - [SMALL_STATE(2292)] = 81361, - [SMALL_STATE(2293)] = 81415, - [SMALL_STATE(2294)] = 81481, - [SMALL_STATE(2295)] = 81547, - [SMALL_STATE(2296)] = 81613, - [SMALL_STATE(2297)] = 81679, - [SMALL_STATE(2298)] = 81743, - [SMALL_STATE(2299)] = 81809, - [SMALL_STATE(2300)] = 81919, - [SMALL_STATE(2301)] = 82029, - [SMALL_STATE(2302)] = 82083, - [SMALL_STATE(2303)] = 82193, - [SMALL_STATE(2304)] = 82247, - [SMALL_STATE(2305)] = 82313, - [SMALL_STATE(2306)] = 82363, - [SMALL_STATE(2307)] = 82449, - [SMALL_STATE(2308)] = 82523, - [SMALL_STATE(2309)] = 82573, - [SMALL_STATE(2310)] = 82649, - [SMALL_STATE(2311)] = 82701, - [SMALL_STATE(2312)] = 82807, - [SMALL_STATE(2313)] = 82861, - [SMALL_STATE(2314)] = 82919, - [SMALL_STATE(2315)] = 82973, - [SMALL_STATE(2316)] = 83023, - [SMALL_STATE(2317)] = 83087, - [SMALL_STATE(2318)] = 83137, - [SMALL_STATE(2319)] = 83195, - [SMALL_STATE(2320)] = 83247, - [SMALL_STATE(2321)] = 83299, - [SMALL_STATE(2322)] = 83359, - [SMALL_STATE(2323)] = 83413, - [SMALL_STATE(2324)] = 83523, - [SMALL_STATE(2325)] = 83573, - [SMALL_STATE(2326)] = 83631, - [SMALL_STATE(2327)] = 83685, - [SMALL_STATE(2328)] = 83739, - [SMALL_STATE(2329)] = 83797, - [SMALL_STATE(2330)] = 83855, - [SMALL_STATE(2331)] = 83905, - [SMALL_STATE(2332)] = 83971, - [SMALL_STATE(2333)] = 84077, - [SMALL_STATE(2334)] = 84127, - [SMALL_STATE(2335)] = 84177, - [SMALL_STATE(2336)] = 84227, - [SMALL_STATE(2337)] = 84337, - [SMALL_STATE(2338)] = 84447, - [SMALL_STATE(2339)] = 84557, - [SMALL_STATE(2340)] = 84667, - [SMALL_STATE(2341)] = 84777, - [SMALL_STATE(2342)] = 84887, - [SMALL_STATE(2343)] = 84997, - [SMALL_STATE(2344)] = 85107, - [SMALL_STATE(2345)] = 85217, - [SMALL_STATE(2346)] = 85327, - [SMALL_STATE(2347)] = 85379, - [SMALL_STATE(2348)] = 85489, - [SMALL_STATE(2349)] = 85599, - [SMALL_STATE(2350)] = 85709, - [SMALL_STATE(2351)] = 85761, - [SMALL_STATE(2352)] = 85813, - [SMALL_STATE(2353)] = 85867, - [SMALL_STATE(2354)] = 85931, - [SMALL_STATE(2355)] = 86037, - [SMALL_STATE(2356)] = 86088, - [SMALL_STATE(2357)] = 86139, - [SMALL_STATE(2358)] = 86208, - [SMALL_STATE(2359)] = 86277, - [SMALL_STATE(2360)] = 86334, - [SMALL_STATE(2361)] = 86393, - [SMALL_STATE(2362)] = 86452, - [SMALL_STATE(2363)] = 86511, - [SMALL_STATE(2364)] = 86570, - [SMALL_STATE(2365)] = 86621, - [SMALL_STATE(2366)] = 86680, - [SMALL_STATE(2367)] = 86731, - [SMALL_STATE(2368)] = 86786, - [SMALL_STATE(2369)] = 86841, - [SMALL_STATE(2370)] = 86896, - [SMALL_STATE(2371)] = 86965, - [SMALL_STATE(2372)] = 87024, - [SMALL_STATE(2373)] = 87079, - [SMALL_STATE(2374)] = 87136, - [SMALL_STATE(2375)] = 87193, - [SMALL_STATE(2376)] = 87252, - [SMALL_STATE(2377)] = 87305, - [SMALL_STATE(2378)] = 87364, - [SMALL_STATE(2379)] = 87433, - [SMALL_STATE(2380)] = 87488, - [SMALL_STATE(2381)] = 87543, - [SMALL_STATE(2382)] = 87598, - [SMALL_STATE(2383)] = 87687, - [SMALL_STATE(2384)] = 87744, - [SMALL_STATE(2385)] = 87801, - [SMALL_STATE(2386)] = 87876, - [SMALL_STATE(2387)] = 87981, - [SMALL_STATE(2388)] = 88034, - [SMALL_STATE(2389)] = 88093, - [SMALL_STATE(2390)] = 88152, - [SMALL_STATE(2391)] = 88211, - [SMALL_STATE(2392)] = 88270, - [SMALL_STATE(2393)] = 88377, - [SMALL_STATE(2394)] = 88484, - [SMALL_STATE(2395)] = 88589, - [SMALL_STATE(2396)] = 88694, - [SMALL_STATE(2397)] = 88753, - [SMALL_STATE(2398)] = 88812, - [SMALL_STATE(2399)] = 88871, - [SMALL_STATE(2400)] = 88930, - [SMALL_STATE(2401)] = 89011, - [SMALL_STATE(2402)] = 89088, - [SMALL_STATE(2403)] = 89193, - [SMALL_STATE(2404)] = 89262, - [SMALL_STATE(2405)] = 89321, - [SMALL_STATE(2406)] = 89380, - [SMALL_STATE(2407)] = 89439, - [SMALL_STATE(2408)] = 89498, - [SMALL_STATE(2409)] = 89557, - [SMALL_STATE(2410)] = 89616, - [SMALL_STATE(2411)] = 89667, - [SMALL_STATE(2412)] = 89726, - [SMALL_STATE(2413)] = 89781, - [SMALL_STATE(2414)] = 89832, - [SMALL_STATE(2415)] = 89937, - [SMALL_STATE(2416)] = 90042, - [SMALL_STATE(2417)] = 90147, - [SMALL_STATE(2418)] = 90252, - [SMALL_STATE(2419)] = 90357, - [SMALL_STATE(2420)] = 90436, - [SMALL_STATE(2421)] = 90505, - [SMALL_STATE(2422)] = 90598, - [SMALL_STATE(2423)] = 90693, - [SMALL_STATE(2424)] = 90768, - [SMALL_STATE(2425)] = 90855, - [SMALL_STATE(2426)] = 90944, - [SMALL_STATE(2427)] = 91035, - [SMALL_STATE(2428)] = 91108, - [SMALL_STATE(2429)] = 91183, - [SMALL_STATE(2430)] = 91266, - [SMALL_STATE(2431)] = 91363, - [SMALL_STATE(2432)] = 91468, - [SMALL_STATE(2433)] = 91573, - [SMALL_STATE(2434)] = 91678, - [SMALL_STATE(2435)] = 91783, - [SMALL_STATE(2436)] = 91888, - [SMALL_STATE(2437)] = 91993, - [SMALL_STATE(2438)] = 92098, - [SMALL_STATE(2439)] = 92203, - [SMALL_STATE(2440)] = 92270, - [SMALL_STATE(2441)] = 92343, - [SMALL_STATE(2442)] = 92448, - [SMALL_STATE(2443)] = 92513, - [SMALL_STATE(2444)] = 92618, - [SMALL_STATE(2445)] = 92687, - [SMALL_STATE(2446)] = 92738, - [SMALL_STATE(2447)] = 92843, - [SMALL_STATE(2448)] = 92948, - [SMALL_STATE(2449)] = 93053, - [SMALL_STATE(2450)] = 93158, - [SMALL_STATE(2451)] = 93263, - [SMALL_STATE(2452)] = 93342, - [SMALL_STATE(2453)] = 93411, - [SMALL_STATE(2454)] = 93504, - [SMALL_STATE(2455)] = 93599, - [SMALL_STATE(2456)] = 93674, - [SMALL_STATE(2457)] = 93761, - [SMALL_STATE(2458)] = 93850, - [SMALL_STATE(2459)] = 93941, - [SMALL_STATE(2460)] = 94014, - [SMALL_STATE(2461)] = 94089, - [SMALL_STATE(2462)] = 94172, - [SMALL_STATE(2463)] = 94269, - [SMALL_STATE(2464)] = 94374, - [SMALL_STATE(2465)] = 94479, - [SMALL_STATE(2466)] = 94584, - [SMALL_STATE(2467)] = 94689, - [SMALL_STATE(2468)] = 94794, - [SMALL_STATE(2469)] = 94899, - [SMALL_STATE(2470)] = 95004, - [SMALL_STATE(2471)] = 95109, - [SMALL_STATE(2472)] = 95176, - [SMALL_STATE(2473)] = 95249, - [SMALL_STATE(2474)] = 95354, - [SMALL_STATE(2475)] = 95419, - [SMALL_STATE(2476)] = 95476, - [SMALL_STATE(2477)] = 95533, - [SMALL_STATE(2478)] = 95638, - [SMALL_STATE(2479)] = 95742, - [SMALL_STATE(2480)] = 95792, - [SMALL_STATE(2481)] = 95842, - [SMALL_STATE(2482)] = 95946, - [SMALL_STATE(2483)] = 96050, - [SMALL_STATE(2484)] = 96100, - [SMALL_STATE(2485)] = 96150, - [SMALL_STATE(2486)] = 96222, - [SMALL_STATE(2487)] = 96326, - [SMALL_STATE(2488)] = 96430, - [SMALL_STATE(2489)] = 96478, - [SMALL_STATE(2490)] = 96528, - [SMALL_STATE(2491)] = 96632, - [SMALL_STATE(2492)] = 96736, - [SMALL_STATE(2493)] = 96840, - [SMALL_STATE(2494)] = 96918, - [SMALL_STATE(2495)] = 96986, - [SMALL_STATE(2496)] = 97078, - [SMALL_STATE(2497)] = 97172, - [SMALL_STATE(2498)] = 97246, - [SMALL_STATE(2499)] = 97332, - [SMALL_STATE(2500)] = 97420, - [SMALL_STATE(2501)] = 97510, - [SMALL_STATE(2502)] = 97582, - [SMALL_STATE(2503)] = 97656, - [SMALL_STATE(2504)] = 97738, - [SMALL_STATE(2505)] = 97834, - [SMALL_STATE(2506)] = 97938, - [SMALL_STATE(2507)] = 98042, - [SMALL_STATE(2508)] = 98148, - [SMALL_STATE(2509)] = 98252, - [SMALL_STATE(2510)] = 98356, - [SMALL_STATE(2511)] = 98460, - [SMALL_STATE(2512)] = 98514, - [SMALL_STATE(2513)] = 98618, - [SMALL_STATE(2514)] = 98682, - [SMALL_STATE(2515)] = 98742, - [SMALL_STATE(2516)] = 98806, - [SMALL_STATE(2517)] = 98866, - [SMALL_STATE(2518)] = 98970, - [SMALL_STATE(2519)] = 99074, - [SMALL_STATE(2520)] = 99124, - [SMALL_STATE(2521)] = 99228, - [SMALL_STATE(2522)] = 99276, - [SMALL_STATE(2523)] = 99326, - [SMALL_STATE(2524)] = 99380, - [SMALL_STATE(2525)] = 99436, - [SMALL_STATE(2526)] = 99490, - [SMALL_STATE(2527)] = 99594, - [SMALL_STATE(2528)] = 99698, - [SMALL_STATE(2529)] = 99752, - [SMALL_STATE(2530)] = 99806, - [SMALL_STATE(2531)] = 99860, - [SMALL_STATE(2532)] = 99928, - [SMALL_STATE(2533)] = 100032, - [SMALL_STATE(2534)] = 100102, - [SMALL_STATE(2535)] = 100152, - [SMALL_STATE(2536)] = 100202, - [SMALL_STATE(2537)] = 100252, - [SMALL_STATE(2538)] = 100306, - [SMALL_STATE(2539)] = 100372, - [SMALL_STATE(2540)] = 100426, - [SMALL_STATE(2541)] = 100490, - [SMALL_STATE(2542)] = 100550, - [SMALL_STATE(2543)] = 100614, - [SMALL_STATE(2544)] = 100674, - [SMALL_STATE(2545)] = 100742, - [SMALL_STATE(2546)] = 100796, - [SMALL_STATE(2547)] = 100900, - [SMALL_STATE(2548)] = 101004, - [SMALL_STATE(2549)] = 101070, - [SMALL_STATE(2550)] = 101142, - [SMALL_STATE(2551)] = 101246, - [SMALL_STATE(2552)] = 101310, - [SMALL_STATE(2553)] = 101414, - [SMALL_STATE(2554)] = 101478, - [SMALL_STATE(2555)] = 101582, - [SMALL_STATE(2556)] = 101630, - [SMALL_STATE(2557)] = 101680, - [SMALL_STATE(2558)] = 101784, - [SMALL_STATE(2559)] = 101834, - [SMALL_STATE(2560)] = 101894, - [SMALL_STATE(2561)] = 101948, - [SMALL_STATE(2562)] = 102002, - [SMALL_STATE(2563)] = 102059, - [SMALL_STATE(2564)] = 102118, - [SMALL_STATE(2565)] = 102175, - [SMALL_STATE(2566)] = 102224, - [SMALL_STATE(2567)] = 102281, - [SMALL_STATE(2568)] = 102382, - [SMALL_STATE(2569)] = 102441, - [SMALL_STATE(2570)] = 102500, - [SMALL_STATE(2571)] = 102559, - [SMALL_STATE(2572)] = 102618, - [SMALL_STATE(2573)] = 102675, - [SMALL_STATE(2574)] = 102736, - [SMALL_STATE(2575)] = 102837, - [SMALL_STATE(2576)] = 102894, - [SMALL_STATE(2577)] = 102951, - [SMALL_STATE(2578)] = 103008, - [SMALL_STATE(2579)] = 103057, - [SMALL_STATE(2580)] = 103114, - [SMALL_STATE(2581)] = 103171, - [SMALL_STATE(2582)] = 103228, - [SMALL_STATE(2583)] = 103285, - [SMALL_STATE(2584)] = 103348, - [SMALL_STATE(2585)] = 103405, - [SMALL_STATE(2586)] = 103470, - [SMALL_STATE(2587)] = 103527, - [SMALL_STATE(2588)] = 103580, - [SMALL_STATE(2589)] = 103639, - [SMALL_STATE(2590)] = 103698, - [SMALL_STATE(2591)] = 103755, - [SMALL_STATE(2592)] = 103814, - [SMALL_STATE(2593)] = 103873, - [SMALL_STATE(2594)] = 103930, - [SMALL_STATE(2595)] = 103987, - [SMALL_STATE(2596)] = 104050, - [SMALL_STATE(2597)] = 104109, - [SMALL_STATE(2598)] = 104168, - [SMALL_STATE(2599)] = 104217, - [SMALL_STATE(2600)] = 104276, - [SMALL_STATE(2601)] = 104324, - [SMALL_STATE(2602)] = 104370, - [SMALL_STATE(2603)] = 104416, - [SMALL_STATE(2604)] = 104464, - [SMALL_STATE(2605)] = 104510, - [SMALL_STATE(2606)] = 104556, - [SMALL_STATE(2607)] = 104612, - [SMALL_STATE(2608)] = 104658, - [SMALL_STATE(2609)] = 104704, - [SMALL_STATE(2610)] = 104752, - [SMALL_STATE(2611)] = 104798, - [SMALL_STATE(2612)] = 104844, - [SMALL_STATE(2613)] = 104890, - [SMALL_STATE(2614)] = 104936, - [SMALL_STATE(2615)] = 104982, - [SMALL_STATE(2616)] = 105028, - [SMALL_STATE(2617)] = 105074, - [SMALL_STATE(2618)] = 105124, - [SMALL_STATE(2619)] = 105170, - [SMALL_STATE(2620)] = 105216, - [SMALL_STATE(2621)] = 105262, - [SMALL_STATE(2622)] = 105308, - [SMALL_STATE(2623)] = 105356, - [SMALL_STATE(2624)] = 105404, - [SMALL_STATE(2625)] = 105450, - [SMALL_STATE(2626)] = 105508, - [SMALL_STATE(2627)] = 105556, - [SMALL_STATE(2628)] = 105604, - [SMALL_STATE(2629)] = 105650, - [SMALL_STATE(2630)] = 105696, - [SMALL_STATE(2631)] = 105742, - [SMALL_STATE(2632)] = 105788, - [SMALL_STATE(2633)] = 105836, - [SMALL_STATE(2634)] = 105884, - [SMALL_STATE(2635)] = 105930, - [SMALL_STATE(2636)] = 105976, - [SMALL_STATE(2637)] = 106024, - [SMALL_STATE(2638)] = 106070, - [SMALL_STATE(2639)] = 106116, - [SMALL_STATE(2640)] = 106162, - [SMALL_STATE(2641)] = 106208, - [SMALL_STATE(2642)] = 106254, - [SMALL_STATE(2643)] = 106304, - [SMALL_STATE(2644)] = 106350, - [SMALL_STATE(2645)] = 106396, - [SMALL_STATE(2646)] = 106442, - [SMALL_STATE(2647)] = 106488, - [SMALL_STATE(2648)] = 106534, - [SMALL_STATE(2649)] = 106580, - [SMALL_STATE(2650)] = 106626, - [SMALL_STATE(2651)] = 106672, - [SMALL_STATE(2652)] = 106718, - [SMALL_STATE(2653)] = 106764, - [SMALL_STATE(2654)] = 106810, - [SMALL_STATE(2655)] = 106856, - [SMALL_STATE(2656)] = 106904, - [SMALL_STATE(2657)] = 106950, - [SMALL_STATE(2658)] = 106996, - [SMALL_STATE(2659)] = 107044, - [SMALL_STATE(2660)] = 107092, - [SMALL_STATE(2661)] = 107138, - [SMALL_STATE(2662)] = 107188, - [SMALL_STATE(2663)] = 107234, - [SMALL_STATE(2664)] = 107280, - [SMALL_STATE(2665)] = 107333, - [SMALL_STATE(2666)] = 107378, - [SMALL_STATE(2667)] = 107445, - [SMALL_STATE(2668)] = 107496, - [SMALL_STATE(2669)] = 107541, - [SMALL_STATE(2670)] = 107592, - [SMALL_STATE(2671)] = 107641, - [SMALL_STATE(2672)] = 107694, - [SMALL_STATE(2673)] = 107739, - [SMALL_STATE(2674)] = 107784, - [SMALL_STATE(2675)] = 107829, - [SMALL_STATE(2676)] = 107874, - [SMALL_STATE(2677)] = 107919, - [SMALL_STATE(2678)] = 107977, - [SMALL_STATE(2679)] = 108033, - [SMALL_STATE(2680)] = 108091, - [SMALL_STATE(2681)] = 108139, - [SMALL_STATE(2682)] = 108187, - [SMALL_STATE(2683)] = 108245, - [SMALL_STATE(2684)] = 108305, - [SMALL_STATE(2685)] = 108365, - [SMALL_STATE(2686)] = 108437, - [SMALL_STATE(2687)] = 108509, - [SMALL_STATE(2688)] = 108569, - [SMALL_STATE(2689)] = 108627, - [SMALL_STATE(2690)] = 108671, - [SMALL_STATE(2691)] = 108734, - [SMALL_STATE(2692)] = 108787, - [SMALL_STATE(2693)] = 108840, - [SMALL_STATE(2694)] = 108893, - [SMALL_STATE(2695)] = 108946, - [SMALL_STATE(2696)] = 108999, - [SMALL_STATE(2697)] = 109052, - [SMALL_STATE(2698)] = 109105, - [SMALL_STATE(2699)] = 109168, - [SMALL_STATE(2700)] = 109221, - [SMALL_STATE(2701)] = 109274, - [SMALL_STATE(2702)] = 109327, - [SMALL_STATE(2703)] = 109380, - [SMALL_STATE(2704)] = 109433, - [SMALL_STATE(2705)] = 109486, - [SMALL_STATE(2706)] = 109539, - [SMALL_STATE(2707)] = 109592, - [SMALL_STATE(2708)] = 109645, - [SMALL_STATE(2709)] = 109698, - [SMALL_STATE(2710)] = 109751, - [SMALL_STATE(2711)] = 109804, - [SMALL_STATE(2712)] = 109857, - [SMALL_STATE(2713)] = 109910, - [SMALL_STATE(2714)] = 109963, - [SMALL_STATE(2715)] = 110016, - [SMALL_STATE(2716)] = 110069, - [SMALL_STATE(2717)] = 110122, - [SMALL_STATE(2718)] = 110171, - [SMALL_STATE(2719)] = 110224, - [SMALL_STATE(2720)] = 110277, - [SMALL_STATE(2721)] = 110331, - [SMALL_STATE(2722)] = 110385, - [SMALL_STATE(2723)] = 110439, - [SMALL_STATE(2724)] = 110499, - [SMALL_STATE(2725)] = 110579, - [SMALL_STATE(2726)] = 110659, - [SMALL_STATE(2727)] = 110723, - [SMALL_STATE(2728)] = 110803, - [SMALL_STATE(2729)] = 110867, - [SMALL_STATE(2730)] = 110947, - [SMALL_STATE(2731)] = 111001, - [SMALL_STATE(2732)] = 111055, - [SMALL_STATE(2733)] = 111119, - [SMALL_STATE(2734)] = 111199, - [SMALL_STATE(2735)] = 111253, - [SMALL_STATE(2736)] = 111333, - [SMALL_STATE(2737)] = 111387, - [SMALL_STATE(2738)] = 111441, - [SMALL_STATE(2739)] = 111495, - [SMALL_STATE(2740)] = 111549, - [SMALL_STATE(2741)] = 111629, - [SMALL_STATE(2742)] = 111689, - [SMALL_STATE(2743)] = 111746, - [SMALL_STATE(2744)] = 111803, - [SMALL_STATE(2745)] = 111860, - [SMALL_STATE(2746)] = 111913, - [SMALL_STATE(2747)] = 111970, - [SMALL_STATE(2748)] = 112011, - [SMALL_STATE(2749)] = 112068, - [SMALL_STATE(2750)] = 112109, - [SMALL_STATE(2751)] = 112166, - [SMALL_STATE(2752)] = 112207, - [SMALL_STATE(2753)] = 112248, - [SMALL_STATE(2754)] = 112289, - [SMALL_STATE(2755)] = 112346, - [SMALL_STATE(2756)] = 112403, - [SMALL_STATE(2757)] = 112460, - [SMALL_STATE(2758)] = 112517, - [SMALL_STATE(2759)] = 112570, - [SMALL_STATE(2760)] = 112613, - [SMALL_STATE(2761)] = 112670, - [SMALL_STATE(2762)] = 112721, - [SMALL_STATE(2763)] = 112778, - [SMALL_STATE(2764)] = 112835, - [SMALL_STATE(2765)] = 112892, - [SMALL_STATE(2766)] = 112949, - [SMALL_STATE(2767)] = 113006, - [SMALL_STATE(2768)] = 113054, - [SMALL_STATE(2769)] = 113102, - [SMALL_STATE(2770)] = 113150, - [SMALL_STATE(2771)] = 113198, - [SMALL_STATE(2772)] = 113246, - [SMALL_STATE(2773)] = 113294, - [SMALL_STATE(2774)] = 113342, - [SMALL_STATE(2775)] = 113390, - [SMALL_STATE(2776)] = 113438, - [SMALL_STATE(2777)] = 113486, - [SMALL_STATE(2778)] = 113534, - [SMALL_STATE(2779)] = 113582, - [SMALL_STATE(2780)] = 113630, - [SMALL_STATE(2781)] = 113678, - [SMALL_STATE(2782)] = 113728, - [SMALL_STATE(2783)] = 113778, - [SMALL_STATE(2784)] = 113826, - [SMALL_STATE(2785)] = 113874, - [SMALL_STATE(2786)] = 113922, - [SMALL_STATE(2787)] = 113970, - [SMALL_STATE(2788)] = 114018, - [SMALL_STATE(2789)] = 114068, - [SMALL_STATE(2790)] = 114116, - [SMALL_STATE(2791)] = 114164, - [SMALL_STATE(2792)] = 114214, - [SMALL_STATE(2793)] = 114262, - [SMALL_STATE(2794)] = 114312, - [SMALL_STATE(2795)] = 114360, - [SMALL_STATE(2796)] = 114410, - [SMALL_STATE(2797)] = 114458, - [SMALL_STATE(2798)] = 114506, - [SMALL_STATE(2799)] = 114556, - [SMALL_STATE(2800)] = 114606, - [SMALL_STATE(2801)] = 114656, - [SMALL_STATE(2802)] = 114704, - [SMALL_STATE(2803)] = 114752, - [SMALL_STATE(2804)] = 114800, - [SMALL_STATE(2805)] = 114848, - [SMALL_STATE(2806)] = 114898, - [SMALL_STATE(2807)] = 114946, - [SMALL_STATE(2808)] = 114994, - [SMALL_STATE(2809)] = 115042, - [SMALL_STATE(2810)] = 115090, - [SMALL_STATE(2811)] = 115138, - [SMALL_STATE(2812)] = 115186, - [SMALL_STATE(2813)] = 115234, - [SMALL_STATE(2814)] = 115282, - [SMALL_STATE(2815)] = 115332, - [SMALL_STATE(2816)] = 115380, - [SMALL_STATE(2817)] = 115428, - [SMALL_STATE(2818)] = 115478, - [SMALL_STATE(2819)] = 115526, - [SMALL_STATE(2820)] = 115576, - [SMALL_STATE(2821)] = 115624, - [SMALL_STATE(2822)] = 115672, - [SMALL_STATE(2823)] = 115720, - [SMALL_STATE(2824)] = 115770, - [SMALL_STATE(2825)] = 115818, - [SMALL_STATE(2826)] = 115866, - [SMALL_STATE(2827)] = 115914, - [SMALL_STATE(2828)] = 115962, - [SMALL_STATE(2829)] = 115997, - [SMALL_STATE(2830)] = 116038, - [SMALL_STATE(2831)] = 116079, - [SMALL_STATE(2832)] = 116120, - [SMALL_STATE(2833)] = 116148, - [SMALL_STATE(2834)] = 116176, - [SMALL_STATE(2835)] = 116204, - [SMALL_STATE(2836)] = 116232, - [SMALL_STATE(2837)] = 116260, - [SMALL_STATE(2838)] = 116288, - [SMALL_STATE(2839)] = 116316, - [SMALL_STATE(2840)] = 116344, - [SMALL_STATE(2841)] = 116372, - [SMALL_STATE(2842)] = 116400, - [SMALL_STATE(2843)] = 116428, - [SMALL_STATE(2844)] = 116456, - [SMALL_STATE(2845)] = 116484, - [SMALL_STATE(2846)] = 116512, - [SMALL_STATE(2847)] = 116540, - [SMALL_STATE(2848)] = 116568, - [SMALL_STATE(2849)] = 116596, - [SMALL_STATE(2850)] = 116624, - [SMALL_STATE(2851)] = 116652, - [SMALL_STATE(2852)] = 116680, - [SMALL_STATE(2853)] = 116708, - [SMALL_STATE(2854)] = 116736, - [SMALL_STATE(2855)] = 116764, - [SMALL_STATE(2856)] = 116792, - [SMALL_STATE(2857)] = 116820, - [SMALL_STATE(2858)] = 116848, - [SMALL_STATE(2859)] = 116876, - [SMALL_STATE(2860)] = 116904, - [SMALL_STATE(2861)] = 116932, - [SMALL_STATE(2862)] = 116960, - [SMALL_STATE(2863)] = 116988, - [SMALL_STATE(2864)] = 117016, - [SMALL_STATE(2865)] = 117044, - [SMALL_STATE(2866)] = 117072, - [SMALL_STATE(2867)] = 117099, - [SMALL_STATE(2868)] = 117156, - [SMALL_STATE(2869)] = 117213, - [SMALL_STATE(2870)] = 117246, - [SMALL_STATE(2871)] = 117273, - [SMALL_STATE(2872)] = 117299, - [SMALL_STATE(2873)] = 117325, - [SMALL_STATE(2874)] = 117375, - [SMALL_STATE(2875)] = 117401, - [SMALL_STATE(2876)] = 117427, - [SMALL_STATE(2877)] = 117453, - [SMALL_STATE(2878)] = 117487, - [SMALL_STATE(2879)] = 117513, - [SMALL_STATE(2880)] = 117543, - [SMALL_STATE(2881)] = 117569, - [SMALL_STATE(2882)] = 117597, - [SMALL_STATE(2883)] = 117623, - [SMALL_STATE(2884)] = 117661, - [SMALL_STATE(2885)] = 117699, - [SMALL_STATE(2886)] = 117729, - [SMALL_STATE(2887)] = 117755, - [SMALL_STATE(2888)] = 117793, - [SMALL_STATE(2889)] = 117821, - [SMALL_STATE(2890)] = 117851, - [SMALL_STATE(2891)] = 117876, - [SMALL_STATE(2892)] = 117901, - [SMALL_STATE(2893)] = 117926, - [SMALL_STATE(2894)] = 117951, - [SMALL_STATE(2895)] = 117976, - [SMALL_STATE(2896)] = 118003, - [SMALL_STATE(2897)] = 118034, - [SMALL_STATE(2898)] = 118059, - [SMALL_STATE(2899)] = 118084, - [SMALL_STATE(2900)] = 118108, - [SMALL_STATE(2901)] = 118132, - [SMALL_STATE(2902)] = 118156, - [SMALL_STATE(2903)] = 118178, - [SMALL_STATE(2904)] = 118202, - [SMALL_STATE(2905)] = 118226, - [SMALL_STATE(2906)] = 118250, - [SMALL_STATE(2907)] = 118274, - [SMALL_STATE(2908)] = 118298, - [SMALL_STATE(2909)] = 118322, - [SMALL_STATE(2910)] = 118346, - [SMALL_STATE(2911)] = 118368, - [SMALL_STATE(2912)] = 118400, - [SMALL_STATE(2913)] = 118434, - [SMALL_STATE(2914)] = 118468, - [SMALL_STATE(2915)] = 118502, - [SMALL_STATE(2916)] = 118526, - [SMALL_STATE(2917)] = 118550, - [SMALL_STATE(2918)] = 118578, - [SMALL_STATE(2919)] = 118602, - [SMALL_STATE(2920)] = 118628, - [SMALL_STATE(2921)] = 118652, - [SMALL_STATE(2922)] = 118676, - [SMALL_STATE(2923)] = 118700, - [SMALL_STATE(2924)] = 118722, - [SMALL_STATE(2925)] = 118746, - [SMALL_STATE(2926)] = 118770, - [SMALL_STATE(2927)] = 118794, - [SMALL_STATE(2928)] = 118818, - [SMALL_STATE(2929)] = 118842, - [SMALL_STATE(2930)] = 118866, - [SMALL_STATE(2931)] = 118890, - [SMALL_STATE(2932)] = 118914, - [SMALL_STATE(2933)] = 118940, - [SMALL_STATE(2934)] = 118964, - [SMALL_STATE(2935)] = 118988, - [SMALL_STATE(2936)] = 119012, - [SMALL_STATE(2937)] = 119036, - [SMALL_STATE(2938)] = 119068, - [SMALL_STATE(2939)] = 119102, - [SMALL_STATE(2940)] = 119136, - [SMALL_STATE(2941)] = 119170, - [SMALL_STATE(2942)] = 119194, - [SMALL_STATE(2943)] = 119218, - [SMALL_STATE(2944)] = 119240, - [SMALL_STATE(2945)] = 119264, - [SMALL_STATE(2946)] = 119288, - [SMALL_STATE(2947)] = 119322, - [SMALL_STATE(2948)] = 119356, - [SMALL_STATE(2949)] = 119390, - [SMALL_STATE(2950)] = 119422, - [SMALL_STATE(2951)] = 119456, - [SMALL_STATE(2952)] = 119480, - [SMALL_STATE(2953)] = 119514, - [SMALL_STATE(2954)] = 119538, - [SMALL_STATE(2955)] = 119560, - [SMALL_STATE(2956)] = 119584, - [SMALL_STATE(2957)] = 119616, - [SMALL_STATE(2958)] = 119650, - [SMALL_STATE(2959)] = 119684, - [SMALL_STATE(2960)] = 119718, - [SMALL_STATE(2961)] = 119742, - [SMALL_STATE(2962)] = 119766, - [SMALL_STATE(2963)] = 119790, - [SMALL_STATE(2964)] = 119814, - [SMALL_STATE(2965)] = 119836, - [SMALL_STATE(2966)] = 119860, - [SMALL_STATE(2967)] = 119884, - [SMALL_STATE(2968)] = 119908, - [SMALL_STATE(2969)] = 119932, - [SMALL_STATE(2970)] = 119954, - [SMALL_STATE(2971)] = 119978, - [SMALL_STATE(2972)] = 120002, - [SMALL_STATE(2973)] = 120026, - [SMALL_STATE(2974)] = 120058, - [SMALL_STATE(2975)] = 120082, - [SMALL_STATE(2976)] = 120106, - [SMALL_STATE(2977)] = 120140, - [SMALL_STATE(2978)] = 120164, - [SMALL_STATE(2979)] = 120196, - [SMALL_STATE(2980)] = 120220, - [SMALL_STATE(2981)] = 120254, - [SMALL_STATE(2982)] = 120278, - [SMALL_STATE(2983)] = 120302, - [SMALL_STATE(2984)] = 120336, - [SMALL_STATE(2985)] = 120360, - [SMALL_STATE(2986)] = 120384, - [SMALL_STATE(2987)] = 120408, - [SMALL_STATE(2988)] = 120432, - [SMALL_STATE(2989)] = 120456, - [SMALL_STATE(2990)] = 120480, - [SMALL_STATE(2991)] = 120502, - [SMALL_STATE(2992)] = 120526, - [SMALL_STATE(2993)] = 120550, - [SMALL_STATE(2994)] = 120574, - [SMALL_STATE(2995)] = 120598, - [SMALL_STATE(2996)] = 120622, - [SMALL_STATE(2997)] = 120644, - [SMALL_STATE(2998)] = 120668, - [SMALL_STATE(2999)] = 120692, - [SMALL_STATE(3000)] = 120726, - [SMALL_STATE(3001)] = 120769, - [SMALL_STATE(3002)] = 120798, - [SMALL_STATE(3003)] = 120823, - [SMALL_STATE(3004)] = 120866, - [SMALL_STATE(3005)] = 120909, - [SMALL_STATE(3006)] = 120952, - [SMALL_STATE(3007)] = 120995, - [SMALL_STATE(3008)] = 121034, - [SMALL_STATE(3009)] = 121077, - [SMALL_STATE(3010)] = 121120, - [SMALL_STATE(3011)] = 121163, - [SMALL_STATE(3012)] = 121206, - [SMALL_STATE(3013)] = 121249, - [SMALL_STATE(3014)] = 121294, - [SMALL_STATE(3015)] = 121337, - [SMALL_STATE(3016)] = 121380, - [SMALL_STATE(3017)] = 121419, - [SMALL_STATE(3018)] = 121462, - [SMALL_STATE(3019)] = 121487, - [SMALL_STATE(3020)] = 121516, - [SMALL_STATE(3021)] = 121559, - [SMALL_STATE(3022)] = 121602, - [SMALL_STATE(3023)] = 121645, - [SMALL_STATE(3024)] = 121688, - [SMALL_STATE(3025)] = 121727, - [SMALL_STATE(3026)] = 121762, - [SMALL_STATE(3027)] = 121805, - [SMALL_STATE(3028)] = 121848, - [SMALL_STATE(3029)] = 121877, - [SMALL_STATE(3030)] = 121906, - [SMALL_STATE(3031)] = 121935, - [SMALL_STATE(3032)] = 121978, - [SMALL_STATE(3033)] = 122021, - [SMALL_STATE(3034)] = 122060, - [SMALL_STATE(3035)] = 122103, - [SMALL_STATE(3036)] = 122132, - [SMALL_STATE(3037)] = 122157, - [SMALL_STATE(3038)] = 122186, - [SMALL_STATE(3039)] = 122215, - [SMALL_STATE(3040)] = 122254, - [SMALL_STATE(3041)] = 122297, - [SMALL_STATE(3042)] = 122326, - [SMALL_STATE(3043)] = 122346, - [SMALL_STATE(3044)] = 122368, - [SMALL_STATE(3045)] = 122404, - [SMALL_STATE(3046)] = 122424, - [SMALL_STATE(3047)] = 122446, - [SMALL_STATE(3048)] = 122468, - [SMALL_STATE(3049)] = 122504, - [SMALL_STATE(3050)] = 122524, - [SMALL_STATE(3051)] = 122544, - [SMALL_STATE(3052)] = 122564, - [SMALL_STATE(3053)] = 122606, - [SMALL_STATE(3054)] = 122628, - [SMALL_STATE(3055)] = 122664, - [SMALL_STATE(3056)] = 122700, - [SMALL_STATE(3057)] = 122720, - [SMALL_STATE(3058)] = 122740, - [SMALL_STATE(3059)] = 122768, - [SMALL_STATE(3060)] = 122788, - [SMALL_STATE(3061)] = 122812, - [SMALL_STATE(3062)] = 122836, - [SMALL_STATE(3063)] = 122858, - [SMALL_STATE(3064)] = 122886, - [SMALL_STATE(3065)] = 122910, - [SMALL_STATE(3066)] = 122932, - [SMALL_STATE(3067)] = 122960, - [SMALL_STATE(3068)] = 122988, - [SMALL_STATE(3069)] = 123016, - [SMALL_STATE(3070)] = 123052, - [SMALL_STATE(3071)] = 123078, - [SMALL_STATE(3072)] = 123100, - [SMALL_STATE(3073)] = 123120, - [SMALL_STATE(3074)] = 123144, - [SMALL_STATE(3075)] = 123186, - [SMALL_STATE(3076)] = 123222, - [SMALL_STATE(3077)] = 123242, - [SMALL_STATE(3078)] = 123262, - [SMALL_STATE(3079)] = 123288, - [SMALL_STATE(3080)] = 123310, - [SMALL_STATE(3081)] = 123346, - [SMALL_STATE(3082)] = 123382, - [SMALL_STATE(3083)] = 123410, - [SMALL_STATE(3084)] = 123432, - [SMALL_STATE(3085)] = 123460, - [SMALL_STATE(3086)] = 123480, - [SMALL_STATE(3087)] = 123500, - [SMALL_STATE(3088)] = 123520, - [SMALL_STATE(3089)] = 123540, - [SMALL_STATE(3090)] = 123560, - [SMALL_STATE(3091)] = 123580, - [SMALL_STATE(3092)] = 123600, - [SMALL_STATE(3093)] = 123620, - [SMALL_STATE(3094)] = 123640, - [SMALL_STATE(3095)] = 123660, - [SMALL_STATE(3096)] = 123680, - [SMALL_STATE(3097)] = 123700, - [SMALL_STATE(3098)] = 123720, - [SMALL_STATE(3099)] = 123740, - [SMALL_STATE(3100)] = 123766, - [SMALL_STATE(3101)] = 123788, - [SMALL_STATE(3102)] = 123808, - [SMALL_STATE(3103)] = 123830, - [SMALL_STATE(3104)] = 123850, - [SMALL_STATE(3105)] = 123870, - [SMALL_STATE(3106)] = 123890, - [SMALL_STATE(3107)] = 123910, - [SMALL_STATE(3108)] = 123930, - [SMALL_STATE(3109)] = 123950, - [SMALL_STATE(3110)] = 123970, - [SMALL_STATE(3111)] = 124006, - [SMALL_STATE(3112)] = 124042, - [SMALL_STATE(3113)] = 124070, - [SMALL_STATE(3114)] = 124090, - [SMALL_STATE(3115)] = 124112, - [SMALL_STATE(3116)] = 124136, - [SMALL_STATE(3117)] = 124157, - [SMALL_STATE(3118)] = 124196, - [SMALL_STATE(3119)] = 124229, - [SMALL_STATE(3120)] = 124250, - [SMALL_STATE(3121)] = 124281, - [SMALL_STATE(3122)] = 124314, - [SMALL_STATE(3123)] = 124337, - [SMALL_STATE(3124)] = 124370, - [SMALL_STATE(3125)] = 124403, - [SMALL_STATE(3126)] = 124442, - [SMALL_STATE(3127)] = 124479, - [SMALL_STATE(3128)] = 124504, - [SMALL_STATE(3129)] = 124529, - [SMALL_STATE(3130)] = 124558, - [SMALL_STATE(3131)] = 124595, - [SMALL_STATE(3132)] = 124632, - [SMALL_STATE(3133)] = 124669, - [SMALL_STATE(3134)] = 124706, - [SMALL_STATE(3135)] = 124743, - [SMALL_STATE(3136)] = 124780, - [SMALL_STATE(3137)] = 124817, - [SMALL_STATE(3138)] = 124854, - [SMALL_STATE(3139)] = 124891, - [SMALL_STATE(3140)] = 124930, - [SMALL_STATE(3141)] = 124967, - [SMALL_STATE(3142)] = 124996, - [SMALL_STATE(3143)] = 125033, - [SMALL_STATE(3144)] = 125070, - [SMALL_STATE(3145)] = 125103, - [SMALL_STATE(3146)] = 125140, - [SMALL_STATE(3147)] = 125169, - [SMALL_STATE(3148)] = 125206, - [SMALL_STATE(3149)] = 125239, - [SMALL_STATE(3150)] = 125260, - [SMALL_STATE(3151)] = 125297, - [SMALL_STATE(3152)] = 125334, - [SMALL_STATE(3153)] = 125367, - [SMALL_STATE(3154)] = 125390, - [SMALL_STATE(3155)] = 125423, - [SMALL_STATE(3156)] = 125454, - [SMALL_STATE(3157)] = 125487, - [SMALL_STATE(3158)] = 125526, - [SMALL_STATE(3159)] = 125547, - [SMALL_STATE(3160)] = 125570, - [SMALL_STATE(3161)] = 125607, - [SMALL_STATE(3162)] = 125630, - [SMALL_STATE(3163)] = 125663, - [SMALL_STATE(3164)] = 125686, - [SMALL_STATE(3165)] = 125717, - [SMALL_STATE(3166)] = 125748, - [SMALL_STATE(3167)] = 125779, - [SMALL_STATE(3168)] = 125816, - [SMALL_STATE(3169)] = 125853, - [SMALL_STATE(3170)] = 125882, - [SMALL_STATE(3171)] = 125921, - [SMALL_STATE(3172)] = 125958, - [SMALL_STATE(3173)] = 125979, - [SMALL_STATE(3174)] = 126008, - [SMALL_STATE(3175)] = 126029, - [SMALL_STATE(3176)] = 126066, - [SMALL_STATE(3177)] = 126087, - [SMALL_STATE(3178)] = 126124, - [SMALL_STATE(3179)] = 126148, - [SMALL_STATE(3180)] = 126172, - [SMALL_STATE(3181)] = 126192, - [SMALL_STATE(3182)] = 126212, - [SMALL_STATE(3183)] = 126242, - [SMALL_STATE(3184)] = 126262, - [SMALL_STATE(3185)] = 126282, - [SMALL_STATE(3186)] = 126312, - [SMALL_STATE(3187)] = 126330, - [SMALL_STATE(3188)] = 126348, - [SMALL_STATE(3189)] = 126368, - [SMALL_STATE(3190)] = 126388, - [SMALL_STATE(3191)] = 126406, - [SMALL_STATE(3192)] = 126428, - [SMALL_STATE(3193)] = 126450, - [SMALL_STATE(3194)] = 126474, - [SMALL_STATE(3195)] = 126498, - [SMALL_STATE(3196)] = 126518, - [SMALL_STATE(3197)] = 126544, - [SMALL_STATE(3198)] = 126564, - [SMALL_STATE(3199)] = 126584, - [SMALL_STATE(3200)] = 126614, - [SMALL_STATE(3201)] = 126634, - [SMALL_STATE(3202)] = 126654, - [SMALL_STATE(3203)] = 126674, - [SMALL_STATE(3204)] = 126694, - [SMALL_STATE(3205)] = 126718, - [SMALL_STATE(3206)] = 126736, - [SMALL_STATE(3207)] = 126756, - [SMALL_STATE(3208)] = 126776, - [SMALL_STATE(3209)] = 126798, - [SMALL_STATE(3210)] = 126818, - [SMALL_STATE(3211)] = 126838, - [SMALL_STATE(3212)] = 126858, - [SMALL_STATE(3213)] = 126880, - [SMALL_STATE(3214)] = 126900, - [SMALL_STATE(3215)] = 126920, - [SMALL_STATE(3216)] = 126940, - [SMALL_STATE(3217)] = 126970, - [SMALL_STATE(3218)] = 126996, - [SMALL_STATE(3219)] = 127016, - [SMALL_STATE(3220)] = 127036, - [SMALL_STATE(3221)] = 127054, - [SMALL_STATE(3222)] = 127072, - [SMALL_STATE(3223)] = 127090, - [SMALL_STATE(3224)] = 127108, - [SMALL_STATE(3225)] = 127126, - [SMALL_STATE(3226)] = 127144, - [SMALL_STATE(3227)] = 127164, - [SMALL_STATE(3228)] = 127184, - [SMALL_STATE(3229)] = 127208, - [SMALL_STATE(3230)] = 127226, - [SMALL_STATE(3231)] = 127244, - [SMALL_STATE(3232)] = 127264, - [SMALL_STATE(3233)] = 127284, - [SMALL_STATE(3234)] = 127304, - [SMALL_STATE(3235)] = 127322, - [SMALL_STATE(3236)] = 127342, - [SMALL_STATE(3237)] = 127366, - [SMALL_STATE(3238)] = 127384, - [SMALL_STATE(3239)] = 127414, - [SMALL_STATE(3240)] = 127434, - [SMALL_STATE(3241)] = 127454, - [SMALL_STATE(3242)] = 127474, - [SMALL_STATE(3243)] = 127496, - [SMALL_STATE(3244)] = 127516, - [SMALL_STATE(3245)] = 127536, - [SMALL_STATE(3246)] = 127556, - [SMALL_STATE(3247)] = 127580, - [SMALL_STATE(3248)] = 127610, - [SMALL_STATE(3249)] = 127634, - [SMALL_STATE(3250)] = 127656, - [SMALL_STATE(3251)] = 127676, - [SMALL_STATE(3252)] = 127706, - [SMALL_STATE(3253)] = 127736, - [SMALL_STATE(3254)] = 127756, - [SMALL_STATE(3255)] = 127792, - [SMALL_STATE(3256)] = 127814, - [SMALL_STATE(3257)] = 127834, - [SMALL_STATE(3258)] = 127856, - [SMALL_STATE(3259)] = 127891, - [SMALL_STATE(3260)] = 127926, - [SMALL_STATE(3261)] = 127957, - [SMALL_STATE(3262)] = 127974, - [SMALL_STATE(3263)] = 128009, - [SMALL_STATE(3264)] = 128032, - [SMALL_STATE(3265)] = 128065, - [SMALL_STATE(3266)] = 128098, - [SMALL_STATE(3267)] = 128119, - [SMALL_STATE(3268)] = 128140, - [SMALL_STATE(3269)] = 128169, - [SMALL_STATE(3270)] = 128202, - [SMALL_STATE(3271)] = 128237, - [SMALL_STATE(3272)] = 128258, - [SMALL_STATE(3273)] = 128291, - [SMALL_STATE(3274)] = 128318, - [SMALL_STATE(3275)] = 128353, - [SMALL_STATE(3276)] = 128372, - [SMALL_STATE(3277)] = 128397, - [SMALL_STATE(3278)] = 128432, - [SMALL_STATE(3279)] = 128463, - [SMALL_STATE(3280)] = 128486, - [SMALL_STATE(3281)] = 128505, - [SMALL_STATE(3282)] = 128540, - [SMALL_STATE(3283)] = 128573, - [SMALL_STATE(3284)] = 128608, - [SMALL_STATE(3285)] = 128625, - [SMALL_STATE(3286)] = 128642, - [SMALL_STATE(3287)] = 128659, - [SMALL_STATE(3288)] = 128678, - [SMALL_STATE(3289)] = 128713, - [SMALL_STATE(3290)] = 128748, - [SMALL_STATE(3291)] = 128779, - [SMALL_STATE(3292)] = 128814, - [SMALL_STATE(3293)] = 128833, - [SMALL_STATE(3294)] = 128866, - [SMALL_STATE(3295)] = 128882, - [SMALL_STATE(3296)] = 128910, - [SMALL_STATE(3297)] = 128926, - [SMALL_STATE(3298)] = 128954, - [SMALL_STATE(3299)] = 128982, - [SMALL_STATE(3300)] = 129012, - [SMALL_STATE(3301)] = 129038, - [SMALL_STATE(3302)] = 129066, - [SMALL_STATE(3303)] = 129094, - [SMALL_STATE(3304)] = 129122, - [SMALL_STATE(3305)] = 129152, - [SMALL_STATE(3306)] = 129180, - [SMALL_STATE(3307)] = 129196, - [SMALL_STATE(3308)] = 129226, - [SMALL_STATE(3309)] = 129256, - [SMALL_STATE(3310)] = 129286, - [SMALL_STATE(3311)] = 129316, - [SMALL_STATE(3312)] = 129346, - [SMALL_STATE(3313)] = 129374, - [SMALL_STATE(3314)] = 129404, - [SMALL_STATE(3315)] = 129434, - [SMALL_STATE(3316)] = 129460, - [SMALL_STATE(3317)] = 129490, - [SMALL_STATE(3318)] = 129522, - [SMALL_STATE(3319)] = 129552, - [SMALL_STATE(3320)] = 129580, - [SMALL_STATE(3321)] = 129608, - [SMALL_STATE(3322)] = 129624, - [SMALL_STATE(3323)] = 129656, - [SMALL_STATE(3324)] = 129672, - [SMALL_STATE(3325)] = 129704, - [SMALL_STATE(3326)] = 129722, - [SMALL_STATE(3327)] = 129738, - [SMALL_STATE(3328)] = 129768, - [SMALL_STATE(3329)] = 129800, - [SMALL_STATE(3330)] = 129816, - [SMALL_STATE(3331)] = 129832, - [SMALL_STATE(3332)] = 129862, - [SMALL_STATE(3333)] = 129894, - [SMALL_STATE(3334)] = 129922, - [SMALL_STATE(3335)] = 129942, - [SMALL_STATE(3336)] = 129970, - [SMALL_STATE(3337)] = 129998, - [SMALL_STATE(3338)] = 130028, - [SMALL_STATE(3339)] = 130044, - [SMALL_STATE(3340)] = 130074, - [SMALL_STATE(3341)] = 130104, - [SMALL_STATE(3342)] = 130134, - [SMALL_STATE(3343)] = 130162, - [SMALL_STATE(3344)] = 130178, - [SMALL_STATE(3345)] = 130210, - [SMALL_STATE(3346)] = 130240, - [SMALL_STATE(3347)] = 130256, - [SMALL_STATE(3348)] = 130272, - [SMALL_STATE(3349)] = 130302, - [SMALL_STATE(3350)] = 130332, - [SMALL_STATE(3351)] = 130362, - [SMALL_STATE(3352)] = 130378, - [SMALL_STATE(3353)] = 130394, - [SMALL_STATE(3354)] = 130410, - [SMALL_STATE(3355)] = 130426, - [SMALL_STATE(3356)] = 130444, - [SMALL_STATE(3357)] = 130460, - [SMALL_STATE(3358)] = 130476, - [SMALL_STATE(3359)] = 130492, - [SMALL_STATE(3360)] = 130514, - [SMALL_STATE(3361)] = 130534, - [SMALL_STATE(3362)] = 130560, - [SMALL_STATE(3363)] = 130578, - [SMALL_STATE(3364)] = 130608, - [SMALL_STATE(3365)] = 130638, - [SMALL_STATE(3366)] = 130668, - [SMALL_STATE(3367)] = 130696, - [SMALL_STATE(3368)] = 130724, - [SMALL_STATE(3369)] = 130750, - [SMALL_STATE(3370)] = 130780, - [SMALL_STATE(3371)] = 130810, - [SMALL_STATE(3372)] = 130828, - [SMALL_STATE(3373)] = 130856, - [SMALL_STATE(3374)] = 130886, - [SMALL_STATE(3375)] = 130912, - [SMALL_STATE(3376)] = 130940, - [SMALL_STATE(3377)] = 130962, - [SMALL_STATE(3378)] = 130988, - [SMALL_STATE(3379)] = 131016, - [SMALL_STATE(3380)] = 131044, - [SMALL_STATE(3381)] = 131070, - [SMALL_STATE(3382)] = 131086, - [SMALL_STATE(3383)] = 131108, - [SMALL_STATE(3384)] = 131136, - [SMALL_STATE(3385)] = 131166, - [SMALL_STATE(3386)] = 131192, - [SMALL_STATE(3387)] = 131220, - [SMALL_STATE(3388)] = 131246, - [SMALL_STATE(3389)] = 131272, - [SMALL_STATE(3390)] = 131294, - [SMALL_STATE(3391)] = 131326, - [SMALL_STATE(3392)] = 131358, - [SMALL_STATE(3393)] = 131374, - [SMALL_STATE(3394)] = 131390, - [SMALL_STATE(3395)] = 131416, - [SMALL_STATE(3396)] = 131446, - [SMALL_STATE(3397)] = 131466, - [SMALL_STATE(3398)] = 131496, - [SMALL_STATE(3399)] = 131512, - [SMALL_STATE(3400)] = 131540, - [SMALL_STATE(3401)] = 131572, - [SMALL_STATE(3402)] = 131600, - [SMALL_STATE(3403)] = 131628, - [SMALL_STATE(3404)] = 131644, - [SMALL_STATE(3405)] = 131662, - [SMALL_STATE(3406)] = 131678, - [SMALL_STATE(3407)] = 131706, - [SMALL_STATE(3408)] = 131722, - [SMALL_STATE(3409)] = 131750, - [SMALL_STATE(3410)] = 131782, - [SMALL_STATE(3411)] = 131812, - [SMALL_STATE(3412)] = 131828, - [SMALL_STATE(3413)] = 131858, - [SMALL_STATE(3414)] = 131890, - [SMALL_STATE(3415)] = 131906, - [SMALL_STATE(3416)] = 131928, - [SMALL_STATE(3417)] = 131944, - [SMALL_STATE(3418)] = 131972, - [SMALL_STATE(3419)] = 131988, - [SMALL_STATE(3420)] = 132016, - [SMALL_STATE(3421)] = 132032, - [SMALL_STATE(3422)] = 132060, - [SMALL_STATE(3423)] = 132084, - [SMALL_STATE(3424)] = 132112, - [SMALL_STATE(3425)] = 132128, - [SMALL_STATE(3426)] = 132150, - [SMALL_STATE(3427)] = 132166, - [SMALL_STATE(3428)] = 132182, - [SMALL_STATE(3429)] = 132212, - [SMALL_STATE(3430)] = 132228, - [SMALL_STATE(3431)] = 132256, - [SMALL_STATE(3432)] = 132284, - [SMALL_STATE(3433)] = 132312, - [SMALL_STATE(3434)] = 132338, - [SMALL_STATE(3435)] = 132368, - [SMALL_STATE(3436)] = 132396, - [SMALL_STATE(3437)] = 132424, - [SMALL_STATE(3438)] = 132450, - [SMALL_STATE(3439)] = 132480, - [SMALL_STATE(3440)] = 132508, - [SMALL_STATE(3441)] = 132530, - [SMALL_STATE(3442)] = 132546, - [SMALL_STATE(3443)] = 132562, - [SMALL_STATE(3444)] = 132578, - [SMALL_STATE(3445)] = 132606, - [SMALL_STATE(3446)] = 132634, - [SMALL_STATE(3447)] = 132656, - [SMALL_STATE(3448)] = 132688, - [SMALL_STATE(3449)] = 132704, - [SMALL_STATE(3450)] = 132720, - [SMALL_STATE(3451)] = 132736, - [SMALL_STATE(3452)] = 132764, - [SMALL_STATE(3453)] = 132792, - [SMALL_STATE(3454)] = 132824, - [SMALL_STATE(3455)] = 132852, - [SMALL_STATE(3456)] = 132880, - [SMALL_STATE(3457)] = 132896, - [SMALL_STATE(3458)] = 132928, - [SMALL_STATE(3459)] = 132958, - [SMALL_STATE(3460)] = 132988, - [SMALL_STATE(3461)] = 133016, - [SMALL_STATE(3462)] = 133048, - [SMALL_STATE(3463)] = 133080, - [SMALL_STATE(3464)] = 133096, - [SMALL_STATE(3465)] = 133128, - [SMALL_STATE(3466)] = 133160, - [SMALL_STATE(3467)] = 133186, - [SMALL_STATE(3468)] = 133214, - [SMALL_STATE(3469)] = 133242, - [SMALL_STATE(3470)] = 133270, - [SMALL_STATE(3471)] = 133286, - [SMALL_STATE(3472)] = 133302, - [SMALL_STATE(3473)] = 133318, - [SMALL_STATE(3474)] = 133346, - [SMALL_STATE(3475)] = 133378, - [SMALL_STATE(3476)] = 133401, - [SMALL_STATE(3477)] = 133420, - [SMALL_STATE(3478)] = 133449, - [SMALL_STATE(3479)] = 133474, - [SMALL_STATE(3480)] = 133499, - [SMALL_STATE(3481)] = 133524, - [SMALL_STATE(3482)] = 133539, - [SMALL_STATE(3483)] = 133560, - [SMALL_STATE(3484)] = 133575, - [SMALL_STATE(3485)] = 133604, - [SMALL_STATE(3486)] = 133629, - [SMALL_STATE(3487)] = 133652, - [SMALL_STATE(3488)] = 133681, - [SMALL_STATE(3489)] = 133704, - [SMALL_STATE(3490)] = 133727, - [SMALL_STATE(3491)] = 133742, - [SMALL_STATE(3492)] = 133771, - [SMALL_STATE(3493)] = 133786, - [SMALL_STATE(3494)] = 133801, - [SMALL_STATE(3495)] = 133826, - [SMALL_STATE(3496)] = 133851, - [SMALL_STATE(3497)] = 133874, - [SMALL_STATE(3498)] = 133897, - [SMALL_STATE(3499)] = 133926, - [SMALL_STATE(3500)] = 133951, - [SMALL_STATE(3501)] = 133980, - [SMALL_STATE(3502)] = 134009, - [SMALL_STATE(3503)] = 134030, - [SMALL_STATE(3504)] = 134047, - [SMALL_STATE(3505)] = 134068, - [SMALL_STATE(3506)] = 134085, - [SMALL_STATE(3507)] = 134110, - [SMALL_STATE(3508)] = 134135, - [SMALL_STATE(3509)] = 134160, - [SMALL_STATE(3510)] = 134185, - [SMALL_STATE(3511)] = 134210, - [SMALL_STATE(3512)] = 134239, - [SMALL_STATE(3513)] = 134256, - [SMALL_STATE(3514)] = 134273, - [SMALL_STATE(3515)] = 134290, - [SMALL_STATE(3516)] = 134313, - [SMALL_STATE(3517)] = 134334, - [SMALL_STATE(3518)] = 134355, - [SMALL_STATE(3519)] = 134376, - [SMALL_STATE(3520)] = 134399, - [SMALL_STATE(3521)] = 134422, - [SMALL_STATE(3522)] = 134444, - [SMALL_STATE(3523)] = 134458, - [SMALL_STATE(3524)] = 134482, - [SMALL_STATE(3525)] = 134500, - [SMALL_STATE(3526)] = 134522, - [SMALL_STATE(3527)] = 134544, - [SMALL_STATE(3528)] = 134570, - [SMALL_STATE(3529)] = 134596, - [SMALL_STATE(3530)] = 134614, - [SMALL_STATE(3531)] = 134636, - [SMALL_STATE(3532)] = 134658, - [SMALL_STATE(3533)] = 134680, - [SMALL_STATE(3534)] = 134694, - [SMALL_STATE(3535)] = 134716, - [SMALL_STATE(3536)] = 134738, - [SMALL_STATE(3537)] = 134764, - [SMALL_STATE(3538)] = 134786, - [SMALL_STATE(3539)] = 134808, - [SMALL_STATE(3540)] = 134830, - [SMALL_STATE(3541)] = 134852, - [SMALL_STATE(3542)] = 134878, - [SMALL_STATE(3543)] = 134900, - [SMALL_STATE(3544)] = 134922, - [SMALL_STATE(3545)] = 134936, - [SMALL_STATE(3546)] = 134958, - [SMALL_STATE(3547)] = 134980, - [SMALL_STATE(3548)] = 135002, - [SMALL_STATE(3549)] = 135024, - [SMALL_STATE(3550)] = 135038, - [SMALL_STATE(3551)] = 135060, - [SMALL_STATE(3552)] = 135082, - [SMALL_STATE(3553)] = 135102, - [SMALL_STATE(3554)] = 135124, - [SMALL_STATE(3555)] = 135146, - [SMALL_STATE(3556)] = 135172, - [SMALL_STATE(3557)] = 135194, - [SMALL_STATE(3558)] = 135216, - [SMALL_STATE(3559)] = 135234, - [SMALL_STATE(3560)] = 135254, - [SMALL_STATE(3561)] = 135276, - [SMALL_STATE(3562)] = 135298, - [SMALL_STATE(3563)] = 135324, - [SMALL_STATE(3564)] = 135346, - [SMALL_STATE(3565)] = 135364, - [SMALL_STATE(3566)] = 135386, - [SMALL_STATE(3567)] = 135408, - [SMALL_STATE(3568)] = 135430, - [SMALL_STATE(3569)] = 135456, - [SMALL_STATE(3570)] = 135478, - [SMALL_STATE(3571)] = 135498, - [SMALL_STATE(3572)] = 135524, - [SMALL_STATE(3573)] = 135546, - [SMALL_STATE(3574)] = 135560, - [SMALL_STATE(3575)] = 135574, - [SMALL_STATE(3576)] = 135592, - [SMALL_STATE(3577)] = 135606, - [SMALL_STATE(3578)] = 135632, - [SMALL_STATE(3579)] = 135654, - [SMALL_STATE(3580)] = 135672, - [SMALL_STATE(3581)] = 135694, - [SMALL_STATE(3582)] = 135716, - [SMALL_STATE(3583)] = 135742, - [SMALL_STATE(3584)] = 135760, - [SMALL_STATE(3585)] = 135782, - [SMALL_STATE(3586)] = 135804, - [SMALL_STATE(3587)] = 135818, - [SMALL_STATE(3588)] = 135844, - [SMALL_STATE(3589)] = 135870, - [SMALL_STATE(3590)] = 135892, - [SMALL_STATE(3591)] = 135914, - [SMALL_STATE(3592)] = 135936, - [SMALL_STATE(3593)] = 135958, - [SMALL_STATE(3594)] = 135984, - [SMALL_STATE(3595)] = 135998, - [SMALL_STATE(3596)] = 136024, - [SMALL_STATE(3597)] = 136040, - [SMALL_STATE(3598)] = 136062, - [SMALL_STATE(3599)] = 136076, - [SMALL_STATE(3600)] = 136098, - [SMALL_STATE(3601)] = 136120, - [SMALL_STATE(3602)] = 136142, - [SMALL_STATE(3603)] = 136164, - [SMALL_STATE(3604)] = 136190, - [SMALL_STATE(3605)] = 136212, - [SMALL_STATE(3606)] = 136234, - [SMALL_STATE(3607)] = 136256, - [SMALL_STATE(3608)] = 136282, - [SMALL_STATE(3609)] = 136304, - [SMALL_STATE(3610)] = 136326, - [SMALL_STATE(3611)] = 136348, - [SMALL_STATE(3612)] = 136370, - [SMALL_STATE(3613)] = 136396, - [SMALL_STATE(3614)] = 136418, - [SMALL_STATE(3615)] = 136444, - [SMALL_STATE(3616)] = 136466, - [SMALL_STATE(3617)] = 136480, - [SMALL_STATE(3618)] = 136506, - [SMALL_STATE(3619)] = 136528, - [SMALL_STATE(3620)] = 136550, - [SMALL_STATE(3621)] = 136572, - [SMALL_STATE(3622)] = 136594, - [SMALL_STATE(3623)] = 136616, - [SMALL_STATE(3624)] = 136638, - [SMALL_STATE(3625)] = 136660, - [SMALL_STATE(3626)] = 136682, - [SMALL_STATE(3627)] = 136696, - [SMALL_STATE(3628)] = 136718, - [SMALL_STATE(3629)] = 136744, - [SMALL_STATE(3630)] = 136766, - [SMALL_STATE(3631)] = 136784, - [SMALL_STATE(3632)] = 136800, - [SMALL_STATE(3633)] = 136816, - [SMALL_STATE(3634)] = 136842, - [SMALL_STATE(3635)] = 136868, - [SMALL_STATE(3636)] = 136894, - [SMALL_STATE(3637)] = 136920, - [SMALL_STATE(3638)] = 136938, - [SMALL_STATE(3639)] = 136964, - [SMALL_STATE(3640)] = 136980, - [SMALL_STATE(3641)] = 137002, - [SMALL_STATE(3642)] = 137024, - [SMALL_STATE(3643)] = 137050, - [SMALL_STATE(3644)] = 137076, - [SMALL_STATE(3645)] = 137102, - [SMALL_STATE(3646)] = 137128, - [SMALL_STATE(3647)] = 137150, - [SMALL_STATE(3648)] = 137176, - [SMALL_STATE(3649)] = 137202, - [SMALL_STATE(3650)] = 137228, - [SMALL_STATE(3651)] = 137250, - [SMALL_STATE(3652)] = 137276, - [SMALL_STATE(3653)] = 137292, - [SMALL_STATE(3654)] = 137310, - [SMALL_STATE(3655)] = 137326, - [SMALL_STATE(3656)] = 137352, - [SMALL_STATE(3657)] = 137378, - [SMALL_STATE(3658)] = 137396, - [SMALL_STATE(3659)] = 137414, - [SMALL_STATE(3660)] = 137428, - [SMALL_STATE(3661)] = 137446, - [SMALL_STATE(3662)] = 137472, - [SMALL_STATE(3663)] = 137490, - [SMALL_STATE(3664)] = 137516, - [SMALL_STATE(3665)] = 137538, - [SMALL_STATE(3666)] = 137560, - [SMALL_STATE(3667)] = 137582, - [SMALL_STATE(3668)] = 137604, - [SMALL_STATE(3669)] = 137626, - [SMALL_STATE(3670)] = 137648, - [SMALL_STATE(3671)] = 137666, - [SMALL_STATE(3672)] = 137688, - [SMALL_STATE(3673)] = 137710, - [SMALL_STATE(3674)] = 137732, - [SMALL_STATE(3675)] = 137754, - [SMALL_STATE(3676)] = 137776, - [SMALL_STATE(3677)] = 137798, - [SMALL_STATE(3678)] = 137820, - [SMALL_STATE(3679)] = 137842, - [SMALL_STATE(3680)] = 137868, - [SMALL_STATE(3681)] = 137894, - [SMALL_STATE(3682)] = 137916, - [SMALL_STATE(3683)] = 137934, - [SMALL_STATE(3684)] = 137952, - [SMALL_STATE(3685)] = 137978, - [SMALL_STATE(3686)] = 138000, - [SMALL_STATE(3687)] = 138026, - [SMALL_STATE(3688)] = 138044, - [SMALL_STATE(3689)] = 138062, - [SMALL_STATE(3690)] = 138084, - [SMALL_STATE(3691)] = 138106, - [SMALL_STATE(3692)] = 138128, - [SMALL_STATE(3693)] = 138154, - [SMALL_STATE(3694)] = 138180, - [SMALL_STATE(3695)] = 138202, - [SMALL_STATE(3696)] = 138224, - [SMALL_STATE(3697)] = 138246, - [SMALL_STATE(3698)] = 138272, - [SMALL_STATE(3699)] = 138294, - [SMALL_STATE(3700)] = 138312, - [SMALL_STATE(3701)] = 138334, - [SMALL_STATE(3702)] = 138356, - [SMALL_STATE(3703)] = 138378, - [SMALL_STATE(3704)] = 138404, - [SMALL_STATE(3705)] = 138430, - [SMALL_STATE(3706)] = 138456, - [SMALL_STATE(3707)] = 138482, - [SMALL_STATE(3708)] = 138504, - [SMALL_STATE(3709)] = 138526, - [SMALL_STATE(3710)] = 138548, - [SMALL_STATE(3711)] = 138574, - [SMALL_STATE(3712)] = 138596, - [SMALL_STATE(3713)] = 138618, - [SMALL_STATE(3714)] = 138636, - [SMALL_STATE(3715)] = 138658, - [SMALL_STATE(3716)] = 138680, - [SMALL_STATE(3717)] = 138702, - [SMALL_STATE(3718)] = 138724, - [SMALL_STATE(3719)] = 138746, - [SMALL_STATE(3720)] = 138770, - [SMALL_STATE(3721)] = 138792, - [SMALL_STATE(3722)] = 138814, - [SMALL_STATE(3723)] = 138836, - [SMALL_STATE(3724)] = 138852, - [SMALL_STATE(3725)] = 138874, - [SMALL_STATE(3726)] = 138890, - [SMALL_STATE(3727)] = 138916, - [SMALL_STATE(3728)] = 138934, - [SMALL_STATE(3729)] = 138952, - [SMALL_STATE(3730)] = 138978, - [SMALL_STATE(3731)] = 138996, - [SMALL_STATE(3732)] = 139014, - [SMALL_STATE(3733)] = 139032, - [SMALL_STATE(3734)] = 139058, - [SMALL_STATE(3735)] = 139072, - [SMALL_STATE(3736)] = 139094, - [SMALL_STATE(3737)] = 139116, - [SMALL_STATE(3738)] = 139142, - [SMALL_STATE(3739)] = 139160, - [SMALL_STATE(3740)] = 139174, - [SMALL_STATE(3741)] = 139196, - [SMALL_STATE(3742)] = 139222, - [SMALL_STATE(3743)] = 139248, - [SMALL_STATE(3744)] = 139274, - [SMALL_STATE(3745)] = 139296, - [SMALL_STATE(3746)] = 139322, - [SMALL_STATE(3747)] = 139344, - [SMALL_STATE(3748)] = 139366, - [SMALL_STATE(3749)] = 139388, - [SMALL_STATE(3750)] = 139408, - [SMALL_STATE(3751)] = 139430, - [SMALL_STATE(3752)] = 139444, - [SMALL_STATE(3753)] = 139464, - [SMALL_STATE(3754)] = 139484, - [SMALL_STATE(3755)] = 139500, - [SMALL_STATE(3756)] = 139526, - [SMALL_STATE(3757)] = 139548, - [SMALL_STATE(3758)] = 139568, - [SMALL_STATE(3759)] = 139588, - [SMALL_STATE(3760)] = 139606, - [SMALL_STATE(3761)] = 139628, - [SMALL_STATE(3762)] = 139650, - [SMALL_STATE(3763)] = 139672, - [SMALL_STATE(3764)] = 139690, - [SMALL_STATE(3765)] = 139708, - [SMALL_STATE(3766)] = 139730, - [SMALL_STATE(3767)] = 139750, - [SMALL_STATE(3768)] = 139767, - [SMALL_STATE(3769)] = 139786, - [SMALL_STATE(3770)] = 139803, - [SMALL_STATE(3771)] = 139820, - [SMALL_STATE(3772)] = 139837, - [SMALL_STATE(3773)] = 139856, - [SMALL_STATE(3774)] = 139873, - [SMALL_STATE(3775)] = 139896, - [SMALL_STATE(3776)] = 139919, - [SMALL_STATE(3777)] = 139942, - [SMALL_STATE(3778)] = 139955, - [SMALL_STATE(3779)] = 139978, - [SMALL_STATE(3780)] = 140001, - [SMALL_STATE(3781)] = 140018, - [SMALL_STATE(3782)] = 140031, - [SMALL_STATE(3783)] = 140050, - [SMALL_STATE(3784)] = 140067, - [SMALL_STATE(3785)] = 140080, - [SMALL_STATE(3786)] = 140103, - [SMALL_STATE(3787)] = 140120, - [SMALL_STATE(3788)] = 140135, - [SMALL_STATE(3789)] = 140152, - [SMALL_STATE(3790)] = 140169, - [SMALL_STATE(3791)] = 140192, - [SMALL_STATE(3792)] = 140215, - [SMALL_STATE(3793)] = 140238, - [SMALL_STATE(3794)] = 140253, - [SMALL_STATE(3795)] = 140272, - [SMALL_STATE(3796)] = 140295, - [SMALL_STATE(3797)] = 140312, - [SMALL_STATE(3798)] = 140327, - [SMALL_STATE(3799)] = 140346, - [SMALL_STATE(3800)] = 140365, - [SMALL_STATE(3801)] = 140384, - [SMALL_STATE(3802)] = 140403, - [SMALL_STATE(3803)] = 140426, - [SMALL_STATE(3804)] = 140449, - [SMALL_STATE(3805)] = 140472, - [SMALL_STATE(3806)] = 140495, - [SMALL_STATE(3807)] = 140516, - [SMALL_STATE(3808)] = 140537, - [SMALL_STATE(3809)] = 140550, - [SMALL_STATE(3810)] = 140573, - [SMALL_STATE(3811)] = 140590, - [SMALL_STATE(3812)] = 140607, - [SMALL_STATE(3813)] = 140626, - [SMALL_STATE(3814)] = 140649, - [SMALL_STATE(3815)] = 140672, - [SMALL_STATE(3816)] = 140689, - [SMALL_STATE(3817)] = 140712, - [SMALL_STATE(3818)] = 140725, - [SMALL_STATE(3819)] = 140738, - [SMALL_STATE(3820)] = 140757, - [SMALL_STATE(3821)] = 140774, - [SMALL_STATE(3822)] = 140789, - [SMALL_STATE(3823)] = 140808, - [SMALL_STATE(3824)] = 140821, - [SMALL_STATE(3825)] = 140834, - [SMALL_STATE(3826)] = 140857, - [SMALL_STATE(3827)] = 140880, - [SMALL_STATE(3828)] = 140903, - [SMALL_STATE(3829)] = 140920, - [SMALL_STATE(3830)] = 140939, - [SMALL_STATE(3831)] = 140956, - [SMALL_STATE(3832)] = 140973, - [SMALL_STATE(3833)] = 140986, - [SMALL_STATE(3834)] = 141009, - [SMALL_STATE(3835)] = 141032, - [SMALL_STATE(3836)] = 141049, - [SMALL_STATE(3837)] = 141062, - [SMALL_STATE(3838)] = 141085, - [SMALL_STATE(3839)] = 141108, - [SMALL_STATE(3840)] = 141125, - [SMALL_STATE(3841)] = 141144, - [SMALL_STATE(3842)] = 141167, - [SMALL_STATE(3843)] = 141190, - [SMALL_STATE(3844)] = 141207, - [SMALL_STATE(3845)] = 141224, - [SMALL_STATE(3846)] = 141239, - [SMALL_STATE(3847)] = 141258, - [SMALL_STATE(3848)] = 141275, - [SMALL_STATE(3849)] = 141292, - [SMALL_STATE(3850)] = 141305, - [SMALL_STATE(3851)] = 141328, - [SMALL_STATE(3852)] = 141351, - [SMALL_STATE(3853)] = 141374, - [SMALL_STATE(3854)] = 141397, - [SMALL_STATE(3855)] = 141416, - [SMALL_STATE(3856)] = 141433, - [SMALL_STATE(3857)] = 141450, - [SMALL_STATE(3858)] = 141473, - [SMALL_STATE(3859)] = 141496, - [SMALL_STATE(3860)] = 141519, - [SMALL_STATE(3861)] = 141536, - [SMALL_STATE(3862)] = 141559, - [SMALL_STATE(3863)] = 141582, - [SMALL_STATE(3864)] = 141605, - [SMALL_STATE(3865)] = 141628, - [SMALL_STATE(3866)] = 141651, - [SMALL_STATE(3867)] = 141674, - [SMALL_STATE(3868)] = 141697, - [SMALL_STATE(3869)] = 141720, - [SMALL_STATE(3870)] = 141743, - [SMALL_STATE(3871)] = 141766, - [SMALL_STATE(3872)] = 141783, - [SMALL_STATE(3873)] = 141806, - [SMALL_STATE(3874)] = 141821, - [SMALL_STATE(3875)] = 141840, - [SMALL_STATE(3876)] = 141855, - [SMALL_STATE(3877)] = 141872, - [SMALL_STATE(3878)] = 141895, - [SMALL_STATE(3879)] = 141912, - [SMALL_STATE(3880)] = 141935, - [SMALL_STATE(3881)] = 141948, - [SMALL_STATE(3882)] = 141965, - [SMALL_STATE(3883)] = 141982, - [SMALL_STATE(3884)] = 142005, - [SMALL_STATE(3885)] = 142028, - [SMALL_STATE(3886)] = 142045, - [SMALL_STATE(3887)] = 142062, - [SMALL_STATE(3888)] = 142085, - [SMALL_STATE(3889)] = 142108, - [SMALL_STATE(3890)] = 142125, - [SMALL_STATE(3891)] = 142148, - [SMALL_STATE(3892)] = 142167, - [SMALL_STATE(3893)] = 142190, - [SMALL_STATE(3894)] = 142213, - [SMALL_STATE(3895)] = 142226, - [SMALL_STATE(3896)] = 142245, - [SMALL_STATE(3897)] = 142262, - [SMALL_STATE(3898)] = 142279, - [SMALL_STATE(3899)] = 142298, - [SMALL_STATE(3900)] = 142315, - [SMALL_STATE(3901)] = 142332, - [SMALL_STATE(3902)] = 142345, - [SMALL_STATE(3903)] = 142368, - [SMALL_STATE(3904)] = 142385, - [SMALL_STATE(3905)] = 142402, - [SMALL_STATE(3906)] = 142425, - [SMALL_STATE(3907)] = 142442, - [SMALL_STATE(3908)] = 142465, - [SMALL_STATE(3909)] = 142488, - [SMALL_STATE(3910)] = 142507, - [SMALL_STATE(3911)] = 142530, - [SMALL_STATE(3912)] = 142553, - [SMALL_STATE(3913)] = 142570, - [SMALL_STATE(3914)] = 142587, - [SMALL_STATE(3915)] = 142610, - [SMALL_STATE(3916)] = 142627, - [SMALL_STATE(3917)] = 142650, - [SMALL_STATE(3918)] = 142671, - [SMALL_STATE(3919)] = 142688, - [SMALL_STATE(3920)] = 142711, - [SMALL_STATE(3921)] = 142728, - [SMALL_STATE(3922)] = 142745, - [SMALL_STATE(3923)] = 142760, - [SMALL_STATE(3924)] = 142777, - [SMALL_STATE(3925)] = 142800, - [SMALL_STATE(3926)] = 142817, - [SMALL_STATE(3927)] = 142840, - [SMALL_STATE(3928)] = 142856, - [SMALL_STATE(3929)] = 142870, - [SMALL_STATE(3930)] = 142886, - [SMALL_STATE(3931)] = 142902, - [SMALL_STATE(3932)] = 142922, - [SMALL_STATE(3933)] = 142934, - [SMALL_STATE(3934)] = 142946, - [SMALL_STATE(3935)] = 142962, - [SMALL_STATE(3936)] = 142978, - [SMALL_STATE(3937)] = 142992, - [SMALL_STATE(3938)] = 143008, - [SMALL_STATE(3939)] = 143024, - [SMALL_STATE(3940)] = 143040, - [SMALL_STATE(3941)] = 143056, - [SMALL_STATE(3942)] = 143072, - [SMALL_STATE(3943)] = 143086, - [SMALL_STATE(3944)] = 143098, - [SMALL_STATE(3945)] = 143110, - [SMALL_STATE(3946)] = 143122, - [SMALL_STATE(3947)] = 143134, - [SMALL_STATE(3948)] = 143150, - [SMALL_STATE(3949)] = 143166, - [SMALL_STATE(3950)] = 143182, - [SMALL_STATE(3951)] = 143198, - [SMALL_STATE(3952)] = 143212, - [SMALL_STATE(3953)] = 143228, - [SMALL_STATE(3954)] = 143242, - [SMALL_STATE(3955)] = 143254, - [SMALL_STATE(3956)] = 143266, - [SMALL_STATE(3957)] = 143278, - [SMALL_STATE(3958)] = 143290, - [SMALL_STATE(3959)] = 143302, - [SMALL_STATE(3960)] = 143314, - [SMALL_STATE(3961)] = 143326, - [SMALL_STATE(3962)] = 143342, - [SMALL_STATE(3963)] = 143354, - [SMALL_STATE(3964)] = 143366, - [SMALL_STATE(3965)] = 143378, - [SMALL_STATE(3966)] = 143390, - [SMALL_STATE(3967)] = 143402, - [SMALL_STATE(3968)] = 143414, - [SMALL_STATE(3969)] = 143426, - [SMALL_STATE(3970)] = 143438, - [SMALL_STATE(3971)] = 143450, - [SMALL_STATE(3972)] = 143462, - [SMALL_STATE(3973)] = 143480, - [SMALL_STATE(3974)] = 143496, - [SMALL_STATE(3975)] = 143512, - [SMALL_STATE(3976)] = 143528, - [SMALL_STATE(3977)] = 143544, - [SMALL_STATE(3978)] = 143556, - [SMALL_STATE(3979)] = 143568, - [SMALL_STATE(3980)] = 143588, - [SMALL_STATE(3981)] = 143600, - [SMALL_STATE(3982)] = 143612, - [SMALL_STATE(3983)] = 143624, - [SMALL_STATE(3984)] = 143640, - [SMALL_STATE(3985)] = 143656, - [SMALL_STATE(3986)] = 143672, - [SMALL_STATE(3987)] = 143688, - [SMALL_STATE(3988)] = 143704, - [SMALL_STATE(3989)] = 143720, - [SMALL_STATE(3990)] = 143736, - [SMALL_STATE(3991)] = 143752, - [SMALL_STATE(3992)] = 143768, - [SMALL_STATE(3993)] = 143784, - [SMALL_STATE(3994)] = 143804, - [SMALL_STATE(3995)] = 143820, - [SMALL_STATE(3996)] = 143836, - [SMALL_STATE(3997)] = 143856, - [SMALL_STATE(3998)] = 143872, - [SMALL_STATE(3999)] = 143886, - [SMALL_STATE(4000)] = 143904, - [SMALL_STATE(4001)] = 143916, - [SMALL_STATE(4002)] = 143928, - [SMALL_STATE(4003)] = 143948, - [SMALL_STATE(4004)] = 143960, - [SMALL_STATE(4005)] = 143976, - [SMALL_STATE(4006)] = 143994, - [SMALL_STATE(4007)] = 144014, - [SMALL_STATE(4008)] = 144034, - [SMALL_STATE(4009)] = 144054, - [SMALL_STATE(4010)] = 144074, - [SMALL_STATE(4011)] = 144090, - [SMALL_STATE(4012)] = 144106, - [SMALL_STATE(4013)] = 144118, - [SMALL_STATE(4014)] = 144130, - [SMALL_STATE(4015)] = 144142, - [SMALL_STATE(4016)] = 144154, - [SMALL_STATE(4017)] = 144170, - [SMALL_STATE(4018)] = 144188, - [SMALL_STATE(4019)] = 144204, - [SMALL_STATE(4020)] = 144220, - [SMALL_STATE(4021)] = 144240, - [SMALL_STATE(4022)] = 144260, - [SMALL_STATE(4023)] = 144274, - [SMALL_STATE(4024)] = 144292, - [SMALL_STATE(4025)] = 144308, - [SMALL_STATE(4026)] = 144324, - [SMALL_STATE(4027)] = 144342, - [SMALL_STATE(4028)] = 144356, - [SMALL_STATE(4029)] = 144368, - [SMALL_STATE(4030)] = 144384, - [SMALL_STATE(4031)] = 144404, - [SMALL_STATE(4032)] = 144416, - [SMALL_STATE(4033)] = 144428, - [SMALL_STATE(4034)] = 144440, - [SMALL_STATE(4035)] = 144452, - [SMALL_STATE(4036)] = 144464, - [SMALL_STATE(4037)] = 144476, - [SMALL_STATE(4038)] = 144496, - [SMALL_STATE(4039)] = 144508, - [SMALL_STATE(4040)] = 144524, - [SMALL_STATE(4041)] = 144540, - [SMALL_STATE(4042)] = 144556, - [SMALL_STATE(4043)] = 144572, - [SMALL_STATE(4044)] = 144592, - [SMALL_STATE(4045)] = 144606, - [SMALL_STATE(4046)] = 144624, - [SMALL_STATE(4047)] = 144636, - [SMALL_STATE(4048)] = 144652, - [SMALL_STATE(4049)] = 144672, - [SMALL_STATE(4050)] = 144690, - [SMALL_STATE(4051)] = 144702, - [SMALL_STATE(4052)] = 144722, - [SMALL_STATE(4053)] = 144734, - [SMALL_STATE(4054)] = 144746, - [SMALL_STATE(4055)] = 144758, - [SMALL_STATE(4056)] = 144774, - [SMALL_STATE(4057)] = 144790, - [SMALL_STATE(4058)] = 144802, - [SMALL_STATE(4059)] = 144814, - [SMALL_STATE(4060)] = 144828, - [SMALL_STATE(4061)] = 144842, - [SMALL_STATE(4062)] = 144854, - [SMALL_STATE(4063)] = 144874, - [SMALL_STATE(4064)] = 144888, - [SMALL_STATE(4065)] = 144908, - [SMALL_STATE(4066)] = 144928, - [SMALL_STATE(4067)] = 144944, - [SMALL_STATE(4068)] = 144962, - [SMALL_STATE(4069)] = 144978, - [SMALL_STATE(4070)] = 144992, - [SMALL_STATE(4071)] = 145012, - [SMALL_STATE(4072)] = 145028, - [SMALL_STATE(4073)] = 145044, - [SMALL_STATE(4074)] = 145062, - [SMALL_STATE(4075)] = 145082, - [SMALL_STATE(4076)] = 145102, - [SMALL_STATE(4077)] = 145122, - [SMALL_STATE(4078)] = 145142, - [SMALL_STATE(4079)] = 145162, - [SMALL_STATE(4080)] = 145174, - [SMALL_STATE(4081)] = 145186, - [SMALL_STATE(4082)] = 145198, - [SMALL_STATE(4083)] = 145214, - [SMALL_STATE(4084)] = 145226, - [SMALL_STATE(4085)] = 145246, - [SMALL_STATE(4086)] = 145258, - [SMALL_STATE(4087)] = 145270, - [SMALL_STATE(4088)] = 145282, - [SMALL_STATE(4089)] = 145302, - [SMALL_STATE(4090)] = 145314, - [SMALL_STATE(4091)] = 145326, - [SMALL_STATE(4092)] = 145338, - [SMALL_STATE(4093)] = 145350, - [SMALL_STATE(4094)] = 145366, - [SMALL_STATE(4095)] = 145378, - [SMALL_STATE(4096)] = 145390, - [SMALL_STATE(4097)] = 145402, - [SMALL_STATE(4098)] = 145414, - [SMALL_STATE(4099)] = 145426, - [SMALL_STATE(4100)] = 145438, - [SMALL_STATE(4101)] = 145450, - [SMALL_STATE(4102)] = 145466, - [SMALL_STATE(4103)] = 145486, - [SMALL_STATE(4104)] = 145502, - [SMALL_STATE(4105)] = 145518, - [SMALL_STATE(4106)] = 145538, - [SMALL_STATE(4107)] = 145558, - [SMALL_STATE(4108)] = 145574, - [SMALL_STATE(4109)] = 145592, - [SMALL_STATE(4110)] = 145612, - [SMALL_STATE(4111)] = 145628, - [SMALL_STATE(4112)] = 145644, - [SMALL_STATE(4113)] = 145660, - [SMALL_STATE(4114)] = 145680, - [SMALL_STATE(4115)] = 145696, - [SMALL_STATE(4116)] = 145714, - [SMALL_STATE(4117)] = 145734, - [SMALL_STATE(4118)] = 145750, - [SMALL_STATE(4119)] = 145762, - [SMALL_STATE(4120)] = 145774, - [SMALL_STATE(4121)] = 145786, - [SMALL_STATE(4122)] = 145798, - [SMALL_STATE(4123)] = 145810, - [SMALL_STATE(4124)] = 145822, - [SMALL_STATE(4125)] = 145834, - [SMALL_STATE(4126)] = 145850, - [SMALL_STATE(4127)] = 145866, - [SMALL_STATE(4128)] = 145882, - [SMALL_STATE(4129)] = 145894, - [SMALL_STATE(4130)] = 145906, - [SMALL_STATE(4131)] = 145918, - [SMALL_STATE(4132)] = 145934, - [SMALL_STATE(4133)] = 145954, - [SMALL_STATE(4134)] = 145974, - [SMALL_STATE(4135)] = 145990, - [SMALL_STATE(4136)] = 146002, - [SMALL_STATE(4137)] = 146020, - [SMALL_STATE(4138)] = 146036, - [SMALL_STATE(4139)] = 146052, - [SMALL_STATE(4140)] = 146068, - [SMALL_STATE(4141)] = 146084, - [SMALL_STATE(4142)] = 146100, - [SMALL_STATE(4143)] = 146118, - [SMALL_STATE(4144)] = 146134, - [SMALL_STATE(4145)] = 146146, - [SMALL_STATE(4146)] = 146158, - [SMALL_STATE(4147)] = 146170, - [SMALL_STATE(4148)] = 146182, - [SMALL_STATE(4149)] = 146194, - [SMALL_STATE(4150)] = 146206, - [SMALL_STATE(4151)] = 146222, - [SMALL_STATE(4152)] = 146234, - [SMALL_STATE(4153)] = 146246, - [SMALL_STATE(4154)] = 146258, - [SMALL_STATE(4155)] = 146278, - [SMALL_STATE(4156)] = 146294, - [SMALL_STATE(4157)] = 146310, - [SMALL_STATE(4158)] = 146328, - [SMALL_STATE(4159)] = 146344, - [SMALL_STATE(4160)] = 146356, - [SMALL_STATE(4161)] = 146372, - [SMALL_STATE(4162)] = 146388, - [SMALL_STATE(4163)] = 146406, - [SMALL_STATE(4164)] = 146422, - [SMALL_STATE(4165)] = 146438, - [SMALL_STATE(4166)] = 146454, - [SMALL_STATE(4167)] = 146470, - [SMALL_STATE(4168)] = 146490, - [SMALL_STATE(4169)] = 146502, - [SMALL_STATE(4170)] = 146518, - [SMALL_STATE(4171)] = 146536, - [SMALL_STATE(4172)] = 146552, - [SMALL_STATE(4173)] = 146568, - [SMALL_STATE(4174)] = 146584, - [SMALL_STATE(4175)] = 146598, - [SMALL_STATE(4176)] = 146612, - [SMALL_STATE(4177)] = 146628, - [SMALL_STATE(4178)] = 146644, - [SMALL_STATE(4179)] = 146660, - [SMALL_STATE(4180)] = 146676, - [SMALL_STATE(4181)] = 146692, - [SMALL_STATE(4182)] = 146712, - [SMALL_STATE(4183)] = 146728, - [SMALL_STATE(4184)] = 146744, - [SMALL_STATE(4185)] = 146760, - [SMALL_STATE(4186)] = 146780, - [SMALL_STATE(4187)] = 146796, - [SMALL_STATE(4188)] = 146810, - [SMALL_STATE(4189)] = 146826, - [SMALL_STATE(4190)] = 146842, - [SMALL_STATE(4191)] = 146856, - [SMALL_STATE(4192)] = 146872, - [SMALL_STATE(4193)] = 146888, - [SMALL_STATE(4194)] = 146908, - [SMALL_STATE(4195)] = 146928, - [SMALL_STATE(4196)] = 146942, - [SMALL_STATE(4197)] = 146956, - [SMALL_STATE(4198)] = 146972, - [SMALL_STATE(4199)] = 146992, - [SMALL_STATE(4200)] = 147008, - [SMALL_STATE(4201)] = 147028, - [SMALL_STATE(4202)] = 147048, - [SMALL_STATE(4203)] = 147060, - [SMALL_STATE(4204)] = 147072, - [SMALL_STATE(4205)] = 147092, - [SMALL_STATE(4206)] = 147108, - [SMALL_STATE(4207)] = 147124, - [SMALL_STATE(4208)] = 147140, - [SMALL_STATE(4209)] = 147156, - [SMALL_STATE(4210)] = 147174, - [SMALL_STATE(4211)] = 147190, - [SMALL_STATE(4212)] = 147210, - [SMALL_STATE(4213)] = 147230, - [SMALL_STATE(4214)] = 147246, - [SMALL_STATE(4215)] = 147266, - [SMALL_STATE(4216)] = 147286, - [SMALL_STATE(4217)] = 147302, - [SMALL_STATE(4218)] = 147318, - [SMALL_STATE(4219)] = 147334, - [SMALL_STATE(4220)] = 147350, - [SMALL_STATE(4221)] = 147366, - [SMALL_STATE(4222)] = 147382, - [SMALL_STATE(4223)] = 147402, - [SMALL_STATE(4224)] = 147420, - [SMALL_STATE(4225)] = 147436, - [SMALL_STATE(4226)] = 147452, - [SMALL_STATE(4227)] = 147468, - [SMALL_STATE(4228)] = 147484, - [SMALL_STATE(4229)] = 147504, - [SMALL_STATE(4230)] = 147518, - [SMALL_STATE(4231)] = 147532, - [SMALL_STATE(4232)] = 147546, - [SMALL_STATE(4233)] = 147560, - [SMALL_STATE(4234)] = 147574, - [SMALL_STATE(4235)] = 147588, - [SMALL_STATE(4236)] = 147604, - [SMALL_STATE(4237)] = 147620, - [SMALL_STATE(4238)] = 147640, - [SMALL_STATE(4239)] = 147656, - [SMALL_STATE(4240)] = 147672, - [SMALL_STATE(4241)] = 147686, - [SMALL_STATE(4242)] = 147700, - [SMALL_STATE(4243)] = 147716, - [SMALL_STATE(4244)] = 147732, - [SMALL_STATE(4245)] = 147752, - [SMALL_STATE(4246)] = 147768, - [SMALL_STATE(4247)] = 147788, - [SMALL_STATE(4248)] = 147808, - [SMALL_STATE(4249)] = 147824, - [SMALL_STATE(4250)] = 147842, - [SMALL_STATE(4251)] = 147858, - [SMALL_STATE(4252)] = 147878, - [SMALL_STATE(4253)] = 147890, - [SMALL_STATE(4254)] = 147904, - [SMALL_STATE(4255)] = 147918, - [SMALL_STATE(4256)] = 147932, - [SMALL_STATE(4257)] = 147946, - [SMALL_STATE(4258)] = 147958, - [SMALL_STATE(4259)] = 147978, - [SMALL_STATE(4260)] = 147990, - [SMALL_STATE(4261)] = 148010, - [SMALL_STATE(4262)] = 148022, - [SMALL_STATE(4263)] = 148034, - [SMALL_STATE(4264)] = 148050, - [SMALL_STATE(4265)] = 148066, - [SMALL_STATE(4266)] = 148078, - [SMALL_STATE(4267)] = 148090, - [SMALL_STATE(4268)] = 148106, - [SMALL_STATE(4269)] = 148120, - [SMALL_STATE(4270)] = 148134, - [SMALL_STATE(4271)] = 148146, - [SMALL_STATE(4272)] = 148158, - [SMALL_STATE(4273)] = 148178, - [SMALL_STATE(4274)] = 148190, - [SMALL_STATE(4275)] = 148202, - [SMALL_STATE(4276)] = 148218, - [SMALL_STATE(4277)] = 148238, - [SMALL_STATE(4278)] = 148254, - [SMALL_STATE(4279)] = 148270, - [SMALL_STATE(4280)] = 148286, - [SMALL_STATE(4281)] = 148302, - [SMALL_STATE(4282)] = 148322, - [SMALL_STATE(4283)] = 148338, - [SMALL_STATE(4284)] = 148354, - [SMALL_STATE(4285)] = 148374, - [SMALL_STATE(4286)] = 148390, - [SMALL_STATE(4287)] = 148406, - [SMALL_STATE(4288)] = 148426, - [SMALL_STATE(4289)] = 148442, - [SMALL_STATE(4290)] = 148454, - [SMALL_STATE(4291)] = 148474, - [SMALL_STATE(4292)] = 148494, - [SMALL_STATE(4293)] = 148514, - [SMALL_STATE(4294)] = 148530, - [SMALL_STATE(4295)] = 148550, - [SMALL_STATE(4296)] = 148566, - [SMALL_STATE(4297)] = 148582, - [SMALL_STATE(4298)] = 148598, - [SMALL_STATE(4299)] = 148614, - [SMALL_STATE(4300)] = 148626, - [SMALL_STATE(4301)] = 148638, - [SMALL_STATE(4302)] = 148656, - [SMALL_STATE(4303)] = 148668, - [SMALL_STATE(4304)] = 148686, - [SMALL_STATE(4305)] = 148700, - [SMALL_STATE(4306)] = 148714, - [SMALL_STATE(4307)] = 148730, - [SMALL_STATE(4308)] = 148746, - [SMALL_STATE(4309)] = 148758, - [SMALL_STATE(4310)] = 148774, - [SMALL_STATE(4311)] = 148794, - [SMALL_STATE(4312)] = 148806, - [SMALL_STATE(4313)] = 148822, - [SMALL_STATE(4314)] = 148838, - [SMALL_STATE(4315)] = 148854, - [SMALL_STATE(4316)] = 148868, - [SMALL_STATE(4317)] = 148882, - [SMALL_STATE(4318)] = 148898, - [SMALL_STATE(4319)] = 148918, - [SMALL_STATE(4320)] = 148934, - [SMALL_STATE(4321)] = 148948, - [SMALL_STATE(4322)] = 148962, - [SMALL_STATE(4323)] = 148978, - [SMALL_STATE(4324)] = 148994, - [SMALL_STATE(4325)] = 149010, - [SMALL_STATE(4326)] = 149026, - [SMALL_STATE(4327)] = 149042, - [SMALL_STATE(4328)] = 149058, - [SMALL_STATE(4329)] = 149074, - [SMALL_STATE(4330)] = 149090, - [SMALL_STATE(4331)] = 149110, - [SMALL_STATE(4332)] = 149126, - [SMALL_STATE(4333)] = 149142, - [SMALL_STATE(4334)] = 149162, - [SMALL_STATE(4335)] = 149178, - [SMALL_STATE(4336)] = 149194, - [SMALL_STATE(4337)] = 149210, - [SMALL_STATE(4338)] = 149224, - [SMALL_STATE(4339)] = 149238, - [SMALL_STATE(4340)] = 149252, - [SMALL_STATE(4341)] = 149268, - [SMALL_STATE(4342)] = 149282, - [SMALL_STATE(4343)] = 149296, - [SMALL_STATE(4344)] = 149310, - [SMALL_STATE(4345)] = 149328, - [SMALL_STATE(4346)] = 149344, - [SMALL_STATE(4347)] = 149358, - [SMALL_STATE(4348)] = 149372, - [SMALL_STATE(4349)] = 149384, - [SMALL_STATE(4350)] = 149404, - [SMALL_STATE(4351)] = 149416, - [SMALL_STATE(4352)] = 149432, - [SMALL_STATE(4353)] = 149448, - [SMALL_STATE(4354)] = 149464, - [SMALL_STATE(4355)] = 149480, - [SMALL_STATE(4356)] = 149492, - [SMALL_STATE(4357)] = 149504, - [SMALL_STATE(4358)] = 149516, - [SMALL_STATE(4359)] = 149532, - [SMALL_STATE(4360)] = 149548, - [SMALL_STATE(4361)] = 149564, - [SMALL_STATE(4362)] = 149578, - [SMALL_STATE(4363)] = 149592, - [SMALL_STATE(4364)] = 149608, - [SMALL_STATE(4365)] = 149620, - [SMALL_STATE(4366)] = 149640, - [SMALL_STATE(4367)] = 149652, - [SMALL_STATE(4368)] = 149672, - [SMALL_STATE(4369)] = 149684, - [SMALL_STATE(4370)] = 149704, - [SMALL_STATE(4371)] = 149716, - [SMALL_STATE(4372)] = 149728, - [SMALL_STATE(4373)] = 149744, - [SMALL_STATE(4374)] = 149760, - [SMALL_STATE(4375)] = 149778, - [SMALL_STATE(4376)] = 149790, - [SMALL_STATE(4377)] = 149802, - [SMALL_STATE(4378)] = 149814, - [SMALL_STATE(4379)] = 149826, - [SMALL_STATE(4380)] = 149846, - [SMALL_STATE(4381)] = 149862, - [SMALL_STATE(4382)] = 149882, - [SMALL_STATE(4383)] = 149894, - [SMALL_STATE(4384)] = 149910, - [SMALL_STATE(4385)] = 149926, - [SMALL_STATE(4386)] = 149946, - [SMALL_STATE(4387)] = 149966, - [SMALL_STATE(4388)] = 149982, - [SMALL_STATE(4389)] = 150002, - [SMALL_STATE(4390)] = 150014, - [SMALL_STATE(4391)] = 150030, - [SMALL_STATE(4392)] = 150042, - [SMALL_STATE(4393)] = 150054, - [SMALL_STATE(4394)] = 150066, - [SMALL_STATE(4395)] = 150082, - [SMALL_STATE(4396)] = 150100, - [SMALL_STATE(4397)] = 150116, - [SMALL_STATE(4398)] = 150132, - [SMALL_STATE(4399)] = 150144, - [SMALL_STATE(4400)] = 150156, - [SMALL_STATE(4401)] = 150172, - [SMALL_STATE(4402)] = 150186, - [SMALL_STATE(4403)] = 150204, - [SMALL_STATE(4404)] = 150222, - [SMALL_STATE(4405)] = 150238, - [SMALL_STATE(4406)] = 150254, - [SMALL_STATE(4407)] = 150270, - [SMALL_STATE(4408)] = 150286, - [SMALL_STATE(4409)] = 150302, - [SMALL_STATE(4410)] = 150322, - [SMALL_STATE(4411)] = 150342, - [SMALL_STATE(4412)] = 150362, - [SMALL_STATE(4413)] = 150382, - [SMALL_STATE(4414)] = 150402, - [SMALL_STATE(4415)] = 150418, - [SMALL_STATE(4416)] = 150430, - [SMALL_STATE(4417)] = 150442, - [SMALL_STATE(4418)] = 150456, - [SMALL_STATE(4419)] = 150472, - [SMALL_STATE(4420)] = 150486, - [SMALL_STATE(4421)] = 150502, - [SMALL_STATE(4422)] = 150516, - [SMALL_STATE(4423)] = 150532, - [SMALL_STATE(4424)] = 150548, - [SMALL_STATE(4425)] = 150566, - [SMALL_STATE(4426)] = 150582, - [SMALL_STATE(4427)] = 150598, - [SMALL_STATE(4428)] = 150612, - [SMALL_STATE(4429)] = 150624, - [SMALL_STATE(4430)] = 150640, - [SMALL_STATE(4431)] = 150656, - [SMALL_STATE(4432)] = 150668, - [SMALL_STATE(4433)] = 150684, - [SMALL_STATE(4434)] = 150700, - [SMALL_STATE(4435)] = 150712, - [SMALL_STATE(4436)] = 150724, - [SMALL_STATE(4437)] = 150740, - [SMALL_STATE(4438)] = 150754, - [SMALL_STATE(4439)] = 150770, - [SMALL_STATE(4440)] = 150786, - [SMALL_STATE(4441)] = 150800, - [SMALL_STATE(4442)] = 150814, - [SMALL_STATE(4443)] = 150830, - [SMALL_STATE(4444)] = 150846, - [SMALL_STATE(4445)] = 150866, - [SMALL_STATE(4446)] = 150882, - [SMALL_STATE(4447)] = 150898, - [SMALL_STATE(4448)] = 150914, - [SMALL_STATE(4449)] = 150928, - [SMALL_STATE(4450)] = 150940, - [SMALL_STATE(4451)] = 150952, - [SMALL_STATE(4452)] = 150968, - [SMALL_STATE(4453)] = 150984, - [SMALL_STATE(4454)] = 150996, - [SMALL_STATE(4455)] = 151008, - [SMALL_STATE(4456)] = 151020, - [SMALL_STATE(4457)] = 151032, - [SMALL_STATE(4458)] = 151052, - [SMALL_STATE(4459)] = 151068, - [SMALL_STATE(4460)] = 151084, - [SMALL_STATE(4461)] = 151104, - [SMALL_STATE(4462)] = 151123, - [SMALL_STATE(4463)] = 151140, - [SMALL_STATE(4464)] = 151157, - [SMALL_STATE(4465)] = 151172, - [SMALL_STATE(4466)] = 151189, - [SMALL_STATE(4467)] = 151206, - [SMALL_STATE(4468)] = 151223, - [SMALL_STATE(4469)] = 151240, - [SMALL_STATE(4470)] = 151257, - [SMALL_STATE(4471)] = 151272, - [SMALL_STATE(4472)] = 151289, - [SMALL_STATE(4473)] = 151304, - [SMALL_STATE(4474)] = 151319, - [SMALL_STATE(4475)] = 151334, - [SMALL_STATE(4476)] = 151351, - [SMALL_STATE(4477)] = 151366, - [SMALL_STATE(4478)] = 151381, - [SMALL_STATE(4479)] = 151396, - [SMALL_STATE(4480)] = 151413, - [SMALL_STATE(4481)] = 151430, - [SMALL_STATE(4482)] = 151447, - [SMALL_STATE(4483)] = 151464, - [SMALL_STATE(4484)] = 151481, - [SMALL_STATE(4485)] = 151496, - [SMALL_STATE(4486)] = 151513, - [SMALL_STATE(4487)] = 151530, - [SMALL_STATE(4488)] = 151545, - [SMALL_STATE(4489)] = 151562, - [SMALL_STATE(4490)] = 151577, - [SMALL_STATE(4491)] = 151594, - [SMALL_STATE(4492)] = 151611, - [SMALL_STATE(4493)] = 151628, - [SMALL_STATE(4494)] = 151641, - [SMALL_STATE(4495)] = 151654, - [SMALL_STATE(4496)] = 151671, - [SMALL_STATE(4497)] = 151686, - [SMALL_STATE(4498)] = 151703, - [SMALL_STATE(4499)] = 151720, - [SMALL_STATE(4500)] = 151737, - [SMALL_STATE(4501)] = 151754, - [SMALL_STATE(4502)] = 151771, - [SMALL_STATE(4503)] = 151788, - [SMALL_STATE(4504)] = 151805, - [SMALL_STATE(4505)] = 151822, - [SMALL_STATE(4506)] = 151839, - [SMALL_STATE(4507)] = 151854, - [SMALL_STATE(4508)] = 151871, - [SMALL_STATE(4509)] = 151888, - [SMALL_STATE(4510)] = 151905, - [SMALL_STATE(4511)] = 151916, - [SMALL_STATE(4512)] = 151933, - [SMALL_STATE(4513)] = 151950, - [SMALL_STATE(4514)] = 151967, - [SMALL_STATE(4515)] = 151984, - [SMALL_STATE(4516)] = 152001, - [SMALL_STATE(4517)] = 152016, - [SMALL_STATE(4518)] = 152031, - [SMALL_STATE(4519)] = 152048, - [SMALL_STATE(4520)] = 152065, - [SMALL_STATE(4521)] = 152082, - [SMALL_STATE(4522)] = 152095, - [SMALL_STATE(4523)] = 152114, - [SMALL_STATE(4524)] = 152133, - [SMALL_STATE(4525)] = 152150, - [SMALL_STATE(4526)] = 152167, - [SMALL_STATE(4527)] = 152178, - [SMALL_STATE(4528)] = 152195, - [SMALL_STATE(4529)] = 152212, - [SMALL_STATE(4530)] = 152229, - [SMALL_STATE(4531)] = 152246, - [SMALL_STATE(4532)] = 152261, - [SMALL_STATE(4533)] = 152278, - [SMALL_STATE(4534)] = 152293, - [SMALL_STATE(4535)] = 152306, - [SMALL_STATE(4536)] = 152323, - [SMALL_STATE(4537)] = 152340, - [SMALL_STATE(4538)] = 152357, - [SMALL_STATE(4539)] = 152374, - [SMALL_STATE(4540)] = 152391, - [SMALL_STATE(4541)] = 152406, - [SMALL_STATE(4542)] = 152423, - [SMALL_STATE(4543)] = 152440, - [SMALL_STATE(4544)] = 152457, - [SMALL_STATE(4545)] = 152474, - [SMALL_STATE(4546)] = 152491, - [SMALL_STATE(4547)] = 152508, - [SMALL_STATE(4548)] = 152527, - [SMALL_STATE(4549)] = 152544, - [SMALL_STATE(4550)] = 152561, - [SMALL_STATE(4551)] = 152578, - [SMALL_STATE(4552)] = 152597, - [SMALL_STATE(4553)] = 152614, - [SMALL_STATE(4554)] = 152631, - [SMALL_STATE(4555)] = 152646, - [SMALL_STATE(4556)] = 152657, - [SMALL_STATE(4557)] = 152674, - [SMALL_STATE(4558)] = 152691, - [SMALL_STATE(4559)] = 152708, - [SMALL_STATE(4560)] = 152723, - [SMALL_STATE(4561)] = 152740, - [SMALL_STATE(4562)] = 152751, - [SMALL_STATE(4563)] = 152768, - [SMALL_STATE(4564)] = 152785, - [SMALL_STATE(4565)] = 152802, - [SMALL_STATE(4566)] = 152819, - [SMALL_STATE(4567)] = 152834, - [SMALL_STATE(4568)] = 152851, - [SMALL_STATE(4569)] = 152868, - [SMALL_STATE(4570)] = 152881, - [SMALL_STATE(4571)] = 152896, - [SMALL_STATE(4572)] = 152913, - [SMALL_STATE(4573)] = 152930, - [SMALL_STATE(4574)] = 152947, - [SMALL_STATE(4575)] = 152964, - [SMALL_STATE(4576)] = 152979, - [SMALL_STATE(4577)] = 152996, - [SMALL_STATE(4578)] = 153013, - [SMALL_STATE(4579)] = 153030, - [SMALL_STATE(4580)] = 153045, - [SMALL_STATE(4581)] = 153062, - [SMALL_STATE(4582)] = 153079, - [SMALL_STATE(4583)] = 153094, - [SMALL_STATE(4584)] = 153111, - [SMALL_STATE(4585)] = 153126, - [SMALL_STATE(4586)] = 153145, - [SMALL_STATE(4587)] = 153158, - [SMALL_STATE(4588)] = 153173, - [SMALL_STATE(4589)] = 153190, - [SMALL_STATE(4590)] = 153207, - [SMALL_STATE(4591)] = 153224, - [SMALL_STATE(4592)] = 153241, - [SMALL_STATE(4593)] = 153258, - [SMALL_STATE(4594)] = 153275, - [SMALL_STATE(4595)] = 153292, - [SMALL_STATE(4596)] = 153309, - [SMALL_STATE(4597)] = 153326, - [SMALL_STATE(4598)] = 153343, - [SMALL_STATE(4599)] = 153360, - [SMALL_STATE(4600)] = 153377, - [SMALL_STATE(4601)] = 153392, - [SMALL_STATE(4602)] = 153409, - [SMALL_STATE(4603)] = 153426, - [SMALL_STATE(4604)] = 153443, - [SMALL_STATE(4605)] = 153460, - [SMALL_STATE(4606)] = 153470, - [SMALL_STATE(4607)] = 153484, - [SMALL_STATE(4608)] = 153498, - [SMALL_STATE(4609)] = 153512, - [SMALL_STATE(4610)] = 153526, - [SMALL_STATE(4611)] = 153540, - [SMALL_STATE(4612)] = 153550, - [SMALL_STATE(4613)] = 153564, - [SMALL_STATE(4614)] = 153574, - [SMALL_STATE(4615)] = 153584, - [SMALL_STATE(4616)] = 153598, - [SMALL_STATE(4617)] = 153608, - [SMALL_STATE(4618)] = 153622, - [SMALL_STATE(4619)] = 153636, - [SMALL_STATE(4620)] = 153650, - [SMALL_STATE(4621)] = 153664, - [SMALL_STATE(4622)] = 153674, - [SMALL_STATE(4623)] = 153688, - [SMALL_STATE(4624)] = 153700, - [SMALL_STATE(4625)] = 153714, - [SMALL_STATE(4626)] = 153724, - [SMALL_STATE(4627)] = 153734, - [SMALL_STATE(4628)] = 153744, - [SMALL_STATE(4629)] = 153754, - [SMALL_STATE(4630)] = 153766, - [SMALL_STATE(4631)] = 153776, - [SMALL_STATE(4632)] = 153786, - [SMALL_STATE(4633)] = 153796, - [SMALL_STATE(4634)] = 153810, - [SMALL_STATE(4635)] = 153820, - [SMALL_STATE(4636)] = 153830, - [SMALL_STATE(4637)] = 153840, - [SMALL_STATE(4638)] = 153850, - [SMALL_STATE(4639)] = 153860, - [SMALL_STATE(4640)] = 153870, - [SMALL_STATE(4641)] = 153884, - [SMALL_STATE(4642)] = 153898, - [SMALL_STATE(4643)] = 153912, - [SMALL_STATE(4644)] = 153922, - [SMALL_STATE(4645)] = 153932, - [SMALL_STATE(4646)] = 153942, - [SMALL_STATE(4647)] = 153956, - [SMALL_STATE(4648)] = 153966, - [SMALL_STATE(4649)] = 153980, - [SMALL_STATE(4650)] = 153994, - [SMALL_STATE(4651)] = 154008, - [SMALL_STATE(4652)] = 154018, - [SMALL_STATE(4653)] = 154032, - [SMALL_STATE(4654)] = 154042, - [SMALL_STATE(4655)] = 154056, - [SMALL_STATE(4656)] = 154070, - [SMALL_STATE(4657)] = 154080, - [SMALL_STATE(4658)] = 154094, - [SMALL_STATE(4659)] = 154108, - [SMALL_STATE(4660)] = 154122, - [SMALL_STATE(4661)] = 154132, - [SMALL_STATE(4662)] = 154142, - [SMALL_STATE(4663)] = 154152, - [SMALL_STATE(4664)] = 154166, - [SMALL_STATE(4665)] = 154176, - [SMALL_STATE(4666)] = 154190, - [SMALL_STATE(4667)] = 154204, - [SMALL_STATE(4668)] = 154218, - [SMALL_STATE(4669)] = 154228, - [SMALL_STATE(4670)] = 154238, - [SMALL_STATE(4671)] = 154248, - [SMALL_STATE(4672)] = 154258, - [SMALL_STATE(4673)] = 154270, - [SMALL_STATE(4674)] = 154284, - [SMALL_STATE(4675)] = 154298, - [SMALL_STATE(4676)] = 154312, - [SMALL_STATE(4677)] = 154326, - [SMALL_STATE(4678)] = 154336, - [SMALL_STATE(4679)] = 154350, - [SMALL_STATE(4680)] = 154360, - [SMALL_STATE(4681)] = 154370, - [SMALL_STATE(4682)] = 154380, - [SMALL_STATE(4683)] = 154394, - [SMALL_STATE(4684)] = 154408, - [SMALL_STATE(4685)] = 154422, - [SMALL_STATE(4686)] = 154432, - [SMALL_STATE(4687)] = 154446, - [SMALL_STATE(4688)] = 154460, - [SMALL_STATE(4689)] = 154470, - [SMALL_STATE(4690)] = 154480, - [SMALL_STATE(4691)] = 154494, - [SMALL_STATE(4692)] = 154508, - [SMALL_STATE(4693)] = 154522, - [SMALL_STATE(4694)] = 154536, - [SMALL_STATE(4695)] = 154546, - [SMALL_STATE(4696)] = 154560, - [SMALL_STATE(4697)] = 154570, - [SMALL_STATE(4698)] = 154580, - [SMALL_STATE(4699)] = 154590, - [SMALL_STATE(4700)] = 154600, - [SMALL_STATE(4701)] = 154610, - [SMALL_STATE(4702)] = 154620, - [SMALL_STATE(4703)] = 154630, - [SMALL_STATE(4704)] = 154640, - [SMALL_STATE(4705)] = 154650, - [SMALL_STATE(4706)] = 154660, - [SMALL_STATE(4707)] = 154670, - [SMALL_STATE(4708)] = 154684, - [SMALL_STATE(4709)] = 154698, - [SMALL_STATE(4710)] = 154708, - [SMALL_STATE(4711)] = 154718, - [SMALL_STATE(4712)] = 154732, - [SMALL_STATE(4713)] = 154742, - [SMALL_STATE(4714)] = 154756, - [SMALL_STATE(4715)] = 154768, - [SMALL_STATE(4716)] = 154782, - [SMALL_STATE(4717)] = 154792, - [SMALL_STATE(4718)] = 154802, - [SMALL_STATE(4719)] = 154816, - [SMALL_STATE(4720)] = 154826, - [SMALL_STATE(4721)] = 154836, - [SMALL_STATE(4722)] = 154850, - [SMALL_STATE(4723)] = 154860, - [SMALL_STATE(4724)] = 154874, - [SMALL_STATE(4725)] = 154888, - [SMALL_STATE(4726)] = 154898, - [SMALL_STATE(4727)] = 154912, - [SMALL_STATE(4728)] = 154924, - [SMALL_STATE(4729)] = 154934, - [SMALL_STATE(4730)] = 154948, - [SMALL_STATE(4731)] = 154958, - [SMALL_STATE(4732)] = 154972, - [SMALL_STATE(4733)] = 154982, - [SMALL_STATE(4734)] = 154992, - [SMALL_STATE(4735)] = 155002, - [SMALL_STATE(4736)] = 155012, - [SMALL_STATE(4737)] = 155022, - [SMALL_STATE(4738)] = 155032, - [SMALL_STATE(4739)] = 155044, - [SMALL_STATE(4740)] = 155054, - [SMALL_STATE(4741)] = 155064, - [SMALL_STATE(4742)] = 155074, - [SMALL_STATE(4743)] = 155084, - [SMALL_STATE(4744)] = 155098, - [SMALL_STATE(4745)] = 155108, - [SMALL_STATE(4746)] = 155118, - [SMALL_STATE(4747)] = 155128, - [SMALL_STATE(4748)] = 155138, - [SMALL_STATE(4749)] = 155148, - [SMALL_STATE(4750)] = 155162, - [SMALL_STATE(4751)] = 155176, - [SMALL_STATE(4752)] = 155186, - [SMALL_STATE(4753)] = 155196, - [SMALL_STATE(4754)] = 155210, - [SMALL_STATE(4755)] = 155220, - [SMALL_STATE(4756)] = 155230, - [SMALL_STATE(4757)] = 155240, - [SMALL_STATE(4758)] = 155250, - [SMALL_STATE(4759)] = 155260, - [SMALL_STATE(4760)] = 155270, - [SMALL_STATE(4761)] = 155284, - [SMALL_STATE(4762)] = 155294, - [SMALL_STATE(4763)] = 155304, - [SMALL_STATE(4764)] = 155314, - [SMALL_STATE(4765)] = 155328, - [SMALL_STATE(4766)] = 155338, - [SMALL_STATE(4767)] = 155348, - [SMALL_STATE(4768)] = 155358, - [SMALL_STATE(4769)] = 155370, - [SMALL_STATE(4770)] = 155380, - [SMALL_STATE(4771)] = 155390, - [SMALL_STATE(4772)] = 155400, - [SMALL_STATE(4773)] = 155410, - [SMALL_STATE(4774)] = 155420, - [SMALL_STATE(4775)] = 155432, - [SMALL_STATE(4776)] = 155444, - [SMALL_STATE(4777)] = 155454, - [SMALL_STATE(4778)] = 155464, - [SMALL_STATE(4779)] = 155474, - [SMALL_STATE(4780)] = 155484, - [SMALL_STATE(4781)] = 155494, - [SMALL_STATE(4782)] = 155504, - [SMALL_STATE(4783)] = 155514, - [SMALL_STATE(4784)] = 155528, - [SMALL_STATE(4785)] = 155542, - [SMALL_STATE(4786)] = 155552, - [SMALL_STATE(4787)] = 155566, - [SMALL_STATE(4788)] = 155580, - [SMALL_STATE(4789)] = 155594, - [SMALL_STATE(4790)] = 155608, - [SMALL_STATE(4791)] = 155618, - [SMALL_STATE(4792)] = 155632, - [SMALL_STATE(4793)] = 155642, - [SMALL_STATE(4794)] = 155656, - [SMALL_STATE(4795)] = 155666, - [SMALL_STATE(4796)] = 155676, - [SMALL_STATE(4797)] = 155686, - [SMALL_STATE(4798)] = 155696, - [SMALL_STATE(4799)] = 155706, - [SMALL_STATE(4800)] = 155716, - [SMALL_STATE(4801)] = 155728, - [SMALL_STATE(4802)] = 155742, - [SMALL_STATE(4803)] = 155752, - [SMALL_STATE(4804)] = 155762, - [SMALL_STATE(4805)] = 155772, - [SMALL_STATE(4806)] = 155786, - [SMALL_STATE(4807)] = 155796, - [SMALL_STATE(4808)] = 155810, - [SMALL_STATE(4809)] = 155820, - [SMALL_STATE(4810)] = 155834, - [SMALL_STATE(4811)] = 155844, - [SMALL_STATE(4812)] = 155854, - [SMALL_STATE(4813)] = 155864, - [SMALL_STATE(4814)] = 155874, - [SMALL_STATE(4815)] = 155884, - [SMALL_STATE(4816)] = 155898, - [SMALL_STATE(4817)] = 155908, - [SMALL_STATE(4818)] = 155922, - [SMALL_STATE(4819)] = 155932, - [SMALL_STATE(4820)] = 155946, - [SMALL_STATE(4821)] = 155956, - [SMALL_STATE(4822)] = 155970, - [SMALL_STATE(4823)] = 155980, - [SMALL_STATE(4824)] = 155994, - [SMALL_STATE(4825)] = 156004, - [SMALL_STATE(4826)] = 156014, - [SMALL_STATE(4827)] = 156028, - [SMALL_STATE(4828)] = 156038, - [SMALL_STATE(4829)] = 156052, - [SMALL_STATE(4830)] = 156062, - [SMALL_STATE(4831)] = 156076, - [SMALL_STATE(4832)] = 156086, - [SMALL_STATE(4833)] = 156096, - [SMALL_STATE(4834)] = 156106, - [SMALL_STATE(4835)] = 156120, - [SMALL_STATE(4836)] = 156132, - [SMALL_STATE(4837)] = 156142, - [SMALL_STATE(4838)] = 156152, - [SMALL_STATE(4839)] = 156162, - [SMALL_STATE(4840)] = 156172, - [SMALL_STATE(4841)] = 156182, - [SMALL_STATE(4842)] = 156196, - [SMALL_STATE(4843)] = 156206, - [SMALL_STATE(4844)] = 156216, - [SMALL_STATE(4845)] = 156226, - [SMALL_STATE(4846)] = 156236, - [SMALL_STATE(4847)] = 156246, - [SMALL_STATE(4848)] = 156260, - [SMALL_STATE(4849)] = 156274, - [SMALL_STATE(4850)] = 156288, - [SMALL_STATE(4851)] = 156298, - [SMALL_STATE(4852)] = 156308, - [SMALL_STATE(4853)] = 156318, - [SMALL_STATE(4854)] = 156328, - [SMALL_STATE(4855)] = 156338, - [SMALL_STATE(4856)] = 156352, - [SMALL_STATE(4857)] = 156362, - [SMALL_STATE(4858)] = 156372, - [SMALL_STATE(4859)] = 156382, - [SMALL_STATE(4860)] = 156392, - [SMALL_STATE(4861)] = 156402, - [SMALL_STATE(4862)] = 156416, - [SMALL_STATE(4863)] = 156426, - [SMALL_STATE(4864)] = 156436, - [SMALL_STATE(4865)] = 156446, - [SMALL_STATE(4866)] = 156456, - [SMALL_STATE(4867)] = 156466, - [SMALL_STATE(4868)] = 156476, - [SMALL_STATE(4869)] = 156490, - [SMALL_STATE(4870)] = 156500, - [SMALL_STATE(4871)] = 156514, - [SMALL_STATE(4872)] = 156524, - [SMALL_STATE(4873)] = 156534, - [SMALL_STATE(4874)] = 156548, - [SMALL_STATE(4875)] = 156558, - [SMALL_STATE(4876)] = 156568, - [SMALL_STATE(4877)] = 156582, - [SMALL_STATE(4878)] = 156592, - [SMALL_STATE(4879)] = 156602, - [SMALL_STATE(4880)] = 156612, - [SMALL_STATE(4881)] = 156622, - [SMALL_STATE(4882)] = 156636, - [SMALL_STATE(4883)] = 156646, - [SMALL_STATE(4884)] = 156656, - [SMALL_STATE(4885)] = 156666, - [SMALL_STATE(4886)] = 156680, - [SMALL_STATE(4887)] = 156690, - [SMALL_STATE(4888)] = 156704, - [SMALL_STATE(4889)] = 156714, - [SMALL_STATE(4890)] = 156728, - [SMALL_STATE(4891)] = 156738, - [SMALL_STATE(4892)] = 156748, - [SMALL_STATE(4893)] = 156758, - [SMALL_STATE(4894)] = 156768, - [SMALL_STATE(4895)] = 156778, - [SMALL_STATE(4896)] = 156788, - [SMALL_STATE(4897)] = 156798, - [SMALL_STATE(4898)] = 156808, - [SMALL_STATE(4899)] = 156818, - [SMALL_STATE(4900)] = 156828, - [SMALL_STATE(4901)] = 156838, - [SMALL_STATE(4902)] = 156852, - [SMALL_STATE(4903)] = 156862, - [SMALL_STATE(4904)] = 156872, - [SMALL_STATE(4905)] = 156882, - [SMALL_STATE(4906)] = 156892, - [SMALL_STATE(4907)] = 156902, - [SMALL_STATE(4908)] = 156912, - [SMALL_STATE(4909)] = 156922, - [SMALL_STATE(4910)] = 156932, - [SMALL_STATE(4911)] = 156942, - [SMALL_STATE(4912)] = 156952, - [SMALL_STATE(4913)] = 156966, - [SMALL_STATE(4914)] = 156976, - [SMALL_STATE(4915)] = 156986, - [SMALL_STATE(4916)] = 156996, - [SMALL_STATE(4917)] = 157006, - [SMALL_STATE(4918)] = 157016, - [SMALL_STATE(4919)] = 157026, - [SMALL_STATE(4920)] = 157040, - [SMALL_STATE(4921)] = 157050, - [SMALL_STATE(4922)] = 157064, - [SMALL_STATE(4923)] = 157074, - [SMALL_STATE(4924)] = 157088, - [SMALL_STATE(4925)] = 157102, - [SMALL_STATE(4926)] = 157114, - [SMALL_STATE(4927)] = 157124, - [SMALL_STATE(4928)] = 157134, - [SMALL_STATE(4929)] = 157144, - [SMALL_STATE(4930)] = 157154, - [SMALL_STATE(4931)] = 157164, - [SMALL_STATE(4932)] = 157174, - [SMALL_STATE(4933)] = 157184, - [SMALL_STATE(4934)] = 157194, - [SMALL_STATE(4935)] = 157204, - [SMALL_STATE(4936)] = 157216, - [SMALL_STATE(4937)] = 157226, - [SMALL_STATE(4938)] = 157236, - [SMALL_STATE(4939)] = 157246, - [SMALL_STATE(4940)] = 157256, - [SMALL_STATE(4941)] = 157266, - [SMALL_STATE(4942)] = 157276, - [SMALL_STATE(4943)] = 157286, - [SMALL_STATE(4944)] = 157300, - [SMALL_STATE(4945)] = 157314, - [SMALL_STATE(4946)] = 157324, - [SMALL_STATE(4947)] = 157334, - [SMALL_STATE(4948)] = 157344, - [SMALL_STATE(4949)] = 157354, - [SMALL_STATE(4950)] = 157364, - [SMALL_STATE(4951)] = 157374, - [SMALL_STATE(4952)] = 157384, - [SMALL_STATE(4953)] = 157394, - [SMALL_STATE(4954)] = 157404, - [SMALL_STATE(4955)] = 157414, - [SMALL_STATE(4956)] = 157424, - [SMALL_STATE(4957)] = 157434, - [SMALL_STATE(4958)] = 157444, - [SMALL_STATE(4959)] = 157458, - [SMALL_STATE(4960)] = 157468, - [SMALL_STATE(4961)] = 157478, - [SMALL_STATE(4962)] = 157488, - [SMALL_STATE(4963)] = 157498, - [SMALL_STATE(4964)] = 157508, - [SMALL_STATE(4965)] = 157518, - [SMALL_STATE(4966)] = 157528, - [SMALL_STATE(4967)] = 157538, - [SMALL_STATE(4968)] = 157548, - [SMALL_STATE(4969)] = 157558, - [SMALL_STATE(4970)] = 157568, - [SMALL_STATE(4971)] = 157578, - [SMALL_STATE(4972)] = 157588, - [SMALL_STATE(4973)] = 157598, - [SMALL_STATE(4974)] = 157608, - [SMALL_STATE(4975)] = 157618, - [SMALL_STATE(4976)] = 157628, - [SMALL_STATE(4977)] = 157638, - [SMALL_STATE(4978)] = 157648, - [SMALL_STATE(4979)] = 157658, - [SMALL_STATE(4980)] = 157668, - [SMALL_STATE(4981)] = 157678, - [SMALL_STATE(4982)] = 157688, - [SMALL_STATE(4983)] = 157698, - [SMALL_STATE(4984)] = 157708, - [SMALL_STATE(4985)] = 157718, - [SMALL_STATE(4986)] = 157728, - [SMALL_STATE(4987)] = 157738, - [SMALL_STATE(4988)] = 157748, - [SMALL_STATE(4989)] = 157758, - [SMALL_STATE(4990)] = 157768, - [SMALL_STATE(4991)] = 157778, - [SMALL_STATE(4992)] = 157788, - [SMALL_STATE(4993)] = 157798, - [SMALL_STATE(4994)] = 157808, - [SMALL_STATE(4995)] = 157818, - [SMALL_STATE(4996)] = 157828, - [SMALL_STATE(4997)] = 157838, - [SMALL_STATE(4998)] = 157848, - [SMALL_STATE(4999)] = 157858, - [SMALL_STATE(5000)] = 157872, - [SMALL_STATE(5001)] = 157882, - [SMALL_STATE(5002)] = 157892, - [SMALL_STATE(5003)] = 157902, - [SMALL_STATE(5004)] = 157912, - [SMALL_STATE(5005)] = 157922, - [SMALL_STATE(5006)] = 157932, - [SMALL_STATE(5007)] = 157942, - [SMALL_STATE(5008)] = 157952, - [SMALL_STATE(5009)] = 157962, - [SMALL_STATE(5010)] = 157972, - [SMALL_STATE(5011)] = 157982, - [SMALL_STATE(5012)] = 157992, - [SMALL_STATE(5013)] = 158002, - [SMALL_STATE(5014)] = 158012, - [SMALL_STATE(5015)] = 158022, - [SMALL_STATE(5016)] = 158032, - [SMALL_STATE(5017)] = 158042, - [SMALL_STATE(5018)] = 158052, - [SMALL_STATE(5019)] = 158062, - [SMALL_STATE(5020)] = 158072, - [SMALL_STATE(5021)] = 158082, - [SMALL_STATE(5022)] = 158092, - [SMALL_STATE(5023)] = 158104, - [SMALL_STATE(5024)] = 158118, - [SMALL_STATE(5025)] = 158130, - [SMALL_STATE(5026)] = 158140, - [SMALL_STATE(5027)] = 158150, - [SMALL_STATE(5028)] = 158162, - [SMALL_STATE(5029)] = 158172, - [SMALL_STATE(5030)] = 158186, - [SMALL_STATE(5031)] = 158196, - [SMALL_STATE(5032)] = 158206, - [SMALL_STATE(5033)] = 158216, - [SMALL_STATE(5034)] = 158226, - [SMALL_STATE(5035)] = 158236, - [SMALL_STATE(5036)] = 158246, - [SMALL_STATE(5037)] = 158256, - [SMALL_STATE(5038)] = 158266, - [SMALL_STATE(5039)] = 158276, - [SMALL_STATE(5040)] = 158286, - [SMALL_STATE(5041)] = 158296, - [SMALL_STATE(5042)] = 158306, - [SMALL_STATE(5043)] = 158316, - [SMALL_STATE(5044)] = 158326, - [SMALL_STATE(5045)] = 158336, - [SMALL_STATE(5046)] = 158346, - [SMALL_STATE(5047)] = 158356, - [SMALL_STATE(5048)] = 158368, - [SMALL_STATE(5049)] = 158378, - [SMALL_STATE(5050)] = 158388, - [SMALL_STATE(5051)] = 158398, - [SMALL_STATE(5052)] = 158408, - [SMALL_STATE(5053)] = 158418, - [SMALL_STATE(5054)] = 158428, - [SMALL_STATE(5055)] = 158438, - [SMALL_STATE(5056)] = 158450, - [SMALL_STATE(5057)] = 158460, - [SMALL_STATE(5058)] = 158470, - [SMALL_STATE(5059)] = 158480, - [SMALL_STATE(5060)] = 158490, - [SMALL_STATE(5061)] = 158504, - [SMALL_STATE(5062)] = 158518, - [SMALL_STATE(5063)] = 158528, - [SMALL_STATE(5064)] = 158538, - [SMALL_STATE(5065)] = 158548, - [SMALL_STATE(5066)] = 158558, - [SMALL_STATE(5067)] = 158572, - [SMALL_STATE(5068)] = 158582, - [SMALL_STATE(5069)] = 158592, - [SMALL_STATE(5070)] = 158604, - [SMALL_STATE(5071)] = 158614, - [SMALL_STATE(5072)] = 158626, - [SMALL_STATE(5073)] = 158640, - [SMALL_STATE(5074)] = 158650, - [SMALL_STATE(5075)] = 158660, - [SMALL_STATE(5076)] = 158670, - [SMALL_STATE(5077)] = 158680, - [SMALL_STATE(5078)] = 158694, - [SMALL_STATE(5079)] = 158704, - [SMALL_STATE(5080)] = 158714, - [SMALL_STATE(5081)] = 158724, - [SMALL_STATE(5082)] = 158734, - [SMALL_STATE(5083)] = 158744, - [SMALL_STATE(5084)] = 158756, - [SMALL_STATE(5085)] = 158766, - [SMALL_STATE(5086)] = 158776, - [SMALL_STATE(5087)] = 158786, - [SMALL_STATE(5088)] = 158796, - [SMALL_STATE(5089)] = 158810, - [SMALL_STATE(5090)] = 158824, - [SMALL_STATE(5091)] = 158834, - [SMALL_STATE(5092)] = 158844, - [SMALL_STATE(5093)] = 158854, - [SMALL_STATE(5094)] = 158868, - [SMALL_STATE(5095)] = 158882, - [SMALL_STATE(5096)] = 158896, - [SMALL_STATE(5097)] = 158906, - [SMALL_STATE(5098)] = 158916, - [SMALL_STATE(5099)] = 158926, - [SMALL_STATE(5100)] = 158940, - [SMALL_STATE(5101)] = 158954, - [SMALL_STATE(5102)] = 158968, - [SMALL_STATE(5103)] = 158978, - [SMALL_STATE(5104)] = 158990, - [SMALL_STATE(5105)] = 159004, - [SMALL_STATE(5106)] = 159014, - [SMALL_STATE(5107)] = 159028, - [SMALL_STATE(5108)] = 159038, - [SMALL_STATE(5109)] = 159048, - [SMALL_STATE(5110)] = 159062, - [SMALL_STATE(5111)] = 159072, - [SMALL_STATE(5112)] = 159086, - [SMALL_STATE(5113)] = 159100, - [SMALL_STATE(5114)] = 159110, - [SMALL_STATE(5115)] = 159120, - [SMALL_STATE(5116)] = 159134, - [SMALL_STATE(5117)] = 159148, - [SMALL_STATE(5118)] = 159158, - [SMALL_STATE(5119)] = 159168, - [SMALL_STATE(5120)] = 159182, - [SMALL_STATE(5121)] = 159192, - [SMALL_STATE(5122)] = 159202, - [SMALL_STATE(5123)] = 159212, - [SMALL_STATE(5124)] = 159222, - [SMALL_STATE(5125)] = 159234, - [SMALL_STATE(5126)] = 159244, - [SMALL_STATE(5127)] = 159254, - [SMALL_STATE(5128)] = 159264, - [SMALL_STATE(5129)] = 159274, - [SMALL_STATE(5130)] = 159288, - [SMALL_STATE(5131)] = 159298, - [SMALL_STATE(5132)] = 159312, - [SMALL_STATE(5133)] = 159326, - [SMALL_STATE(5134)] = 159340, - [SMALL_STATE(5135)] = 159354, - [SMALL_STATE(5136)] = 159364, - [SMALL_STATE(5137)] = 159378, - [SMALL_STATE(5138)] = 159392, - [SMALL_STATE(5139)] = 159402, - [SMALL_STATE(5140)] = 159412, - [SMALL_STATE(5141)] = 159424, - [SMALL_STATE(5142)] = 159438, - [SMALL_STATE(5143)] = 159448, - [SMALL_STATE(5144)] = 159460, - [SMALL_STATE(5145)] = 159470, - [SMALL_STATE(5146)] = 159480, - [SMALL_STATE(5147)] = 159490, - [SMALL_STATE(5148)] = 159500, - [SMALL_STATE(5149)] = 159510, - [SMALL_STATE(5150)] = 159522, - [SMALL_STATE(5151)] = 159532, - [SMALL_STATE(5152)] = 159542, - [SMALL_STATE(5153)] = 159552, - [SMALL_STATE(5154)] = 159566, - [SMALL_STATE(5155)] = 159576, - [SMALL_STATE(5156)] = 159586, - [SMALL_STATE(5157)] = 159596, - [SMALL_STATE(5158)] = 159606, - [SMALL_STATE(5159)] = 159616, - [SMALL_STATE(5160)] = 159626, - [SMALL_STATE(5161)] = 159636, - [SMALL_STATE(5162)] = 159650, - [SMALL_STATE(5163)] = 159664, - [SMALL_STATE(5164)] = 159674, - [SMALL_STATE(5165)] = 159684, - [SMALL_STATE(5166)] = 159694, - [SMALL_STATE(5167)] = 159708, - [SMALL_STATE(5168)] = 159722, - [SMALL_STATE(5169)] = 159736, - [SMALL_STATE(5170)] = 159746, - [SMALL_STATE(5171)] = 159756, - [SMALL_STATE(5172)] = 159766, - [SMALL_STATE(5173)] = 159776, - [SMALL_STATE(5174)] = 159786, - [SMALL_STATE(5175)] = 159800, - [SMALL_STATE(5176)] = 159814, - [SMALL_STATE(5177)] = 159824, - [SMALL_STATE(5178)] = 159838, - [SMALL_STATE(5179)] = 159852, - [SMALL_STATE(5180)] = 159866, - [SMALL_STATE(5181)] = 159880, - [SMALL_STATE(5182)] = 159890, - [SMALL_STATE(5183)] = 159900, - [SMALL_STATE(5184)] = 159912, - [SMALL_STATE(5185)] = 159922, - [SMALL_STATE(5186)] = 159932, - [SMALL_STATE(5187)] = 159942, - [SMALL_STATE(5188)] = 159952, - [SMALL_STATE(5189)] = 159966, - [SMALL_STATE(5190)] = 159976, - [SMALL_STATE(5191)] = 159986, - [SMALL_STATE(5192)] = 160000, - [SMALL_STATE(5193)] = 160014, - [SMALL_STATE(5194)] = 160024, - [SMALL_STATE(5195)] = 160038, - [SMALL_STATE(5196)] = 160048, - [SMALL_STATE(5197)] = 160058, - [SMALL_STATE(5198)] = 160072, - [SMALL_STATE(5199)] = 160082, - [SMALL_STATE(5200)] = 160092, - [SMALL_STATE(5201)] = 160102, - [SMALL_STATE(5202)] = 160116, - [SMALL_STATE(5203)] = 160126, - [SMALL_STATE(5204)] = 160136, - [SMALL_STATE(5205)] = 160146, - [SMALL_STATE(5206)] = 160156, - [SMALL_STATE(5207)] = 160166, - [SMALL_STATE(5208)] = 160180, - [SMALL_STATE(5209)] = 160190, - [SMALL_STATE(5210)] = 160204, - [SMALL_STATE(5211)] = 160214, - [SMALL_STATE(5212)] = 160228, - [SMALL_STATE(5213)] = 160238, - [SMALL_STATE(5214)] = 160248, - [SMALL_STATE(5215)] = 160258, - [SMALL_STATE(5216)] = 160268, - [SMALL_STATE(5217)] = 160278, - [SMALL_STATE(5218)] = 160292, - [SMALL_STATE(5219)] = 160302, - [SMALL_STATE(5220)] = 160312, - [SMALL_STATE(5221)] = 160322, - [SMALL_STATE(5222)] = 160333, - [SMALL_STATE(5223)] = 160344, - [SMALL_STATE(5224)] = 160355, - [SMALL_STATE(5225)] = 160366, - [SMALL_STATE(5226)] = 160375, - [SMALL_STATE(5227)] = 160384, - [SMALL_STATE(5228)] = 160393, - [SMALL_STATE(5229)] = 160404, - [SMALL_STATE(5230)] = 160413, - [SMALL_STATE(5231)] = 160424, - [SMALL_STATE(5232)] = 160435, - [SMALL_STATE(5233)] = 160444, - [SMALL_STATE(5234)] = 160455, - [SMALL_STATE(5235)] = 160464, - [SMALL_STATE(5236)] = 160475, - [SMALL_STATE(5237)] = 160484, - [SMALL_STATE(5238)] = 160495, - [SMALL_STATE(5239)] = 160506, - [SMALL_STATE(5240)] = 160517, - [SMALL_STATE(5241)] = 160528, - [SMALL_STATE(5242)] = 160537, - [SMALL_STATE(5243)] = 160548, - [SMALL_STATE(5244)] = 160559, - [SMALL_STATE(5245)] = 160570, - [SMALL_STATE(5246)] = 160579, - [SMALL_STATE(5247)] = 160588, - [SMALL_STATE(5248)] = 160599, - [SMALL_STATE(5249)] = 160610, - [SMALL_STATE(5250)] = 160621, - [SMALL_STATE(5251)] = 160632, - [SMALL_STATE(5252)] = 160643, - [SMALL_STATE(5253)] = 160654, - [SMALL_STATE(5254)] = 160665, - [SMALL_STATE(5255)] = 160676, - [SMALL_STATE(5256)] = 160687, - [SMALL_STATE(5257)] = 160698, - [SMALL_STATE(5258)] = 160709, - [SMALL_STATE(5259)] = 160720, - [SMALL_STATE(5260)] = 160731, - [SMALL_STATE(5261)] = 160742, - [SMALL_STATE(5262)] = 160751, - [SMALL_STATE(5263)] = 160762, - [SMALL_STATE(5264)] = 160773, - [SMALL_STATE(5265)] = 160784, - [SMALL_STATE(5266)] = 160795, - [SMALL_STATE(5267)] = 160806, - [SMALL_STATE(5268)] = 160817, - [SMALL_STATE(5269)] = 160828, - [SMALL_STATE(5270)] = 160839, - [SMALL_STATE(5271)] = 160850, - [SMALL_STATE(5272)] = 160859, - [SMALL_STATE(5273)] = 160868, - [SMALL_STATE(5274)] = 160879, - [SMALL_STATE(5275)] = 160888, - [SMALL_STATE(5276)] = 160899, - [SMALL_STATE(5277)] = 160910, - [SMALL_STATE(5278)] = 160921, - [SMALL_STATE(5279)] = 160932, - [SMALL_STATE(5280)] = 160943, - [SMALL_STATE(5281)] = 160954, - [SMALL_STATE(5282)] = 160965, - [SMALL_STATE(5283)] = 160976, - [SMALL_STATE(5284)] = 160987, - [SMALL_STATE(5285)] = 160998, - [SMALL_STATE(5286)] = 161009, - [SMALL_STATE(5287)] = 161020, - [SMALL_STATE(5288)] = 161031, - [SMALL_STATE(5289)] = 161042, - [SMALL_STATE(5290)] = 161053, - [SMALL_STATE(5291)] = 161064, - [SMALL_STATE(5292)] = 161073, - [SMALL_STATE(5293)] = 161082, - [SMALL_STATE(5294)] = 161091, - [SMALL_STATE(5295)] = 161102, - [SMALL_STATE(5296)] = 161111, - [SMALL_STATE(5297)] = 161120, - [SMALL_STATE(5298)] = 161131, - [SMALL_STATE(5299)] = 161142, - [SMALL_STATE(5300)] = 161153, - [SMALL_STATE(5301)] = 161164, - [SMALL_STATE(5302)] = 161173, - [SMALL_STATE(5303)] = 161182, - [SMALL_STATE(5304)] = 161193, - [SMALL_STATE(5305)] = 161204, - [SMALL_STATE(5306)] = 161215, - [SMALL_STATE(5307)] = 161226, - [SMALL_STATE(5308)] = 161237, - [SMALL_STATE(5309)] = 161248, - [SMALL_STATE(5310)] = 161259, - [SMALL_STATE(5311)] = 161270, - [SMALL_STATE(5312)] = 161281, - [SMALL_STATE(5313)] = 161292, - [SMALL_STATE(5314)] = 161303, - [SMALL_STATE(5315)] = 161314, - [SMALL_STATE(5316)] = 161325, - [SMALL_STATE(5317)] = 161336, - [SMALL_STATE(5318)] = 161347, - [SMALL_STATE(5319)] = 161356, - [SMALL_STATE(5320)] = 161365, - [SMALL_STATE(5321)] = 161376, - [SMALL_STATE(5322)] = 161387, - [SMALL_STATE(5323)] = 161398, - [SMALL_STATE(5324)] = 161409, - [SMALL_STATE(5325)] = 161420, - [SMALL_STATE(5326)] = 161431, - [SMALL_STATE(5327)] = 161442, - [SMALL_STATE(5328)] = 161453, - [SMALL_STATE(5329)] = 161464, - [SMALL_STATE(5330)] = 161475, - [SMALL_STATE(5331)] = 161486, - [SMALL_STATE(5332)] = 161495, - [SMALL_STATE(5333)] = 161506, - [SMALL_STATE(5334)] = 161517, - [SMALL_STATE(5335)] = 161528, - [SMALL_STATE(5336)] = 161539, - [SMALL_STATE(5337)] = 161550, - [SMALL_STATE(5338)] = 161561, - [SMALL_STATE(5339)] = 161572, - [SMALL_STATE(5340)] = 161583, - [SMALL_STATE(5341)] = 161594, - [SMALL_STATE(5342)] = 161603, - [SMALL_STATE(5343)] = 161614, - [SMALL_STATE(5344)] = 161625, - [SMALL_STATE(5345)] = 161636, - [SMALL_STATE(5346)] = 161647, - [SMALL_STATE(5347)] = 161658, - [SMALL_STATE(5348)] = 161669, - [SMALL_STATE(5349)] = 161680, - [SMALL_STATE(5350)] = 161691, - [SMALL_STATE(5351)] = 161700, - [SMALL_STATE(5352)] = 161709, - [SMALL_STATE(5353)] = 161718, - [SMALL_STATE(5354)] = 161729, - [SMALL_STATE(5355)] = 161740, - [SMALL_STATE(5356)] = 161751, - [SMALL_STATE(5357)] = 161762, - [SMALL_STATE(5358)] = 161773, - [SMALL_STATE(5359)] = 161782, - [SMALL_STATE(5360)] = 161793, - [SMALL_STATE(5361)] = 161802, - [SMALL_STATE(5362)] = 161813, - [SMALL_STATE(5363)] = 161824, - [SMALL_STATE(5364)] = 161835, - [SMALL_STATE(5365)] = 161846, - [SMALL_STATE(5366)] = 161855, - [SMALL_STATE(5367)] = 161866, - [SMALL_STATE(5368)] = 161877, - [SMALL_STATE(5369)] = 161886, - [SMALL_STATE(5370)] = 161897, - [SMALL_STATE(5371)] = 161908, - [SMALL_STATE(5372)] = 161919, - [SMALL_STATE(5373)] = 161930, - [SMALL_STATE(5374)] = 161941, - [SMALL_STATE(5375)] = 161950, - [SMALL_STATE(5376)] = 161961, - [SMALL_STATE(5377)] = 161972, - [SMALL_STATE(5378)] = 161983, - [SMALL_STATE(5379)] = 161992, - [SMALL_STATE(5380)] = 162003, - [SMALL_STATE(5381)] = 162014, - [SMALL_STATE(5382)] = 162025, - [SMALL_STATE(5383)] = 162036, - [SMALL_STATE(5384)] = 162047, - [SMALL_STATE(5385)] = 162056, - [SMALL_STATE(5386)] = 162067, - [SMALL_STATE(5387)] = 162076, - [SMALL_STATE(5388)] = 162087, - [SMALL_STATE(5389)] = 162098, - [SMALL_STATE(5390)] = 162107, - [SMALL_STATE(5391)] = 162118, - [SMALL_STATE(5392)] = 162127, - [SMALL_STATE(5393)] = 162138, - [SMALL_STATE(5394)] = 162149, - [SMALL_STATE(5395)] = 162160, - [SMALL_STATE(5396)] = 162171, - [SMALL_STATE(5397)] = 162182, - [SMALL_STATE(5398)] = 162193, - [SMALL_STATE(5399)] = 162202, - [SMALL_STATE(5400)] = 162213, - [SMALL_STATE(5401)] = 162224, - [SMALL_STATE(5402)] = 162235, - [SMALL_STATE(5403)] = 162246, - [SMALL_STATE(5404)] = 162257, - [SMALL_STATE(5405)] = 162268, - [SMALL_STATE(5406)] = 162279, - [SMALL_STATE(5407)] = 162288, - [SMALL_STATE(5408)] = 162297, - [SMALL_STATE(5409)] = 162308, - [SMALL_STATE(5410)] = 162319, - [SMALL_STATE(5411)] = 162330, - [SMALL_STATE(5412)] = 162339, - [SMALL_STATE(5413)] = 162350, - [SMALL_STATE(5414)] = 162359, - [SMALL_STATE(5415)] = 162368, - [SMALL_STATE(5416)] = 162379, - [SMALL_STATE(5417)] = 162388, - [SMALL_STATE(5418)] = 162399, - [SMALL_STATE(5419)] = 162410, - [SMALL_STATE(5420)] = 162421, - [SMALL_STATE(5421)] = 162432, - [SMALL_STATE(5422)] = 162443, - [SMALL_STATE(5423)] = 162454, - [SMALL_STATE(5424)] = 162465, - [SMALL_STATE(5425)] = 162476, - [SMALL_STATE(5426)] = 162487, - [SMALL_STATE(5427)] = 162498, - [SMALL_STATE(5428)] = 162509, - [SMALL_STATE(5429)] = 162518, - [SMALL_STATE(5430)] = 162529, - [SMALL_STATE(5431)] = 162540, - [SMALL_STATE(5432)] = 162551, - [SMALL_STATE(5433)] = 162562, - [SMALL_STATE(5434)] = 162573, - [SMALL_STATE(5435)] = 162584, - [SMALL_STATE(5436)] = 162595, - [SMALL_STATE(5437)] = 162606, - [SMALL_STATE(5438)] = 162617, - [SMALL_STATE(5439)] = 162628, - [SMALL_STATE(5440)] = 162639, - [SMALL_STATE(5441)] = 162650, - [SMALL_STATE(5442)] = 162659, - [SMALL_STATE(5443)] = 162670, - [SMALL_STATE(5444)] = 162681, - [SMALL_STATE(5445)] = 162692, - [SMALL_STATE(5446)] = 162703, - [SMALL_STATE(5447)] = 162714, - [SMALL_STATE(5448)] = 162725, - [SMALL_STATE(5449)] = 162736, - [SMALL_STATE(5450)] = 162747, - [SMALL_STATE(5451)] = 162758, - [SMALL_STATE(5452)] = 162769, - [SMALL_STATE(5453)] = 162780, - [SMALL_STATE(5454)] = 162791, - [SMALL_STATE(5455)] = 162802, - [SMALL_STATE(5456)] = 162813, - [SMALL_STATE(5457)] = 162822, - [SMALL_STATE(5458)] = 162831, - [SMALL_STATE(5459)] = 162840, - [SMALL_STATE(5460)] = 162849, - [SMALL_STATE(5461)] = 162858, - [SMALL_STATE(5462)] = 162869, - [SMALL_STATE(5463)] = 162880, - [SMALL_STATE(5464)] = 162891, - [SMALL_STATE(5465)] = 162902, - [SMALL_STATE(5466)] = 162913, - [SMALL_STATE(5467)] = 162924, - [SMALL_STATE(5468)] = 162935, - [SMALL_STATE(5469)] = 162946, - [SMALL_STATE(5470)] = 162955, - [SMALL_STATE(5471)] = 162966, - [SMALL_STATE(5472)] = 162977, - [SMALL_STATE(5473)] = 162988, - [SMALL_STATE(5474)] = 162999, - [SMALL_STATE(5475)] = 163010, - [SMALL_STATE(5476)] = 163019, - [SMALL_STATE(5477)] = 163030, - [SMALL_STATE(5478)] = 163041, - [SMALL_STATE(5479)] = 163052, - [SMALL_STATE(5480)] = 163063, - [SMALL_STATE(5481)] = 163074, - [SMALL_STATE(5482)] = 163085, - [SMALL_STATE(5483)] = 163096, - [SMALL_STATE(5484)] = 163107, - [SMALL_STATE(5485)] = 163116, - [SMALL_STATE(5486)] = 163125, - [SMALL_STATE(5487)] = 163134, - [SMALL_STATE(5488)] = 163145, - [SMALL_STATE(5489)] = 163156, - [SMALL_STATE(5490)] = 163165, - [SMALL_STATE(5491)] = 163176, - [SMALL_STATE(5492)] = 163185, - [SMALL_STATE(5493)] = 163194, - [SMALL_STATE(5494)] = 163205, - [SMALL_STATE(5495)] = 163216, - [SMALL_STATE(5496)] = 163227, - [SMALL_STATE(5497)] = 163236, - [SMALL_STATE(5498)] = 163245, - [SMALL_STATE(5499)] = 163256, - [SMALL_STATE(5500)] = 163265, - [SMALL_STATE(5501)] = 163276, - [SMALL_STATE(5502)] = 163287, - [SMALL_STATE(5503)] = 163298, - [SMALL_STATE(5504)] = 163309, - [SMALL_STATE(5505)] = 163320, - [SMALL_STATE(5506)] = 163329, - [SMALL_STATE(5507)] = 163340, - [SMALL_STATE(5508)] = 163351, - [SMALL_STATE(5509)] = 163360, - [SMALL_STATE(5510)] = 163371, - [SMALL_STATE(5511)] = 163382, - [SMALL_STATE(5512)] = 163393, - [SMALL_STATE(5513)] = 163404, - [SMALL_STATE(5514)] = 163415, - [SMALL_STATE(5515)] = 163424, - [SMALL_STATE(5516)] = 163435, - [SMALL_STATE(5517)] = 163446, - [SMALL_STATE(5518)] = 163457, - [SMALL_STATE(5519)] = 163468, - [SMALL_STATE(5520)] = 163479, - [SMALL_STATE(5521)] = 163488, - [SMALL_STATE(5522)] = 163499, - [SMALL_STATE(5523)] = 163510, - [SMALL_STATE(5524)] = 163521, - [SMALL_STATE(5525)] = 163532, - [SMALL_STATE(5526)] = 163543, - [SMALL_STATE(5527)] = 163554, - [SMALL_STATE(5528)] = 163565, - [SMALL_STATE(5529)] = 163576, - [SMALL_STATE(5530)] = 163587, - [SMALL_STATE(5531)] = 163598, - [SMALL_STATE(5532)] = 163609, - [SMALL_STATE(5533)] = 163620, - [SMALL_STATE(5534)] = 163629, - [SMALL_STATE(5535)] = 163640, - [SMALL_STATE(5536)] = 163649, - [SMALL_STATE(5537)] = 163660, - [SMALL_STATE(5538)] = 163669, - [SMALL_STATE(5539)] = 163680, - [SMALL_STATE(5540)] = 163691, - [SMALL_STATE(5541)] = 163702, - [SMALL_STATE(5542)] = 163711, - [SMALL_STATE(5543)] = 163722, - [SMALL_STATE(5544)] = 163733, - [SMALL_STATE(5545)] = 163744, - [SMALL_STATE(5546)] = 163755, - [SMALL_STATE(5547)] = 163766, - [SMALL_STATE(5548)] = 163775, - [SMALL_STATE(5549)] = 163786, - [SMALL_STATE(5550)] = 163797, - [SMALL_STATE(5551)] = 163808, - [SMALL_STATE(5552)] = 163819, - [SMALL_STATE(5553)] = 163830, - [SMALL_STATE(5554)] = 163839, - [SMALL_STATE(5555)] = 163850, - [SMALL_STATE(5556)] = 163861, - [SMALL_STATE(5557)] = 163872, - [SMALL_STATE(5558)] = 163883, - [SMALL_STATE(5559)] = 163894, - [SMALL_STATE(5560)] = 163905, - [SMALL_STATE(5561)] = 163916, - [SMALL_STATE(5562)] = 163927, - [SMALL_STATE(5563)] = 163936, - [SMALL_STATE(5564)] = 163947, - [SMALL_STATE(5565)] = 163958, - [SMALL_STATE(5566)] = 163967, - [SMALL_STATE(5567)] = 163978, - [SMALL_STATE(5568)] = 163989, - [SMALL_STATE(5569)] = 164000, - [SMALL_STATE(5570)] = 164011, - [SMALL_STATE(5571)] = 164022, - [SMALL_STATE(5572)] = 164033, - [SMALL_STATE(5573)] = 164044, - [SMALL_STATE(5574)] = 164055, - [SMALL_STATE(5575)] = 164063, - [SMALL_STATE(5576)] = 164071, - [SMALL_STATE(5577)] = 164079, - [SMALL_STATE(5578)] = 164087, - [SMALL_STATE(5579)] = 164095, - [SMALL_STATE(5580)] = 164103, - [SMALL_STATE(5581)] = 164111, - [SMALL_STATE(5582)] = 164119, - [SMALL_STATE(5583)] = 164127, - [SMALL_STATE(5584)] = 164135, - [SMALL_STATE(5585)] = 164143, - [SMALL_STATE(5586)] = 164151, - [SMALL_STATE(5587)] = 164159, - [SMALL_STATE(5588)] = 164167, - [SMALL_STATE(5589)] = 164175, - [SMALL_STATE(5590)] = 164183, - [SMALL_STATE(5591)] = 164191, - [SMALL_STATE(5592)] = 164199, - [SMALL_STATE(5593)] = 164207, - [SMALL_STATE(5594)] = 164215, - [SMALL_STATE(5595)] = 164223, - [SMALL_STATE(5596)] = 164231, - [SMALL_STATE(5597)] = 164239, - [SMALL_STATE(5598)] = 164247, - [SMALL_STATE(5599)] = 164255, - [SMALL_STATE(5600)] = 164263, - [SMALL_STATE(5601)] = 164271, - [SMALL_STATE(5602)] = 164279, - [SMALL_STATE(5603)] = 164287, - [SMALL_STATE(5604)] = 164295, - [SMALL_STATE(5605)] = 164303, - [SMALL_STATE(5606)] = 164311, - [SMALL_STATE(5607)] = 164319, - [SMALL_STATE(5608)] = 164327, - [SMALL_STATE(5609)] = 164335, - [SMALL_STATE(5610)] = 164343, - [SMALL_STATE(5611)] = 164351, - [SMALL_STATE(5612)] = 164359, - [SMALL_STATE(5613)] = 164367, - [SMALL_STATE(5614)] = 164375, - [SMALL_STATE(5615)] = 164383, - [SMALL_STATE(5616)] = 164391, - [SMALL_STATE(5617)] = 164399, - [SMALL_STATE(5618)] = 164407, - [SMALL_STATE(5619)] = 164415, - [SMALL_STATE(5620)] = 164423, - [SMALL_STATE(5621)] = 164431, - [SMALL_STATE(5622)] = 164439, - [SMALL_STATE(5623)] = 164447, - [SMALL_STATE(5624)] = 164455, - [SMALL_STATE(5625)] = 164463, - [SMALL_STATE(5626)] = 164471, - [SMALL_STATE(5627)] = 164479, - [SMALL_STATE(5628)] = 164489, - [SMALL_STATE(5629)] = 164497, - [SMALL_STATE(5630)] = 164505, - [SMALL_STATE(5631)] = 164513, - [SMALL_STATE(5632)] = 164521, - [SMALL_STATE(5633)] = 164529, - [SMALL_STATE(5634)] = 164537, - [SMALL_STATE(5635)] = 164545, - [SMALL_STATE(5636)] = 164553, - [SMALL_STATE(5637)] = 164561, - [SMALL_STATE(5638)] = 164569, - [SMALL_STATE(5639)] = 164577, - [SMALL_STATE(5640)] = 164585, - [SMALL_STATE(5641)] = 164593, - [SMALL_STATE(5642)] = 164601, - [SMALL_STATE(5643)] = 164609, - [SMALL_STATE(5644)] = 164617, - [SMALL_STATE(5645)] = 164625, - [SMALL_STATE(5646)] = 164633, - [SMALL_STATE(5647)] = 164641, - [SMALL_STATE(5648)] = 164649, - [SMALL_STATE(5649)] = 164657, - [SMALL_STATE(5650)] = 164665, - [SMALL_STATE(5651)] = 164673, - [SMALL_STATE(5652)] = 164681, - [SMALL_STATE(5653)] = 164689, - [SMALL_STATE(5654)] = 164697, - [SMALL_STATE(5655)] = 164705, - [SMALL_STATE(5656)] = 164713, - [SMALL_STATE(5657)] = 164721, - [SMALL_STATE(5658)] = 164729, - [SMALL_STATE(5659)] = 164737, - [SMALL_STATE(5660)] = 164745, - [SMALL_STATE(5661)] = 164753, - [SMALL_STATE(5662)] = 164761, - [SMALL_STATE(5663)] = 164769, - [SMALL_STATE(5664)] = 164777, - [SMALL_STATE(5665)] = 164785, - [SMALL_STATE(5666)] = 164793, - [SMALL_STATE(5667)] = 164801, - [SMALL_STATE(5668)] = 164809, - [SMALL_STATE(5669)] = 164817, - [SMALL_STATE(5670)] = 164825, - [SMALL_STATE(5671)] = 164833, - [SMALL_STATE(5672)] = 164841, - [SMALL_STATE(5673)] = 164849, - [SMALL_STATE(5674)] = 164857, - [SMALL_STATE(5675)] = 164865, - [SMALL_STATE(5676)] = 164873, - [SMALL_STATE(5677)] = 164881, - [SMALL_STATE(5678)] = 164889, - [SMALL_STATE(5679)] = 164897, - [SMALL_STATE(5680)] = 164905, - [SMALL_STATE(5681)] = 164913, - [SMALL_STATE(5682)] = 164921, - [SMALL_STATE(5683)] = 164929, - [SMALL_STATE(5684)] = 164937, - [SMALL_STATE(5685)] = 164945, - [SMALL_STATE(5686)] = 164953, - [SMALL_STATE(5687)] = 164961, - [SMALL_STATE(5688)] = 164969, - [SMALL_STATE(5689)] = 164977, - [SMALL_STATE(5690)] = 164985, - [SMALL_STATE(5691)] = 164993, - [SMALL_STATE(5692)] = 165001, - [SMALL_STATE(5693)] = 165009, - [SMALL_STATE(5694)] = 165017, - [SMALL_STATE(5695)] = 165025, - [SMALL_STATE(5696)] = 165033, - [SMALL_STATE(5697)] = 165041, - [SMALL_STATE(5698)] = 165049, - [SMALL_STATE(5699)] = 165057, - [SMALL_STATE(5700)] = 165065, - [SMALL_STATE(5701)] = 165073, - [SMALL_STATE(5702)] = 165081, - [SMALL_STATE(5703)] = 165089, - [SMALL_STATE(5704)] = 165097, - [SMALL_STATE(5705)] = 165105, - [SMALL_STATE(5706)] = 165113, - [SMALL_STATE(5707)] = 165121, - [SMALL_STATE(5708)] = 165129, - [SMALL_STATE(5709)] = 165137, - [SMALL_STATE(5710)] = 165145, - [SMALL_STATE(5711)] = 165153, - [SMALL_STATE(5712)] = 165161, - [SMALL_STATE(5713)] = 165169, - [SMALL_STATE(5714)] = 165177, - [SMALL_STATE(5715)] = 165185, - [SMALL_STATE(5716)] = 165193, - [SMALL_STATE(5717)] = 165201, - [SMALL_STATE(5718)] = 165209, - [SMALL_STATE(5719)] = 165217, - [SMALL_STATE(5720)] = 165225, - [SMALL_STATE(5721)] = 165233, - [SMALL_STATE(5722)] = 165241, - [SMALL_STATE(5723)] = 165249, - [SMALL_STATE(5724)] = 165257, - [SMALL_STATE(5725)] = 165265, - [SMALL_STATE(5726)] = 165273, - [SMALL_STATE(5727)] = 165281, - [SMALL_STATE(5728)] = 165289, - [SMALL_STATE(5729)] = 165297, - [SMALL_STATE(5730)] = 165307, - [SMALL_STATE(5731)] = 165315, - [SMALL_STATE(5732)] = 165323, - [SMALL_STATE(5733)] = 165331, - [SMALL_STATE(5734)] = 165339, - [SMALL_STATE(5735)] = 165347, - [SMALL_STATE(5736)] = 165355, - [SMALL_STATE(5737)] = 165363, - [SMALL_STATE(5738)] = 165371, - [SMALL_STATE(5739)] = 165379, - [SMALL_STATE(5740)] = 165387, - [SMALL_STATE(5741)] = 165395, - [SMALL_STATE(5742)] = 165403, - [SMALL_STATE(5743)] = 165411, - [SMALL_STATE(5744)] = 165419, - [SMALL_STATE(5745)] = 165427, - [SMALL_STATE(5746)] = 165435, - [SMALL_STATE(5747)] = 165443, - [SMALL_STATE(5748)] = 165451, - [SMALL_STATE(5749)] = 165459, - [SMALL_STATE(5750)] = 165467, - [SMALL_STATE(5751)] = 165477, - [SMALL_STATE(5752)] = 165485, - [SMALL_STATE(5753)] = 165493, - [SMALL_STATE(5754)] = 165501, - [SMALL_STATE(5755)] = 165509, - [SMALL_STATE(5756)] = 165517, - [SMALL_STATE(5757)] = 165525, - [SMALL_STATE(5758)] = 165533, - [SMALL_STATE(5759)] = 165541, - [SMALL_STATE(5760)] = 165549, - [SMALL_STATE(5761)] = 165557, - [SMALL_STATE(5762)] = 165565, - [SMALL_STATE(5763)] = 165573, - [SMALL_STATE(5764)] = 165581, - [SMALL_STATE(5765)] = 165589, - [SMALL_STATE(5766)] = 165597, - [SMALL_STATE(5767)] = 165605, - [SMALL_STATE(5768)] = 165613, - [SMALL_STATE(5769)] = 165621, - [SMALL_STATE(5770)] = 165629, - [SMALL_STATE(5771)] = 165637, - [SMALL_STATE(5772)] = 165645, - [SMALL_STATE(5773)] = 165653, - [SMALL_STATE(5774)] = 165661, - [SMALL_STATE(5775)] = 165669, - [SMALL_STATE(5776)] = 165677, - [SMALL_STATE(5777)] = 165685, - [SMALL_STATE(5778)] = 165693, - [SMALL_STATE(5779)] = 165701, - [SMALL_STATE(5780)] = 165709, - [SMALL_STATE(5781)] = 165717, - [SMALL_STATE(5782)] = 165725, - [SMALL_STATE(5783)] = 165733, - [SMALL_STATE(5784)] = 165741, - [SMALL_STATE(5785)] = 165749, - [SMALL_STATE(5786)] = 165757, - [SMALL_STATE(5787)] = 165765, - [SMALL_STATE(5788)] = 165773, - [SMALL_STATE(5789)] = 165781, - [SMALL_STATE(5790)] = 165789, - [SMALL_STATE(5791)] = 165797, - [SMALL_STATE(5792)] = 165805, - [SMALL_STATE(5793)] = 165813, - [SMALL_STATE(5794)] = 165821, - [SMALL_STATE(5795)] = 165829, - [SMALL_STATE(5796)] = 165837, - [SMALL_STATE(5797)] = 165845, - [SMALL_STATE(5798)] = 165853, - [SMALL_STATE(5799)] = 165861, - [SMALL_STATE(5800)] = 165871, - [SMALL_STATE(5801)] = 165879, - [SMALL_STATE(5802)] = 165887, - [SMALL_STATE(5803)] = 165895, - [SMALL_STATE(5804)] = 165903, - [SMALL_STATE(5805)] = 165911, - [SMALL_STATE(5806)] = 165919, - [SMALL_STATE(5807)] = 165927, - [SMALL_STATE(5808)] = 165935, - [SMALL_STATE(5809)] = 165943, - [SMALL_STATE(5810)] = 165951, - [SMALL_STATE(5811)] = 165959, - [SMALL_STATE(5812)] = 165967, - [SMALL_STATE(5813)] = 165975, - [SMALL_STATE(5814)] = 165983, - [SMALL_STATE(5815)] = 165991, - [SMALL_STATE(5816)] = 165999, - [SMALL_STATE(5817)] = 166007, - [SMALL_STATE(5818)] = 166015, - [SMALL_STATE(5819)] = 166023, - [SMALL_STATE(5820)] = 166031, - [SMALL_STATE(5821)] = 166039, - [SMALL_STATE(5822)] = 166047, - [SMALL_STATE(5823)] = 166055, - [SMALL_STATE(5824)] = 166063, - [SMALL_STATE(5825)] = 166071, - [SMALL_STATE(5826)] = 166079, - [SMALL_STATE(5827)] = 166087, - [SMALL_STATE(5828)] = 166095, - [SMALL_STATE(5829)] = 166103, - [SMALL_STATE(5830)] = 166111, - [SMALL_STATE(5831)] = 166119, - [SMALL_STATE(5832)] = 166127, - [SMALL_STATE(5833)] = 166135, - [SMALL_STATE(5834)] = 166143, - [SMALL_STATE(5835)] = 166151, - [SMALL_STATE(5836)] = 166159, - [SMALL_STATE(5837)] = 166167, - [SMALL_STATE(5838)] = 166175, - [SMALL_STATE(5839)] = 166183, - [SMALL_STATE(5840)] = 166191, - [SMALL_STATE(5841)] = 166199, - [SMALL_STATE(5842)] = 166207, - [SMALL_STATE(5843)] = 166215, - [SMALL_STATE(5844)] = 166223, - [SMALL_STATE(5845)] = 166231, - [SMALL_STATE(5846)] = 166239, - [SMALL_STATE(5847)] = 166247, - [SMALL_STATE(5848)] = 166255, - [SMALL_STATE(5849)] = 166263, - [SMALL_STATE(5850)] = 166271, - [SMALL_STATE(5851)] = 166279, - [SMALL_STATE(5852)] = 166287, - [SMALL_STATE(5853)] = 166295, - [SMALL_STATE(5854)] = 166303, - [SMALL_STATE(5855)] = 166311, - [SMALL_STATE(5856)] = 166319, - [SMALL_STATE(5857)] = 166327, - [SMALL_STATE(5858)] = 166335, - [SMALL_STATE(5859)] = 166343, - [SMALL_STATE(5860)] = 166351, - [SMALL_STATE(5861)] = 166359, - [SMALL_STATE(5862)] = 166367, - [SMALL_STATE(5863)] = 166375, - [SMALL_STATE(5864)] = 166383, - [SMALL_STATE(5865)] = 166391, - [SMALL_STATE(5866)] = 166399, - [SMALL_STATE(5867)] = 166409, - [SMALL_STATE(5868)] = 166417, - [SMALL_STATE(5869)] = 166425, - [SMALL_STATE(5870)] = 166433, - [SMALL_STATE(5871)] = 166441, - [SMALL_STATE(5872)] = 166449, - [SMALL_STATE(5873)] = 166457, - [SMALL_STATE(5874)] = 166465, - [SMALL_STATE(5875)] = 166475, - [SMALL_STATE(5876)] = 166483, - [SMALL_STATE(5877)] = 166491, - [SMALL_STATE(5878)] = 166499, - [SMALL_STATE(5879)] = 166507, - [SMALL_STATE(5880)] = 166515, - [SMALL_STATE(5881)] = 166523, - [SMALL_STATE(5882)] = 166531, - [SMALL_STATE(5883)] = 166539, - [SMALL_STATE(5884)] = 166547, - [SMALL_STATE(5885)] = 166555, - [SMALL_STATE(5886)] = 166563, - [SMALL_STATE(5887)] = 166571, - [SMALL_STATE(5888)] = 166579, - [SMALL_STATE(5889)] = 166587, - [SMALL_STATE(5890)] = 166595, - [SMALL_STATE(5891)] = 166603, - [SMALL_STATE(5892)] = 166611, - [SMALL_STATE(5893)] = 166619, - [SMALL_STATE(5894)] = 166627, - [SMALL_STATE(5895)] = 166635, - [SMALL_STATE(5896)] = 166643, - [SMALL_STATE(5897)] = 166651, - [SMALL_STATE(5898)] = 166659, - [SMALL_STATE(5899)] = 166667, - [SMALL_STATE(5900)] = 166675, - [SMALL_STATE(5901)] = 166683, - [SMALL_STATE(5902)] = 166691, - [SMALL_STATE(5903)] = 166699, - [SMALL_STATE(5904)] = 166707, - [SMALL_STATE(5905)] = 166715, - [SMALL_STATE(5906)] = 166723, - [SMALL_STATE(5907)] = 166731, - [SMALL_STATE(5908)] = 166739, - [SMALL_STATE(5909)] = 166747, - [SMALL_STATE(5910)] = 166755, - [SMALL_STATE(5911)] = 166763, - [SMALL_STATE(5912)] = 166771, - [SMALL_STATE(5913)] = 166779, - [SMALL_STATE(5914)] = 166787, - [SMALL_STATE(5915)] = 166797, - [SMALL_STATE(5916)] = 166805, - [SMALL_STATE(5917)] = 166813, - [SMALL_STATE(5918)] = 166821, - [SMALL_STATE(5919)] = 166829, - [SMALL_STATE(5920)] = 166837, - [SMALL_STATE(5921)] = 166845, - [SMALL_STATE(5922)] = 166853, - [SMALL_STATE(5923)] = 166861, - [SMALL_STATE(5924)] = 166869, - [SMALL_STATE(5925)] = 166877, - [SMALL_STATE(5926)] = 166885, - [SMALL_STATE(5927)] = 166893, - [SMALL_STATE(5928)] = 166901, - [SMALL_STATE(5929)] = 166909, - [SMALL_STATE(5930)] = 166917, - [SMALL_STATE(5931)] = 166925, - [SMALL_STATE(5932)] = 166933, - [SMALL_STATE(5933)] = 166941, - [SMALL_STATE(5934)] = 166949, - [SMALL_STATE(5935)] = 166957, - [SMALL_STATE(5936)] = 166965, - [SMALL_STATE(5937)] = 166973, - [SMALL_STATE(5938)] = 166981, - [SMALL_STATE(5939)] = 166989, - [SMALL_STATE(5940)] = 166997, - [SMALL_STATE(5941)] = 167005, - [SMALL_STATE(5942)] = 167013, - [SMALL_STATE(5943)] = 167021, - [SMALL_STATE(5944)] = 167029, - [SMALL_STATE(5945)] = 167037, - [SMALL_STATE(5946)] = 167045, - [SMALL_STATE(5947)] = 167053, - [SMALL_STATE(5948)] = 167061, - [SMALL_STATE(5949)] = 167069, - [SMALL_STATE(5950)] = 167077, - [SMALL_STATE(5951)] = 167085, - [SMALL_STATE(5952)] = 167093, - [SMALL_STATE(5953)] = 167101, - [SMALL_STATE(5954)] = 167109, - [SMALL_STATE(5955)] = 167117, - [SMALL_STATE(5956)] = 167125, - [SMALL_STATE(5957)] = 167133, - [SMALL_STATE(5958)] = 167141, - [SMALL_STATE(5959)] = 167151, - [SMALL_STATE(5960)] = 167159, - [SMALL_STATE(5961)] = 167167, - [SMALL_STATE(5962)] = 167175, - [SMALL_STATE(5963)] = 167183, - [SMALL_STATE(5964)] = 167191, - [SMALL_STATE(5965)] = 167199, - [SMALL_STATE(5966)] = 167207, - [SMALL_STATE(5967)] = 167215, - [SMALL_STATE(5968)] = 167223, - [SMALL_STATE(5969)] = 167231, - [SMALL_STATE(5970)] = 167239, - [SMALL_STATE(5971)] = 167247, - [SMALL_STATE(5972)] = 167257, - [SMALL_STATE(5973)] = 167265, - [SMALL_STATE(5974)] = 167273, - [SMALL_STATE(5975)] = 167281, - [SMALL_STATE(5976)] = 167289, - [SMALL_STATE(5977)] = 167299, - [SMALL_STATE(5978)] = 167307, - [SMALL_STATE(5979)] = 167315, - [SMALL_STATE(5980)] = 167323, - [SMALL_STATE(5981)] = 167331, - [SMALL_STATE(5982)] = 167339, - [SMALL_STATE(5983)] = 167347, - [SMALL_STATE(5984)] = 167355, - [SMALL_STATE(5985)] = 167363, + [SMALL_STATE(1708)] = 39479, + [SMALL_STATE(1709)] = 39533, + [SMALL_STATE(1710)] = 39587, + [SMALL_STATE(1711)] = 39641, + [SMALL_STATE(1712)] = 39695, + [SMALL_STATE(1713)] = 39805, + [SMALL_STATE(1714)] = 39859, + [SMALL_STATE(1715)] = 39913, + [SMALL_STATE(1716)] = 39967, + [SMALL_STATE(1717)] = 40021, + [SMALL_STATE(1718)] = 40075, + [SMALL_STATE(1719)] = 40129, + [SMALL_STATE(1720)] = 40239, + [SMALL_STATE(1721)] = 40317, + [SMALL_STATE(1722)] = 40405, + [SMALL_STATE(1723)] = 40507, + [SMALL_STATE(1724)] = 40561, + [SMALL_STATE(1725)] = 40671, + [SMALL_STATE(1726)] = 40725, + [SMALL_STATE(1727)] = 40779, + [SMALL_STATE(1728)] = 40889, + [SMALL_STATE(1729)] = 40943, + [SMALL_STATE(1730)] = 40997, + [SMALL_STATE(1731)] = 41051, + [SMALL_STATE(1732)] = 41105, + [SMALL_STATE(1733)] = 41214, + [SMALL_STATE(1734)] = 41293, + [SMALL_STATE(1735)] = 41350, + [SMALL_STATE(1736)] = 41429, + [SMALL_STATE(1737)] = 41482, + [SMALL_STATE(1738)] = 41545, + [SMALL_STATE(1739)] = 41600, + [SMALL_STATE(1740)] = 41663, + [SMALL_STATE(1741)] = 41716, + [SMALL_STATE(1742)] = 41779, + [SMALL_STATE(1743)] = 41856, + [SMALL_STATE(1744)] = 41933, + [SMALL_STATE(1745)] = 42010, + [SMALL_STATE(1746)] = 42087, + [SMALL_STATE(1747)] = 42140, + [SMALL_STATE(1748)] = 42219, + [SMALL_STATE(1749)] = 42298, + [SMALL_STATE(1750)] = 42351, + [SMALL_STATE(1751)] = 42430, + [SMALL_STATE(1752)] = 42483, + [SMALL_STATE(1753)] = 42544, + [SMALL_STATE(1754)] = 42621, + [SMALL_STATE(1755)] = 42676, + [SMALL_STATE(1756)] = 42733, + [SMALL_STATE(1757)] = 42812, + [SMALL_STATE(1758)] = 42891, + [SMALL_STATE(1759)] = 42972, + [SMALL_STATE(1760)] = 43033, + [SMALL_STATE(1761)] = 43090, + [SMALL_STATE(1762)] = 43143, + [SMALL_STATE(1763)] = 43251, + [SMALL_STATE(1764)] = 43345, + [SMALL_STATE(1765)] = 43417, + [SMALL_STATE(1766)] = 43473, + [SMALL_STATE(1767)] = 43533, + [SMALL_STATE(1768)] = 43649, + [SMALL_STATE(1769)] = 43735, + [SMALL_STATE(1770)] = 43811, + [SMALL_STATE(1771)] = 43889, + [SMALL_STATE(1772)] = 43945, + [SMALL_STATE(1773)] = 44053, + [SMALL_STATE(1774)] = 44107, + [SMALL_STATE(1775)] = 44177, + [SMALL_STATE(1776)] = 44253, + [SMALL_STATE(1777)] = 44313, + [SMALL_STATE(1778)] = 44421, + [SMALL_STATE(1779)] = 44529, + [SMALL_STATE(1780)] = 44583, + [SMALL_STATE(1781)] = 44699, + [SMALL_STATE(1782)] = 44777, + [SMALL_STATE(1783)] = 44833, + [SMALL_STATE(1784)] = 44887, + [SMALL_STATE(1785)] = 44959, + [SMALL_STATE(1786)] = 45067, + [SMALL_STATE(1787)] = 45135, + [SMALL_STATE(1788)] = 45209, + [SMALL_STATE(1789)] = 45263, + [SMALL_STATE(1790)] = 45323, + [SMALL_STATE(1791)] = 45393, + [SMALL_STATE(1792)] = 45447, + [SMALL_STATE(1793)] = 45555, + [SMALL_STATE(1794)] = 45631, + [SMALL_STATE(1795)] = 45739, + [SMALL_STATE(1796)] = 45847, + [SMALL_STATE(1797)] = 45909, + [SMALL_STATE(1798)] = 45961, + [SMALL_STATE(1799)] = 46077, + [SMALL_STATE(1800)] = 46145, + [SMALL_STATE(1801)] = 46209, + [SMALL_STATE(1802)] = 46281, + [SMALL_STATE(1803)] = 46389, + [SMALL_STATE(1804)] = 46471, + [SMALL_STATE(1805)] = 46567, + [SMALL_STATE(1806)] = 46639, + [SMALL_STATE(1807)] = 46737, + [SMALL_STATE(1808)] = 46837, + [SMALL_STATE(1809)] = 46895, + [SMALL_STATE(1810)] = 46953, + [SMALL_STATE(1811)] = 47015, + [SMALL_STATE(1812)] = 47123, + [SMALL_STATE(1813)] = 47181, + [SMALL_STATE(1814)] = 47289, + [SMALL_STATE(1815)] = 47349, + [SMALL_STATE(1816)] = 47457, + [SMALL_STATE(1817)] = 47565, + [SMALL_STATE(1818)] = 47625, + [SMALL_STATE(1819)] = 47733, + [SMALL_STATE(1820)] = 47787, + [SMALL_STATE(1821)] = 47895, + [SMALL_STATE(1822)] = 47969, + [SMALL_STATE(1823)] = 48077, + [SMALL_STATE(1824)] = 48155, + [SMALL_STATE(1825)] = 48255, + [SMALL_STATE(1826)] = 48345, + [SMALL_STATE(1827)] = 48397, + [SMALL_STATE(1828)] = 48453, + [SMALL_STATE(1829)] = 48505, + [SMALL_STATE(1830)] = 48613, + [SMALL_STATE(1831)] = 48721, + [SMALL_STATE(1832)] = 48777, + [SMALL_STATE(1833)] = 48885, + [SMALL_STATE(1834)] = 48943, + [SMALL_STATE(1835)] = 48999, + [SMALL_STATE(1836)] = 49053, + [SMALL_STATE(1837)] = 49161, + [SMALL_STATE(1838)] = 49269, + [SMALL_STATE(1839)] = 49325, + [SMALL_STATE(1840)] = 49433, + [SMALL_STATE(1841)] = 49485, + [SMALL_STATE(1842)] = 49541, + [SMALL_STATE(1843)] = 49649, + [SMALL_STATE(1844)] = 49705, + [SMALL_STATE(1845)] = 49797, + [SMALL_STATE(1846)] = 49869, + [SMALL_STATE(1847)] = 49977, + [SMALL_STATE(1848)] = 50085, + [SMALL_STATE(1849)] = 50167, + [SMALL_STATE(1850)] = 50225, + [SMALL_STATE(1851)] = 50281, + [SMALL_STATE(1852)] = 50389, + [SMALL_STATE(1853)] = 50461, + [SMALL_STATE(1854)] = 50557, + [SMALL_STATE(1855)] = 50655, + [SMALL_STATE(1856)] = 50733, + [SMALL_STATE(1857)] = 50823, + [SMALL_STATE(1858)] = 50875, + [SMALL_STATE(1859)] = 50991, + [SMALL_STATE(1860)] = 51063, + [SMALL_STATE(1861)] = 51171, + [SMALL_STATE(1862)] = 51263, + [SMALL_STATE(1863)] = 51357, + [SMALL_STATE(1864)] = 51433, + [SMALL_STATE(1865)] = 51511, + [SMALL_STATE(1866)] = 51619, + [SMALL_STATE(1867)] = 51705, + [SMALL_STATE(1868)] = 51756, + [SMALL_STATE(1869)] = 51825, + [SMALL_STATE(1870)] = 51878, + [SMALL_STATE(1871)] = 51935, + [SMALL_STATE(1872)] = 51990, + [SMALL_STATE(1873)] = 52073, + [SMALL_STATE(1874)] = 52184, + [SMALL_STATE(1875)] = 52235, + [SMALL_STATE(1876)] = 52286, + [SMALL_STATE(1877)] = 52337, + [SMALL_STATE(1878)] = 52388, + [SMALL_STATE(1879)] = 52441, + [SMALL_STATE(1880)] = 52492, + [SMALL_STATE(1881)] = 52545, + [SMALL_STATE(1882)] = 52596, + [SMALL_STATE(1883)] = 52649, + [SMALL_STATE(1884)] = 52706, + [SMALL_STATE(1885)] = 52761, + [SMALL_STATE(1886)] = 52818, + [SMALL_STATE(1887)] = 52875, + [SMALL_STATE(1888)] = 52934, + [SMALL_STATE(1889)] = 52991, + [SMALL_STATE(1890)] = 53042, + [SMALL_STATE(1891)] = 53095, + [SMALL_STATE(1892)] = 53148, + [SMALL_STATE(1893)] = 53199, + [SMALL_STATE(1894)] = 53262, + [SMALL_STATE(1895)] = 53325, + [SMALL_STATE(1896)] = 53376, + [SMALL_STATE(1897)] = 53427, + [SMALL_STATE(1898)] = 53480, + [SMALL_STATE(1899)] = 53531, + [SMALL_STATE(1900)] = 53582, + [SMALL_STATE(1901)] = 53639, + [SMALL_STATE(1902)] = 53696, + [SMALL_STATE(1903)] = 53749, + [SMALL_STATE(1904)] = 53802, + [SMALL_STATE(1905)] = 53853, + [SMALL_STATE(1906)] = 53904, + [SMALL_STATE(1907)] = 53955, + [SMALL_STATE(1908)] = 54006, + [SMALL_STATE(1909)] = 54117, + [SMALL_STATE(1910)] = 54228, + [SMALL_STATE(1911)] = 54339, + [SMALL_STATE(1912)] = 54450, + [SMALL_STATE(1913)] = 54501, + [SMALL_STATE(1914)] = 54552, + [SMALL_STATE(1915)] = 54603, + [SMALL_STATE(1916)] = 54654, + [SMALL_STATE(1917)] = 54705, + [SMALL_STATE(1918)] = 54756, + [SMALL_STATE(1919)] = 54807, + [SMALL_STATE(1920)] = 54858, + [SMALL_STATE(1921)] = 54909, + [SMALL_STATE(1922)] = 54960, + [SMALL_STATE(1923)] = 55013, + [SMALL_STATE(1924)] = 55066, + [SMALL_STATE(1925)] = 55117, + [SMALL_STATE(1926)] = 55174, + [SMALL_STATE(1927)] = 55225, + [SMALL_STATE(1928)] = 55278, + [SMALL_STATE(1929)] = 55329, + [SMALL_STATE(1930)] = 55380, + [SMALL_STATE(1931)] = 55431, + [SMALL_STATE(1932)] = 55482, + [SMALL_STATE(1933)] = 55533, + [SMALL_STATE(1934)] = 55584, + [SMALL_STATE(1935)] = 55635, + [SMALL_STATE(1936)] = 55686, + [SMALL_STATE(1937)] = 55737, + [SMALL_STATE(1938)] = 55788, + [SMALL_STATE(1939)] = 55839, + [SMALL_STATE(1940)] = 55890, + [SMALL_STATE(1941)] = 55941, + [SMALL_STATE(1942)] = 55992, + [SMALL_STATE(1943)] = 56043, + [SMALL_STATE(1944)] = 56094, + [SMALL_STATE(1945)] = 56145, + [SMALL_STATE(1946)] = 56196, + [SMALL_STATE(1947)] = 56247, + [SMALL_STATE(1948)] = 56304, + [SMALL_STATE(1949)] = 56355, + [SMALL_STATE(1950)] = 56406, + [SMALL_STATE(1951)] = 56457, + [SMALL_STATE(1952)] = 56508, + [SMALL_STATE(1953)] = 56559, + [SMALL_STATE(1954)] = 56610, + [SMALL_STATE(1955)] = 56661, + [SMALL_STATE(1956)] = 56712, + [SMALL_STATE(1957)] = 56769, + [SMALL_STATE(1958)] = 56820, + [SMALL_STATE(1959)] = 56871, + [SMALL_STATE(1960)] = 56922, + [SMALL_STATE(1961)] = 56973, + [SMALL_STATE(1962)] = 57024, + [SMALL_STATE(1963)] = 57075, + [SMALL_STATE(1964)] = 57126, + [SMALL_STATE(1965)] = 57177, + [SMALL_STATE(1966)] = 57228, + [SMALL_STATE(1967)] = 57279, + [SMALL_STATE(1968)] = 57330, + [SMALL_STATE(1969)] = 57381, + [SMALL_STATE(1970)] = 57432, + [SMALL_STATE(1971)] = 57483, + [SMALL_STATE(1972)] = 57534, + [SMALL_STATE(1973)] = 57585, + [SMALL_STATE(1974)] = 57636, + [SMALL_STATE(1975)] = 57687, + [SMALL_STATE(1976)] = 57738, + [SMALL_STATE(1977)] = 57789, + [SMALL_STATE(1978)] = 57840, + [SMALL_STATE(1979)] = 57891, + [SMALL_STATE(1980)] = 57958, + [SMALL_STATE(1981)] = 58009, + [SMALL_STATE(1982)] = 58060, + [SMALL_STATE(1983)] = 58111, + [SMALL_STATE(1984)] = 58162, + [SMALL_STATE(1985)] = 58219, + [SMALL_STATE(1986)] = 58274, + [SMALL_STATE(1987)] = 58357, + [SMALL_STATE(1988)] = 58412, + [SMALL_STATE(1989)] = 58469, + [SMALL_STATE(1990)] = 58578, + [SMALL_STATE(1991)] = 58641, + [SMALL_STATE(1992)] = 58704, + [SMALL_STATE(1993)] = 58755, + [SMALL_STATE(1994)] = 58812, + [SMALL_STATE(1995)] = 58869, + [SMALL_STATE(1996)] = 58942, + [SMALL_STATE(1997)] = 59025, + [SMALL_STATE(1998)] = 59082, + [SMALL_STATE(1999)] = 59155, + [SMALL_STATE(2000)] = 59224, + [SMALL_STATE(2001)] = 59297, + [SMALL_STATE(2002)] = 59366, + [SMALL_STATE(2003)] = 59425, + [SMALL_STATE(2004)] = 59480, + [SMALL_STATE(2005)] = 59537, + [SMALL_STATE(2006)] = 59610, + [SMALL_STATE(2007)] = 59673, + [SMALL_STATE(2008)] = 59736, + [SMALL_STATE(2009)] = 59789, + [SMALL_STATE(2010)] = 59872, + [SMALL_STATE(2011)] = 59935, + [SMALL_STATE(2012)] = 59998, + [SMALL_STATE(2013)] = 60051, + [SMALL_STATE(2014)] = 60104, + [SMALL_STATE(2015)] = 60187, + [SMALL_STATE(2016)] = 60252, + [SMALL_STATE(2017)] = 60317, + [SMALL_STATE(2018)] = 60374, + [SMALL_STATE(2019)] = 60431, + [SMALL_STATE(2020)] = 60488, + [SMALL_STATE(2021)] = 60541, + [SMALL_STATE(2022)] = 60600, + [SMALL_STATE(2023)] = 60673, + [SMALL_STATE(2024)] = 60728, + [SMALL_STATE(2025)] = 60785, + [SMALL_STATE(2026)] = 60838, + [SMALL_STATE(2027)] = 60945, + [SMALL_STATE(2028)] = 60998, + [SMALL_STATE(2029)] = 61081, + [SMALL_STATE(2030)] = 61154, + [SMALL_STATE(2031)] = 61223, + [SMALL_STATE(2032)] = 61296, + [SMALL_STATE(2033)] = 61359, + [SMALL_STATE(2034)] = 61418, + [SMALL_STATE(2035)] = 61487, + [SMALL_STATE(2036)] = 61558, + [SMALL_STATE(2037)] = 61631, + [SMALL_STATE(2038)] = 61684, + [SMALL_STATE(2039)] = 61795, + [SMALL_STATE(2040)] = 61906, + [SMALL_STATE(2041)] = 61959, + [SMALL_STATE(2042)] = 62066, + [SMALL_STATE(2043)] = 62173, + [SMALL_STATE(2044)] = 62280, + [SMALL_STATE(2045)] = 62387, + [SMALL_STATE(2046)] = 62494, + [SMALL_STATE(2047)] = 62575, + [SMALL_STATE(2048)] = 62646, + [SMALL_STATE(2049)] = 62741, + [SMALL_STATE(2050)] = 62838, + [SMALL_STATE(2051)] = 62915, + [SMALL_STATE(2052)] = 63004, + [SMALL_STATE(2053)] = 63095, + [SMALL_STATE(2054)] = 63188, + [SMALL_STATE(2055)] = 63263, + [SMALL_STATE(2056)] = 63340, + [SMALL_STATE(2057)] = 63425, + [SMALL_STATE(2058)] = 63524, + [SMALL_STATE(2059)] = 63631, + [SMALL_STATE(2060)] = 63738, + [SMALL_STATE(2061)] = 63845, + [SMALL_STATE(2062)] = 63952, + [SMALL_STATE(2063)] = 64059, + [SMALL_STATE(2064)] = 64166, + [SMALL_STATE(2065)] = 64273, + [SMALL_STATE(2066)] = 64380, + [SMALL_STATE(2067)] = 64489, + [SMALL_STATE(2068)] = 64558, + [SMALL_STATE(2069)] = 64633, + [SMALL_STATE(2070)] = 64740, + [SMALL_STATE(2071)] = 64791, + [SMALL_STATE(2072)] = 64841, + [SMALL_STATE(2073)] = 64893, + [SMALL_STATE(2074)] = 64943, + [SMALL_STATE(2075)] = 65001, + [SMALL_STATE(2076)] = 65111, + [SMALL_STATE(2077)] = 65161, + [SMALL_STATE(2078)] = 65211, + [SMALL_STATE(2079)] = 65321, + [SMALL_STATE(2080)] = 65373, + [SMALL_STATE(2081)] = 65425, + [SMALL_STATE(2082)] = 65485, + [SMALL_STATE(2083)] = 65539, + [SMALL_STATE(2084)] = 65589, + [SMALL_STATE(2085)] = 65643, + [SMALL_STATE(2086)] = 65701, + [SMALL_STATE(2087)] = 65755, + [SMALL_STATE(2088)] = 65809, + [SMALL_STATE(2089)] = 65867, + [SMALL_STATE(2090)] = 65921, + [SMALL_STATE(2091)] = 65973, + [SMALL_STATE(2092)] = 66025, + [SMALL_STATE(2093)] = 66079, + [SMALL_STATE(2094)] = 66133, + [SMALL_STATE(2095)] = 66187, + [SMALL_STATE(2096)] = 66241, + [SMALL_STATE(2097)] = 66351, + [SMALL_STATE(2098)] = 66401, + [SMALL_STATE(2099)] = 66453, + [SMALL_STATE(2100)] = 66505, + [SMALL_STATE(2101)] = 66559, + [SMALL_STATE(2102)] = 66613, + [SMALL_STATE(2103)] = 66665, + [SMALL_STATE(2104)] = 66715, + [SMALL_STATE(2105)] = 66821, + [SMALL_STATE(2106)] = 66875, + [SMALL_STATE(2107)] = 66949, + [SMALL_STATE(2108)] = 67003, + [SMALL_STATE(2109)] = 67079, + [SMALL_STATE(2110)] = 67143, + [SMALL_STATE(2111)] = 67209, + [SMALL_STATE(2112)] = 67261, + [SMALL_STATE(2113)] = 67319, + [SMALL_STATE(2114)] = 67383, + [SMALL_STATE(2115)] = 67447, + [SMALL_STATE(2116)] = 67555, + [SMALL_STATE(2117)] = 67619, + [SMALL_STATE(2118)] = 67725, + [SMALL_STATE(2119)] = 67789, + [SMALL_STATE(2120)] = 67843, + [SMALL_STATE(2121)] = 67909, + [SMALL_STATE(2122)] = 67963, + [SMALL_STATE(2123)] = 68021, + [SMALL_STATE(2124)] = 68071, + [SMALL_STATE(2125)] = 68121, + [SMALL_STATE(2126)] = 68171, + [SMALL_STATE(2127)] = 68221, + [SMALL_STATE(2128)] = 68271, + [SMALL_STATE(2129)] = 68321, + [SMALL_STATE(2130)] = 68371, + [SMALL_STATE(2131)] = 68421, + [SMALL_STATE(2132)] = 68471, + [SMALL_STATE(2133)] = 68521, + [SMALL_STATE(2134)] = 68595, + [SMALL_STATE(2135)] = 68645, + [SMALL_STATE(2136)] = 68721, + [SMALL_STATE(2137)] = 68771, + [SMALL_STATE(2138)] = 68827, + [SMALL_STATE(2139)] = 68877, + [SMALL_STATE(2140)] = 68927, + [SMALL_STATE(2141)] = 68977, + [SMALL_STATE(2142)] = 69087, + [SMALL_STATE(2143)] = 69137, + [SMALL_STATE(2144)] = 69193, + [SMALL_STATE(2145)] = 69243, + [SMALL_STATE(2146)] = 69293, + [SMALL_STATE(2147)] = 69343, + [SMALL_STATE(2148)] = 69407, + [SMALL_STATE(2149)] = 69481, + [SMALL_STATE(2150)] = 69531, + [SMALL_STATE(2151)] = 69607, + [SMALL_STATE(2152)] = 69669, + [SMALL_STATE(2153)] = 69731, + [SMALL_STATE(2154)] = 69805, + [SMALL_STATE(2155)] = 69863, + [SMALL_STATE(2156)] = 69921, + [SMALL_STATE(2157)] = 69983, + [SMALL_STATE(2158)] = 70045, + [SMALL_STATE(2159)] = 70121, + [SMALL_STATE(2160)] = 70181, + [SMALL_STATE(2161)] = 70241, + [SMALL_STATE(2162)] = 70303, + [SMALL_STATE(2163)] = 70365, + [SMALL_STATE(2164)] = 70427, + [SMALL_STATE(2165)] = 70489, + [SMALL_STATE(2166)] = 70551, + [SMALL_STATE(2167)] = 70613, + [SMALL_STATE(2168)] = 70723, + [SMALL_STATE(2169)] = 70787, + [SMALL_STATE(2170)] = 70841, + [SMALL_STATE(2171)] = 70951, + [SMALL_STATE(2172)] = 71017, + [SMALL_STATE(2173)] = 71067, + [SMALL_STATE(2174)] = 71177, + [SMALL_STATE(2175)] = 71227, + [SMALL_STATE(2176)] = 71277, + [SMALL_STATE(2177)] = 71327, + [SMALL_STATE(2178)] = 71433, + [SMALL_STATE(2179)] = 71539, + [SMALL_STATE(2180)] = 71645, + [SMALL_STATE(2181)] = 71699, + [SMALL_STATE(2182)] = 71805, + [SMALL_STATE(2183)] = 71855, + [SMALL_STATE(2184)] = 71905, + [SMALL_STATE(2185)] = 72011, + [SMALL_STATE(2186)] = 72117, + [SMALL_STATE(2187)] = 72197, + [SMALL_STATE(2188)] = 72307, + [SMALL_STATE(2189)] = 72377, + [SMALL_STATE(2190)] = 72487, + [SMALL_STATE(2191)] = 72581, + [SMALL_STATE(2192)] = 72677, + [SMALL_STATE(2193)] = 72753, + [SMALL_STATE(2194)] = 72841, + [SMALL_STATE(2195)] = 72931, + [SMALL_STATE(2196)] = 73023, + [SMALL_STATE(2197)] = 73097, + [SMALL_STATE(2198)] = 73173, + [SMALL_STATE(2199)] = 73257, + [SMALL_STATE(2200)] = 73355, + [SMALL_STATE(2201)] = 73465, + [SMALL_STATE(2202)] = 73571, + [SMALL_STATE(2203)] = 73677, + [SMALL_STATE(2204)] = 73783, + [SMALL_STATE(2205)] = 73889, + [SMALL_STATE(2206)] = 73995, + [SMALL_STATE(2207)] = 74101, + [SMALL_STATE(2208)] = 74207, + [SMALL_STATE(2209)] = 74317, + [SMALL_STATE(2210)] = 74385, + [SMALL_STATE(2211)] = 74491, + [SMALL_STATE(2212)] = 74541, + [SMALL_STATE(2213)] = 74591, + [SMALL_STATE(2214)] = 74641, + [SMALL_STATE(2215)] = 74691, + [SMALL_STATE(2216)] = 74741, + [SMALL_STATE(2217)] = 74851, + [SMALL_STATE(2218)] = 74961, + [SMALL_STATE(2219)] = 75071, + [SMALL_STATE(2220)] = 75181, + [SMALL_STATE(2221)] = 75291, + [SMALL_STATE(2222)] = 75345, + [SMALL_STATE(2223)] = 75419, + [SMALL_STATE(2224)] = 75529, + [SMALL_STATE(2225)] = 75583, + [SMALL_STATE(2226)] = 75637, + [SMALL_STATE(2227)] = 75691, + [SMALL_STATE(2228)] = 75745, + [SMALL_STATE(2229)] = 75821, + [SMALL_STATE(2230)] = 75875, + [SMALL_STATE(2231)] = 75985, + [SMALL_STATE(2232)] = 76049, + [SMALL_STATE(2233)] = 76115, + [SMALL_STATE(2234)] = 76225, + [SMALL_STATE(2235)] = 76335, + [SMALL_STATE(2236)] = 76401, + [SMALL_STATE(2237)] = 76511, + [SMALL_STATE(2238)] = 76621, + [SMALL_STATE(2239)] = 76675, + [SMALL_STATE(2240)] = 76741, + [SMALL_STATE(2241)] = 76809, + [SMALL_STATE(2242)] = 76883, + [SMALL_STATE(2243)] = 76989, + [SMALL_STATE(2244)] = 77055, + [SMALL_STATE(2245)] = 77119, + [SMALL_STATE(2246)] = 77185, + [SMALL_STATE(2247)] = 77235, + [SMALL_STATE(2248)] = 77295, + [SMALL_STATE(2249)] = 77345, + [SMALL_STATE(2250)] = 77409, + [SMALL_STATE(2251)] = 77519, + [SMALL_STATE(2252)] = 77569, + [SMALL_STATE(2253)] = 77635, + [SMALL_STATE(2254)] = 77745, + [SMALL_STATE(2255)] = 77855, + [SMALL_STATE(2256)] = 77919, + [SMALL_STATE(2257)] = 78029, + [SMALL_STATE(2258)] = 78093, + [SMALL_STATE(2259)] = 78143, + [SMALL_STATE(2260)] = 78193, + [SMALL_STATE(2261)] = 78243, + [SMALL_STATE(2262)] = 78307, + [SMALL_STATE(2263)] = 78371, + [SMALL_STATE(2264)] = 78437, + [SMALL_STATE(2265)] = 78495, + [SMALL_STATE(2266)] = 78601, + [SMALL_STATE(2267)] = 78707, + [SMALL_STATE(2268)] = 78813, + [SMALL_STATE(2269)] = 78919, + [SMALL_STATE(2270)] = 79025, + [SMALL_STATE(2271)] = 79105, + [SMALL_STATE(2272)] = 79175, + [SMALL_STATE(2273)] = 79269, + [SMALL_STATE(2274)] = 79365, + [SMALL_STATE(2275)] = 79441, + [SMALL_STATE(2276)] = 79529, + [SMALL_STATE(2277)] = 79619, + [SMALL_STATE(2278)] = 79711, + [SMALL_STATE(2279)] = 79785, + [SMALL_STATE(2280)] = 79861, + [SMALL_STATE(2281)] = 79945, + [SMALL_STATE(2282)] = 80043, + [SMALL_STATE(2283)] = 80149, + [SMALL_STATE(2284)] = 80255, + [SMALL_STATE(2285)] = 80361, + [SMALL_STATE(2286)] = 80467, + [SMALL_STATE(2287)] = 80573, + [SMALL_STATE(2288)] = 80679, + [SMALL_STATE(2289)] = 80785, + [SMALL_STATE(2290)] = 80891, + [SMALL_STATE(2291)] = 80941, + [SMALL_STATE(2292)] = 80991, + [SMALL_STATE(2293)] = 81041, + [SMALL_STATE(2294)] = 81091, + [SMALL_STATE(2295)] = 81141, + [SMALL_STATE(2296)] = 81191, + [SMALL_STATE(2297)] = 81241, + [SMALL_STATE(2298)] = 81351, + [SMALL_STATE(2299)] = 81461, + [SMALL_STATE(2300)] = 81513, + [SMALL_STATE(2301)] = 81567, + [SMALL_STATE(2302)] = 81635, + [SMALL_STATE(2303)] = 81709, + [SMALL_STATE(2304)] = 81815, + [SMALL_STATE(2305)] = 81881, + [SMALL_STATE(2306)] = 81935, + [SMALL_STATE(2307)] = 82045, + [SMALL_STATE(2308)] = 82155, + [SMALL_STATE(2309)] = 82209, + [SMALL_STATE(2310)] = 82273, + [SMALL_STATE(2311)] = 82327, + [SMALL_STATE(2312)] = 82393, + [SMALL_STATE(2313)] = 82459, + [SMALL_STATE(2314)] = 82525, + [SMALL_STATE(2315)] = 82591, + [SMALL_STATE(2316)] = 82655, + [SMALL_STATE(2317)] = 82721, + [SMALL_STATE(2318)] = 82831, + [SMALL_STATE(2319)] = 82941, + [SMALL_STATE(2320)] = 83005, + [SMALL_STATE(2321)] = 83115, + [SMALL_STATE(2322)] = 83181, + [SMALL_STATE(2323)] = 83235, + [SMALL_STATE(2324)] = 83289, + [SMALL_STATE(2325)] = 83339, + [SMALL_STATE(2326)] = 83389, + [SMALL_STATE(2327)] = 83439, + [SMALL_STATE(2328)] = 83545, + [SMALL_STATE(2329)] = 83655, + [SMALL_STATE(2330)] = 83705, + [SMALL_STATE(2331)] = 83755, + [SMALL_STATE(2332)] = 83805, + [SMALL_STATE(2333)] = 83863, + [SMALL_STATE(2334)] = 83925, + [SMALL_STATE(2335)] = 83975, + [SMALL_STATE(2336)] = 84039, + [SMALL_STATE(2337)] = 84091, + [SMALL_STATE(2338)] = 84141, + [SMALL_STATE(2339)] = 84191, + [SMALL_STATE(2340)] = 84241, + [SMALL_STATE(2341)] = 84327, + [SMALL_STATE(2342)] = 84433, + [SMALL_STATE(2343)] = 84507, + [SMALL_STATE(2344)] = 84565, + [SMALL_STATE(2345)] = 84631, + [SMALL_STATE(2346)] = 84737, + [SMALL_STATE(2347)] = 84787, + [SMALL_STATE(2348)] = 84837, + [SMALL_STATE(2349)] = 84887, + [SMALL_STATE(2350)] = 84997, + [SMALL_STATE(2351)] = 85107, + [SMALL_STATE(2352)] = 85217, + [SMALL_STATE(2353)] = 85327, + [SMALL_STATE(2354)] = 85437, + [SMALL_STATE(2355)] = 85547, + [SMALL_STATE(2356)] = 85657, + [SMALL_STATE(2357)] = 85767, + [SMALL_STATE(2358)] = 85877, + [SMALL_STATE(2359)] = 85987, + [SMALL_STATE(2360)] = 86039, + [SMALL_STATE(2361)] = 86149, + [SMALL_STATE(2362)] = 86259, + [SMALL_STATE(2363)] = 86369, + [SMALL_STATE(2364)] = 86433, + [SMALL_STATE(2365)] = 86483, + [SMALL_STATE(2366)] = 86559, + [SMALL_STATE(2367)] = 86623, + [SMALL_STATE(2368)] = 86674, + [SMALL_STATE(2369)] = 86753, + [SMALL_STATE(2370)] = 86822, + [SMALL_STATE(2371)] = 86915, + [SMALL_STATE(2372)] = 87010, + [SMALL_STATE(2373)] = 87085, + [SMALL_STATE(2374)] = 87172, + [SMALL_STATE(2375)] = 87261, + [SMALL_STATE(2376)] = 87352, + [SMALL_STATE(2377)] = 87425, + [SMALL_STATE(2378)] = 87500, + [SMALL_STATE(2379)] = 87583, + [SMALL_STATE(2380)] = 87680, + [SMALL_STATE(2381)] = 87785, + [SMALL_STATE(2382)] = 87890, + [SMALL_STATE(2383)] = 87995, + [SMALL_STATE(2384)] = 88100, + [SMALL_STATE(2385)] = 88205, + [SMALL_STATE(2386)] = 88310, + [SMALL_STATE(2387)] = 88415, + [SMALL_STATE(2388)] = 88520, + [SMALL_STATE(2389)] = 88579, + [SMALL_STATE(2390)] = 88646, + [SMALL_STATE(2391)] = 88719, + [SMALL_STATE(2392)] = 88778, + [SMALL_STATE(2393)] = 88883, + [SMALL_STATE(2394)] = 88948, + [SMALL_STATE(2395)] = 89007, + [SMALL_STATE(2396)] = 89066, + [SMALL_STATE(2397)] = 89143, + [SMALL_STATE(2398)] = 89194, + [SMALL_STATE(2399)] = 89299, + [SMALL_STATE(2400)] = 89354, + [SMALL_STATE(2401)] = 89405, + [SMALL_STATE(2402)] = 89512, + [SMALL_STATE(2403)] = 89567, + [SMALL_STATE(2404)] = 89672, + [SMALL_STATE(2405)] = 89741, + [SMALL_STATE(2406)] = 89800, + [SMALL_STATE(2407)] = 89859, + [SMALL_STATE(2408)] = 89918, + [SMALL_STATE(2409)] = 89977, + [SMALL_STATE(2410)] = 90036, + [SMALL_STATE(2411)] = 90087, + [SMALL_STATE(2412)] = 90142, + [SMALL_STATE(2413)] = 90201, + [SMALL_STATE(2414)] = 90258, + [SMALL_STATE(2415)] = 90317, + [SMALL_STATE(2416)] = 90376, + [SMALL_STATE(2417)] = 90435, + [SMALL_STATE(2418)] = 90486, + [SMALL_STATE(2419)] = 90555, + [SMALL_STATE(2420)] = 90612, + [SMALL_STATE(2421)] = 90669, + [SMALL_STATE(2422)] = 90726, + [SMALL_STATE(2423)] = 90785, + [SMALL_STATE(2424)] = 90844, + [SMALL_STATE(2425)] = 90897, + [SMALL_STATE(2426)] = 90954, + [SMALL_STATE(2427)] = 91005, + [SMALL_STATE(2428)] = 91080, + [SMALL_STATE(2429)] = 91149, + [SMALL_STATE(2430)] = 91208, + [SMALL_STATE(2431)] = 91313, + [SMALL_STATE(2432)] = 91418, + [SMALL_STATE(2433)] = 91477, + [SMALL_STATE(2434)] = 91532, + [SMALL_STATE(2435)] = 91587, + [SMALL_STATE(2436)] = 91676, + [SMALL_STATE(2437)] = 91731, + [SMALL_STATE(2438)] = 91790, + [SMALL_STATE(2439)] = 91845, + [SMALL_STATE(2440)] = 91952, + [SMALL_STATE(2441)] = 92057, + [SMALL_STATE(2442)] = 92162, + [SMALL_STATE(2443)] = 92267, + [SMALL_STATE(2444)] = 92372, + [SMALL_STATE(2445)] = 92477, + [SMALL_STATE(2446)] = 92556, + [SMALL_STATE(2447)] = 92625, + [SMALL_STATE(2448)] = 92718, + [SMALL_STATE(2449)] = 92813, + [SMALL_STATE(2450)] = 92888, + [SMALL_STATE(2451)] = 92975, + [SMALL_STATE(2452)] = 93064, + [SMALL_STATE(2453)] = 93155, + [SMALL_STATE(2454)] = 93228, + [SMALL_STATE(2455)] = 93303, + [SMALL_STATE(2456)] = 93386, + [SMALL_STATE(2457)] = 93483, + [SMALL_STATE(2458)] = 93588, + [SMALL_STATE(2459)] = 93693, + [SMALL_STATE(2460)] = 93798, + [SMALL_STATE(2461)] = 93903, + [SMALL_STATE(2462)] = 94008, + [SMALL_STATE(2463)] = 94113, + [SMALL_STATE(2464)] = 94218, + [SMALL_STATE(2465)] = 94323, + [SMALL_STATE(2466)] = 94382, + [SMALL_STATE(2467)] = 94451, + [SMALL_STATE(2468)] = 94510, + [SMALL_STATE(2469)] = 94615, + [SMALL_STATE(2470)] = 94720, + [SMALL_STATE(2471)] = 94779, + [SMALL_STATE(2472)] = 94832, + [SMALL_STATE(2473)] = 94937, + [SMALL_STATE(2474)] = 95004, + [SMALL_STATE(2475)] = 95077, + [SMALL_STATE(2476)] = 95182, + [SMALL_STATE(2477)] = 95247, + [SMALL_STATE(2478)] = 95306, + [SMALL_STATE(2479)] = 95365, + [SMALL_STATE(2480)] = 95420, + [SMALL_STATE(2481)] = 95477, + [SMALL_STATE(2482)] = 95534, + [SMALL_STATE(2483)] = 95615, + [SMALL_STATE(2484)] = 95720, + [SMALL_STATE(2485)] = 95771, + [SMALL_STATE(2486)] = 95876, + [SMALL_STATE(2487)] = 95981, + [SMALL_STATE(2488)] = 96050, + [SMALL_STATE(2489)] = 96155, + [SMALL_STATE(2490)] = 96224, + [SMALL_STATE(2491)] = 96274, + [SMALL_STATE(2492)] = 96334, + [SMALL_STATE(2493)] = 96440, + [SMALL_STATE(2494)] = 96494, + [SMALL_STATE(2495)] = 96598, + [SMALL_STATE(2496)] = 96652, + [SMALL_STATE(2497)] = 96706, + [SMALL_STATE(2498)] = 96760, + [SMALL_STATE(2499)] = 96808, + [SMALL_STATE(2500)] = 96862, + [SMALL_STATE(2501)] = 96910, + [SMALL_STATE(2502)] = 96960, + [SMALL_STATE(2503)] = 97008, + [SMALL_STATE(2504)] = 97058, + [SMALL_STATE(2505)] = 97112, + [SMALL_STATE(2506)] = 97166, + [SMALL_STATE(2507)] = 97220, + [SMALL_STATE(2508)] = 97292, + [SMALL_STATE(2509)] = 97358, + [SMALL_STATE(2510)] = 97426, + [SMALL_STATE(2511)] = 97530, + [SMALL_STATE(2512)] = 97634, + [SMALL_STATE(2513)] = 97738, + [SMALL_STATE(2514)] = 97842, + [SMALL_STATE(2515)] = 97946, + [SMALL_STATE(2516)] = 98050, + [SMALL_STATE(2517)] = 98154, + [SMALL_STATE(2518)] = 98232, + [SMALL_STATE(2519)] = 98300, + [SMALL_STATE(2520)] = 98392, + [SMALL_STATE(2521)] = 98486, + [SMALL_STATE(2522)] = 98560, + [SMALL_STATE(2523)] = 98646, + [SMALL_STATE(2524)] = 98734, + [SMALL_STATE(2525)] = 98824, + [SMALL_STATE(2526)] = 98896, + [SMALL_STATE(2527)] = 98970, + [SMALL_STATE(2528)] = 99052, + [SMALL_STATE(2529)] = 99148, + [SMALL_STATE(2530)] = 99252, + [SMALL_STATE(2531)] = 99356, + [SMALL_STATE(2532)] = 99460, + [SMALL_STATE(2533)] = 99564, + [SMALL_STATE(2534)] = 99668, + [SMALL_STATE(2535)] = 99732, + [SMALL_STATE(2536)] = 99836, + [SMALL_STATE(2537)] = 99940, + [SMALL_STATE(2538)] = 100008, + [SMALL_STATE(2539)] = 100078, + [SMALL_STATE(2540)] = 100128, + [SMALL_STATE(2541)] = 100178, + [SMALL_STATE(2542)] = 100228, + [SMALL_STATE(2543)] = 100292, + [SMALL_STATE(2544)] = 100352, + [SMALL_STATE(2545)] = 100406, + [SMALL_STATE(2546)] = 100470, + [SMALL_STATE(2547)] = 100530, + [SMALL_STATE(2548)] = 100584, + [SMALL_STATE(2549)] = 100688, + [SMALL_STATE(2550)] = 100742, + [SMALL_STATE(2551)] = 100808, + [SMALL_STATE(2552)] = 100880, + [SMALL_STATE(2553)] = 100984, + [SMALL_STATE(2554)] = 101048, + [SMALL_STATE(2555)] = 101152, + [SMALL_STATE(2556)] = 101208, + [SMALL_STATE(2557)] = 101258, + [SMALL_STATE(2558)] = 101308, + [SMALL_STATE(2559)] = 101358, + [SMALL_STATE(2560)] = 101462, + [SMALL_STATE(2561)] = 101566, + [SMALL_STATE(2562)] = 101616, + [SMALL_STATE(2563)] = 101720, + [SMALL_STATE(2564)] = 101784, + [SMALL_STATE(2565)] = 101844, + [SMALL_STATE(2566)] = 101908, + [SMALL_STATE(2567)] = 101968, + [SMALL_STATE(2568)] = 102072, + [SMALL_STATE(2569)] = 102122, + [SMALL_STATE(2570)] = 102226, + [SMALL_STATE(2571)] = 102330, + [SMALL_STATE(2572)] = 102380, + [SMALL_STATE(2573)] = 102484, + [SMALL_STATE(2574)] = 102588, + [SMALL_STATE(2575)] = 102647, + [SMALL_STATE(2576)] = 102704, + [SMALL_STATE(2577)] = 102763, + [SMALL_STATE(2578)] = 102822, + [SMALL_STATE(2579)] = 102871, + [SMALL_STATE(2580)] = 102928, + [SMALL_STATE(2581)] = 102985, + [SMALL_STATE(2582)] = 103044, + [SMALL_STATE(2583)] = 103103, + [SMALL_STATE(2584)] = 103166, + [SMALL_STATE(2585)] = 103267, + [SMALL_STATE(2586)] = 103324, + [SMALL_STATE(2587)] = 103383, + [SMALL_STATE(2588)] = 103440, + [SMALL_STATE(2589)] = 103497, + [SMALL_STATE(2590)] = 103554, + [SMALL_STATE(2591)] = 103613, + [SMALL_STATE(2592)] = 103676, + [SMALL_STATE(2593)] = 103741, + [SMALL_STATE(2594)] = 103800, + [SMALL_STATE(2595)] = 103859, + [SMALL_STATE(2596)] = 103918, + [SMALL_STATE(2597)] = 103977, + [SMALL_STATE(2598)] = 104034, + [SMALL_STATE(2599)] = 104095, + [SMALL_STATE(2600)] = 104152, + [SMALL_STATE(2601)] = 104209, + [SMALL_STATE(2602)] = 104266, + [SMALL_STATE(2603)] = 104367, + [SMALL_STATE(2604)] = 104424, + [SMALL_STATE(2605)] = 104481, + [SMALL_STATE(2606)] = 104534, + [SMALL_STATE(2607)] = 104591, + [SMALL_STATE(2608)] = 104640, + [SMALL_STATE(2609)] = 104689, + [SMALL_STATE(2610)] = 104746, + [SMALL_STATE(2611)] = 104805, + [SMALL_STATE(2612)] = 104862, + [SMALL_STATE(2613)] = 104910, + [SMALL_STATE(2614)] = 104956, + [SMALL_STATE(2615)] = 105002, + [SMALL_STATE(2616)] = 105048, + [SMALL_STATE(2617)] = 105098, + [SMALL_STATE(2618)] = 105144, + [SMALL_STATE(2619)] = 105194, + [SMALL_STATE(2620)] = 105240, + [SMALL_STATE(2621)] = 105286, + [SMALL_STATE(2622)] = 105332, + [SMALL_STATE(2623)] = 105380, + [SMALL_STATE(2624)] = 105426, + [SMALL_STATE(2625)] = 105472, + [SMALL_STATE(2626)] = 105528, + [SMALL_STATE(2627)] = 105574, + [SMALL_STATE(2628)] = 105622, + [SMALL_STATE(2629)] = 105668, + [SMALL_STATE(2630)] = 105714, + [SMALL_STATE(2631)] = 105760, + [SMALL_STATE(2632)] = 105806, + [SMALL_STATE(2633)] = 105852, + [SMALL_STATE(2634)] = 105898, + [SMALL_STATE(2635)] = 105944, + [SMALL_STATE(2636)] = 105990, + [SMALL_STATE(2637)] = 106036, + [SMALL_STATE(2638)] = 106082, + [SMALL_STATE(2639)] = 106128, + [SMALL_STATE(2640)] = 106174, + [SMALL_STATE(2641)] = 106220, + [SMALL_STATE(2642)] = 106266, + [SMALL_STATE(2643)] = 106312, + [SMALL_STATE(2644)] = 106358, + [SMALL_STATE(2645)] = 106404, + [SMALL_STATE(2646)] = 106450, + [SMALL_STATE(2647)] = 106496, + [SMALL_STATE(2648)] = 106542, + [SMALL_STATE(2649)] = 106590, + [SMALL_STATE(2650)] = 106648, + [SMALL_STATE(2651)] = 106694, + [SMALL_STATE(2652)] = 106740, + [SMALL_STATE(2653)] = 106790, + [SMALL_STATE(2654)] = 106838, + [SMALL_STATE(2655)] = 106884, + [SMALL_STATE(2656)] = 106930, + [SMALL_STATE(2657)] = 106976, + [SMALL_STATE(2658)] = 107024, + [SMALL_STATE(2659)] = 107072, + [SMALL_STATE(2660)] = 107118, + [SMALL_STATE(2661)] = 107166, + [SMALL_STATE(2662)] = 107214, + [SMALL_STATE(2663)] = 107260, + [SMALL_STATE(2664)] = 107306, + [SMALL_STATE(2665)] = 107354, + [SMALL_STATE(2666)] = 107400, + [SMALL_STATE(2667)] = 107448, + [SMALL_STATE(2668)] = 107494, + [SMALL_STATE(2669)] = 107542, + [SMALL_STATE(2670)] = 107590, + [SMALL_STATE(2671)] = 107636, + [SMALL_STATE(2672)] = 107682, + [SMALL_STATE(2673)] = 107728, + [SMALL_STATE(2674)] = 107774, + [SMALL_STATE(2675)] = 107820, + [SMALL_STATE(2676)] = 107866, + [SMALL_STATE(2677)] = 107911, + [SMALL_STATE(2678)] = 107962, + [SMALL_STATE(2679)] = 108029, + [SMALL_STATE(2680)] = 108082, + [SMALL_STATE(2681)] = 108135, + [SMALL_STATE(2682)] = 108180, + [SMALL_STATE(2683)] = 108225, + [SMALL_STATE(2684)] = 108270, + [SMALL_STATE(2685)] = 108315, + [SMALL_STATE(2686)] = 108360, + [SMALL_STATE(2687)] = 108409, + [SMALL_STATE(2688)] = 108460, + [SMALL_STATE(2689)] = 108505, + [SMALL_STATE(2690)] = 108565, + [SMALL_STATE(2691)] = 108623, + [SMALL_STATE(2692)] = 108681, + [SMALL_STATE(2693)] = 108753, + [SMALL_STATE(2694)] = 108801, + [SMALL_STATE(2695)] = 108845, + [SMALL_STATE(2696)] = 108905, + [SMALL_STATE(2697)] = 108961, + [SMALL_STATE(2698)] = 109009, + [SMALL_STATE(2699)] = 109067, + [SMALL_STATE(2700)] = 109139, + [SMALL_STATE(2701)] = 109197, + [SMALL_STATE(2702)] = 109257, + [SMALL_STATE(2703)] = 109310, + [SMALL_STATE(2704)] = 109363, + [SMALL_STATE(2705)] = 109416, + [SMALL_STATE(2706)] = 109469, + [SMALL_STATE(2707)] = 109522, + [SMALL_STATE(2708)] = 109571, + [SMALL_STATE(2709)] = 109624, + [SMALL_STATE(2710)] = 109677, + [SMALL_STATE(2711)] = 109730, + [SMALL_STATE(2712)] = 109783, + [SMALL_STATE(2713)] = 109836, + [SMALL_STATE(2714)] = 109889, + [SMALL_STATE(2715)] = 109942, + [SMALL_STATE(2716)] = 109995, + [SMALL_STATE(2717)] = 110048, + [SMALL_STATE(2718)] = 110101, + [SMALL_STATE(2719)] = 110154, + [SMALL_STATE(2720)] = 110207, + [SMALL_STATE(2721)] = 110260, + [SMALL_STATE(2722)] = 110313, + [SMALL_STATE(2723)] = 110366, + [SMALL_STATE(2724)] = 110419, + [SMALL_STATE(2725)] = 110472, + [SMALL_STATE(2726)] = 110525, + [SMALL_STATE(2727)] = 110578, + [SMALL_STATE(2728)] = 110631, + [SMALL_STATE(2729)] = 110694, + [SMALL_STATE(2730)] = 110757, + [SMALL_STATE(2731)] = 110810, + [SMALL_STATE(2732)] = 110863, + [SMALL_STATE(2733)] = 110923, + [SMALL_STATE(2734)] = 111003, + [SMALL_STATE(2735)] = 111057, + [SMALL_STATE(2736)] = 111111, + [SMALL_STATE(2737)] = 111175, + [SMALL_STATE(2738)] = 111255, + [SMALL_STATE(2739)] = 111335, + [SMALL_STATE(2740)] = 111415, + [SMALL_STATE(2741)] = 111469, + [SMALL_STATE(2742)] = 111529, + [SMALL_STATE(2743)] = 111583, + [SMALL_STATE(2744)] = 111637, + [SMALL_STATE(2745)] = 111691, + [SMALL_STATE(2746)] = 111771, + [SMALL_STATE(2747)] = 111825, + [SMALL_STATE(2748)] = 111905, + [SMALL_STATE(2749)] = 111969, + [SMALL_STATE(2750)] = 112023, + [SMALL_STATE(2751)] = 112077, + [SMALL_STATE(2752)] = 112157, + [SMALL_STATE(2753)] = 112221, + [SMALL_STATE(2754)] = 112275, + [SMALL_STATE(2755)] = 112332, + [SMALL_STATE(2756)] = 112389, + [SMALL_STATE(2757)] = 112440, + [SMALL_STATE(2758)] = 112497, + [SMALL_STATE(2759)] = 112538, + [SMALL_STATE(2760)] = 112579, + [SMALL_STATE(2761)] = 112636, + [SMALL_STATE(2762)] = 112693, + [SMALL_STATE(2763)] = 112750, + [SMALL_STATE(2764)] = 112807, + [SMALL_STATE(2765)] = 112864, + [SMALL_STATE(2766)] = 112905, + [SMALL_STATE(2767)] = 112962, + [SMALL_STATE(2768)] = 113015, + [SMALL_STATE(2769)] = 113056, + [SMALL_STATE(2770)] = 113097, + [SMALL_STATE(2771)] = 113154, + [SMALL_STATE(2772)] = 113197, + [SMALL_STATE(2773)] = 113254, + [SMALL_STATE(2774)] = 113311, + [SMALL_STATE(2775)] = 113368, + [SMALL_STATE(2776)] = 113425, + [SMALL_STATE(2777)] = 113482, + [SMALL_STATE(2778)] = 113535, + [SMALL_STATE(2779)] = 113592, + [SMALL_STATE(2780)] = 113640, + [SMALL_STATE(2781)] = 113690, + [SMALL_STATE(2782)] = 113738, + [SMALL_STATE(2783)] = 113788, + [SMALL_STATE(2784)] = 113836, + [SMALL_STATE(2785)] = 113886, + [SMALL_STATE(2786)] = 113934, + [SMALL_STATE(2787)] = 113982, + [SMALL_STATE(2788)] = 114030, + [SMALL_STATE(2789)] = 114078, + [SMALL_STATE(2790)] = 114128, + [SMALL_STATE(2791)] = 114176, + [SMALL_STATE(2792)] = 114226, + [SMALL_STATE(2793)] = 114274, + [SMALL_STATE(2794)] = 114324, + [SMALL_STATE(2795)] = 114372, + [SMALL_STATE(2796)] = 114420, + [SMALL_STATE(2797)] = 114468, + [SMALL_STATE(2798)] = 114516, + [SMALL_STATE(2799)] = 114564, + [SMALL_STATE(2800)] = 114612, + [SMALL_STATE(2801)] = 114660, + [SMALL_STATE(2802)] = 114708, + [SMALL_STATE(2803)] = 114756, + [SMALL_STATE(2804)] = 114806, + [SMALL_STATE(2805)] = 114854, + [SMALL_STATE(2806)] = 114902, + [SMALL_STATE(2807)] = 114950, + [SMALL_STATE(2808)] = 114998, + [SMALL_STATE(2809)] = 115046, + [SMALL_STATE(2810)] = 115094, + [SMALL_STATE(2811)] = 115142, + [SMALL_STATE(2812)] = 115190, + [SMALL_STATE(2813)] = 115238, + [SMALL_STATE(2814)] = 115288, + [SMALL_STATE(2815)] = 115336, + [SMALL_STATE(2816)] = 115386, + [SMALL_STATE(2817)] = 115436, + [SMALL_STATE(2818)] = 115484, + [SMALL_STATE(2819)] = 115532, + [SMALL_STATE(2820)] = 115580, + [SMALL_STATE(2821)] = 115628, + [SMALL_STATE(2822)] = 115678, + [SMALL_STATE(2823)] = 115728, + [SMALL_STATE(2824)] = 115776, + [SMALL_STATE(2825)] = 115824, + [SMALL_STATE(2826)] = 115872, + [SMALL_STATE(2827)] = 115920, + [SMALL_STATE(2828)] = 115970, + [SMALL_STATE(2829)] = 116018, + [SMALL_STATE(2830)] = 116066, + [SMALL_STATE(2831)] = 116114, + [SMALL_STATE(2832)] = 116162, + [SMALL_STATE(2833)] = 116212, + [SMALL_STATE(2834)] = 116260, + [SMALL_STATE(2835)] = 116308, + [SMALL_STATE(2836)] = 116356, + [SMALL_STATE(2837)] = 116404, + [SMALL_STATE(2838)] = 116452, + [SMALL_STATE(2839)] = 116500, + [SMALL_STATE(2840)] = 116548, + [SMALL_STATE(2841)] = 116583, + [SMALL_STATE(2842)] = 116624, + [SMALL_STATE(2843)] = 116665, + [SMALL_STATE(2844)] = 116706, + [SMALL_STATE(2845)] = 116738, + [SMALL_STATE(2846)] = 116766, + [SMALL_STATE(2847)] = 116798, + [SMALL_STATE(2848)] = 116830, + [SMALL_STATE(2849)] = 116862, + [SMALL_STATE(2850)] = 116894, + [SMALL_STATE(2851)] = 116926, + [SMALL_STATE(2852)] = 116954, + [SMALL_STATE(2853)] = 116982, + [SMALL_STATE(2854)] = 117010, + [SMALL_STATE(2855)] = 117038, + [SMALL_STATE(2856)] = 117066, + [SMALL_STATE(2857)] = 117094, + [SMALL_STATE(2858)] = 117122, + [SMALL_STATE(2859)] = 117150, + [SMALL_STATE(2860)] = 117178, + [SMALL_STATE(2861)] = 117206, + [SMALL_STATE(2862)] = 117234, + [SMALL_STATE(2863)] = 117262, + [SMALL_STATE(2864)] = 117290, + [SMALL_STATE(2865)] = 117318, + [SMALL_STATE(2866)] = 117346, + [SMALL_STATE(2867)] = 117374, + [SMALL_STATE(2868)] = 117402, + [SMALL_STATE(2869)] = 117430, + [SMALL_STATE(2870)] = 117458, + [SMALL_STATE(2871)] = 117486, + [SMALL_STATE(2872)] = 117514, + [SMALL_STATE(2873)] = 117542, + [SMALL_STATE(2874)] = 117570, + [SMALL_STATE(2875)] = 117598, + [SMALL_STATE(2876)] = 117626, + [SMALL_STATE(2877)] = 117654, + [SMALL_STATE(2878)] = 117682, + [SMALL_STATE(2879)] = 117710, + [SMALL_STATE(2880)] = 117738, + [SMALL_STATE(2881)] = 117766, + [SMALL_STATE(2882)] = 117794, + [SMALL_STATE(2883)] = 117822, + [SMALL_STATE(2884)] = 117850, + [SMALL_STATE(2885)] = 117907, + [SMALL_STATE(2886)] = 117934, + [SMALL_STATE(2887)] = 117961, + [SMALL_STATE(2888)] = 118018, + [SMALL_STATE(2889)] = 118051, + [SMALL_STATE(2890)] = 118077, + [SMALL_STATE(2891)] = 118103, + [SMALL_STATE(2892)] = 118129, + [SMALL_STATE(2893)] = 118167, + [SMALL_STATE(2894)] = 118205, + [SMALL_STATE(2895)] = 118243, + [SMALL_STATE(2896)] = 118269, + [SMALL_STATE(2897)] = 118295, + [SMALL_STATE(2898)] = 118345, + [SMALL_STATE(2899)] = 118371, + [SMALL_STATE(2900)] = 118397, + [SMALL_STATE(2901)] = 118431, + [SMALL_STATE(2902)] = 118457, + [SMALL_STATE(2903)] = 118483, + [SMALL_STATE(2904)] = 118509, + [SMALL_STATE(2905)] = 118535, + [SMALL_STATE(2906)] = 118561, + [SMALL_STATE(2907)] = 118589, + [SMALL_STATE(2908)] = 118619, + [SMALL_STATE(2909)] = 118649, + [SMALL_STATE(2910)] = 118677, + [SMALL_STATE(2911)] = 118707, + [SMALL_STATE(2912)] = 118734, + [SMALL_STATE(2913)] = 118759, + [SMALL_STATE(2914)] = 118784, + [SMALL_STATE(2915)] = 118809, + [SMALL_STATE(2916)] = 118834, + [SMALL_STATE(2917)] = 118865, + [SMALL_STATE(2918)] = 118891, + [SMALL_STATE(2919)] = 118915, + [SMALL_STATE(2920)] = 118939, + [SMALL_STATE(2921)] = 118963, + [SMALL_STATE(2922)] = 118987, + [SMALL_STATE(2923)] = 119011, + [SMALL_STATE(2924)] = 119035, + [SMALL_STATE(2925)] = 119059, + [SMALL_STATE(2926)] = 119083, + [SMALL_STATE(2927)] = 119107, + [SMALL_STATE(2928)] = 119131, + [SMALL_STATE(2929)] = 119155, + [SMALL_STATE(2930)] = 119187, + [SMALL_STATE(2931)] = 119221, + [SMALL_STATE(2932)] = 119255, + [SMALL_STATE(2933)] = 119289, + [SMALL_STATE(2934)] = 119321, + [SMALL_STATE(2935)] = 119345, + [SMALL_STATE(2936)] = 119367, + [SMALL_STATE(2937)] = 119391, + [SMALL_STATE(2938)] = 119425, + [SMALL_STATE(2939)] = 119459, + [SMALL_STATE(2940)] = 119493, + [SMALL_STATE(2941)] = 119525, + [SMALL_STATE(2942)] = 119559, + [SMALL_STATE(2943)] = 119593, + [SMALL_STATE(2944)] = 119627, + [SMALL_STATE(2945)] = 119651, + [SMALL_STATE(2946)] = 119673, + [SMALL_STATE(2947)] = 119697, + [SMALL_STATE(2948)] = 119723, + [SMALL_STATE(2949)] = 119755, + [SMALL_STATE(2950)] = 119789, + [SMALL_STATE(2951)] = 119823, + [SMALL_STATE(2952)] = 119857, + [SMALL_STATE(2953)] = 119881, + [SMALL_STATE(2954)] = 119909, + [SMALL_STATE(2955)] = 119933, + [SMALL_STATE(2956)] = 119961, + [SMALL_STATE(2957)] = 119985, + [SMALL_STATE(2958)] = 120007, + [SMALL_STATE(2959)] = 120031, + [SMALL_STATE(2960)] = 120063, + [SMALL_STATE(2961)] = 120097, + [SMALL_STATE(2962)] = 120131, + [SMALL_STATE(2963)] = 120165, + [SMALL_STATE(2964)] = 120193, + [SMALL_STATE(2965)] = 120217, + [SMALL_STATE(2966)] = 120241, + [SMALL_STATE(2967)] = 120263, + [SMALL_STATE(2968)] = 120291, + [SMALL_STATE(2969)] = 120319, + [SMALL_STATE(2970)] = 120341, + [SMALL_STATE(2971)] = 120363, + [SMALL_STATE(2972)] = 120395, + [SMALL_STATE(2973)] = 120429, + [SMALL_STATE(2974)] = 120453, + [SMALL_STATE(2975)] = 120487, + [SMALL_STATE(2976)] = 120515, + [SMALL_STATE(2977)] = 120543, + [SMALL_STATE(2978)] = 120567, + [SMALL_STATE(2979)] = 120591, + [SMALL_STATE(2980)] = 120615, + [SMALL_STATE(2981)] = 120639, + [SMALL_STATE(2982)] = 120661, + [SMALL_STATE(2983)] = 120685, + [SMALL_STATE(2984)] = 120709, + [SMALL_STATE(2985)] = 120733, + [SMALL_STATE(2986)] = 120757, + [SMALL_STATE(2987)] = 120781, + [SMALL_STATE(2988)] = 120805, + [SMALL_STATE(2989)] = 120829, + [SMALL_STATE(2990)] = 120853, + [SMALL_STATE(2991)] = 120877, + [SMALL_STATE(2992)] = 120901, + [SMALL_STATE(2993)] = 120925, + [SMALL_STATE(2994)] = 120949, + [SMALL_STATE(2995)] = 120973, + [SMALL_STATE(2996)] = 120997, + [SMALL_STATE(2997)] = 121019, + [SMALL_STATE(2998)] = 121043, + [SMALL_STATE(2999)] = 121067, + [SMALL_STATE(3000)] = 121091, + [SMALL_STATE(3001)] = 121115, + [SMALL_STATE(3002)] = 121139, + [SMALL_STATE(3003)] = 121163, + [SMALL_STATE(3004)] = 121187, + [SMALL_STATE(3005)] = 121211, + [SMALL_STATE(3006)] = 121235, + [SMALL_STATE(3007)] = 121259, + [SMALL_STATE(3008)] = 121283, + [SMALL_STATE(3009)] = 121307, + [SMALL_STATE(3010)] = 121331, + [SMALL_STATE(3011)] = 121355, + [SMALL_STATE(3012)] = 121379, + [SMALL_STATE(3013)] = 121403, + [SMALL_STATE(3014)] = 121427, + [SMALL_STATE(3015)] = 121451, + [SMALL_STATE(3016)] = 121475, + [SMALL_STATE(3017)] = 121499, + [SMALL_STATE(3018)] = 121523, + [SMALL_STATE(3019)] = 121547, + [SMALL_STATE(3020)] = 121571, + [SMALL_STATE(3021)] = 121593, + [SMALL_STATE(3022)] = 121617, + [SMALL_STATE(3023)] = 121641, + [SMALL_STATE(3024)] = 121675, + [SMALL_STATE(3025)] = 121718, + [SMALL_STATE(3026)] = 121761, + [SMALL_STATE(3027)] = 121804, + [SMALL_STATE(3028)] = 121833, + [SMALL_STATE(3029)] = 121862, + [SMALL_STATE(3030)] = 121905, + [SMALL_STATE(3031)] = 121948, + [SMALL_STATE(3032)] = 121973, + [SMALL_STATE(3033)] = 122016, + [SMALL_STATE(3034)] = 122055, + [SMALL_STATE(3035)] = 122098, + [SMALL_STATE(3036)] = 122137, + [SMALL_STATE(3037)] = 122166, + [SMALL_STATE(3038)] = 122205, + [SMALL_STATE(3039)] = 122234, + [SMALL_STATE(3040)] = 122277, + [SMALL_STATE(3041)] = 122306, + [SMALL_STATE(3042)] = 122335, + [SMALL_STATE(3043)] = 122374, + [SMALL_STATE(3044)] = 122417, + [SMALL_STATE(3045)] = 122460, + [SMALL_STATE(3046)] = 122489, + [SMALL_STATE(3047)] = 122518, + [SMALL_STATE(3048)] = 122557, + [SMALL_STATE(3049)] = 122600, + [SMALL_STATE(3050)] = 122643, + [SMALL_STATE(3051)] = 122672, + [SMALL_STATE(3052)] = 122715, + [SMALL_STATE(3053)] = 122760, + [SMALL_STATE(3054)] = 122803, + [SMALL_STATE(3055)] = 122846, + [SMALL_STATE(3056)] = 122889, + [SMALL_STATE(3057)] = 122924, + [SMALL_STATE(3058)] = 122967, + [SMALL_STATE(3059)] = 123010, + [SMALL_STATE(3060)] = 123053, + [SMALL_STATE(3061)] = 123078, + [SMALL_STATE(3062)] = 123121, + [SMALL_STATE(3063)] = 123164, + [SMALL_STATE(3064)] = 123207, + [SMALL_STATE(3065)] = 123250, + [SMALL_STATE(3066)] = 123275, + [SMALL_STATE(3067)] = 123295, + [SMALL_STATE(3068)] = 123319, + [SMALL_STATE(3069)] = 123339, + [SMALL_STATE(3070)] = 123359, + [SMALL_STATE(3071)] = 123383, + [SMALL_STATE(3072)] = 123405, + [SMALL_STATE(3073)] = 123431, + [SMALL_STATE(3074)] = 123467, + [SMALL_STATE(3075)] = 123489, + [SMALL_STATE(3076)] = 123513, + [SMALL_STATE(3077)] = 123537, + [SMALL_STATE(3078)] = 123559, + [SMALL_STATE(3079)] = 123583, + [SMALL_STATE(3080)] = 123607, + [SMALL_STATE(3081)] = 123633, + [SMALL_STATE(3082)] = 123661, + [SMALL_STATE(3083)] = 123697, + [SMALL_STATE(3084)] = 123717, + [SMALL_STATE(3085)] = 123745, + [SMALL_STATE(3086)] = 123765, + [SMALL_STATE(3087)] = 123801, + [SMALL_STATE(3088)] = 123821, + [SMALL_STATE(3089)] = 123843, + [SMALL_STATE(3090)] = 123863, + [SMALL_STATE(3091)] = 123889, + [SMALL_STATE(3092)] = 123911, + [SMALL_STATE(3093)] = 123939, + [SMALL_STATE(3094)] = 123959, + [SMALL_STATE(3095)] = 123979, + [SMALL_STATE(3096)] = 123999, + [SMALL_STATE(3097)] = 124019, + [SMALL_STATE(3098)] = 124039, + [SMALL_STATE(3099)] = 124059, + [SMALL_STATE(3100)] = 124083, + [SMALL_STATE(3101)] = 124111, + [SMALL_STATE(3102)] = 124131, + [SMALL_STATE(3103)] = 124151, + [SMALL_STATE(3104)] = 124171, + [SMALL_STATE(3105)] = 124191, + [SMALL_STATE(3106)] = 124227, + [SMALL_STATE(3107)] = 124269, + [SMALL_STATE(3108)] = 124289, + [SMALL_STATE(3109)] = 124309, + [SMALL_STATE(3110)] = 124329, + [SMALL_STATE(3111)] = 124365, + [SMALL_STATE(3112)] = 124387, + [SMALL_STATE(3113)] = 124409, + [SMALL_STATE(3114)] = 124431, + [SMALL_STATE(3115)] = 124467, + [SMALL_STATE(3116)] = 124487, + [SMALL_STATE(3117)] = 124509, + [SMALL_STATE(3118)] = 124529, + [SMALL_STATE(3119)] = 124551, + [SMALL_STATE(3120)] = 124571, + [SMALL_STATE(3121)] = 124591, + [SMALL_STATE(3122)] = 124611, + [SMALL_STATE(3123)] = 124633, + [SMALL_STATE(3124)] = 124655, + [SMALL_STATE(3125)] = 124677, + [SMALL_STATE(3126)] = 124699, + [SMALL_STATE(3127)] = 124719, + [SMALL_STATE(3128)] = 124739, + [SMALL_STATE(3129)] = 124763, + [SMALL_STATE(3130)] = 124783, + [SMALL_STATE(3131)] = 124807, + [SMALL_STATE(3132)] = 124827, + [SMALL_STATE(3133)] = 124847, + [SMALL_STATE(3134)] = 124867, + [SMALL_STATE(3135)] = 124903, + [SMALL_STATE(3136)] = 124925, + [SMALL_STATE(3137)] = 124953, + [SMALL_STATE(3138)] = 124989, + [SMALL_STATE(3139)] = 125025, + [SMALL_STATE(3140)] = 125049, + [SMALL_STATE(3141)] = 125069, + [SMALL_STATE(3142)] = 125111, + [SMALL_STATE(3143)] = 125147, + [SMALL_STATE(3144)] = 125167, + [SMALL_STATE(3145)] = 125195, + [SMALL_STATE(3146)] = 125219, + [SMALL_STATE(3147)] = 125247, + [SMALL_STATE(3148)] = 125275, + [SMALL_STATE(3149)] = 125295, + [SMALL_STATE(3150)] = 125328, + [SMALL_STATE(3151)] = 125365, + [SMALL_STATE(3152)] = 125402, + [SMALL_STATE(3153)] = 125433, + [SMALL_STATE(3154)] = 125466, + [SMALL_STATE(3155)] = 125499, + [SMALL_STATE(3156)] = 125536, + [SMALL_STATE(3157)] = 125573, + [SMALL_STATE(3158)] = 125596, + [SMALL_STATE(3159)] = 125633, + [SMALL_STATE(3160)] = 125670, + [SMALL_STATE(3161)] = 125707, + [SMALL_STATE(3162)] = 125738, + [SMALL_STATE(3163)] = 125759, + [SMALL_STATE(3164)] = 125792, + [SMALL_STATE(3165)] = 125821, + [SMALL_STATE(3166)] = 125858, + [SMALL_STATE(3167)] = 125891, + [SMALL_STATE(3168)] = 125922, + [SMALL_STATE(3169)] = 125959, + [SMALL_STATE(3170)] = 125992, + [SMALL_STATE(3171)] = 126021, + [SMALL_STATE(3172)] = 126058, + [SMALL_STATE(3173)] = 126095, + [SMALL_STATE(3174)] = 126134, + [SMALL_STATE(3175)] = 126171, + [SMALL_STATE(3176)] = 126208, + [SMALL_STATE(3177)] = 126231, + [SMALL_STATE(3178)] = 126254, + [SMALL_STATE(3179)] = 126291, + [SMALL_STATE(3180)] = 126320, + [SMALL_STATE(3181)] = 126343, + [SMALL_STATE(3182)] = 126380, + [SMALL_STATE(3183)] = 126409, + [SMALL_STATE(3184)] = 126446, + [SMALL_STATE(3185)] = 126467, + [SMALL_STATE(3186)] = 126498, + [SMALL_STATE(3187)] = 126523, + [SMALL_STATE(3188)] = 126544, + [SMALL_STATE(3189)] = 126569, + [SMALL_STATE(3190)] = 126608, + [SMALL_STATE(3191)] = 126645, + [SMALL_STATE(3192)] = 126678, + [SMALL_STATE(3193)] = 126699, + [SMALL_STATE(3194)] = 126736, + [SMALL_STATE(3195)] = 126775, + [SMALL_STATE(3196)] = 126812, + [SMALL_STATE(3197)] = 126845, + [SMALL_STATE(3198)] = 126882, + [SMALL_STATE(3199)] = 126911, + [SMALL_STATE(3200)] = 126950, + [SMALL_STATE(3201)] = 126987, + [SMALL_STATE(3202)] = 127020, + [SMALL_STATE(3203)] = 127057, + [SMALL_STATE(3204)] = 127088, + [SMALL_STATE(3205)] = 127111, + [SMALL_STATE(3206)] = 127144, + [SMALL_STATE(3207)] = 127181, + [SMALL_STATE(3208)] = 127220, + [SMALL_STATE(3209)] = 127240, + [SMALL_STATE(3210)] = 127260, + [SMALL_STATE(3211)] = 127280, + [SMALL_STATE(3212)] = 127300, + [SMALL_STATE(3213)] = 127318, + [SMALL_STATE(3214)] = 127340, + [SMALL_STATE(3215)] = 127360, + [SMALL_STATE(3216)] = 127380, + [SMALL_STATE(3217)] = 127404, + [SMALL_STATE(3218)] = 127428, + [SMALL_STATE(3219)] = 127446, + [SMALL_STATE(3220)] = 127470, + [SMALL_STATE(3221)] = 127492, + [SMALL_STATE(3222)] = 127514, + [SMALL_STATE(3223)] = 127534, + [SMALL_STATE(3224)] = 127558, + [SMALL_STATE(3225)] = 127578, + [SMALL_STATE(3226)] = 127598, + [SMALL_STATE(3227)] = 127618, + [SMALL_STATE(3228)] = 127644, + [SMALL_STATE(3229)] = 127664, + [SMALL_STATE(3230)] = 127684, + [SMALL_STATE(3231)] = 127704, + [SMALL_STATE(3232)] = 127724, + [SMALL_STATE(3233)] = 127742, + [SMALL_STATE(3234)] = 127764, + [SMALL_STATE(3235)] = 127784, + [SMALL_STATE(3236)] = 127806, + [SMALL_STATE(3237)] = 127824, + [SMALL_STATE(3238)] = 127842, + [SMALL_STATE(3239)] = 127860, + [SMALL_STATE(3240)] = 127878, + [SMALL_STATE(3241)] = 127896, + [SMALL_STATE(3242)] = 127914, + [SMALL_STATE(3243)] = 127932, + [SMALL_STATE(3244)] = 127952, + [SMALL_STATE(3245)] = 127976, + [SMALL_STATE(3246)] = 127994, + [SMALL_STATE(3247)] = 128012, + [SMALL_STATE(3248)] = 128034, + [SMALL_STATE(3249)] = 128064, + [SMALL_STATE(3250)] = 128082, + [SMALL_STATE(3251)] = 128100, + [SMALL_STATE(3252)] = 128126, + [SMALL_STATE(3253)] = 128156, + [SMALL_STATE(3254)] = 128174, + [SMALL_STATE(3255)] = 128210, + [SMALL_STATE(3256)] = 128230, + [SMALL_STATE(3257)] = 128252, + [SMALL_STATE(3258)] = 128282, + [SMALL_STATE(3259)] = 128302, + [SMALL_STATE(3260)] = 128332, + [SMALL_STATE(3261)] = 128352, + [SMALL_STATE(3262)] = 128370, + [SMALL_STATE(3263)] = 128390, + [SMALL_STATE(3264)] = 128410, + [SMALL_STATE(3265)] = 128434, + [SMALL_STATE(3266)] = 128452, + [SMALL_STATE(3267)] = 128472, + [SMALL_STATE(3268)] = 128492, + [SMALL_STATE(3269)] = 128512, + [SMALL_STATE(3270)] = 128536, + [SMALL_STATE(3271)] = 128556, + [SMALL_STATE(3272)] = 128576, + [SMALL_STATE(3273)] = 128596, + [SMALL_STATE(3274)] = 128616, + [SMALL_STATE(3275)] = 128646, + [SMALL_STATE(3276)] = 128666, + [SMALL_STATE(3277)] = 128688, + [SMALL_STATE(3278)] = 128708, + [SMALL_STATE(3279)] = 128728, + [SMALL_STATE(3280)] = 128748, + [SMALL_STATE(3281)] = 128768, + [SMALL_STATE(3282)] = 128788, + [SMALL_STATE(3283)] = 128808, + [SMALL_STATE(3284)] = 128832, + [SMALL_STATE(3285)] = 128862, + [SMALL_STATE(3286)] = 128892, + [SMALL_STATE(3287)] = 128912, + [SMALL_STATE(3288)] = 128942, + [SMALL_STATE(3289)] = 128962, + [SMALL_STATE(3290)] = 128986, + [SMALL_STATE(3291)] = 129006, + [SMALL_STATE(3292)] = 129029, + [SMALL_STATE(3293)] = 129046, + [SMALL_STATE(3294)] = 129063, + [SMALL_STATE(3295)] = 129094, + [SMALL_STATE(3296)] = 129111, + [SMALL_STATE(3297)] = 129144, + [SMALL_STATE(3298)] = 129179, + [SMALL_STATE(3299)] = 129214, + [SMALL_STATE(3300)] = 129247, + [SMALL_STATE(3301)] = 129282, + [SMALL_STATE(3302)] = 129317, + [SMALL_STATE(3303)] = 129350, + [SMALL_STATE(3304)] = 129385, + [SMALL_STATE(3305)] = 129406, + [SMALL_STATE(3306)] = 129423, + [SMALL_STATE(3307)] = 129456, + [SMALL_STATE(3308)] = 129491, + [SMALL_STATE(3309)] = 129524, + [SMALL_STATE(3310)] = 129553, + [SMALL_STATE(3311)] = 129584, + [SMALL_STATE(3312)] = 129605, + [SMALL_STATE(3313)] = 129640, + [SMALL_STATE(3314)] = 129675, + [SMALL_STATE(3315)] = 129694, + [SMALL_STATE(3316)] = 129727, + [SMALL_STATE(3317)] = 129762, + [SMALL_STATE(3318)] = 129781, + [SMALL_STATE(3319)] = 129802, + [SMALL_STATE(3320)] = 129829, + [SMALL_STATE(3321)] = 129848, + [SMALL_STATE(3322)] = 129873, + [SMALL_STATE(3323)] = 129904, + [SMALL_STATE(3324)] = 129939, + [SMALL_STATE(3325)] = 129958, + [SMALL_STATE(3326)] = 129981, + [SMALL_STATE(3327)] = 130016, + [SMALL_STATE(3328)] = 130048, + [SMALL_STATE(3329)] = 130074, + [SMALL_STATE(3330)] = 130100, + [SMALL_STATE(3331)] = 130122, + [SMALL_STATE(3332)] = 130150, + [SMALL_STATE(3333)] = 130166, + [SMALL_STATE(3334)] = 130198, + [SMALL_STATE(3335)] = 130228, + [SMALL_STATE(3336)] = 130258, + [SMALL_STATE(3337)] = 130274, + [SMALL_STATE(3338)] = 130290, + [SMALL_STATE(3339)] = 130322, + [SMALL_STATE(3340)] = 130352, + [SMALL_STATE(3341)] = 130368, + [SMALL_STATE(3342)] = 130384, + [SMALL_STATE(3343)] = 130412, + [SMALL_STATE(3344)] = 130428, + [SMALL_STATE(3345)] = 130458, + [SMALL_STATE(3346)] = 130488, + [SMALL_STATE(3347)] = 130520, + [SMALL_STATE(3348)] = 130548, + [SMALL_STATE(3349)] = 130564, + [SMALL_STATE(3350)] = 130596, + [SMALL_STATE(3351)] = 130612, + [SMALL_STATE(3352)] = 130628, + [SMALL_STATE(3353)] = 130658, + [SMALL_STATE(3354)] = 130688, + [SMALL_STATE(3355)] = 130718, + [SMALL_STATE(3356)] = 130744, + [SMALL_STATE(3357)] = 130770, + [SMALL_STATE(3358)] = 130786, + [SMALL_STATE(3359)] = 130802, + [SMALL_STATE(3360)] = 130818, + [SMALL_STATE(3361)] = 130846, + [SMALL_STATE(3362)] = 130874, + [SMALL_STATE(3363)] = 130902, + [SMALL_STATE(3364)] = 130930, + [SMALL_STATE(3365)] = 130946, + [SMALL_STATE(3366)] = 130974, + [SMALL_STATE(3367)] = 130994, + [SMALL_STATE(3368)] = 131020, + [SMALL_STATE(3369)] = 131048, + [SMALL_STATE(3370)] = 131076, + [SMALL_STATE(3371)] = 131092, + [SMALL_STATE(3372)] = 131108, + [SMALL_STATE(3373)] = 131136, + [SMALL_STATE(3374)] = 131152, + [SMALL_STATE(3375)] = 131180, + [SMALL_STATE(3376)] = 131196, + [SMALL_STATE(3377)] = 131212, + [SMALL_STATE(3378)] = 131244, + [SMALL_STATE(3379)] = 131272, + [SMALL_STATE(3380)] = 131300, + [SMALL_STATE(3381)] = 131318, + [SMALL_STATE(3382)] = 131348, + [SMALL_STATE(3383)] = 131380, + [SMALL_STATE(3384)] = 131396, + [SMALL_STATE(3385)] = 131418, + [SMALL_STATE(3386)] = 131434, + [SMALL_STATE(3387)] = 131464, + [SMALL_STATE(3388)] = 131492, + [SMALL_STATE(3389)] = 131524, + [SMALL_STATE(3390)] = 131540, + [SMALL_STATE(3391)] = 131556, + [SMALL_STATE(3392)] = 131586, + [SMALL_STATE(3393)] = 131616, + [SMALL_STATE(3394)] = 131638, + [SMALL_STATE(3395)] = 131668, + [SMALL_STATE(3396)] = 131698, + [SMALL_STATE(3397)] = 131726, + [SMALL_STATE(3398)] = 131742, + [SMALL_STATE(3399)] = 131764, + [SMALL_STATE(3400)] = 131790, + [SMALL_STATE(3401)] = 131818, + [SMALL_STATE(3402)] = 131844, + [SMALL_STATE(3403)] = 131868, + [SMALL_STATE(3404)] = 131898, + [SMALL_STATE(3405)] = 131928, + [SMALL_STATE(3406)] = 131956, + [SMALL_STATE(3407)] = 131984, + [SMALL_STATE(3408)] = 132014, + [SMALL_STATE(3409)] = 132030, + [SMALL_STATE(3410)] = 132058, + [SMALL_STATE(3411)] = 132090, + [SMALL_STATE(3412)] = 132118, + [SMALL_STATE(3413)] = 132150, + [SMALL_STATE(3414)] = 132178, + [SMALL_STATE(3415)] = 132200, + [SMALL_STATE(3416)] = 132232, + [SMALL_STATE(3417)] = 132258, + [SMALL_STATE(3418)] = 132274, + [SMALL_STATE(3419)] = 132304, + [SMALL_STATE(3420)] = 132334, + [SMALL_STATE(3421)] = 132360, + [SMALL_STATE(3422)] = 132388, + [SMALL_STATE(3423)] = 132414, + [SMALL_STATE(3424)] = 132444, + [SMALL_STATE(3425)] = 132472, + [SMALL_STATE(3426)] = 132488, + [SMALL_STATE(3427)] = 132504, + [SMALL_STATE(3428)] = 132532, + [SMALL_STATE(3429)] = 132560, + [SMALL_STATE(3430)] = 132588, + [SMALL_STATE(3431)] = 132604, + [SMALL_STATE(3432)] = 132634, + [SMALL_STATE(3433)] = 132666, + [SMALL_STATE(3434)] = 132682, + [SMALL_STATE(3435)] = 132712, + [SMALL_STATE(3436)] = 132740, + [SMALL_STATE(3437)] = 132768, + [SMALL_STATE(3438)] = 132800, + [SMALL_STATE(3439)] = 132816, + [SMALL_STATE(3440)] = 132832, + [SMALL_STATE(3441)] = 132860, + [SMALL_STATE(3442)] = 132888, + [SMALL_STATE(3443)] = 132916, + [SMALL_STATE(3444)] = 132932, + [SMALL_STATE(3445)] = 132964, + [SMALL_STATE(3446)] = 132992, + [SMALL_STATE(3447)] = 133012, + [SMALL_STATE(3448)] = 133040, + [SMALL_STATE(3449)] = 133056, + [SMALL_STATE(3450)] = 133086, + [SMALL_STATE(3451)] = 133108, + [SMALL_STATE(3452)] = 133136, + [SMALL_STATE(3453)] = 133164, + [SMALL_STATE(3454)] = 133180, + [SMALL_STATE(3455)] = 133196, + [SMALL_STATE(3456)] = 133212, + [SMALL_STATE(3457)] = 133240, + [SMALL_STATE(3458)] = 133270, + [SMALL_STATE(3459)] = 133286, + [SMALL_STATE(3460)] = 133304, + [SMALL_STATE(3461)] = 133334, + [SMALL_STATE(3462)] = 133362, + [SMALL_STATE(3463)] = 133378, + [SMALL_STATE(3464)] = 133404, + [SMALL_STATE(3465)] = 133420, + [SMALL_STATE(3466)] = 133448, + [SMALL_STATE(3467)] = 133476, + [SMALL_STATE(3468)] = 133498, + [SMALL_STATE(3469)] = 133526, + [SMALL_STATE(3470)] = 133542, + [SMALL_STATE(3471)] = 133562, + [SMALL_STATE(3472)] = 133580, + [SMALL_STATE(3473)] = 133606, + [SMALL_STATE(3474)] = 133636, + [SMALL_STATE(3475)] = 133666, + [SMALL_STATE(3476)] = 133694, + [SMALL_STATE(3477)] = 133710, + [SMALL_STATE(3478)] = 133742, + [SMALL_STATE(3479)] = 133770, + [SMALL_STATE(3480)] = 133798, + [SMALL_STATE(3481)] = 133816, + [SMALL_STATE(3482)] = 133844, + [SMALL_STATE(3483)] = 133866, + [SMALL_STATE(3484)] = 133884, + [SMALL_STATE(3485)] = 133916, + [SMALL_STATE(3486)] = 133944, + [SMALL_STATE(3487)] = 133970, + [SMALL_STATE(3488)] = 133998, + [SMALL_STATE(3489)] = 134028, + [SMALL_STATE(3490)] = 134058, + [SMALL_STATE(3491)] = 134088, + [SMALL_STATE(3492)] = 134118, + [SMALL_STATE(3493)] = 134144, + [SMALL_STATE(3494)] = 134176, + [SMALL_STATE(3495)] = 134206, + [SMALL_STATE(3496)] = 134234, + [SMALL_STATE(3497)] = 134266, + [SMALL_STATE(3498)] = 134296, + [SMALL_STATE(3499)] = 134326, + [SMALL_STATE(3500)] = 134356, + [SMALL_STATE(3501)] = 134372, + [SMALL_STATE(3502)] = 134402, + [SMALL_STATE(3503)] = 134432, + [SMALL_STATE(3504)] = 134448, + [SMALL_STATE(3505)] = 134480, + [SMALL_STATE(3506)] = 134509, + [SMALL_STATE(3507)] = 134534, + [SMALL_STATE(3508)] = 134557, + [SMALL_STATE(3509)] = 134580, + [SMALL_STATE(3510)] = 134609, + [SMALL_STATE(3511)] = 134634, + [SMALL_STATE(3512)] = 134663, + [SMALL_STATE(3513)] = 134688, + [SMALL_STATE(3514)] = 134711, + [SMALL_STATE(3515)] = 134740, + [SMALL_STATE(3516)] = 134765, + [SMALL_STATE(3517)] = 134790, + [SMALL_STATE(3518)] = 134815, + [SMALL_STATE(3519)] = 134840, + [SMALL_STATE(3520)] = 134865, + [SMALL_STATE(3521)] = 134890, + [SMALL_STATE(3522)] = 134915, + [SMALL_STATE(3523)] = 134932, + [SMALL_STATE(3524)] = 134949, + [SMALL_STATE(3525)] = 134966, + [SMALL_STATE(3526)] = 134987, + [SMALL_STATE(3527)] = 135016, + [SMALL_STATE(3528)] = 135041, + [SMALL_STATE(3529)] = 135070, + [SMALL_STATE(3530)] = 135091, + [SMALL_STATE(3531)] = 135112, + [SMALL_STATE(3532)] = 135137, + [SMALL_STATE(3533)] = 135160, + [SMALL_STATE(3534)] = 135183, + [SMALL_STATE(3535)] = 135206, + [SMALL_STATE(3536)] = 135221, + [SMALL_STATE(3537)] = 135236, + [SMALL_STATE(3538)] = 135265, + [SMALL_STATE(3539)] = 135282, + [SMALL_STATE(3540)] = 135299, + [SMALL_STATE(3541)] = 135314, + [SMALL_STATE(3542)] = 135329, + [SMALL_STATE(3543)] = 135344, + [SMALL_STATE(3544)] = 135373, + [SMALL_STATE(3545)] = 135396, + [SMALL_STATE(3546)] = 135419, + [SMALL_STATE(3547)] = 135440, + [SMALL_STATE(3548)] = 135461, + [SMALL_STATE(3549)] = 135482, + [SMALL_STATE(3550)] = 135505, + [SMALL_STATE(3551)] = 135524, + [SMALL_STATE(3552)] = 135546, + [SMALL_STATE(3553)] = 135560, + [SMALL_STATE(3554)] = 135586, + [SMALL_STATE(3555)] = 135612, + [SMALL_STATE(3556)] = 135634, + [SMALL_STATE(3557)] = 135656, + [SMALL_STATE(3558)] = 135682, + [SMALL_STATE(3559)] = 135708, + [SMALL_STATE(3560)] = 135730, + [SMALL_STATE(3561)] = 135744, + [SMALL_STATE(3562)] = 135770, + [SMALL_STATE(3563)] = 135792, + [SMALL_STATE(3564)] = 135814, + [SMALL_STATE(3565)] = 135836, + [SMALL_STATE(3566)] = 135858, + [SMALL_STATE(3567)] = 135880, + [SMALL_STATE(3568)] = 135906, + [SMALL_STATE(3569)] = 135928, + [SMALL_STATE(3570)] = 135950, + [SMALL_STATE(3571)] = 135976, + [SMALL_STATE(3572)] = 136002, + [SMALL_STATE(3573)] = 136024, + [SMALL_STATE(3574)] = 136046, + [SMALL_STATE(3575)] = 136072, + [SMALL_STATE(3576)] = 136094, + [SMALL_STATE(3577)] = 136120, + [SMALL_STATE(3578)] = 136142, + [SMALL_STATE(3579)] = 136164, + [SMALL_STATE(3580)] = 136186, + [SMALL_STATE(3581)] = 136212, + [SMALL_STATE(3582)] = 136238, + [SMALL_STATE(3583)] = 136264, + [SMALL_STATE(3584)] = 136286, + [SMALL_STATE(3585)] = 136312, + [SMALL_STATE(3586)] = 136334, + [SMALL_STATE(3587)] = 136360, + [SMALL_STATE(3588)] = 136386, + [SMALL_STATE(3589)] = 136412, + [SMALL_STATE(3590)] = 136438, + [SMALL_STATE(3591)] = 136464, + [SMALL_STATE(3592)] = 136480, + [SMALL_STATE(3593)] = 136506, + [SMALL_STATE(3594)] = 136532, + [SMALL_STATE(3595)] = 136558, + [SMALL_STATE(3596)] = 136584, + [SMALL_STATE(3597)] = 136610, + [SMALL_STATE(3598)] = 136636, + [SMALL_STATE(3599)] = 136658, + [SMALL_STATE(3600)] = 136684, + [SMALL_STATE(3601)] = 136706, + [SMALL_STATE(3602)] = 136724, + [SMALL_STATE(3603)] = 136746, + [SMALL_STATE(3604)] = 136768, + [SMALL_STATE(3605)] = 136790, + [SMALL_STATE(3606)] = 136812, + [SMALL_STATE(3607)] = 136838, + [SMALL_STATE(3608)] = 136860, + [SMALL_STATE(3609)] = 136886, + [SMALL_STATE(3610)] = 136908, + [SMALL_STATE(3611)] = 136930, + [SMALL_STATE(3612)] = 136948, + [SMALL_STATE(3613)] = 136962, + [SMALL_STATE(3614)] = 136976, + [SMALL_STATE(3615)] = 137002, + [SMALL_STATE(3616)] = 137016, + [SMALL_STATE(3617)] = 137038, + [SMALL_STATE(3618)] = 137052, + [SMALL_STATE(3619)] = 137076, + [SMALL_STATE(3620)] = 137098, + [SMALL_STATE(3621)] = 137120, + [SMALL_STATE(3622)] = 137136, + [SMALL_STATE(3623)] = 137158, + [SMALL_STATE(3624)] = 137174, + [SMALL_STATE(3625)] = 137188, + [SMALL_STATE(3626)] = 137210, + [SMALL_STATE(3627)] = 137228, + [SMALL_STATE(3628)] = 137250, + [SMALL_STATE(3629)] = 137272, + [SMALL_STATE(3630)] = 137294, + [SMALL_STATE(3631)] = 137316, + [SMALL_STATE(3632)] = 137342, + [SMALL_STATE(3633)] = 137364, + [SMALL_STATE(3634)] = 137386, + [SMALL_STATE(3635)] = 137406, + [SMALL_STATE(3636)] = 137422, + [SMALL_STATE(3637)] = 137442, + [SMALL_STATE(3638)] = 137462, + [SMALL_STATE(3639)] = 137484, + [SMALL_STATE(3640)] = 137506, + [SMALL_STATE(3641)] = 137528, + [SMALL_STATE(3642)] = 137548, + [SMALL_STATE(3643)] = 137568, + [SMALL_STATE(3644)] = 137594, + [SMALL_STATE(3645)] = 137614, + [SMALL_STATE(3646)] = 137636, + [SMALL_STATE(3647)] = 137650, + [SMALL_STATE(3648)] = 137666, + [SMALL_STATE(3649)] = 137680, + [SMALL_STATE(3650)] = 137694, + [SMALL_STATE(3651)] = 137716, + [SMALL_STATE(3652)] = 137742, + [SMALL_STATE(3653)] = 137764, + [SMALL_STATE(3654)] = 137790, + [SMALL_STATE(3655)] = 137812, + [SMALL_STATE(3656)] = 137836, + [SMALL_STATE(3657)] = 137862, + [SMALL_STATE(3658)] = 137884, + [SMALL_STATE(3659)] = 137906, + [SMALL_STATE(3660)] = 137920, + [SMALL_STATE(3661)] = 137942, + [SMALL_STATE(3662)] = 137960, + [SMALL_STATE(3663)] = 137986, + [SMALL_STATE(3664)] = 138008, + [SMALL_STATE(3665)] = 138026, + [SMALL_STATE(3666)] = 138048, + [SMALL_STATE(3667)] = 138070, + [SMALL_STATE(3668)] = 138096, + [SMALL_STATE(3669)] = 138118, + [SMALL_STATE(3670)] = 138140, + [SMALL_STATE(3671)] = 138162, + [SMALL_STATE(3672)] = 138184, + [SMALL_STATE(3673)] = 138206, + [SMALL_STATE(3674)] = 138224, + [SMALL_STATE(3675)] = 138246, + [SMALL_STATE(3676)] = 138264, + [SMALL_STATE(3677)] = 138286, + [SMALL_STATE(3678)] = 138304, + [SMALL_STATE(3679)] = 138326, + [SMALL_STATE(3680)] = 138346, + [SMALL_STATE(3681)] = 138372, + [SMALL_STATE(3682)] = 138394, + [SMALL_STATE(3683)] = 138416, + [SMALL_STATE(3684)] = 138438, + [SMALL_STATE(3685)] = 138460, + [SMALL_STATE(3686)] = 138486, + [SMALL_STATE(3687)] = 138508, + [SMALL_STATE(3688)] = 138530, + [SMALL_STATE(3689)] = 138552, + [SMALL_STATE(3690)] = 138574, + [SMALL_STATE(3691)] = 138600, + [SMALL_STATE(3692)] = 138622, + [SMALL_STATE(3693)] = 138644, + [SMALL_STATE(3694)] = 138666, + [SMALL_STATE(3695)] = 138688, + [SMALL_STATE(3696)] = 138710, + [SMALL_STATE(3697)] = 138732, + [SMALL_STATE(3698)] = 138754, + [SMALL_STATE(3699)] = 138772, + [SMALL_STATE(3700)] = 138790, + [SMALL_STATE(3701)] = 138808, + [SMALL_STATE(3702)] = 138826, + [SMALL_STATE(3703)] = 138848, + [SMALL_STATE(3704)] = 138870, + [SMALL_STATE(3705)] = 138892, + [SMALL_STATE(3706)] = 138914, + [SMALL_STATE(3707)] = 138936, + [SMALL_STATE(3708)] = 138958, + [SMALL_STATE(3709)] = 138980, + [SMALL_STATE(3710)] = 139002, + [SMALL_STATE(3711)] = 139024, + [SMALL_STATE(3712)] = 139046, + [SMALL_STATE(3713)] = 139068, + [SMALL_STATE(3714)] = 139090, + [SMALL_STATE(3715)] = 139108, + [SMALL_STATE(3716)] = 139130, + [SMALL_STATE(3717)] = 139152, + [SMALL_STATE(3718)] = 139174, + [SMALL_STATE(3719)] = 139192, + [SMALL_STATE(3720)] = 139218, + [SMALL_STATE(3721)] = 139236, + [SMALL_STATE(3722)] = 139252, + [SMALL_STATE(3723)] = 139278, + [SMALL_STATE(3724)] = 139304, + [SMALL_STATE(3725)] = 139330, + [SMALL_STATE(3726)] = 139352, + [SMALL_STATE(3727)] = 139374, + [SMALL_STATE(3728)] = 139390, + [SMALL_STATE(3729)] = 139408, + [SMALL_STATE(3730)] = 139422, + [SMALL_STATE(3731)] = 139436, + [SMALL_STATE(3732)] = 139462, + [SMALL_STATE(3733)] = 139480, + [SMALL_STATE(3734)] = 139498, + [SMALL_STATE(3735)] = 139524, + [SMALL_STATE(3736)] = 139546, + [SMALL_STATE(3737)] = 139564, + [SMALL_STATE(3738)] = 139586, + [SMALL_STATE(3739)] = 139608, + [SMALL_STATE(3740)] = 139630, + [SMALL_STATE(3741)] = 139652, + [SMALL_STATE(3742)] = 139674, + [SMALL_STATE(3743)] = 139690, + [SMALL_STATE(3744)] = 139710, + [SMALL_STATE(3745)] = 139726, + [SMALL_STATE(3746)] = 139748, + [SMALL_STATE(3747)] = 139774, + [SMALL_STATE(3748)] = 139796, + [SMALL_STATE(3749)] = 139818, + [SMALL_STATE(3750)] = 139838, + [SMALL_STATE(3751)] = 139860, + [SMALL_STATE(3752)] = 139878, + [SMALL_STATE(3753)] = 139896, + [SMALL_STATE(3754)] = 139918, + [SMALL_STATE(3755)] = 139936, + [SMALL_STATE(3756)] = 139954, + [SMALL_STATE(3757)] = 139972, + [SMALL_STATE(3758)] = 139994, + [SMALL_STATE(3759)] = 140012, + [SMALL_STATE(3760)] = 140030, + [SMALL_STATE(3761)] = 140048, + [SMALL_STATE(3762)] = 140070, + [SMALL_STATE(3763)] = 140092, + [SMALL_STATE(3764)] = 140118, + [SMALL_STATE(3765)] = 140136, + [SMALL_STATE(3766)] = 140154, + [SMALL_STATE(3767)] = 140172, + [SMALL_STATE(3768)] = 140194, + [SMALL_STATE(3769)] = 140220, + [SMALL_STATE(3770)] = 140234, + [SMALL_STATE(3771)] = 140256, + [SMALL_STATE(3772)] = 140282, + [SMALL_STATE(3773)] = 140304, + [SMALL_STATE(3774)] = 140318, + [SMALL_STATE(3775)] = 140344, + [SMALL_STATE(3776)] = 140366, + [SMALL_STATE(3777)] = 140388, + [SMALL_STATE(3778)] = 140414, + [SMALL_STATE(3779)] = 140440, + [SMALL_STATE(3780)] = 140454, + [SMALL_STATE(3781)] = 140476, + [SMALL_STATE(3782)] = 140498, + [SMALL_STATE(3783)] = 140520, + [SMALL_STATE(3784)] = 140542, + [SMALL_STATE(3785)] = 140568, + [SMALL_STATE(3786)] = 140590, + [SMALL_STATE(3787)] = 140612, + [SMALL_STATE(3788)] = 140638, + [SMALL_STATE(3789)] = 140664, + [SMALL_STATE(3790)] = 140690, + [SMALL_STATE(3791)] = 140712, + [SMALL_STATE(3792)] = 140734, + [SMALL_STATE(3793)] = 140756, + [SMALL_STATE(3794)] = 140782, + [SMALL_STATE(3795)] = 140808, + [SMALL_STATE(3796)] = 140830, + [SMALL_STATE(3797)] = 140852, + [SMALL_STATE(3798)] = 140865, + [SMALL_STATE(3799)] = 140882, + [SMALL_STATE(3800)] = 140905, + [SMALL_STATE(3801)] = 140922, + [SMALL_STATE(3802)] = 140945, + [SMALL_STATE(3803)] = 140958, + [SMALL_STATE(3804)] = 140975, + [SMALL_STATE(3805)] = 140992, + [SMALL_STATE(3806)] = 141009, + [SMALL_STATE(3807)] = 141026, + [SMALL_STATE(3808)] = 141045, + [SMALL_STATE(3809)] = 141062, + [SMALL_STATE(3810)] = 141081, + [SMALL_STATE(3811)] = 141104, + [SMALL_STATE(3812)] = 141127, + [SMALL_STATE(3813)] = 141140, + [SMALL_STATE(3814)] = 141157, + [SMALL_STATE(3815)] = 141180, + [SMALL_STATE(3816)] = 141199, + [SMALL_STATE(3817)] = 141218, + [SMALL_STATE(3818)] = 141241, + [SMALL_STATE(3819)] = 141264, + [SMALL_STATE(3820)] = 141287, + [SMALL_STATE(3821)] = 141304, + [SMALL_STATE(3822)] = 141321, + [SMALL_STATE(3823)] = 141338, + [SMALL_STATE(3824)] = 141361, + [SMALL_STATE(3825)] = 141384, + [SMALL_STATE(3826)] = 141407, + [SMALL_STATE(3827)] = 141430, + [SMALL_STATE(3828)] = 141453, + [SMALL_STATE(3829)] = 141476, + [SMALL_STATE(3830)] = 141495, + [SMALL_STATE(3831)] = 141518, + [SMALL_STATE(3832)] = 141541, + [SMALL_STATE(3833)] = 141554, + [SMALL_STATE(3834)] = 141569, + [SMALL_STATE(3835)] = 141588, + [SMALL_STATE(3836)] = 141603, + [SMALL_STATE(3837)] = 141620, + [SMALL_STATE(3838)] = 141639, + [SMALL_STATE(3839)] = 141662, + [SMALL_STATE(3840)] = 141685, + [SMALL_STATE(3841)] = 141702, + [SMALL_STATE(3842)] = 141725, + [SMALL_STATE(3843)] = 141748, + [SMALL_STATE(3844)] = 141771, + [SMALL_STATE(3845)] = 141794, + [SMALL_STATE(3846)] = 141817, + [SMALL_STATE(3847)] = 141838, + [SMALL_STATE(3848)] = 141855, + [SMALL_STATE(3849)] = 141870, + [SMALL_STATE(3850)] = 141883, + [SMALL_STATE(3851)] = 141902, + [SMALL_STATE(3852)] = 141919, + [SMALL_STATE(3853)] = 141942, + [SMALL_STATE(3854)] = 141965, + [SMALL_STATE(3855)] = 141980, + [SMALL_STATE(3856)] = 141999, + [SMALL_STATE(3857)] = 142022, + [SMALL_STATE(3858)] = 142039, + [SMALL_STATE(3859)] = 142062, + [SMALL_STATE(3860)] = 142081, + [SMALL_STATE(3861)] = 142102, + [SMALL_STATE(3862)] = 142115, + [SMALL_STATE(3863)] = 142138, + [SMALL_STATE(3864)] = 142155, + [SMALL_STATE(3865)] = 142172, + [SMALL_STATE(3866)] = 142189, + [SMALL_STATE(3867)] = 142212, + [SMALL_STATE(3868)] = 142229, + [SMALL_STATE(3869)] = 142246, + [SMALL_STATE(3870)] = 142265, + [SMALL_STATE(3871)] = 142282, + [SMALL_STATE(3872)] = 142299, + [SMALL_STATE(3873)] = 142314, + [SMALL_STATE(3874)] = 142337, + [SMALL_STATE(3875)] = 142354, + [SMALL_STATE(3876)] = 142373, + [SMALL_STATE(3877)] = 142396, + [SMALL_STATE(3878)] = 142413, + [SMALL_STATE(3879)] = 142436, + [SMALL_STATE(3880)] = 142459, + [SMALL_STATE(3881)] = 142482, + [SMALL_STATE(3882)] = 142505, + [SMALL_STATE(3883)] = 142528, + [SMALL_STATE(3884)] = 142551, + [SMALL_STATE(3885)] = 142564, + [SMALL_STATE(3886)] = 142583, + [SMALL_STATE(3887)] = 142600, + [SMALL_STATE(3888)] = 142617, + [SMALL_STATE(3889)] = 142636, + [SMALL_STATE(3890)] = 142653, + [SMALL_STATE(3891)] = 142676, + [SMALL_STATE(3892)] = 142693, + [SMALL_STATE(3893)] = 142710, + [SMALL_STATE(3894)] = 142733, + [SMALL_STATE(3895)] = 142750, + [SMALL_STATE(3896)] = 142763, + [SMALL_STATE(3897)] = 142786, + [SMALL_STATE(3898)] = 142809, + [SMALL_STATE(3899)] = 142826, + [SMALL_STATE(3900)] = 142849, + [SMALL_STATE(3901)] = 142872, + [SMALL_STATE(3902)] = 142885, + [SMALL_STATE(3903)] = 142908, + [SMALL_STATE(3904)] = 142925, + [SMALL_STATE(3905)] = 142938, + [SMALL_STATE(3906)] = 142961, + [SMALL_STATE(3907)] = 142974, + [SMALL_STATE(3908)] = 142987, + [SMALL_STATE(3909)] = 143000, + [SMALL_STATE(3910)] = 143023, + [SMALL_STATE(3911)] = 143046, + [SMALL_STATE(3912)] = 143063, + [SMALL_STATE(3913)] = 143084, + [SMALL_STATE(3914)] = 143107, + [SMALL_STATE(3915)] = 143130, + [SMALL_STATE(3916)] = 143153, + [SMALL_STATE(3917)] = 143170, + [SMALL_STATE(3918)] = 143187, + [SMALL_STATE(3919)] = 143204, + [SMALL_STATE(3920)] = 143219, + [SMALL_STATE(3921)] = 143238, + [SMALL_STATE(3922)] = 143261, + [SMALL_STATE(3923)] = 143276, + [SMALL_STATE(3924)] = 143299, + [SMALL_STATE(3925)] = 143322, + [SMALL_STATE(3926)] = 143345, + [SMALL_STATE(3927)] = 143362, + [SMALL_STATE(3928)] = 143385, + [SMALL_STATE(3929)] = 143402, + [SMALL_STATE(3930)] = 143421, + [SMALL_STATE(3931)] = 143438, + [SMALL_STATE(3932)] = 143455, + [SMALL_STATE(3933)] = 143468, + [SMALL_STATE(3934)] = 143485, + [SMALL_STATE(3935)] = 143508, + [SMALL_STATE(3936)] = 143525, + [SMALL_STATE(3937)] = 143544, + [SMALL_STATE(3938)] = 143567, + [SMALL_STATE(3939)] = 143590, + [SMALL_STATE(3940)] = 143613, + [SMALL_STATE(3941)] = 143636, + [SMALL_STATE(3942)] = 143655, + [SMALL_STATE(3943)] = 143678, + [SMALL_STATE(3944)] = 143695, + [SMALL_STATE(3945)] = 143712, + [SMALL_STATE(3946)] = 143729, + [SMALL_STATE(3947)] = 143752, + [SMALL_STATE(3948)] = 143775, + [SMALL_STATE(3949)] = 143790, + [SMALL_STATE(3950)] = 143807, + [SMALL_STATE(3951)] = 143824, + [SMALL_STATE(3952)] = 143841, + [SMALL_STATE(3953)] = 143860, + [SMALL_STATE(3954)] = 143877, + [SMALL_STATE(3955)] = 143900, + [SMALL_STATE(3956)] = 143919, + [SMALL_STATE(3957)] = 143942, + [SMALL_STATE(3958)] = 143962, + [SMALL_STATE(3959)] = 143978, + [SMALL_STATE(3960)] = 143990, + [SMALL_STATE(3961)] = 144010, + [SMALL_STATE(3962)] = 144022, + [SMALL_STATE(3963)] = 144034, + [SMALL_STATE(3964)] = 144050, + [SMALL_STATE(3965)] = 144062, + [SMALL_STATE(3966)] = 144078, + [SMALL_STATE(3967)] = 144092, + [SMALL_STATE(3968)] = 144106, + [SMALL_STATE(3969)] = 144122, + [SMALL_STATE(3970)] = 144138, + [SMALL_STATE(3971)] = 144154, + [SMALL_STATE(3972)] = 144170, + [SMALL_STATE(3973)] = 144184, + [SMALL_STATE(3974)] = 144202, + [SMALL_STATE(3975)] = 144222, + [SMALL_STATE(3976)] = 144234, + [SMALL_STATE(3977)] = 144248, + [SMALL_STATE(3978)] = 144264, + [SMALL_STATE(3979)] = 144280, + [SMALL_STATE(3980)] = 144300, + [SMALL_STATE(3981)] = 144314, + [SMALL_STATE(3982)] = 144334, + [SMALL_STATE(3983)] = 144350, + [SMALL_STATE(3984)] = 144362, + [SMALL_STATE(3985)] = 144378, + [SMALL_STATE(3986)] = 144392, + [SMALL_STATE(3987)] = 144412, + [SMALL_STATE(3988)] = 144424, + [SMALL_STATE(3989)] = 144440, + [SMALL_STATE(3990)] = 144454, + [SMALL_STATE(3991)] = 144466, + [SMALL_STATE(3992)] = 144478, + [SMALL_STATE(3993)] = 144494, + [SMALL_STATE(3994)] = 144510, + [SMALL_STATE(3995)] = 144530, + [SMALL_STATE(3996)] = 144546, + [SMALL_STATE(3997)] = 144564, + [SMALL_STATE(3998)] = 144578, + [SMALL_STATE(3999)] = 144590, + [SMALL_STATE(4000)] = 144602, + [SMALL_STATE(4001)] = 144618, + [SMALL_STATE(4002)] = 144634, + [SMALL_STATE(4003)] = 144646, + [SMALL_STATE(4004)] = 144658, + [SMALL_STATE(4005)] = 144670, + [SMALL_STATE(4006)] = 144682, + [SMALL_STATE(4007)] = 144698, + [SMALL_STATE(4008)] = 144714, + [SMALL_STATE(4009)] = 144732, + [SMALL_STATE(4010)] = 144748, + [SMALL_STATE(4011)] = 144760, + [SMALL_STATE(4012)] = 144776, + [SMALL_STATE(4013)] = 144796, + [SMALL_STATE(4014)] = 144816, + [SMALL_STATE(4015)] = 144836, + [SMALL_STATE(4016)] = 144856, + [SMALL_STATE(4017)] = 144872, + [SMALL_STATE(4018)] = 144892, + [SMALL_STATE(4019)] = 144904, + [SMALL_STATE(4020)] = 144920, + [SMALL_STATE(4021)] = 144932, + [SMALL_STATE(4022)] = 144944, + [SMALL_STATE(4023)] = 144964, + [SMALL_STATE(4024)] = 144984, + [SMALL_STATE(4025)] = 145000, + [SMALL_STATE(4026)] = 145016, + [SMALL_STATE(4027)] = 145028, + [SMALL_STATE(4028)] = 145042, + [SMALL_STATE(4029)] = 145056, + [SMALL_STATE(4030)] = 145068, + [SMALL_STATE(4031)] = 145080, + [SMALL_STATE(4032)] = 145092, + [SMALL_STATE(4033)] = 145106, + [SMALL_STATE(4034)] = 145120, + [SMALL_STATE(4035)] = 145132, + [SMALL_STATE(4036)] = 145150, + [SMALL_STATE(4037)] = 145162, + [SMALL_STATE(4038)] = 145180, + [SMALL_STATE(4039)] = 145192, + [SMALL_STATE(4040)] = 145212, + [SMALL_STATE(4041)] = 145224, + [SMALL_STATE(4042)] = 145242, + [SMALL_STATE(4043)] = 145254, + [SMALL_STATE(4044)] = 145266, + [SMALL_STATE(4045)] = 145280, + [SMALL_STATE(4046)] = 145292, + [SMALL_STATE(4047)] = 145304, + [SMALL_STATE(4048)] = 145316, + [SMALL_STATE(4049)] = 145336, + [SMALL_STATE(4050)] = 145348, + [SMALL_STATE(4051)] = 145368, + [SMALL_STATE(4052)] = 145384, + [SMALL_STATE(4053)] = 145400, + [SMALL_STATE(4054)] = 145414, + [SMALL_STATE(4055)] = 145426, + [SMALL_STATE(4056)] = 145446, + [SMALL_STATE(4057)] = 145458, + [SMALL_STATE(4058)] = 145478, + [SMALL_STATE(4059)] = 145490, + [SMALL_STATE(4060)] = 145502, + [SMALL_STATE(4061)] = 145518, + [SMALL_STATE(4062)] = 145538, + [SMALL_STATE(4063)] = 145550, + [SMALL_STATE(4064)] = 145562, + [SMALL_STATE(4065)] = 145574, + [SMALL_STATE(4066)] = 145594, + [SMALL_STATE(4067)] = 145610, + [SMALL_STATE(4068)] = 145626, + [SMALL_STATE(4069)] = 145642, + [SMALL_STATE(4070)] = 145654, + [SMALL_STATE(4071)] = 145674, + [SMALL_STATE(4072)] = 145688, + [SMALL_STATE(4073)] = 145704, + [SMALL_STATE(4074)] = 145720, + [SMALL_STATE(4075)] = 145740, + [SMALL_STATE(4076)] = 145756, + [SMALL_STATE(4077)] = 145776, + [SMALL_STATE(4078)] = 145788, + [SMALL_STATE(4079)] = 145800, + [SMALL_STATE(4080)] = 145812, + [SMALL_STATE(4081)] = 145824, + [SMALL_STATE(4082)] = 145844, + [SMALL_STATE(4083)] = 145856, + [SMALL_STATE(4084)] = 145868, + [SMALL_STATE(4085)] = 145880, + [SMALL_STATE(4086)] = 145896, + [SMALL_STATE(4087)] = 145914, + [SMALL_STATE(4088)] = 145930, + [SMALL_STATE(4089)] = 145946, + [SMALL_STATE(4090)] = 145962, + [SMALL_STATE(4091)] = 145976, + [SMALL_STATE(4092)] = 145990, + [SMALL_STATE(4093)] = 146002, + [SMALL_STATE(4094)] = 146018, + [SMALL_STATE(4095)] = 146030, + [SMALL_STATE(4096)] = 146048, + [SMALL_STATE(4097)] = 146060, + [SMALL_STATE(4098)] = 146074, + [SMALL_STATE(4099)] = 146090, + [SMALL_STATE(4100)] = 146102, + [SMALL_STATE(4101)] = 146114, + [SMALL_STATE(4102)] = 146130, + [SMALL_STATE(4103)] = 146150, + [SMALL_STATE(4104)] = 146166, + [SMALL_STATE(4105)] = 146182, + [SMALL_STATE(4106)] = 146194, + [SMALL_STATE(4107)] = 146214, + [SMALL_STATE(4108)] = 146234, + [SMALL_STATE(4109)] = 146250, + [SMALL_STATE(4110)] = 146262, + [SMALL_STATE(4111)] = 146282, + [SMALL_STATE(4112)] = 146294, + [SMALL_STATE(4113)] = 146312, + [SMALL_STATE(4114)] = 146328, + [SMALL_STATE(4115)] = 146348, + [SMALL_STATE(4116)] = 146364, + [SMALL_STATE(4117)] = 146380, + [SMALL_STATE(4118)] = 146400, + [SMALL_STATE(4119)] = 146416, + [SMALL_STATE(4120)] = 146432, + [SMALL_STATE(4121)] = 146448, + [SMALL_STATE(4122)] = 146464, + [SMALL_STATE(4123)] = 146484, + [SMALL_STATE(4124)] = 146496, + [SMALL_STATE(4125)] = 146510, + [SMALL_STATE(4126)] = 146522, + [SMALL_STATE(4127)] = 146534, + [SMALL_STATE(4128)] = 146550, + [SMALL_STATE(4129)] = 146562, + [SMALL_STATE(4130)] = 146576, + [SMALL_STATE(4131)] = 146590, + [SMALL_STATE(4132)] = 146606, + [SMALL_STATE(4133)] = 146618, + [SMALL_STATE(4134)] = 146630, + [SMALL_STATE(4135)] = 146642, + [SMALL_STATE(4136)] = 146658, + [SMALL_STATE(4137)] = 146674, + [SMALL_STATE(4138)] = 146690, + [SMALL_STATE(4139)] = 146706, + [SMALL_STATE(4140)] = 146722, + [SMALL_STATE(4141)] = 146736, + [SMALL_STATE(4142)] = 146752, + [SMALL_STATE(4143)] = 146764, + [SMALL_STATE(4144)] = 146784, + [SMALL_STATE(4145)] = 146800, + [SMALL_STATE(4146)] = 146816, + [SMALL_STATE(4147)] = 146832, + [SMALL_STATE(4148)] = 146848, + [SMALL_STATE(4149)] = 146860, + [SMALL_STATE(4150)] = 146876, + [SMALL_STATE(4151)] = 146892, + [SMALL_STATE(4152)] = 146904, + [SMALL_STATE(4153)] = 146916, + [SMALL_STATE(4154)] = 146930, + [SMALL_STATE(4155)] = 146942, + [SMALL_STATE(4156)] = 146958, + [SMALL_STATE(4157)] = 146974, + [SMALL_STATE(4158)] = 146990, + [SMALL_STATE(4159)] = 147002, + [SMALL_STATE(4160)] = 147018, + [SMALL_STATE(4161)] = 147030, + [SMALL_STATE(4162)] = 147048, + [SMALL_STATE(4163)] = 147060, + [SMALL_STATE(4164)] = 147072, + [SMALL_STATE(4165)] = 147084, + [SMALL_STATE(4166)] = 147096, + [SMALL_STATE(4167)] = 147116, + [SMALL_STATE(4168)] = 147128, + [SMALL_STATE(4169)] = 147148, + [SMALL_STATE(4170)] = 147164, + [SMALL_STATE(4171)] = 147180, + [SMALL_STATE(4172)] = 147196, + [SMALL_STATE(4173)] = 147208, + [SMALL_STATE(4174)] = 147224, + [SMALL_STATE(4175)] = 147236, + [SMALL_STATE(4176)] = 147252, + [SMALL_STATE(4177)] = 147264, + [SMALL_STATE(4178)] = 147280, + [SMALL_STATE(4179)] = 147296, + [SMALL_STATE(4180)] = 147308, + [SMALL_STATE(4181)] = 147320, + [SMALL_STATE(4182)] = 147336, + [SMALL_STATE(4183)] = 147348, + [SMALL_STATE(4184)] = 147360, + [SMALL_STATE(4185)] = 147372, + [SMALL_STATE(4186)] = 147392, + [SMALL_STATE(4187)] = 147404, + [SMALL_STATE(4188)] = 147416, + [SMALL_STATE(4189)] = 147428, + [SMALL_STATE(4190)] = 147440, + [SMALL_STATE(4191)] = 147452, + [SMALL_STATE(4192)] = 147468, + [SMALL_STATE(4193)] = 147484, + [SMALL_STATE(4194)] = 147504, + [SMALL_STATE(4195)] = 147520, + [SMALL_STATE(4196)] = 147536, + [SMALL_STATE(4197)] = 147552, + [SMALL_STATE(4198)] = 147568, + [SMALL_STATE(4199)] = 147588, + [SMALL_STATE(4200)] = 147604, + [SMALL_STATE(4201)] = 147624, + [SMALL_STATE(4202)] = 147644, + [SMALL_STATE(4203)] = 147660, + [SMALL_STATE(4204)] = 147676, + [SMALL_STATE(4205)] = 147692, + [SMALL_STATE(4206)] = 147708, + [SMALL_STATE(4207)] = 147724, + [SMALL_STATE(4208)] = 147740, + [SMALL_STATE(4209)] = 147756, + [SMALL_STATE(4210)] = 147774, + [SMALL_STATE(4211)] = 147794, + [SMALL_STATE(4212)] = 147810, + [SMALL_STATE(4213)] = 147826, + [SMALL_STATE(4214)] = 147838, + [SMALL_STATE(4215)] = 147854, + [SMALL_STATE(4216)] = 147870, + [SMALL_STATE(4217)] = 147886, + [SMALL_STATE(4218)] = 147902, + [SMALL_STATE(4219)] = 147918, + [SMALL_STATE(4220)] = 147934, + [SMALL_STATE(4221)] = 147950, + [SMALL_STATE(4222)] = 147970, + [SMALL_STATE(4223)] = 147990, + [SMALL_STATE(4224)] = 148006, + [SMALL_STATE(4225)] = 148022, + [SMALL_STATE(4226)] = 148038, + [SMALL_STATE(4227)] = 148054, + [SMALL_STATE(4228)] = 148070, + [SMALL_STATE(4229)] = 148086, + [SMALL_STATE(4230)] = 148102, + [SMALL_STATE(4231)] = 148118, + [SMALL_STATE(4232)] = 148130, + [SMALL_STATE(4233)] = 148146, + [SMALL_STATE(4234)] = 148164, + [SMALL_STATE(4235)] = 148180, + [SMALL_STATE(4236)] = 148194, + [SMALL_STATE(4237)] = 148214, + [SMALL_STATE(4238)] = 148226, + [SMALL_STATE(4239)] = 148242, + [SMALL_STATE(4240)] = 148258, + [SMALL_STATE(4241)] = 148278, + [SMALL_STATE(4242)] = 148294, + [SMALL_STATE(4243)] = 148310, + [SMALL_STATE(4244)] = 148322, + [SMALL_STATE(4245)] = 148338, + [SMALL_STATE(4246)] = 148358, + [SMALL_STATE(4247)] = 148370, + [SMALL_STATE(4248)] = 148386, + [SMALL_STATE(4249)] = 148400, + [SMALL_STATE(4250)] = 148416, + [SMALL_STATE(4251)] = 148428, + [SMALL_STATE(4252)] = 148440, + [SMALL_STATE(4253)] = 148456, + [SMALL_STATE(4254)] = 148468, + [SMALL_STATE(4255)] = 148482, + [SMALL_STATE(4256)] = 148494, + [SMALL_STATE(4257)] = 148506, + [SMALL_STATE(4258)] = 148522, + [SMALL_STATE(4259)] = 148534, + [SMALL_STATE(4260)] = 148546, + [SMALL_STATE(4261)] = 148558, + [SMALL_STATE(4262)] = 148578, + [SMALL_STATE(4263)] = 148590, + [SMALL_STATE(4264)] = 148602, + [SMALL_STATE(4265)] = 148614, + [SMALL_STATE(4266)] = 148626, + [SMALL_STATE(4267)] = 148642, + [SMALL_STATE(4268)] = 148660, + [SMALL_STATE(4269)] = 148680, + [SMALL_STATE(4270)] = 148692, + [SMALL_STATE(4271)] = 148712, + [SMALL_STATE(4272)] = 148724, + [SMALL_STATE(4273)] = 148736, + [SMALL_STATE(4274)] = 148748, + [SMALL_STATE(4275)] = 148760, + [SMALL_STATE(4276)] = 148780, + [SMALL_STATE(4277)] = 148796, + [SMALL_STATE(4278)] = 148808, + [SMALL_STATE(4279)] = 148824, + [SMALL_STATE(4280)] = 148840, + [SMALL_STATE(4281)] = 148852, + [SMALL_STATE(4282)] = 148868, + [SMALL_STATE(4283)] = 148880, + [SMALL_STATE(4284)] = 148892, + [SMALL_STATE(4285)] = 148908, + [SMALL_STATE(4286)] = 148924, + [SMALL_STATE(4287)] = 148940, + [SMALL_STATE(4288)] = 148956, + [SMALL_STATE(4289)] = 148976, + [SMALL_STATE(4290)] = 148988, + [SMALL_STATE(4291)] = 149002, + [SMALL_STATE(4292)] = 149022, + [SMALL_STATE(4293)] = 149036, + [SMALL_STATE(4294)] = 149050, + [SMALL_STATE(4295)] = 149066, + [SMALL_STATE(4296)] = 149082, + [SMALL_STATE(4297)] = 149102, + [SMALL_STATE(4298)] = 149114, + [SMALL_STATE(4299)] = 149126, + [SMALL_STATE(4300)] = 149142, + [SMALL_STATE(4301)] = 149162, + [SMALL_STATE(4302)] = 149176, + [SMALL_STATE(4303)] = 149192, + [SMALL_STATE(4304)] = 149206, + [SMALL_STATE(4305)] = 149218, + [SMALL_STATE(4306)] = 149234, + [SMALL_STATE(4307)] = 149252, + [SMALL_STATE(4308)] = 149272, + [SMALL_STATE(4309)] = 149290, + [SMALL_STATE(4310)] = 149306, + [SMALL_STATE(4311)] = 149322, + [SMALL_STATE(4312)] = 149334, + [SMALL_STATE(4313)] = 149350, + [SMALL_STATE(4314)] = 149364, + [SMALL_STATE(4315)] = 149384, + [SMALL_STATE(4316)] = 149400, + [SMALL_STATE(4317)] = 149416, + [SMALL_STATE(4318)] = 149436, + [SMALL_STATE(4319)] = 149452, + [SMALL_STATE(4320)] = 149468, + [SMALL_STATE(4321)] = 149484, + [SMALL_STATE(4322)] = 149500, + [SMALL_STATE(4323)] = 149516, + [SMALL_STATE(4324)] = 149530, + [SMALL_STATE(4325)] = 149546, + [SMALL_STATE(4326)] = 149560, + [SMALL_STATE(4327)] = 149578, + [SMALL_STATE(4328)] = 149594, + [SMALL_STATE(4329)] = 149610, + [SMALL_STATE(4330)] = 149626, + [SMALL_STATE(4331)] = 149640, + [SMALL_STATE(4332)] = 149660, + [SMALL_STATE(4333)] = 149672, + [SMALL_STATE(4334)] = 149684, + [SMALL_STATE(4335)] = 149696, + [SMALL_STATE(4336)] = 149712, + [SMALL_STATE(4337)] = 149724, + [SMALL_STATE(4338)] = 149736, + [SMALL_STATE(4339)] = 149752, + [SMALL_STATE(4340)] = 149766, + [SMALL_STATE(4341)] = 149782, + [SMALL_STATE(4342)] = 149796, + [SMALL_STATE(4343)] = 149812, + [SMALL_STATE(4344)] = 149828, + [SMALL_STATE(4345)] = 149844, + [SMALL_STATE(4346)] = 149862, + [SMALL_STATE(4347)] = 149874, + [SMALL_STATE(4348)] = 149892, + [SMALL_STATE(4349)] = 149910, + [SMALL_STATE(4350)] = 149930, + [SMALL_STATE(4351)] = 149948, + [SMALL_STATE(4352)] = 149964, + [SMALL_STATE(4353)] = 149980, + [SMALL_STATE(4354)] = 149996, + [SMALL_STATE(4355)] = 150012, + [SMALL_STATE(4356)] = 150028, + [SMALL_STATE(4357)] = 150048, + [SMALL_STATE(4358)] = 150068, + [SMALL_STATE(4359)] = 150084, + [SMALL_STATE(4360)] = 150096, + [SMALL_STATE(4361)] = 150116, + [SMALL_STATE(4362)] = 150128, + [SMALL_STATE(4363)] = 150142, + [SMALL_STATE(4364)] = 150154, + [SMALL_STATE(4365)] = 150166, + [SMALL_STATE(4366)] = 150186, + [SMALL_STATE(4367)] = 150202, + [SMALL_STATE(4368)] = 150222, + [SMALL_STATE(4369)] = 150236, + [SMALL_STATE(4370)] = 150248, + [SMALL_STATE(4371)] = 150268, + [SMALL_STATE(4372)] = 150284, + [SMALL_STATE(4373)] = 150304, + [SMALL_STATE(4374)] = 150316, + [SMALL_STATE(4375)] = 150330, + [SMALL_STATE(4376)] = 150346, + [SMALL_STATE(4377)] = 150364, + [SMALL_STATE(4378)] = 150384, + [SMALL_STATE(4379)] = 150396, + [SMALL_STATE(4380)] = 150414, + [SMALL_STATE(4381)] = 150434, + [SMALL_STATE(4382)] = 150454, + [SMALL_STATE(4383)] = 150466, + [SMALL_STATE(4384)] = 150486, + [SMALL_STATE(4385)] = 150498, + [SMALL_STATE(4386)] = 150510, + [SMALL_STATE(4387)] = 150524, + [SMALL_STATE(4388)] = 150538, + [SMALL_STATE(4389)] = 150552, + [SMALL_STATE(4390)] = 150568, + [SMALL_STATE(4391)] = 150580, + [SMALL_STATE(4392)] = 150592, + [SMALL_STATE(4393)] = 150608, + [SMALL_STATE(4394)] = 150624, + [SMALL_STATE(4395)] = 150640, + [SMALL_STATE(4396)] = 150660, + [SMALL_STATE(4397)] = 150676, + [SMALL_STATE(4398)] = 150692, + [SMALL_STATE(4399)] = 150708, + [SMALL_STATE(4400)] = 150724, + [SMALL_STATE(4401)] = 150738, + [SMALL_STATE(4402)] = 150752, + [SMALL_STATE(4403)] = 150768, + [SMALL_STATE(4404)] = 150784, + [SMALL_STATE(4405)] = 150800, + [SMALL_STATE(4406)] = 150816, + [SMALL_STATE(4407)] = 150832, + [SMALL_STATE(4408)] = 150848, + [SMALL_STATE(4409)] = 150868, + [SMALL_STATE(4410)] = 150884, + [SMALL_STATE(4411)] = 150900, + [SMALL_STATE(4412)] = 150912, + [SMALL_STATE(4413)] = 150932, + [SMALL_STATE(4414)] = 150948, + [SMALL_STATE(4415)] = 150964, + [SMALL_STATE(4416)] = 150980, + [SMALL_STATE(4417)] = 150996, + [SMALL_STATE(4418)] = 151012, + [SMALL_STATE(4419)] = 151032, + [SMALL_STATE(4420)] = 151048, + [SMALL_STATE(4421)] = 151062, + [SMALL_STATE(4422)] = 151076, + [SMALL_STATE(4423)] = 151092, + [SMALL_STATE(4424)] = 151106, + [SMALL_STATE(4425)] = 151120, + [SMALL_STATE(4426)] = 151136, + [SMALL_STATE(4427)] = 151152, + [SMALL_STATE(4428)] = 151172, + [SMALL_STATE(4429)] = 151192, + [SMALL_STATE(4430)] = 151208, + [SMALL_STATE(4431)] = 151224, + [SMALL_STATE(4432)] = 151240, + [SMALL_STATE(4433)] = 151258, + [SMALL_STATE(4434)] = 151274, + [SMALL_STATE(4435)] = 151288, + [SMALL_STATE(4436)] = 151304, + [SMALL_STATE(4437)] = 151316, + [SMALL_STATE(4438)] = 151332, + [SMALL_STATE(4439)] = 151344, + [SMALL_STATE(4440)] = 151364, + [SMALL_STATE(4441)] = 151378, + [SMALL_STATE(4442)] = 151394, + [SMALL_STATE(4443)] = 151410, + [SMALL_STATE(4444)] = 151422, + [SMALL_STATE(4445)] = 151442, + [SMALL_STATE(4446)] = 151462, + [SMALL_STATE(4447)] = 151478, + [SMALL_STATE(4448)] = 151496, + [SMALL_STATE(4449)] = 151512, + [SMALL_STATE(4450)] = 151532, + [SMALL_STATE(4451)] = 151552, + [SMALL_STATE(4452)] = 151566, + [SMALL_STATE(4453)] = 151586, + [SMALL_STATE(4454)] = 151602, + [SMALL_STATE(4455)] = 151620, + [SMALL_STATE(4456)] = 151640, + [SMALL_STATE(4457)] = 151656, + [SMALL_STATE(4458)] = 151672, + [SMALL_STATE(4459)] = 151688, + [SMALL_STATE(4460)] = 151704, + [SMALL_STATE(4461)] = 151720, + [SMALL_STATE(4462)] = 151736, + [SMALL_STATE(4463)] = 151750, + [SMALL_STATE(4464)] = 151766, + [SMALL_STATE(4465)] = 151786, + [SMALL_STATE(4466)] = 151800, + [SMALL_STATE(4467)] = 151816, + [SMALL_STATE(4468)] = 151830, + [SMALL_STATE(4469)] = 151848, + [SMALL_STATE(4470)] = 151862, + [SMALL_STATE(4471)] = 151878, + [SMALL_STATE(4472)] = 151890, + [SMALL_STATE(4473)] = 151908, + [SMALL_STATE(4474)] = 151928, + [SMALL_STATE(4475)] = 151948, + [SMALL_STATE(4476)] = 151964, + [SMALL_STATE(4477)] = 151980, + [SMALL_STATE(4478)] = 152000, + [SMALL_STATE(4479)] = 152018, + [SMALL_STATE(4480)] = 152034, + [SMALL_STATE(4481)] = 152050, + [SMALL_STATE(4482)] = 152070, + [SMALL_STATE(4483)] = 152084, + [SMALL_STATE(4484)] = 152098, + [SMALL_STATE(4485)] = 152114, + [SMALL_STATE(4486)] = 152130, + [SMALL_STATE(4487)] = 152146, + [SMALL_STATE(4488)] = 152162, + [SMALL_STATE(4489)] = 152178, + [SMALL_STATE(4490)] = 152194, + [SMALL_STATE(4491)] = 152206, + [SMALL_STATE(4492)] = 152221, + [SMALL_STATE(4493)] = 152232, + [SMALL_STATE(4494)] = 152249, + [SMALL_STATE(4495)] = 152266, + [SMALL_STATE(4496)] = 152283, + [SMALL_STATE(4497)] = 152298, + [SMALL_STATE(4498)] = 152315, + [SMALL_STATE(4499)] = 152332, + [SMALL_STATE(4500)] = 152347, + [SMALL_STATE(4501)] = 152360, + [SMALL_STATE(4502)] = 152377, + [SMALL_STATE(4503)] = 152394, + [SMALL_STATE(4504)] = 152411, + [SMALL_STATE(4505)] = 152428, + [SMALL_STATE(4506)] = 152445, + [SMALL_STATE(4507)] = 152462, + [SMALL_STATE(4508)] = 152479, + [SMALL_STATE(4509)] = 152494, + [SMALL_STATE(4510)] = 152509, + [SMALL_STATE(4511)] = 152526, + [SMALL_STATE(4512)] = 152543, + [SMALL_STATE(4513)] = 152560, + [SMALL_STATE(4514)] = 152577, + [SMALL_STATE(4515)] = 152594, + [SMALL_STATE(4516)] = 152609, + [SMALL_STATE(4517)] = 152626, + [SMALL_STATE(4518)] = 152643, + [SMALL_STATE(4519)] = 152660, + [SMALL_STATE(4520)] = 152677, + [SMALL_STATE(4521)] = 152692, + [SMALL_STATE(4522)] = 152709, + [SMALL_STATE(4523)] = 152726, + [SMALL_STATE(4524)] = 152743, + [SMALL_STATE(4525)] = 152760, + [SMALL_STATE(4526)] = 152777, + [SMALL_STATE(4527)] = 152794, + [SMALL_STATE(4528)] = 152811, + [SMALL_STATE(4529)] = 152828, + [SMALL_STATE(4530)] = 152845, + [SMALL_STATE(4531)] = 152862, + [SMALL_STATE(4532)] = 152879, + [SMALL_STATE(4533)] = 152896, + [SMALL_STATE(4534)] = 152913, + [SMALL_STATE(4535)] = 152928, + [SMALL_STATE(4536)] = 152945, + [SMALL_STATE(4537)] = 152962, + [SMALL_STATE(4538)] = 152979, + [SMALL_STATE(4539)] = 152996, + [SMALL_STATE(4540)] = 153013, + [SMALL_STATE(4541)] = 153026, + [SMALL_STATE(4542)] = 153043, + [SMALL_STATE(4543)] = 153058, + [SMALL_STATE(4544)] = 153075, + [SMALL_STATE(4545)] = 153092, + [SMALL_STATE(4546)] = 153111, + [SMALL_STATE(4547)] = 153130, + [SMALL_STATE(4548)] = 153147, + [SMALL_STATE(4549)] = 153160, + [SMALL_STATE(4550)] = 153177, + [SMALL_STATE(4551)] = 153188, + [SMALL_STATE(4552)] = 153205, + [SMALL_STATE(4553)] = 153222, + [SMALL_STATE(4554)] = 153239, + [SMALL_STATE(4555)] = 153254, + [SMALL_STATE(4556)] = 153271, + [SMALL_STATE(4557)] = 153288, + [SMALL_STATE(4558)] = 153303, + [SMALL_STATE(4559)] = 153322, + [SMALL_STATE(4560)] = 153341, + [SMALL_STATE(4561)] = 153358, + [SMALL_STATE(4562)] = 153375, + [SMALL_STATE(4563)] = 153392, + [SMALL_STATE(4564)] = 153409, + [SMALL_STATE(4565)] = 153426, + [SMALL_STATE(4566)] = 153443, + [SMALL_STATE(4567)] = 153460, + [SMALL_STATE(4568)] = 153477, + [SMALL_STATE(4569)] = 153492, + [SMALL_STATE(4570)] = 153507, + [SMALL_STATE(4571)] = 153522, + [SMALL_STATE(4572)] = 153537, + [SMALL_STATE(4573)] = 153552, + [SMALL_STATE(4574)] = 153569, + [SMALL_STATE(4575)] = 153584, + [SMALL_STATE(4576)] = 153599, + [SMALL_STATE(4577)] = 153616, + [SMALL_STATE(4578)] = 153633, + [SMALL_STATE(4579)] = 153650, + [SMALL_STATE(4580)] = 153667, + [SMALL_STATE(4581)] = 153682, + [SMALL_STATE(4582)] = 153699, + [SMALL_STATE(4583)] = 153712, + [SMALL_STATE(4584)] = 153725, + [SMALL_STATE(4585)] = 153742, + [SMALL_STATE(4586)] = 153759, + [SMALL_STATE(4587)] = 153774, + [SMALL_STATE(4588)] = 153791, + [SMALL_STATE(4589)] = 153806, + [SMALL_STATE(4590)] = 153821, + [SMALL_STATE(4591)] = 153838, + [SMALL_STATE(4592)] = 153855, + [SMALL_STATE(4593)] = 153872, + [SMALL_STATE(4594)] = 153885, + [SMALL_STATE(4595)] = 153902, + [SMALL_STATE(4596)] = 153919, + [SMALL_STATE(4597)] = 153936, + [SMALL_STATE(4598)] = 153953, + [SMALL_STATE(4599)] = 153968, + [SMALL_STATE(4600)] = 153985, + [SMALL_STATE(4601)] = 154002, + [SMALL_STATE(4602)] = 154017, + [SMALL_STATE(4603)] = 154034, + [SMALL_STATE(4604)] = 154049, + [SMALL_STATE(4605)] = 154064, + [SMALL_STATE(4606)] = 154081, + [SMALL_STATE(4607)] = 154098, + [SMALL_STATE(4608)] = 154115, + [SMALL_STATE(4609)] = 154132, + [SMALL_STATE(4610)] = 154149, + [SMALL_STATE(4611)] = 154164, + [SMALL_STATE(4612)] = 154181, + [SMALL_STATE(4613)] = 154198, + [SMALL_STATE(4614)] = 154215, + [SMALL_STATE(4615)] = 154234, + [SMALL_STATE(4616)] = 154253, + [SMALL_STATE(4617)] = 154270, + [SMALL_STATE(4618)] = 154287, + [SMALL_STATE(4619)] = 154304, + [SMALL_STATE(4620)] = 154321, + [SMALL_STATE(4621)] = 154338, + [SMALL_STATE(4622)] = 154349, + [SMALL_STATE(4623)] = 154364, + [SMALL_STATE(4624)] = 154381, + [SMALL_STATE(4625)] = 154398, + [SMALL_STATE(4626)] = 154415, + [SMALL_STATE(4627)] = 154432, + [SMALL_STATE(4628)] = 154449, + [SMALL_STATE(4629)] = 154466, + [SMALL_STATE(4630)] = 154483, + [SMALL_STATE(4631)] = 154500, + [SMALL_STATE(4632)] = 154517, + [SMALL_STATE(4633)] = 154534, + [SMALL_STATE(4634)] = 154551, + [SMALL_STATE(4635)] = 154562, + [SMALL_STATE(4636)] = 154572, + [SMALL_STATE(4637)] = 154584, + [SMALL_STATE(4638)] = 154598, + [SMALL_STATE(4639)] = 154612, + [SMALL_STATE(4640)] = 154622, + [SMALL_STATE(4641)] = 154632, + [SMALL_STATE(4642)] = 154642, + [SMALL_STATE(4643)] = 154652, + [SMALL_STATE(4644)] = 154666, + [SMALL_STATE(4645)] = 154676, + [SMALL_STATE(4646)] = 154686, + [SMALL_STATE(4647)] = 154696, + [SMALL_STATE(4648)] = 154706, + [SMALL_STATE(4649)] = 154716, + [SMALL_STATE(4650)] = 154730, + [SMALL_STATE(4651)] = 154744, + [SMALL_STATE(4652)] = 154758, + [SMALL_STATE(4653)] = 154768, + [SMALL_STATE(4654)] = 154778, + [SMALL_STATE(4655)] = 154788, + [SMALL_STATE(4656)] = 154798, + [SMALL_STATE(4657)] = 154808, + [SMALL_STATE(4658)] = 154822, + [SMALL_STATE(4659)] = 154832, + [SMALL_STATE(4660)] = 154846, + [SMALL_STATE(4661)] = 154856, + [SMALL_STATE(4662)] = 154870, + [SMALL_STATE(4663)] = 154884, + [SMALL_STATE(4664)] = 154898, + [SMALL_STATE(4665)] = 154912, + [SMALL_STATE(4666)] = 154922, + [SMALL_STATE(4667)] = 154936, + [SMALL_STATE(4668)] = 154950, + [SMALL_STATE(4669)] = 154964, + [SMALL_STATE(4670)] = 154978, + [SMALL_STATE(4671)] = 154988, + [SMALL_STATE(4672)] = 155002, + [SMALL_STATE(4673)] = 155016, + [SMALL_STATE(4674)] = 155026, + [SMALL_STATE(4675)] = 155036, + [SMALL_STATE(4676)] = 155046, + [SMALL_STATE(4677)] = 155056, + [SMALL_STATE(4678)] = 155070, + [SMALL_STATE(4679)] = 155080, + [SMALL_STATE(4680)] = 155090, + [SMALL_STATE(4681)] = 155104, + [SMALL_STATE(4682)] = 155118, + [SMALL_STATE(4683)] = 155128, + [SMALL_STATE(4684)] = 155138, + [SMALL_STATE(4685)] = 155148, + [SMALL_STATE(4686)] = 155162, + [SMALL_STATE(4687)] = 155176, + [SMALL_STATE(4688)] = 155186, + [SMALL_STATE(4689)] = 155196, + [SMALL_STATE(4690)] = 155210, + [SMALL_STATE(4691)] = 155224, + [SMALL_STATE(4692)] = 155236, + [SMALL_STATE(4693)] = 155246, + [SMALL_STATE(4694)] = 155256, + [SMALL_STATE(4695)] = 155266, + [SMALL_STATE(4696)] = 155276, + [SMALL_STATE(4697)] = 155290, + [SMALL_STATE(4698)] = 155300, + [SMALL_STATE(4699)] = 155314, + [SMALL_STATE(4700)] = 155324, + [SMALL_STATE(4701)] = 155334, + [SMALL_STATE(4702)] = 155344, + [SMALL_STATE(4703)] = 155354, + [SMALL_STATE(4704)] = 155366, + [SMALL_STATE(4705)] = 155376, + [SMALL_STATE(4706)] = 155386, + [SMALL_STATE(4707)] = 155396, + [SMALL_STATE(4708)] = 155406, + [SMALL_STATE(4709)] = 155416, + [SMALL_STATE(4710)] = 155426, + [SMALL_STATE(4711)] = 155440, + [SMALL_STATE(4712)] = 155450, + [SMALL_STATE(4713)] = 155460, + [SMALL_STATE(4714)] = 155470, + [SMALL_STATE(4715)] = 155484, + [SMALL_STATE(4716)] = 155498, + [SMALL_STATE(4717)] = 155508, + [SMALL_STATE(4718)] = 155522, + [SMALL_STATE(4719)] = 155532, + [SMALL_STATE(4720)] = 155542, + [SMALL_STATE(4721)] = 155556, + [SMALL_STATE(4722)] = 155570, + [SMALL_STATE(4723)] = 155580, + [SMALL_STATE(4724)] = 155590, + [SMALL_STATE(4725)] = 155600, + [SMALL_STATE(4726)] = 155610, + [SMALL_STATE(4727)] = 155620, + [SMALL_STATE(4728)] = 155630, + [SMALL_STATE(4729)] = 155640, + [SMALL_STATE(4730)] = 155650, + [SMALL_STATE(4731)] = 155660, + [SMALL_STATE(4732)] = 155670, + [SMALL_STATE(4733)] = 155680, + [SMALL_STATE(4734)] = 155690, + [SMALL_STATE(4735)] = 155700, + [SMALL_STATE(4736)] = 155714, + [SMALL_STATE(4737)] = 155724, + [SMALL_STATE(4738)] = 155734, + [SMALL_STATE(4739)] = 155744, + [SMALL_STATE(4740)] = 155754, + [SMALL_STATE(4741)] = 155764, + [SMALL_STATE(4742)] = 155774, + [SMALL_STATE(4743)] = 155784, + [SMALL_STATE(4744)] = 155794, + [SMALL_STATE(4745)] = 155808, + [SMALL_STATE(4746)] = 155822, + [SMALL_STATE(4747)] = 155832, + [SMALL_STATE(4748)] = 155842, + [SMALL_STATE(4749)] = 155852, + [SMALL_STATE(4750)] = 155862, + [SMALL_STATE(4751)] = 155874, + [SMALL_STATE(4752)] = 155884, + [SMALL_STATE(4753)] = 155896, + [SMALL_STATE(4754)] = 155906, + [SMALL_STATE(4755)] = 155916, + [SMALL_STATE(4756)] = 155926, + [SMALL_STATE(4757)] = 155936, + [SMALL_STATE(4758)] = 155946, + [SMALL_STATE(4759)] = 155956, + [SMALL_STATE(4760)] = 155970, + [SMALL_STATE(4761)] = 155980, + [SMALL_STATE(4762)] = 155990, + [SMALL_STATE(4763)] = 156002, + [SMALL_STATE(4764)] = 156012, + [SMALL_STATE(4765)] = 156022, + [SMALL_STATE(4766)] = 156036, + [SMALL_STATE(4767)] = 156046, + [SMALL_STATE(4768)] = 156056, + [SMALL_STATE(4769)] = 156066, + [SMALL_STATE(4770)] = 156076, + [SMALL_STATE(4771)] = 156086, + [SMALL_STATE(4772)] = 156098, + [SMALL_STATE(4773)] = 156108, + [SMALL_STATE(4774)] = 156118, + [SMALL_STATE(4775)] = 156128, + [SMALL_STATE(4776)] = 156138, + [SMALL_STATE(4777)] = 156148, + [SMALL_STATE(4778)] = 156162, + [SMALL_STATE(4779)] = 156172, + [SMALL_STATE(4780)] = 156182, + [SMALL_STATE(4781)] = 156192, + [SMALL_STATE(4782)] = 156202, + [SMALL_STATE(4783)] = 156212, + [SMALL_STATE(4784)] = 156226, + [SMALL_STATE(4785)] = 156236, + [SMALL_STATE(4786)] = 156246, + [SMALL_STATE(4787)] = 156256, + [SMALL_STATE(4788)] = 156266, + [SMALL_STATE(4789)] = 156276, + [SMALL_STATE(4790)] = 156290, + [SMALL_STATE(4791)] = 156300, + [SMALL_STATE(4792)] = 156310, + [SMALL_STATE(4793)] = 156324, + [SMALL_STATE(4794)] = 156338, + [SMALL_STATE(4795)] = 156348, + [SMALL_STATE(4796)] = 156362, + [SMALL_STATE(4797)] = 156372, + [SMALL_STATE(4798)] = 156382, + [SMALL_STATE(4799)] = 156396, + [SMALL_STATE(4800)] = 156406, + [SMALL_STATE(4801)] = 156416, + [SMALL_STATE(4802)] = 156426, + [SMALL_STATE(4803)] = 156436, + [SMALL_STATE(4804)] = 156446, + [SMALL_STATE(4805)] = 156458, + [SMALL_STATE(4806)] = 156468, + [SMALL_STATE(4807)] = 156482, + [SMALL_STATE(4808)] = 156496, + [SMALL_STATE(4809)] = 156506, + [SMALL_STATE(4810)] = 156520, + [SMALL_STATE(4811)] = 156530, + [SMALL_STATE(4812)] = 156540, + [SMALL_STATE(4813)] = 156550, + [SMALL_STATE(4814)] = 156560, + [SMALL_STATE(4815)] = 156574, + [SMALL_STATE(4816)] = 156584, + [SMALL_STATE(4817)] = 156594, + [SMALL_STATE(4818)] = 156604, + [SMALL_STATE(4819)] = 156614, + [SMALL_STATE(4820)] = 156624, + [SMALL_STATE(4821)] = 156634, + [SMALL_STATE(4822)] = 156644, + [SMALL_STATE(4823)] = 156654, + [SMALL_STATE(4824)] = 156664, + [SMALL_STATE(4825)] = 156674, + [SMALL_STATE(4826)] = 156684, + [SMALL_STATE(4827)] = 156694, + [SMALL_STATE(4828)] = 156704, + [SMALL_STATE(4829)] = 156714, + [SMALL_STATE(4830)] = 156724, + [SMALL_STATE(4831)] = 156734, + [SMALL_STATE(4832)] = 156744, + [SMALL_STATE(4833)] = 156758, + [SMALL_STATE(4834)] = 156772, + [SMALL_STATE(4835)] = 156782, + [SMALL_STATE(4836)] = 156792, + [SMALL_STATE(4837)] = 156802, + [SMALL_STATE(4838)] = 156812, + [SMALL_STATE(4839)] = 156822, + [SMALL_STATE(4840)] = 156832, + [SMALL_STATE(4841)] = 156842, + [SMALL_STATE(4842)] = 156852, + [SMALL_STATE(4843)] = 156862, + [SMALL_STATE(4844)] = 156872, + [SMALL_STATE(4845)] = 156882, + [SMALL_STATE(4846)] = 156892, + [SMALL_STATE(4847)] = 156902, + [SMALL_STATE(4848)] = 156912, + [SMALL_STATE(4849)] = 156926, + [SMALL_STATE(4850)] = 156936, + [SMALL_STATE(4851)] = 156946, + [SMALL_STATE(4852)] = 156956, + [SMALL_STATE(4853)] = 156966, + [SMALL_STATE(4854)] = 156976, + [SMALL_STATE(4855)] = 156990, + [SMALL_STATE(4856)] = 157000, + [SMALL_STATE(4857)] = 157010, + [SMALL_STATE(4858)] = 157024, + [SMALL_STATE(4859)] = 157034, + [SMALL_STATE(4860)] = 157044, + [SMALL_STATE(4861)] = 157056, + [SMALL_STATE(4862)] = 157066, + [SMALL_STATE(4863)] = 157076, + [SMALL_STATE(4864)] = 157090, + [SMALL_STATE(4865)] = 157100, + [SMALL_STATE(4866)] = 157110, + [SMALL_STATE(4867)] = 157124, + [SMALL_STATE(4868)] = 157134, + [SMALL_STATE(4869)] = 157148, + [SMALL_STATE(4870)] = 157162, + [SMALL_STATE(4871)] = 157176, + [SMALL_STATE(4872)] = 157190, + [SMALL_STATE(4873)] = 157200, + [SMALL_STATE(4874)] = 157210, + [SMALL_STATE(4875)] = 157224, + [SMALL_STATE(4876)] = 157236, + [SMALL_STATE(4877)] = 157248, + [SMALL_STATE(4878)] = 157262, + [SMALL_STATE(4879)] = 157276, + [SMALL_STATE(4880)] = 157286, + [SMALL_STATE(4881)] = 157296, + [SMALL_STATE(4882)] = 157306, + [SMALL_STATE(4883)] = 157320, + [SMALL_STATE(4884)] = 157330, + [SMALL_STATE(4885)] = 157340, + [SMALL_STATE(4886)] = 157354, + [SMALL_STATE(4887)] = 157364, + [SMALL_STATE(4888)] = 157374, + [SMALL_STATE(4889)] = 157384, + [SMALL_STATE(4890)] = 157394, + [SMALL_STATE(4891)] = 157404, + [SMALL_STATE(4892)] = 157414, + [SMALL_STATE(4893)] = 157424, + [SMALL_STATE(4894)] = 157438, + [SMALL_STATE(4895)] = 157452, + [SMALL_STATE(4896)] = 157462, + [SMALL_STATE(4897)] = 157476, + [SMALL_STATE(4898)] = 157490, + [SMALL_STATE(4899)] = 157500, + [SMALL_STATE(4900)] = 157510, + [SMALL_STATE(4901)] = 157520, + [SMALL_STATE(4902)] = 157530, + [SMALL_STATE(4903)] = 157540, + [SMALL_STATE(4904)] = 157550, + [SMALL_STATE(4905)] = 157560, + [SMALL_STATE(4906)] = 157570, + [SMALL_STATE(4907)] = 157582, + [SMALL_STATE(4908)] = 157592, + [SMALL_STATE(4909)] = 157606, + [SMALL_STATE(4910)] = 157620, + [SMALL_STATE(4911)] = 157630, + [SMALL_STATE(4912)] = 157642, + [SMALL_STATE(4913)] = 157652, + [SMALL_STATE(4914)] = 157662, + [SMALL_STATE(4915)] = 157674, + [SMALL_STATE(4916)] = 157684, + [SMALL_STATE(4917)] = 157698, + [SMALL_STATE(4918)] = 157708, + [SMALL_STATE(4919)] = 157718, + [SMALL_STATE(4920)] = 157728, + [SMALL_STATE(4921)] = 157738, + [SMALL_STATE(4922)] = 157748, + [SMALL_STATE(4923)] = 157758, + [SMALL_STATE(4924)] = 157768, + [SMALL_STATE(4925)] = 157778, + [SMALL_STATE(4926)] = 157788, + [SMALL_STATE(4927)] = 157802, + [SMALL_STATE(4928)] = 157812, + [SMALL_STATE(4929)] = 157822, + [SMALL_STATE(4930)] = 157836, + [SMALL_STATE(4931)] = 157846, + [SMALL_STATE(4932)] = 157860, + [SMALL_STATE(4933)] = 157870, + [SMALL_STATE(4934)] = 157880, + [SMALL_STATE(4935)] = 157894, + [SMALL_STATE(4936)] = 157908, + [SMALL_STATE(4937)] = 157918, + [SMALL_STATE(4938)] = 157932, + [SMALL_STATE(4939)] = 157942, + [SMALL_STATE(4940)] = 157952, + [SMALL_STATE(4941)] = 157962, + [SMALL_STATE(4942)] = 157972, + [SMALL_STATE(4943)] = 157982, + [SMALL_STATE(4944)] = 157992, + [SMALL_STATE(4945)] = 158004, + [SMALL_STATE(4946)] = 158018, + [SMALL_STATE(4947)] = 158028, + [SMALL_STATE(4948)] = 158038, + [SMALL_STATE(4949)] = 158052, + [SMALL_STATE(4950)] = 158064, + [SMALL_STATE(4951)] = 158074, + [SMALL_STATE(4952)] = 158084, + [SMALL_STATE(4953)] = 158094, + [SMALL_STATE(4954)] = 158104, + [SMALL_STATE(4955)] = 158116, + [SMALL_STATE(4956)] = 158126, + [SMALL_STATE(4957)] = 158136, + [SMALL_STATE(4958)] = 158150, + [SMALL_STATE(4959)] = 158160, + [SMALL_STATE(4960)] = 158174, + [SMALL_STATE(4961)] = 158184, + [SMALL_STATE(4962)] = 158194, + [SMALL_STATE(4963)] = 158204, + [SMALL_STATE(4964)] = 158214, + [SMALL_STATE(4965)] = 158224, + [SMALL_STATE(4966)] = 158238, + [SMALL_STATE(4967)] = 158248, + [SMALL_STATE(4968)] = 158262, + [SMALL_STATE(4969)] = 158276, + [SMALL_STATE(4970)] = 158290, + [SMALL_STATE(4971)] = 158304, + [SMALL_STATE(4972)] = 158314, + [SMALL_STATE(4973)] = 158324, + [SMALL_STATE(4974)] = 158334, + [SMALL_STATE(4975)] = 158344, + [SMALL_STATE(4976)] = 158354, + [SMALL_STATE(4977)] = 158368, + [SMALL_STATE(4978)] = 158382, + [SMALL_STATE(4979)] = 158392, + [SMALL_STATE(4980)] = 158402, + [SMALL_STATE(4981)] = 158412, + [SMALL_STATE(4982)] = 158426, + [SMALL_STATE(4983)] = 158440, + [SMALL_STATE(4984)] = 158450, + [SMALL_STATE(4985)] = 158460, + [SMALL_STATE(4986)] = 158474, + [SMALL_STATE(4987)] = 158488, + [SMALL_STATE(4988)] = 158498, + [SMALL_STATE(4989)] = 158512, + [SMALL_STATE(4990)] = 158526, + [SMALL_STATE(4991)] = 158536, + [SMALL_STATE(4992)] = 158546, + [SMALL_STATE(4993)] = 158556, + [SMALL_STATE(4994)] = 158566, + [SMALL_STATE(4995)] = 158576, + [SMALL_STATE(4996)] = 158586, + [SMALL_STATE(4997)] = 158596, + [SMALL_STATE(4998)] = 158606, + [SMALL_STATE(4999)] = 158616, + [SMALL_STATE(5000)] = 158626, + [SMALL_STATE(5001)] = 158636, + [SMALL_STATE(5002)] = 158646, + [SMALL_STATE(5003)] = 158656, + [SMALL_STATE(5004)] = 158666, + [SMALL_STATE(5005)] = 158676, + [SMALL_STATE(5006)] = 158686, + [SMALL_STATE(5007)] = 158696, + [SMALL_STATE(5008)] = 158710, + [SMALL_STATE(5009)] = 158720, + [SMALL_STATE(5010)] = 158730, + [SMALL_STATE(5011)] = 158740, + [SMALL_STATE(5012)] = 158750, + [SMALL_STATE(5013)] = 158760, + [SMALL_STATE(5014)] = 158770, + [SMALL_STATE(5015)] = 158780, + [SMALL_STATE(5016)] = 158794, + [SMALL_STATE(5017)] = 158804, + [SMALL_STATE(5018)] = 158814, + [SMALL_STATE(5019)] = 158824, + [SMALL_STATE(5020)] = 158834, + [SMALL_STATE(5021)] = 158844, + [SMALL_STATE(5022)] = 158854, + [SMALL_STATE(5023)] = 158864, + [SMALL_STATE(5024)] = 158874, + [SMALL_STATE(5025)] = 158884, + [SMALL_STATE(5026)] = 158894, + [SMALL_STATE(5027)] = 158904, + [SMALL_STATE(5028)] = 158914, + [SMALL_STATE(5029)] = 158928, + [SMALL_STATE(5030)] = 158938, + [SMALL_STATE(5031)] = 158948, + [SMALL_STATE(5032)] = 158958, + [SMALL_STATE(5033)] = 158968, + [SMALL_STATE(5034)] = 158982, + [SMALL_STATE(5035)] = 158996, + [SMALL_STATE(5036)] = 159010, + [SMALL_STATE(5037)] = 159024, + [SMALL_STATE(5038)] = 159038, + [SMALL_STATE(5039)] = 159048, + [SMALL_STATE(5040)] = 159058, + [SMALL_STATE(5041)] = 159068, + [SMALL_STATE(5042)] = 159078, + [SMALL_STATE(5043)] = 159088, + [SMALL_STATE(5044)] = 159098, + [SMALL_STATE(5045)] = 159112, + [SMALL_STATE(5046)] = 159126, + [SMALL_STATE(5047)] = 159136, + [SMALL_STATE(5048)] = 159150, + [SMALL_STATE(5049)] = 159160, + [SMALL_STATE(5050)] = 159174, + [SMALL_STATE(5051)] = 159188, + [SMALL_STATE(5052)] = 159198, + [SMALL_STATE(5053)] = 159208, + [SMALL_STATE(5054)] = 159218, + [SMALL_STATE(5055)] = 159228, + [SMALL_STATE(5056)] = 159238, + [SMALL_STATE(5057)] = 159248, + [SMALL_STATE(5058)] = 159258, + [SMALL_STATE(5059)] = 159268, + [SMALL_STATE(5060)] = 159278, + [SMALL_STATE(5061)] = 159288, + [SMALL_STATE(5062)] = 159298, + [SMALL_STATE(5063)] = 159312, + [SMALL_STATE(5064)] = 159326, + [SMALL_STATE(5065)] = 159340, + [SMALL_STATE(5066)] = 159350, + [SMALL_STATE(5067)] = 159360, + [SMALL_STATE(5068)] = 159370, + [SMALL_STATE(5069)] = 159380, + [SMALL_STATE(5070)] = 159390, + [SMALL_STATE(5071)] = 159400, + [SMALL_STATE(5072)] = 159410, + [SMALL_STATE(5073)] = 159424, + [SMALL_STATE(5074)] = 159434, + [SMALL_STATE(5075)] = 159444, + [SMALL_STATE(5076)] = 159454, + [SMALL_STATE(5077)] = 159464, + [SMALL_STATE(5078)] = 159474, + [SMALL_STATE(5079)] = 159484, + [SMALL_STATE(5080)] = 159498, + [SMALL_STATE(5081)] = 159508, + [SMALL_STATE(5082)] = 159522, + [SMALL_STATE(5083)] = 159532, + [SMALL_STATE(5084)] = 159546, + [SMALL_STATE(5085)] = 159560, + [SMALL_STATE(5086)] = 159572, + [SMALL_STATE(5087)] = 159582, + [SMALL_STATE(5088)] = 159592, + [SMALL_STATE(5089)] = 159602, + [SMALL_STATE(5090)] = 159614, + [SMALL_STATE(5091)] = 159624, + [SMALL_STATE(5092)] = 159634, + [SMALL_STATE(5093)] = 159644, + [SMALL_STATE(5094)] = 159654, + [SMALL_STATE(5095)] = 159664, + [SMALL_STATE(5096)] = 159674, + [SMALL_STATE(5097)] = 159684, + [SMALL_STATE(5098)] = 159694, + [SMALL_STATE(5099)] = 159704, + [SMALL_STATE(5100)] = 159718, + [SMALL_STATE(5101)] = 159728, + [SMALL_STATE(5102)] = 159742, + [SMALL_STATE(5103)] = 159756, + [SMALL_STATE(5104)] = 159770, + [SMALL_STATE(5105)] = 159780, + [SMALL_STATE(5106)] = 159794, + [SMALL_STATE(5107)] = 159804, + [SMALL_STATE(5108)] = 159814, + [SMALL_STATE(5109)] = 159824, + [SMALL_STATE(5110)] = 159834, + [SMALL_STATE(5111)] = 159844, + [SMALL_STATE(5112)] = 159854, + [SMALL_STATE(5113)] = 159866, + [SMALL_STATE(5114)] = 159876, + [SMALL_STATE(5115)] = 159886, + [SMALL_STATE(5116)] = 159898, + [SMALL_STATE(5117)] = 159910, + [SMALL_STATE(5118)] = 159920, + [SMALL_STATE(5119)] = 159930, + [SMALL_STATE(5120)] = 159944, + [SMALL_STATE(5121)] = 159958, + [SMALL_STATE(5122)] = 159972, + [SMALL_STATE(5123)] = 159986, + [SMALL_STATE(5124)] = 160000, + [SMALL_STATE(5125)] = 160010, + [SMALL_STATE(5126)] = 160024, + [SMALL_STATE(5127)] = 160034, + [SMALL_STATE(5128)] = 160044, + [SMALL_STATE(5129)] = 160058, + [SMALL_STATE(5130)] = 160068, + [SMALL_STATE(5131)] = 160080, + [SMALL_STATE(5132)] = 160094, + [SMALL_STATE(5133)] = 160104, + [SMALL_STATE(5134)] = 160114, + [SMALL_STATE(5135)] = 160124, + [SMALL_STATE(5136)] = 160138, + [SMALL_STATE(5137)] = 160148, + [SMALL_STATE(5138)] = 160162, + [SMALL_STATE(5139)] = 160176, + [SMALL_STATE(5140)] = 160190, + [SMALL_STATE(5141)] = 160204, + [SMALL_STATE(5142)] = 160214, + [SMALL_STATE(5143)] = 160228, + [SMALL_STATE(5144)] = 160242, + [SMALL_STATE(5145)] = 160252, + [SMALL_STATE(5146)] = 160266, + [SMALL_STATE(5147)] = 160276, + [SMALL_STATE(5148)] = 160290, + [SMALL_STATE(5149)] = 160300, + [SMALL_STATE(5150)] = 160310, + [SMALL_STATE(5151)] = 160320, + [SMALL_STATE(5152)] = 160330, + [SMALL_STATE(5153)] = 160340, + [SMALL_STATE(5154)] = 160352, + [SMALL_STATE(5155)] = 160366, + [SMALL_STATE(5156)] = 160376, + [SMALL_STATE(5157)] = 160386, + [SMALL_STATE(5158)] = 160396, + [SMALL_STATE(5159)] = 160410, + [SMALL_STATE(5160)] = 160424, + [SMALL_STATE(5161)] = 160438, + [SMALL_STATE(5162)] = 160448, + [SMALL_STATE(5163)] = 160458, + [SMALL_STATE(5164)] = 160468, + [SMALL_STATE(5165)] = 160478, + [SMALL_STATE(5166)] = 160488, + [SMALL_STATE(5167)] = 160502, + [SMALL_STATE(5168)] = 160516, + [SMALL_STATE(5169)] = 160526, + [SMALL_STATE(5170)] = 160536, + [SMALL_STATE(5171)] = 160548, + [SMALL_STATE(5172)] = 160562, + [SMALL_STATE(5173)] = 160572, + [SMALL_STATE(5174)] = 160582, + [SMALL_STATE(5175)] = 160592, + [SMALL_STATE(5176)] = 160606, + [SMALL_STATE(5177)] = 160616, + [SMALL_STATE(5178)] = 160626, + [SMALL_STATE(5179)] = 160638, + [SMALL_STATE(5180)] = 160652, + [SMALL_STATE(5181)] = 160666, + [SMALL_STATE(5182)] = 160676, + [SMALL_STATE(5183)] = 160690, + [SMALL_STATE(5184)] = 160700, + [SMALL_STATE(5185)] = 160710, + [SMALL_STATE(5186)] = 160720, + [SMALL_STATE(5187)] = 160730, + [SMALL_STATE(5188)] = 160740, + [SMALL_STATE(5189)] = 160754, + [SMALL_STATE(5190)] = 160764, + [SMALL_STATE(5191)] = 160774, + [SMALL_STATE(5192)] = 160784, + [SMALL_STATE(5193)] = 160798, + [SMALL_STATE(5194)] = 160812, + [SMALL_STATE(5195)] = 160826, + [SMALL_STATE(5196)] = 160840, + [SMALL_STATE(5197)] = 160854, + [SMALL_STATE(5198)] = 160868, + [SMALL_STATE(5199)] = 160878, + [SMALL_STATE(5200)] = 160888, + [SMALL_STATE(5201)] = 160898, + [SMALL_STATE(5202)] = 160908, + [SMALL_STATE(5203)] = 160922, + [SMALL_STATE(5204)] = 160932, + [SMALL_STATE(5205)] = 160942, + [SMALL_STATE(5206)] = 160952, + [SMALL_STATE(5207)] = 160964, + [SMALL_STATE(5208)] = 160974, + [SMALL_STATE(5209)] = 160984, + [SMALL_STATE(5210)] = 160994, + [SMALL_STATE(5211)] = 161008, + [SMALL_STATE(5212)] = 161018, + [SMALL_STATE(5213)] = 161032, + [SMALL_STATE(5214)] = 161046, + [SMALL_STATE(5215)] = 161056, + [SMALL_STATE(5216)] = 161066, + [SMALL_STATE(5217)] = 161076, + [SMALL_STATE(5218)] = 161086, + [SMALL_STATE(5219)] = 161096, + [SMALL_STATE(5220)] = 161106, + [SMALL_STATE(5221)] = 161116, + [SMALL_STATE(5222)] = 161126, + [SMALL_STATE(5223)] = 161136, + [SMALL_STATE(5224)] = 161150, + [SMALL_STATE(5225)] = 161160, + [SMALL_STATE(5226)] = 161170, + [SMALL_STATE(5227)] = 161180, + [SMALL_STATE(5228)] = 161190, + [SMALL_STATE(5229)] = 161200, + [SMALL_STATE(5230)] = 161210, + [SMALL_STATE(5231)] = 161224, + [SMALL_STATE(5232)] = 161234, + [SMALL_STATE(5233)] = 161244, + [SMALL_STATE(5234)] = 161254, + [SMALL_STATE(5235)] = 161264, + [SMALL_STATE(5236)] = 161274, + [SMALL_STATE(5237)] = 161284, + [SMALL_STATE(5238)] = 161294, + [SMALL_STATE(5239)] = 161304, + [SMALL_STATE(5240)] = 161314, + [SMALL_STATE(5241)] = 161324, + [SMALL_STATE(5242)] = 161334, + [SMALL_STATE(5243)] = 161344, + [SMALL_STATE(5244)] = 161354, + [SMALL_STATE(5245)] = 161364, + [SMALL_STATE(5246)] = 161374, + [SMALL_STATE(5247)] = 161384, + [SMALL_STATE(5248)] = 161394, + [SMALL_STATE(5249)] = 161404, + [SMALL_STATE(5250)] = 161414, + [SMALL_STATE(5251)] = 161424, + [SMALL_STATE(5252)] = 161435, + [SMALL_STATE(5253)] = 161444, + [SMALL_STATE(5254)] = 161455, + [SMALL_STATE(5255)] = 161466, + [SMALL_STATE(5256)] = 161477, + [SMALL_STATE(5257)] = 161488, + [SMALL_STATE(5258)] = 161499, + [SMALL_STATE(5259)] = 161508, + [SMALL_STATE(5260)] = 161519, + [SMALL_STATE(5261)] = 161530, + [SMALL_STATE(5262)] = 161539, + [SMALL_STATE(5263)] = 161550, + [SMALL_STATE(5264)] = 161561, + [SMALL_STATE(5265)] = 161572, + [SMALL_STATE(5266)] = 161583, + [SMALL_STATE(5267)] = 161592, + [SMALL_STATE(5268)] = 161603, + [SMALL_STATE(5269)] = 161614, + [SMALL_STATE(5270)] = 161625, + [SMALL_STATE(5271)] = 161636, + [SMALL_STATE(5272)] = 161647, + [SMALL_STATE(5273)] = 161658, + [SMALL_STATE(5274)] = 161669, + [SMALL_STATE(5275)] = 161678, + [SMALL_STATE(5276)] = 161689, + [SMALL_STATE(5277)] = 161698, + [SMALL_STATE(5278)] = 161709, + [SMALL_STATE(5279)] = 161720, + [SMALL_STATE(5280)] = 161731, + [SMALL_STATE(5281)] = 161740, + [SMALL_STATE(5282)] = 161751, + [SMALL_STATE(5283)] = 161762, + [SMALL_STATE(5284)] = 161771, + [SMALL_STATE(5285)] = 161782, + [SMALL_STATE(5286)] = 161793, + [SMALL_STATE(5287)] = 161802, + [SMALL_STATE(5288)] = 161813, + [SMALL_STATE(5289)] = 161824, + [SMALL_STATE(5290)] = 161835, + [SMALL_STATE(5291)] = 161846, + [SMALL_STATE(5292)] = 161855, + [SMALL_STATE(5293)] = 161864, + [SMALL_STATE(5294)] = 161875, + [SMALL_STATE(5295)] = 161884, + [SMALL_STATE(5296)] = 161895, + [SMALL_STATE(5297)] = 161906, + [SMALL_STATE(5298)] = 161917, + [SMALL_STATE(5299)] = 161928, + [SMALL_STATE(5300)] = 161939, + [SMALL_STATE(5301)] = 161950, + [SMALL_STATE(5302)] = 161961, + [SMALL_STATE(5303)] = 161972, + [SMALL_STATE(5304)] = 161981, + [SMALL_STATE(5305)] = 161992, + [SMALL_STATE(5306)] = 162001, + [SMALL_STATE(5307)] = 162010, + [SMALL_STATE(5308)] = 162019, + [SMALL_STATE(5309)] = 162030, + [SMALL_STATE(5310)] = 162041, + [SMALL_STATE(5311)] = 162052, + [SMALL_STATE(5312)] = 162063, + [SMALL_STATE(5313)] = 162074, + [SMALL_STATE(5314)] = 162085, + [SMALL_STATE(5315)] = 162094, + [SMALL_STATE(5316)] = 162103, + [SMALL_STATE(5317)] = 162112, + [SMALL_STATE(5318)] = 162121, + [SMALL_STATE(5319)] = 162132, + [SMALL_STATE(5320)] = 162141, + [SMALL_STATE(5321)] = 162152, + [SMALL_STATE(5322)] = 162161, + [SMALL_STATE(5323)] = 162172, + [SMALL_STATE(5324)] = 162181, + [SMALL_STATE(5325)] = 162192, + [SMALL_STATE(5326)] = 162203, + [SMALL_STATE(5327)] = 162214, + [SMALL_STATE(5328)] = 162225, + [SMALL_STATE(5329)] = 162234, + [SMALL_STATE(5330)] = 162245, + [SMALL_STATE(5331)] = 162256, + [SMALL_STATE(5332)] = 162267, + [SMALL_STATE(5333)] = 162278, + [SMALL_STATE(5334)] = 162289, + [SMALL_STATE(5335)] = 162298, + [SMALL_STATE(5336)] = 162309, + [SMALL_STATE(5337)] = 162320, + [SMALL_STATE(5338)] = 162331, + [SMALL_STATE(5339)] = 162342, + [SMALL_STATE(5340)] = 162353, + [SMALL_STATE(5341)] = 162364, + [SMALL_STATE(5342)] = 162375, + [SMALL_STATE(5343)] = 162386, + [SMALL_STATE(5344)] = 162397, + [SMALL_STATE(5345)] = 162408, + [SMALL_STATE(5346)] = 162419, + [SMALL_STATE(5347)] = 162430, + [SMALL_STATE(5348)] = 162441, + [SMALL_STATE(5349)] = 162452, + [SMALL_STATE(5350)] = 162463, + [SMALL_STATE(5351)] = 162472, + [SMALL_STATE(5352)] = 162483, + [SMALL_STATE(5353)] = 162494, + [SMALL_STATE(5354)] = 162505, + [SMALL_STATE(5355)] = 162516, + [SMALL_STATE(5356)] = 162527, + [SMALL_STATE(5357)] = 162538, + [SMALL_STATE(5358)] = 162549, + [SMALL_STATE(5359)] = 162560, + [SMALL_STATE(5360)] = 162571, + [SMALL_STATE(5361)] = 162582, + [SMALL_STATE(5362)] = 162593, + [SMALL_STATE(5363)] = 162604, + [SMALL_STATE(5364)] = 162615, + [SMALL_STATE(5365)] = 162624, + [SMALL_STATE(5366)] = 162635, + [SMALL_STATE(5367)] = 162646, + [SMALL_STATE(5368)] = 162657, + [SMALL_STATE(5369)] = 162668, + [SMALL_STATE(5370)] = 162679, + [SMALL_STATE(5371)] = 162690, + [SMALL_STATE(5372)] = 162699, + [SMALL_STATE(5373)] = 162710, + [SMALL_STATE(5374)] = 162721, + [SMALL_STATE(5375)] = 162732, + [SMALL_STATE(5376)] = 162743, + [SMALL_STATE(5377)] = 162754, + [SMALL_STATE(5378)] = 162765, + [SMALL_STATE(5379)] = 162774, + [SMALL_STATE(5380)] = 162785, + [SMALL_STATE(5381)] = 162794, + [SMALL_STATE(5382)] = 162805, + [SMALL_STATE(5383)] = 162816, + [SMALL_STATE(5384)] = 162827, + [SMALL_STATE(5385)] = 162838, + [SMALL_STATE(5386)] = 162849, + [SMALL_STATE(5387)] = 162860, + [SMALL_STATE(5388)] = 162871, + [SMALL_STATE(5389)] = 162882, + [SMALL_STATE(5390)] = 162891, + [SMALL_STATE(5391)] = 162902, + [SMALL_STATE(5392)] = 162913, + [SMALL_STATE(5393)] = 162924, + [SMALL_STATE(5394)] = 162935, + [SMALL_STATE(5395)] = 162946, + [SMALL_STATE(5396)] = 162957, + [SMALL_STATE(5397)] = 162968, + [SMALL_STATE(5398)] = 162979, + [SMALL_STATE(5399)] = 162990, + [SMALL_STATE(5400)] = 162999, + [SMALL_STATE(5401)] = 163010, + [SMALL_STATE(5402)] = 163021, + [SMALL_STATE(5403)] = 163032, + [SMALL_STATE(5404)] = 163043, + [SMALL_STATE(5405)] = 163054, + [SMALL_STATE(5406)] = 163065, + [SMALL_STATE(5407)] = 163076, + [SMALL_STATE(5408)] = 163087, + [SMALL_STATE(5409)] = 163096, + [SMALL_STATE(5410)] = 163107, + [SMALL_STATE(5411)] = 163118, + [SMALL_STATE(5412)] = 163129, + [SMALL_STATE(5413)] = 163140, + [SMALL_STATE(5414)] = 163151, + [SMALL_STATE(5415)] = 163162, + [SMALL_STATE(5416)] = 163173, + [SMALL_STATE(5417)] = 163184, + [SMALL_STATE(5418)] = 163195, + [SMALL_STATE(5419)] = 163204, + [SMALL_STATE(5420)] = 163213, + [SMALL_STATE(5421)] = 163224, + [SMALL_STATE(5422)] = 163233, + [SMALL_STATE(5423)] = 163242, + [SMALL_STATE(5424)] = 163253, + [SMALL_STATE(5425)] = 163262, + [SMALL_STATE(5426)] = 163273, + [SMALL_STATE(5427)] = 163284, + [SMALL_STATE(5428)] = 163295, + [SMALL_STATE(5429)] = 163306, + [SMALL_STATE(5430)] = 163317, + [SMALL_STATE(5431)] = 163326, + [SMALL_STATE(5432)] = 163337, + [SMALL_STATE(5433)] = 163348, + [SMALL_STATE(5434)] = 163359, + [SMALL_STATE(5435)] = 163368, + [SMALL_STATE(5436)] = 163379, + [SMALL_STATE(5437)] = 163388, + [SMALL_STATE(5438)] = 163399, + [SMALL_STATE(5439)] = 163410, + [SMALL_STATE(5440)] = 163421, + [SMALL_STATE(5441)] = 163432, + [SMALL_STATE(5442)] = 163443, + [SMALL_STATE(5443)] = 163452, + [SMALL_STATE(5444)] = 163463, + [SMALL_STATE(5445)] = 163474, + [SMALL_STATE(5446)] = 163483, + [SMALL_STATE(5447)] = 163494, + [SMALL_STATE(5448)] = 163505, + [SMALL_STATE(5449)] = 163516, + [SMALL_STATE(5450)] = 163527, + [SMALL_STATE(5451)] = 163538, + [SMALL_STATE(5452)] = 163549, + [SMALL_STATE(5453)] = 163560, + [SMALL_STATE(5454)] = 163569, + [SMALL_STATE(5455)] = 163580, + [SMALL_STATE(5456)] = 163591, + [SMALL_STATE(5457)] = 163600, + [SMALL_STATE(5458)] = 163611, + [SMALL_STATE(5459)] = 163622, + [SMALL_STATE(5460)] = 163633, + [SMALL_STATE(5461)] = 163644, + [SMALL_STATE(5462)] = 163655, + [SMALL_STATE(5463)] = 163666, + [SMALL_STATE(5464)] = 163677, + [SMALL_STATE(5465)] = 163688, + [SMALL_STATE(5466)] = 163699, + [SMALL_STATE(5467)] = 163710, + [SMALL_STATE(5468)] = 163721, + [SMALL_STATE(5469)] = 163732, + [SMALL_STATE(5470)] = 163743, + [SMALL_STATE(5471)] = 163754, + [SMALL_STATE(5472)] = 163763, + [SMALL_STATE(5473)] = 163774, + [SMALL_STATE(5474)] = 163785, + [SMALL_STATE(5475)] = 163796, + [SMALL_STATE(5476)] = 163805, + [SMALL_STATE(5477)] = 163816, + [SMALL_STATE(5478)] = 163825, + [SMALL_STATE(5479)] = 163836, + [SMALL_STATE(5480)] = 163847, + [SMALL_STATE(5481)] = 163856, + [SMALL_STATE(5482)] = 163867, + [SMALL_STATE(5483)] = 163878, + [SMALL_STATE(5484)] = 163889, + [SMALL_STATE(5485)] = 163900, + [SMALL_STATE(5486)] = 163911, + [SMALL_STATE(5487)] = 163922, + [SMALL_STATE(5488)] = 163933, + [SMALL_STATE(5489)] = 163944, + [SMALL_STATE(5490)] = 163955, + [SMALL_STATE(5491)] = 163966, + [SMALL_STATE(5492)] = 163975, + [SMALL_STATE(5493)] = 163986, + [SMALL_STATE(5494)] = 163997, + [SMALL_STATE(5495)] = 164006, + [SMALL_STATE(5496)] = 164017, + [SMALL_STATE(5497)] = 164028, + [SMALL_STATE(5498)] = 164039, + [SMALL_STATE(5499)] = 164050, + [SMALL_STATE(5500)] = 164061, + [SMALL_STATE(5501)] = 164072, + [SMALL_STATE(5502)] = 164083, + [SMALL_STATE(5503)] = 164094, + [SMALL_STATE(5504)] = 164103, + [SMALL_STATE(5505)] = 164114, + [SMALL_STATE(5506)] = 164125, + [SMALL_STATE(5507)] = 164136, + [SMALL_STATE(5508)] = 164147, + [SMALL_STATE(5509)] = 164158, + [SMALL_STATE(5510)] = 164169, + [SMALL_STATE(5511)] = 164180, + [SMALL_STATE(5512)] = 164191, + [SMALL_STATE(5513)] = 164202, + [SMALL_STATE(5514)] = 164213, + [SMALL_STATE(5515)] = 164224, + [SMALL_STATE(5516)] = 164233, + [SMALL_STATE(5517)] = 164242, + [SMALL_STATE(5518)] = 164253, + [SMALL_STATE(5519)] = 164262, + [SMALL_STATE(5520)] = 164273, + [SMALL_STATE(5521)] = 164284, + [SMALL_STATE(5522)] = 164295, + [SMALL_STATE(5523)] = 164306, + [SMALL_STATE(5524)] = 164317, + [SMALL_STATE(5525)] = 164328, + [SMALL_STATE(5526)] = 164337, + [SMALL_STATE(5527)] = 164348, + [SMALL_STATE(5528)] = 164359, + [SMALL_STATE(5529)] = 164368, + [SMALL_STATE(5530)] = 164379, + [SMALL_STATE(5531)] = 164388, + [SMALL_STATE(5532)] = 164399, + [SMALL_STATE(5533)] = 164410, + [SMALL_STATE(5534)] = 164419, + [SMALL_STATE(5535)] = 164428, + [SMALL_STATE(5536)] = 164439, + [SMALL_STATE(5537)] = 164450, + [SMALL_STATE(5538)] = 164461, + [SMALL_STATE(5539)] = 164470, + [SMALL_STATE(5540)] = 164479, + [SMALL_STATE(5541)] = 164490, + [SMALL_STATE(5542)] = 164499, + [SMALL_STATE(5543)] = 164510, + [SMALL_STATE(5544)] = 164521, + [SMALL_STATE(5545)] = 164532, + [SMALL_STATE(5546)] = 164543, + [SMALL_STATE(5547)] = 164554, + [SMALL_STATE(5548)] = 164565, + [SMALL_STATE(5549)] = 164576, + [SMALL_STATE(5550)] = 164587, + [SMALL_STATE(5551)] = 164598, + [SMALL_STATE(5552)] = 164609, + [SMALL_STATE(5553)] = 164620, + [SMALL_STATE(5554)] = 164631, + [SMALL_STATE(5555)] = 164642, + [SMALL_STATE(5556)] = 164651, + [SMALL_STATE(5557)] = 164662, + [SMALL_STATE(5558)] = 164673, + [SMALL_STATE(5559)] = 164684, + [SMALL_STATE(5560)] = 164693, + [SMALL_STATE(5561)] = 164704, + [SMALL_STATE(5562)] = 164713, + [SMALL_STATE(5563)] = 164724, + [SMALL_STATE(5564)] = 164735, + [SMALL_STATE(5565)] = 164744, + [SMALL_STATE(5566)] = 164753, + [SMALL_STATE(5567)] = 164764, + [SMALL_STATE(5568)] = 164775, + [SMALL_STATE(5569)] = 164786, + [SMALL_STATE(5570)] = 164797, + [SMALL_STATE(5571)] = 164808, + [SMALL_STATE(5572)] = 164817, + [SMALL_STATE(5573)] = 164826, + [SMALL_STATE(5574)] = 164837, + [SMALL_STATE(5575)] = 164846, + [SMALL_STATE(5576)] = 164857, + [SMALL_STATE(5577)] = 164868, + [SMALL_STATE(5578)] = 164879, + [SMALL_STATE(5579)] = 164890, + [SMALL_STATE(5580)] = 164901, + [SMALL_STATE(5581)] = 164910, + [SMALL_STATE(5582)] = 164921, + [SMALL_STATE(5583)] = 164932, + [SMALL_STATE(5584)] = 164943, + [SMALL_STATE(5585)] = 164954, + [SMALL_STATE(5586)] = 164965, + [SMALL_STATE(5587)] = 164976, + [SMALL_STATE(5588)] = 164985, + [SMALL_STATE(5589)] = 164996, + [SMALL_STATE(5590)] = 165007, + [SMALL_STATE(5591)] = 165018, + [SMALL_STATE(5592)] = 165029, + [SMALL_STATE(5593)] = 165040, + [SMALL_STATE(5594)] = 165049, + [SMALL_STATE(5595)] = 165060, + [SMALL_STATE(5596)] = 165071, + [SMALL_STATE(5597)] = 165082, + [SMALL_STATE(5598)] = 165093, + [SMALL_STATE(5599)] = 165104, + [SMALL_STATE(5600)] = 165115, + [SMALL_STATE(5601)] = 165126, + [SMALL_STATE(5602)] = 165135, + [SMALL_STATE(5603)] = 165146, + [SMALL_STATE(5604)] = 165157, + [SMALL_STATE(5605)] = 165165, + [SMALL_STATE(5606)] = 165173, + [SMALL_STATE(5607)] = 165181, + [SMALL_STATE(5608)] = 165189, + [SMALL_STATE(5609)] = 165197, + [SMALL_STATE(5610)] = 165205, + [SMALL_STATE(5611)] = 165213, + [SMALL_STATE(5612)] = 165221, + [SMALL_STATE(5613)] = 165231, + [SMALL_STATE(5614)] = 165239, + [SMALL_STATE(5615)] = 165247, + [SMALL_STATE(5616)] = 165255, + [SMALL_STATE(5617)] = 165263, + [SMALL_STATE(5618)] = 165271, + [SMALL_STATE(5619)] = 165279, + [SMALL_STATE(5620)] = 165287, + [SMALL_STATE(5621)] = 165295, + [SMALL_STATE(5622)] = 165305, + [SMALL_STATE(5623)] = 165313, + [SMALL_STATE(5624)] = 165321, + [SMALL_STATE(5625)] = 165329, + [SMALL_STATE(5626)] = 165337, + [SMALL_STATE(5627)] = 165345, + [SMALL_STATE(5628)] = 165353, + [SMALL_STATE(5629)] = 165361, + [SMALL_STATE(5630)] = 165369, + [SMALL_STATE(5631)] = 165377, + [SMALL_STATE(5632)] = 165385, + [SMALL_STATE(5633)] = 165393, + [SMALL_STATE(5634)] = 165401, + [SMALL_STATE(5635)] = 165409, + [SMALL_STATE(5636)] = 165417, + [SMALL_STATE(5637)] = 165425, + [SMALL_STATE(5638)] = 165433, + [SMALL_STATE(5639)] = 165441, + [SMALL_STATE(5640)] = 165449, + [SMALL_STATE(5641)] = 165457, + [SMALL_STATE(5642)] = 165465, + [SMALL_STATE(5643)] = 165473, + [SMALL_STATE(5644)] = 165481, + [SMALL_STATE(5645)] = 165489, + [SMALL_STATE(5646)] = 165497, + [SMALL_STATE(5647)] = 165505, + [SMALL_STATE(5648)] = 165513, + [SMALL_STATE(5649)] = 165521, + [SMALL_STATE(5650)] = 165529, + [SMALL_STATE(5651)] = 165537, + [SMALL_STATE(5652)] = 165545, + [SMALL_STATE(5653)] = 165553, + [SMALL_STATE(5654)] = 165561, + [SMALL_STATE(5655)] = 165569, + [SMALL_STATE(5656)] = 165577, + [SMALL_STATE(5657)] = 165585, + [SMALL_STATE(5658)] = 165593, + [SMALL_STATE(5659)] = 165601, + [SMALL_STATE(5660)] = 165609, + [SMALL_STATE(5661)] = 165617, + [SMALL_STATE(5662)] = 165625, + [SMALL_STATE(5663)] = 165633, + [SMALL_STATE(5664)] = 165641, + [SMALL_STATE(5665)] = 165649, + [SMALL_STATE(5666)] = 165659, + [SMALL_STATE(5667)] = 165667, + [SMALL_STATE(5668)] = 165675, + [SMALL_STATE(5669)] = 165683, + [SMALL_STATE(5670)] = 165691, + [SMALL_STATE(5671)] = 165699, + [SMALL_STATE(5672)] = 165707, + [SMALL_STATE(5673)] = 165717, + [SMALL_STATE(5674)] = 165727, + [SMALL_STATE(5675)] = 165735, + [SMALL_STATE(5676)] = 165743, + [SMALL_STATE(5677)] = 165751, + [SMALL_STATE(5678)] = 165759, + [SMALL_STATE(5679)] = 165767, + [SMALL_STATE(5680)] = 165775, + [SMALL_STATE(5681)] = 165783, + [SMALL_STATE(5682)] = 165791, + [SMALL_STATE(5683)] = 165799, + [SMALL_STATE(5684)] = 165807, + [SMALL_STATE(5685)] = 165815, + [SMALL_STATE(5686)] = 165823, + [SMALL_STATE(5687)] = 165831, + [SMALL_STATE(5688)] = 165839, + [SMALL_STATE(5689)] = 165847, + [SMALL_STATE(5690)] = 165855, + [SMALL_STATE(5691)] = 165863, + [SMALL_STATE(5692)] = 165871, + [SMALL_STATE(5693)] = 165879, + [SMALL_STATE(5694)] = 165887, + [SMALL_STATE(5695)] = 165895, + [SMALL_STATE(5696)] = 165903, + [SMALL_STATE(5697)] = 165911, + [SMALL_STATE(5698)] = 165919, + [SMALL_STATE(5699)] = 165927, + [SMALL_STATE(5700)] = 165935, + [SMALL_STATE(5701)] = 165943, + [SMALL_STATE(5702)] = 165951, + [SMALL_STATE(5703)] = 165959, + [SMALL_STATE(5704)] = 165967, + [SMALL_STATE(5705)] = 165975, + [SMALL_STATE(5706)] = 165983, + [SMALL_STATE(5707)] = 165991, + [SMALL_STATE(5708)] = 165999, + [SMALL_STATE(5709)] = 166007, + [SMALL_STATE(5710)] = 166015, + [SMALL_STATE(5711)] = 166023, + [SMALL_STATE(5712)] = 166031, + [SMALL_STATE(5713)] = 166039, + [SMALL_STATE(5714)] = 166047, + [SMALL_STATE(5715)] = 166055, + [SMALL_STATE(5716)] = 166063, + [SMALL_STATE(5717)] = 166071, + [SMALL_STATE(5718)] = 166079, + [SMALL_STATE(5719)] = 166087, + [SMALL_STATE(5720)] = 166095, + [SMALL_STATE(5721)] = 166103, + [SMALL_STATE(5722)] = 166111, + [SMALL_STATE(5723)] = 166119, + [SMALL_STATE(5724)] = 166127, + [SMALL_STATE(5725)] = 166135, + [SMALL_STATE(5726)] = 166143, + [SMALL_STATE(5727)] = 166151, + [SMALL_STATE(5728)] = 166159, + [SMALL_STATE(5729)] = 166167, + [SMALL_STATE(5730)] = 166175, + [SMALL_STATE(5731)] = 166183, + [SMALL_STATE(5732)] = 166193, + [SMALL_STATE(5733)] = 166201, + [SMALL_STATE(5734)] = 166209, + [SMALL_STATE(5735)] = 166217, + [SMALL_STATE(5736)] = 166225, + [SMALL_STATE(5737)] = 166233, + [SMALL_STATE(5738)] = 166241, + [SMALL_STATE(5739)] = 166249, + [SMALL_STATE(5740)] = 166257, + [SMALL_STATE(5741)] = 166265, + [SMALL_STATE(5742)] = 166273, + [SMALL_STATE(5743)] = 166281, + [SMALL_STATE(5744)] = 166289, + [SMALL_STATE(5745)] = 166297, + [SMALL_STATE(5746)] = 166305, + [SMALL_STATE(5747)] = 166313, + [SMALL_STATE(5748)] = 166321, + [SMALL_STATE(5749)] = 166329, + [SMALL_STATE(5750)] = 166337, + [SMALL_STATE(5751)] = 166345, + [SMALL_STATE(5752)] = 166353, + [SMALL_STATE(5753)] = 166361, + [SMALL_STATE(5754)] = 166369, + [SMALL_STATE(5755)] = 166377, + [SMALL_STATE(5756)] = 166385, + [SMALL_STATE(5757)] = 166393, + [SMALL_STATE(5758)] = 166401, + [SMALL_STATE(5759)] = 166409, + [SMALL_STATE(5760)] = 166417, + [SMALL_STATE(5761)] = 166425, + [SMALL_STATE(5762)] = 166433, + [SMALL_STATE(5763)] = 166441, + [SMALL_STATE(5764)] = 166449, + [SMALL_STATE(5765)] = 166457, + [SMALL_STATE(5766)] = 166465, + [SMALL_STATE(5767)] = 166473, + [SMALL_STATE(5768)] = 166481, + [SMALL_STATE(5769)] = 166489, + [SMALL_STATE(5770)] = 166497, + [SMALL_STATE(5771)] = 166505, + [SMALL_STATE(5772)] = 166513, + [SMALL_STATE(5773)] = 166521, + [SMALL_STATE(5774)] = 166529, + [SMALL_STATE(5775)] = 166537, + [SMALL_STATE(5776)] = 166545, + [SMALL_STATE(5777)] = 166553, + [SMALL_STATE(5778)] = 166563, + [SMALL_STATE(5779)] = 166571, + [SMALL_STATE(5780)] = 166579, + [SMALL_STATE(5781)] = 166587, + [SMALL_STATE(5782)] = 166595, + [SMALL_STATE(5783)] = 166603, + [SMALL_STATE(5784)] = 166611, + [SMALL_STATE(5785)] = 166619, + [SMALL_STATE(5786)] = 166627, + [SMALL_STATE(5787)] = 166635, + [SMALL_STATE(5788)] = 166643, + [SMALL_STATE(5789)] = 166651, + [SMALL_STATE(5790)] = 166659, + [SMALL_STATE(5791)] = 166667, + [SMALL_STATE(5792)] = 166675, + [SMALL_STATE(5793)] = 166683, + [SMALL_STATE(5794)] = 166691, + [SMALL_STATE(5795)] = 166699, + [SMALL_STATE(5796)] = 166707, + [SMALL_STATE(5797)] = 166715, + [SMALL_STATE(5798)] = 166723, + [SMALL_STATE(5799)] = 166731, + [SMALL_STATE(5800)] = 166739, + [SMALL_STATE(5801)] = 166747, + [SMALL_STATE(5802)] = 166755, + [SMALL_STATE(5803)] = 166763, + [SMALL_STATE(5804)] = 166773, + [SMALL_STATE(5805)] = 166781, + [SMALL_STATE(5806)] = 166789, + [SMALL_STATE(5807)] = 166797, + [SMALL_STATE(5808)] = 166805, + [SMALL_STATE(5809)] = 166815, + [SMALL_STATE(5810)] = 166823, + [SMALL_STATE(5811)] = 166831, + [SMALL_STATE(5812)] = 166839, + [SMALL_STATE(5813)] = 166847, + [SMALL_STATE(5814)] = 166855, + [SMALL_STATE(5815)] = 166863, + [SMALL_STATE(5816)] = 166871, + [SMALL_STATE(5817)] = 166879, + [SMALL_STATE(5818)] = 166887, + [SMALL_STATE(5819)] = 166895, + [SMALL_STATE(5820)] = 166903, + [SMALL_STATE(5821)] = 166911, + [SMALL_STATE(5822)] = 166919, + [SMALL_STATE(5823)] = 166927, + [SMALL_STATE(5824)] = 166935, + [SMALL_STATE(5825)] = 166943, + [SMALL_STATE(5826)] = 166951, + [SMALL_STATE(5827)] = 166959, + [SMALL_STATE(5828)] = 166967, + [SMALL_STATE(5829)] = 166975, + [SMALL_STATE(5830)] = 166983, + [SMALL_STATE(5831)] = 166991, + [SMALL_STATE(5832)] = 166999, + [SMALL_STATE(5833)] = 167007, + [SMALL_STATE(5834)] = 167015, + [SMALL_STATE(5835)] = 167023, + [SMALL_STATE(5836)] = 167031, + [SMALL_STATE(5837)] = 167039, + [SMALL_STATE(5838)] = 167047, + [SMALL_STATE(5839)] = 167055, + [SMALL_STATE(5840)] = 167063, + [SMALL_STATE(5841)] = 167071, + [SMALL_STATE(5842)] = 167079, + [SMALL_STATE(5843)] = 167087, + [SMALL_STATE(5844)] = 167095, + [SMALL_STATE(5845)] = 167103, + [SMALL_STATE(5846)] = 167111, + [SMALL_STATE(5847)] = 167119, + [SMALL_STATE(5848)] = 167127, + [SMALL_STATE(5849)] = 167135, + [SMALL_STATE(5850)] = 167143, + [SMALL_STATE(5851)] = 167151, + [SMALL_STATE(5852)] = 167159, + [SMALL_STATE(5853)] = 167167, + [SMALL_STATE(5854)] = 167175, + [SMALL_STATE(5855)] = 167183, + [SMALL_STATE(5856)] = 167191, + [SMALL_STATE(5857)] = 167199, + [SMALL_STATE(5858)] = 167207, + [SMALL_STATE(5859)] = 167215, + [SMALL_STATE(5860)] = 167223, + [SMALL_STATE(5861)] = 167231, + [SMALL_STATE(5862)] = 167239, + [SMALL_STATE(5863)] = 167247, + [SMALL_STATE(5864)] = 167255, + [SMALL_STATE(5865)] = 167263, + [SMALL_STATE(5866)] = 167271, + [SMALL_STATE(5867)] = 167279, + [SMALL_STATE(5868)] = 167287, + [SMALL_STATE(5869)] = 167295, + [SMALL_STATE(5870)] = 167303, + [SMALL_STATE(5871)] = 167311, + [SMALL_STATE(5872)] = 167319, + [SMALL_STATE(5873)] = 167327, + [SMALL_STATE(5874)] = 167335, + [SMALL_STATE(5875)] = 167343, + [SMALL_STATE(5876)] = 167351, + [SMALL_STATE(5877)] = 167359, + [SMALL_STATE(5878)] = 167367, + [SMALL_STATE(5879)] = 167375, + [SMALL_STATE(5880)] = 167383, + [SMALL_STATE(5881)] = 167391, + [SMALL_STATE(5882)] = 167399, + [SMALL_STATE(5883)] = 167407, + [SMALL_STATE(5884)] = 167415, + [SMALL_STATE(5885)] = 167423, + [SMALL_STATE(5886)] = 167431, + [SMALL_STATE(5887)] = 167439, + [SMALL_STATE(5888)] = 167447, + [SMALL_STATE(5889)] = 167455, + [SMALL_STATE(5890)] = 167463, + [SMALL_STATE(5891)] = 167471, + [SMALL_STATE(5892)] = 167479, + [SMALL_STATE(5893)] = 167487, + [SMALL_STATE(5894)] = 167495, + [SMALL_STATE(5895)] = 167503, + [SMALL_STATE(5896)] = 167511, + [SMALL_STATE(5897)] = 167519, + [SMALL_STATE(5898)] = 167527, + [SMALL_STATE(5899)] = 167535, + [SMALL_STATE(5900)] = 167543, + [SMALL_STATE(5901)] = 167551, + [SMALL_STATE(5902)] = 167559, + [SMALL_STATE(5903)] = 167567, + [SMALL_STATE(5904)] = 167575, + [SMALL_STATE(5905)] = 167583, + [SMALL_STATE(5906)] = 167591, + [SMALL_STATE(5907)] = 167599, + [SMALL_STATE(5908)] = 167607, + [SMALL_STATE(5909)] = 167615, + [SMALL_STATE(5910)] = 167623, + [SMALL_STATE(5911)] = 167631, + [SMALL_STATE(5912)] = 167639, + [SMALL_STATE(5913)] = 167647, + [SMALL_STATE(5914)] = 167655, + [SMALL_STATE(5915)] = 167663, + [SMALL_STATE(5916)] = 167671, + [SMALL_STATE(5917)] = 167679, + [SMALL_STATE(5918)] = 167687, + [SMALL_STATE(5919)] = 167695, + [SMALL_STATE(5920)] = 167703, + [SMALL_STATE(5921)] = 167711, + [SMALL_STATE(5922)] = 167719, + [SMALL_STATE(5923)] = 167727, + [SMALL_STATE(5924)] = 167735, + [SMALL_STATE(5925)] = 167743, + [SMALL_STATE(5926)] = 167751, + [SMALL_STATE(5927)] = 167759, + [SMALL_STATE(5928)] = 167767, + [SMALL_STATE(5929)] = 167775, + [SMALL_STATE(5930)] = 167783, + [SMALL_STATE(5931)] = 167791, + [SMALL_STATE(5932)] = 167799, + [SMALL_STATE(5933)] = 167807, + [SMALL_STATE(5934)] = 167815, + [SMALL_STATE(5935)] = 167823, + [SMALL_STATE(5936)] = 167831, + [SMALL_STATE(5937)] = 167839, + [SMALL_STATE(5938)] = 167847, + [SMALL_STATE(5939)] = 167855, + [SMALL_STATE(5940)] = 167863, + [SMALL_STATE(5941)] = 167871, + [SMALL_STATE(5942)] = 167879, + [SMALL_STATE(5943)] = 167887, + [SMALL_STATE(5944)] = 167895, + [SMALL_STATE(5945)] = 167903, + [SMALL_STATE(5946)] = 167911, + [SMALL_STATE(5947)] = 167919, + [SMALL_STATE(5948)] = 167927, + [SMALL_STATE(5949)] = 167935, + [SMALL_STATE(5950)] = 167943, + [SMALL_STATE(5951)] = 167951, + [SMALL_STATE(5952)] = 167959, + [SMALL_STATE(5953)] = 167967, + [SMALL_STATE(5954)] = 167975, + [SMALL_STATE(5955)] = 167983, + [SMALL_STATE(5956)] = 167991, + [SMALL_STATE(5957)] = 167999, + [SMALL_STATE(5958)] = 168007, + [SMALL_STATE(5959)] = 168015, + [SMALL_STATE(5960)] = 168023, + [SMALL_STATE(5961)] = 168031, + [SMALL_STATE(5962)] = 168039, + [SMALL_STATE(5963)] = 168047, + [SMALL_STATE(5964)] = 168055, + [SMALL_STATE(5965)] = 168063, + [SMALL_STATE(5966)] = 168071, + [SMALL_STATE(5967)] = 168079, + [SMALL_STATE(5968)] = 168087, + [SMALL_STATE(5969)] = 168095, + [SMALL_STATE(5970)] = 168103, + [SMALL_STATE(5971)] = 168111, + [SMALL_STATE(5972)] = 168119, + [SMALL_STATE(5973)] = 168127, + [SMALL_STATE(5974)] = 168135, + [SMALL_STATE(5975)] = 168143, + [SMALL_STATE(5976)] = 168151, + [SMALL_STATE(5977)] = 168159, + [SMALL_STATE(5978)] = 168167, + [SMALL_STATE(5979)] = 168175, + [SMALL_STATE(5980)] = 168183, + [SMALL_STATE(5981)] = 168191, + [SMALL_STATE(5982)] = 168199, + [SMALL_STATE(5983)] = 168207, + [SMALL_STATE(5984)] = 168215, + [SMALL_STATE(5985)] = 168223, + [SMALL_STATE(5986)] = 168231, + [SMALL_STATE(5987)] = 168239, + [SMALL_STATE(5988)] = 168247, + [SMALL_STATE(5989)] = 168255, + [SMALL_STATE(5990)] = 168265, + [SMALL_STATE(5991)] = 168273, + [SMALL_STATE(5992)] = 168281, + [SMALL_STATE(5993)] = 168289, + [SMALL_STATE(5994)] = 168297, + [SMALL_STATE(5995)] = 168305, + [SMALL_STATE(5996)] = 168313, + [SMALL_STATE(5997)] = 168321, + [SMALL_STATE(5998)] = 168329, + [SMALL_STATE(5999)] = 168337, + [SMALL_STATE(6000)] = 168345, + [SMALL_STATE(6001)] = 168353, + [SMALL_STATE(6002)] = 168361, + [SMALL_STATE(6003)] = 168369, + [SMALL_STATE(6004)] = 168377, + [SMALL_STATE(6005)] = 168385, + [SMALL_STATE(6006)] = 168393, + [SMALL_STATE(6007)] = 168401, + [SMALL_STATE(6008)] = 168409, + [SMALL_STATE(6009)] = 168417, + [SMALL_STATE(6010)] = 168425, + [SMALL_STATE(6011)] = 168433, + [SMALL_STATE(6012)] = 168441, + [SMALL_STATE(6013)] = 168449, + [SMALL_STATE(6014)] = 168457, + [SMALL_STATE(6015)] = 168465, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -277998,4814 +279174,4838 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(620), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(496), [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(438), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5958), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(407), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(409), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(519), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5989), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(495), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(425), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(669), [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(506), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2873), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5377), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(506), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5509), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5512), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5188), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5426), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3583), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5268), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5277), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4982), [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5270), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5055), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5486), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5339), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5290), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5085), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5516), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(331), [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4529), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4562), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3794), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5757), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4303), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5823), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 239), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 239), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 87), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 87), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 53), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 53), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4495), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4501), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3587), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5777), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4095), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1165), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5878), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5924), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 87), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 87), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 239), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 239), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 53), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 53), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(39), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(45), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(204), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(222), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3500), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3895), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(221), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3543), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3920), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(402), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(347), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(517), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(569), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 146), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 146), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 69), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 105), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 105), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 228), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 228), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 234), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 234), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 234), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 234), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 104), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 104), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 125), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 125), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 125), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 125), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 82), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 165), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 165), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 180), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 180), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 180), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 180), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 82), [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 180), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 180), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 180), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 180), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 180), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 180), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1916] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2995), - [1920] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3233), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 146), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 146), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 104), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 104), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 228), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 228), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 234), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 234), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 125), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 125), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 125), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 125), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 69), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1884] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3230), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [1890] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2922), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2771), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2797), [2279] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(211), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(466), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [2288] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5178), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(445), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [2288] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5197), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(211), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5178), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5197), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 99), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 99), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 99), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 99), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 279), [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 244), [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 244), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 279), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 279), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 124), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 124), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 141), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 141), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 80), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 80), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 145), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 145), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 149), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 149), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 149), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 149), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 86), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 86), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 80), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 80), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 99), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 99), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 105), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 105), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 90), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 90), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 179), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 179), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 125), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 125), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 188), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 188), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 59), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 59), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 78), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 78), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 192), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 192), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 146), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 146), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 91), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 91), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 92), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 92), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 149), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 149), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 203), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 203), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 165), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 165), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 180), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 180), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 59), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 59), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 231), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 231), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 233), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 233), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 270), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 270), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 231), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 231), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 233), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 233), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 234), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 234), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 276), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 276), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 277), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 277), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 278), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 278), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 86), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 86), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 308), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 308), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 100), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 100), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 67), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 67), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 68), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 68), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 91), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 91), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 59), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 59), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 92), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 92), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 231), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 231), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 59), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 59), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 149), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 149), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 233), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 233), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 99), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 99), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 100), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 100), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 192), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 192), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 308), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 308), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 80), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 80), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 203), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 203), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 179), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 179), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 86), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 86), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 80), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 80), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 78), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 78), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 124), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 124), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 270), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 270), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 231), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 231), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 233), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 233), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 277), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 277), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 67), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 67), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 68), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 68), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 125), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 125), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 145), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 145), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 149), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 149), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 146), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 146), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 90), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 90), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 149), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 149), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 86), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 86), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 276), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 276), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 278), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 278), [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 274), [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 274), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 240), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 240), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 275), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 275), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 201), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 201), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 240), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 240), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 275), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 275), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 143), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 143), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 190), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 190), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), - [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5629), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1079), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(437), - [3526] = {.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), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5412), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5927), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1094), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(411), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(263), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4303), - [3588] = {.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), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3288), - [3611] = {.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), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(403), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(519), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 143), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 143), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5774), + [3476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1071), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(427), + [3524] = {.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), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5760), + [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1082), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5417), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4095), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(498), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(256), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3323), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [3599] = {.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), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3617] = {.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), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(376), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(571), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1479), - [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2381), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1998), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1676), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3221), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2825), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1448), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(378), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4588), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4591), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2092), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5984), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3003), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3972), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1734), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1856), - [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2377), - [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1737), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1857), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2356), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2741), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2773), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1854), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1755), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1475), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1765), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2402), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3232), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2823), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1446), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(377), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4493), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4494), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2335), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5957), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3062), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4376), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1758), + [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1868), + [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2408), + [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1735), + [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1869), + [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2397), + [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2741), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2786), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1645), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2008), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1760), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 110), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 110), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [4002] = {.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), - [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 50), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 50), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 116), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 116), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 326), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 326), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 88), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 88), - [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 191), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 191), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 52), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 52), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 114), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 114), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 115), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 115), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 117), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 117), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), - [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), REDUCE(sym_nested_type_identifier, 3, 0, 172), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), REDUCE(sym_nested_type_identifier, 3, 0, 172), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 173), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 173), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 226), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 226), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 115), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 115), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 227), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 227), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 269), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 269), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 305), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 305), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [3996] = {.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), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 110), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 110), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), SHIFT(1056), + [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), SHIFT(1056), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), SHIFT(1056), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 50), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 50), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), SHIFT(1056), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), SHIFT(1056), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 116), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 116), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), SHIFT(1056), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 173), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 173), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 115), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 115), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 69), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 69), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 70), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 70), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 174), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 174), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 175), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 175), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 176), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 176), + [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 177), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 177), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 227), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 227), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 226), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 226), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 52), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 52), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 326), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 326), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 114), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 114), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 115), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 115), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 117), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 117), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 88), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 88), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(168), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 127), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 126), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 126), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 129), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 129), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 144), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 144), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 55), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 55), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 64), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 65), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 65), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 66), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 73), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 73), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(168), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), - [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 75), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 75), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 76), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 76), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 178), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 178), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 66), - [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 79), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 79), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(168), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 121), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 121), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(168), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 122), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 122), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 189), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5323), - [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [4804] = {.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), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [4838] = {.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), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(170), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(172), - [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(172), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(172), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(172), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(170), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(170), - [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(170), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(163), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [4988] = {.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), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 22), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 64), - [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), REDUCE(sym_assignment_expression, 3, 0, 64), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), - [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(163), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 87), - [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(449), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(163), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(163), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 98), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 98), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 64), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5293] = {.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), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(169), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 154), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 154), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(169), - [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(169), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(169), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(162), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), - [5465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), - [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 204), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 204), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 94), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 94), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [5613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 84), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(167), - [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(167), - [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(167), - [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(167), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(171), - [5758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(171), - [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(171), - [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(171), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), - [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), - [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), - [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(164), - [5832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(557), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), - [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), - [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), - [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), - [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(164), - [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(164), - [5905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(164), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), - [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 107), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 180), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 180), - [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 199), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 199), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 237), - [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 237), - [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 306), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 306), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), - [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 125), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 125), - [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 327), - [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 327), - [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2675), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 343), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 343), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 228), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 228), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 85), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 85), - [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 152), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 152), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), - [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), SHIFT_REPEAT(2672), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 53), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 53), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(3972), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(4419), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 103), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 59), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 213), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 254), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 59), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 157), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 254), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 157), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 215), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 157), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 254), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 162), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 260), - [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 59), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 213), - [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 59), - [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 103), - [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5412), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3837), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5246), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [7128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3552), - [7131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(291), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), - [7136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3552), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 345), - [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 58), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 124), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 161), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(437), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), - [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(411), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 284), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 139), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 139), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 309), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 205), - [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 179), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 167), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), - [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 331), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 336), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 101), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5906), - [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3772), - [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 77), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), - [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), - [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(945), - [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1020), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(942), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(919), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1084), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(938), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 248), - [7831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(974), - [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 252), - [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 300), - [7838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 312), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), - [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 282), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 88), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(977), - [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4223), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [7954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), - [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [7964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), - [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 291), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 329), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 330), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 339), - [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1053), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 206), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 207), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 315), - [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 109), - [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 348), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 88), - [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(941), - [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1031), - [8045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(943), - [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1035), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [8055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), - [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), - [8069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), - [8077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), - [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), - [8083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), - [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 253), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), - [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), SHIFT_REPEAT(352), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), - [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 281), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), - [8226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), SHIFT_REPEAT(4597), - [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 59), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 269), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 269), + [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 64), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 65), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 65), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 66), + [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 121), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 121), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 189), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 126), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 126), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 127), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 76), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 66), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 73), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 73), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), + [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 79), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 79), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(168), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), + [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 129), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 129), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(168), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(168), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), + [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 144), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 144), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), + [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 76), + [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 55), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 55), + [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 178), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 178), + [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(168), + [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), + [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 75), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 75), + [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5584), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(172), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(165), + [4940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(165), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), SHIFT(1033), + [4948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(165), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(172), + [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(172), + [4969] = {.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), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(172), + [4978] = {.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), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [4998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), SHIFT(1033), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), SHIFT(1033), + [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), SHIFT(1033), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), SHIFT(1033), + [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), SHIFT(1033), + [5017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(165), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5045] = {.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), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 22), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 64), + [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), REDUCE(sym_assignment_expression, 3, 0, 64), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), + [5066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(171), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 87), + [5071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(525), + [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(171), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [5225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(171), + [5228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(171), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 94), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 94), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 98), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 98), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 64), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(166), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(166), + [5419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(166), + [5422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(166), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(164), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(164), + [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(164), + [5524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(164), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 204), + [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 204), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5591] = {.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), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(169), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(169), + [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(169), + [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(169), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [5751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(170), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(170), + [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(170), + [5808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(170), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 84), + [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(597), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 107), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(163), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [5883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), + [5889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), + [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), + [5895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(163), + [5916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(163), + [5919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(163), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), + [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), + [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), + [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 125), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 125), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 228), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 228), + [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 152), + [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 152), + [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), + [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), + [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), SHIFT_REPEAT(2684), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 237), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 237), + [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2688), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 306), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 306), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), + [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), + [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 199), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 199), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 180), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 180), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 327), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 327), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 85), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 85), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 343), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 343), + [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 53), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 53), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [6116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), + [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4376), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(3976), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [6406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 59), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 103), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 157), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 213), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 254), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 59), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 213), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 215), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 260), + [6715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5417), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 254), + [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 59), + [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 59), + [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 157), + [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 157), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 162), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 103), + [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 254), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [6846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5276), + [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(295), + [6868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), + [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [6873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [7028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3679), + [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(291), + [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), + [7194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3679), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [7335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 167), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 101), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(427), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 58), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 124), + [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 161), + [7389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 205), + [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 179), + [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(498), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 284), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), + [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 309), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), + [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 331), + [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 336), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 345), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 77), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), + [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5786), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), + [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), + [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), + [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1062), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), + [7844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 248), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 88), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(930), + [7863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 252), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 300), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [7883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [7889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 348), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 206), + [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 207), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [7921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 312), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [7933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 282), + [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [7971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(945), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 88), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [8006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1087), + [8009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(927), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 315), + [8024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(918), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [8033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1043), + [8036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(936), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [8041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1046), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [8046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), + [8049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4326), + [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [8058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [8074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 291), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 329), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 330), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 339), + [8094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1081), + [8097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1090), + [8100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(940), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [8117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 109), + [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [8129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 253), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 59), + [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 108), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [8265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), - [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [8270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), - [8273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4551), - [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [8278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4551), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), - [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 238), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4567), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4572), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 186), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 186), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 108), - [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), - [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), - [8423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2188), - [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 59), - [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [8476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4868), - [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 124), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 88), - [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 284), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 337), - [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 338), - [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), - [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 341), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 179), - [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 205), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), - [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 344), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 346), - [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 347), - [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), - [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 84), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 350), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 309), - [8838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), SHIFT_REPEAT(2761), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(519), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), - [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 150), - [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 95), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 97), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 59), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 197), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 200), - [8998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 197), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), - [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), - [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [9116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 155), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 153), - [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 150), - [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 88), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 130), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [9200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 181), - [9202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 135), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [9482] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), + [8259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), SHIFT_REPEAT(392), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [8264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4545), + [8267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [8269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4545), + [8272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4546), + [8275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [8277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4546), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [8307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [8323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 281), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [8364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [8406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), SHIFT_REPEAT(4563), + [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 238), + [8419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4623), + [8427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4624), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 59), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), + [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 341), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 338), + [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), + [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 337), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [8524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2482), + [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 124), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 84), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), + [8555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), + [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 344), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 346), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 347), + [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), + [8640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4874), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 350), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 88), + [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 309), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), + [8773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 179), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 205), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), + [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [8882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [8890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [8913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), SHIFT_REPEAT(2756), + [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), + [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 284), + [8932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [8959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(571), + [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [8974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [8976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), + [8982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), + [8984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 130), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 153), + [8992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 155), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 150), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), + [9016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 197), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 200), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 197), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 135), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [9048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 95), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 97), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [9164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [9210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 150), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [9216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 88), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [9240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 181), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 59), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [9294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [9296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [9592] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [9960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), }; enum ts_external_scanner_symbol_identifiers { diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 3ac060d9..e5ecaad9 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -8985,6 +8985,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -11184,6 +11196,9 @@ [ "class" ], + [ + "_type_query_member_expression_in_type_annotation" + ], [ "nested_identifier", "nested_type_identifier", diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index cc98309c..9e1d3a32 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -3393,6 +3393,16 @@ } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] } }, { diff --git a/typescript/src/parser.c b/typescript/src/parser.c index a88f8e15..aa2797b7 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -5,8 +5,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5870 -#define LARGE_STATE_COUNT 1193 +#define STATE_COUNT 5910 +#define LARGE_STATE_COUNT 1195 #define SYMBOL_COUNT 376 #define ALIAS_COUNT 7 #define TOKEN_COUNT 166 @@ -4487,21 +4487,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 14, + [15] = 15, [16] = 16, [17] = 17, - [18] = 14, - [19] = 19, - [20] = 14, - [21] = 19, - [22] = 14, - [23] = 19, - [24] = 14, - [25] = 19, - [26] = 19, - [27] = 14, - [28] = 19, - [29] = 19, + [18] = 16, + [19] = 17, + [20] = 16, + [21] = 17, + [22] = 17, + [23] = 16, + [24] = 16, + [25] = 17, + [26] = 16, + [27] = 17, + [28] = 17, + [29] = 16, [30] = 30, [31] = 31, [32] = 32, @@ -4510,131 +4510,131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 31, + [38] = 38, [39] = 39, - [40] = 31, - [41] = 33, + [40] = 40, + [41] = 41, [42] = 42, [43] = 43, - [44] = 44, + [44] = 36, [45] = 45, - [46] = 46, + [46] = 31, [47] = 47, [48] = 48, [49] = 49, - [50] = 39, - [51] = 42, - [52] = 32, - [53] = 31, - [54] = 54, - [55] = 43, - [56] = 31, - [57] = 37, - [58] = 44, - [59] = 45, - [60] = 46, - [61] = 47, - [62] = 48, - [63] = 31, - [64] = 49, - [65] = 34, - [66] = 31, - [67] = 31, - [68] = 31, - [69] = 31, - [70] = 35, - [71] = 36, + [50] = 32, + [51] = 33, + [52] = 35, + [53] = 37, + [54] = 38, + [55] = 39, + [56] = 40, + [57] = 41, + [58] = 42, + [59] = 43, + [60] = 45, + [61] = 32, + [62] = 47, + [63] = 32, + [64] = 48, + [65] = 32, + [66] = 32, + [67] = 32, + [68] = 32, + [69] = 32, + [70] = 32, + [71] = 49, [72] = 72, [73] = 72, [74] = 72, [75] = 75, [76] = 76, - [77] = 76, + [77] = 77, [78] = 78, [79] = 79, [80] = 80, - [81] = 76, - [82] = 75, - [83] = 83, - [84] = 84, + [81] = 81, + [82] = 79, + [83] = 81, + [84] = 81, [85] = 85, [86] = 86, [87] = 87, - [88] = 88, - [89] = 86, - [90] = 86, - [91] = 86, - [92] = 86, + [88] = 87, + [89] = 89, + [90] = 87, + [91] = 87, + [92] = 87, [93] = 93, [94] = 94, - [95] = 94, - [96] = 87, + [95] = 93, + [96] = 96, [97] = 94, - [98] = 98, - [99] = 99, - [100] = 93, - [101] = 98, - [102] = 94, + [98] = 96, + [99] = 93, + [100] = 100, + [101] = 100, + [102] = 93, [103] = 94, - [104] = 94, - [105] = 93, - [106] = 99, - [107] = 93, - [108] = 94, - [109] = 109, - [110] = 88, + [104] = 93, + [105] = 86, + [106] = 93, + [107] = 107, + [108] = 93, + [109] = 93, + [110] = 110, [111] = 111, - [112] = 112, - [113] = 94, - [114] = 87, - [115] = 115, - [116] = 93, - [117] = 117, - [118] = 94, - [119] = 98, - [120] = 94, - [121] = 93, - [122] = 98, - [123] = 87, - [124] = 94, - [125] = 94, - [126] = 93, - [127] = 111, - [128] = 93, - [129] = 112, - [130] = 94, - [131] = 94, - [132] = 93, - [133] = 94, - [134] = 94, - [135] = 94, - [136] = 94, + [112] = 94, + [113] = 89, + [114] = 86, + [115] = 93, + [116] = 94, + [117] = 86, + [118] = 118, + [119] = 96, + [120] = 93, + [121] = 96, + [122] = 122, + [123] = 94, + [124] = 93, + [125] = 93, + [126] = 107, + [127] = 110, + [128] = 94, + [129] = 94, + [130] = 93, + [131] = 93, + [132] = 94, + [133] = 93, + [134] = 93, + [135] = 93, + [136] = 93, [137] = 137, [138] = 137, - [139] = 93, - [140] = 137, + [139] = 137, + [140] = 94, [141] = 137, [142] = 137, - [143] = 143, + [143] = 137, [144] = 137, - [145] = 94, + [145] = 93, [146] = 137, - [147] = 137, + [147] = 147, [148] = 137, [149] = 137, [150] = 150, [151] = 151, - [152] = 151, - [153] = 151, - [154] = 151, - [155] = 151, - [156] = 156, - [157] = 151, - [158] = 151, - [159] = 159, - [160] = 151, - [161] = 151, - [162] = 151, + [152] = 152, + [153] = 152, + [154] = 152, + [155] = 152, + [156] = 152, + [157] = 152, + [158] = 152, + [159] = 152, + [160] = 160, + [161] = 152, + [162] = 152, [163] = 163, [164] = 163, [165] = 163, @@ -4648,39 +4648,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [173] = 173, [174] = 173, [175] = 173, - [176] = 176, - [177] = 173, + [176] = 173, + [177] = 177, [178] = 178, [179] = 179, - [180] = 180, - [181] = 180, - [182] = 176, - [183] = 173, - [184] = 179, - [185] = 176, - [186] = 180, - [187] = 173, - [188] = 179, - [189] = 178, + [180] = 178, + [181] = 173, + [182] = 182, + [183] = 178, + [184] = 182, + [185] = 182, + [186] = 179, + [187] = 179, + [188] = 173, + [189] = 173, [190] = 173, [191] = 173, - [192] = 173, + [192] = 177, [193] = 173, [194] = 194, [195] = 194, [196] = 196, [197] = 197, - [198] = 197, - [199] = 197, - [200] = 200, + [198] = 198, + [199] = 196, + [200] = 196, [201] = 201, - [202] = 196, - [203] = 203, + [202] = 201, + [203] = 201, [204] = 204, - [205] = 204, - [206] = 206, - [207] = 204, - [208] = 196, + [205] = 205, + [206] = 197, + [207] = 207, + [208] = 197, [209] = 209, [210] = 210, [211] = 211, @@ -4688,186 +4688,186 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [213] = 213, [214] = 214, [215] = 215, - [216] = 215, + [216] = 216, [217] = 217, [218] = 218, [219] = 219, - [220] = 220, - [221] = 215, + [220] = 218, + [221] = 221, [222] = 222, - [223] = 223, + [223] = 218, [224] = 224, [225] = 225, [226] = 226, [227] = 227, - [228] = 228, - [229] = 215, + [228] = 218, + [229] = 229, [230] = 230, - [231] = 231, + [231] = 218, [232] = 232, [233] = 233, - [234] = 215, + [234] = 234, [235] = 235, [236] = 236, [237] = 237, [238] = 238, [239] = 239, - [240] = 240, - [241] = 215, + [240] = 218, + [241] = 241, [242] = 242, [243] = 243, [244] = 242, [245] = 245, [246] = 246, - [247] = 247, - [248] = 246, - [249] = 249, + [247] = 245, + [248] = 248, + [249] = 242, [250] = 250, - [251] = 242, - [252] = 245, - [253] = 249, + [251] = 251, + [252] = 248, + [253] = 250, [254] = 254, - [255] = 242, - [256] = 256, + [255] = 255, + [256] = 242, [257] = 257, - [258] = 256, - [259] = 257, - [260] = 242, - [261] = 242, + [258] = 255, + [259] = 254, + [260] = 260, + [261] = 260, [262] = 242, - [263] = 242, - [264] = 264, - [265] = 264, - [266] = 264, - [267] = 267, - [268] = 264, - [269] = 264, - [270] = 242, - [271] = 264, + [263] = 260, + [264] = 242, + [265] = 242, + [266] = 242, + [267] = 260, + [268] = 242, + [269] = 260, + [270] = 260, + [271] = 271, [272] = 242, - [273] = 264, - [274] = 242, + [273] = 242, + [274] = 260, [275] = 275, - [276] = 275, - [277] = 275, + [276] = 276, + [277] = 277, [278] = 278, - [279] = 279, - [280] = 280, - [281] = 275, - [282] = 275, - [283] = 275, - [284] = 275, - [285] = 275, - [286] = 275, - [287] = 287, - [288] = 288, - [289] = 280, - [290] = 275, - [291] = 275, - [292] = 275, - [293] = 275, - [294] = 275, - [295] = 275, - [296] = 275, + [279] = 277, + [280] = 277, + [281] = 277, + [282] = 282, + [283] = 277, + [284] = 277, + [285] = 277, + [286] = 277, + [287] = 277, + [288] = 277, + [289] = 277, + [290] = 282, + [291] = 277, + [292] = 277, + [293] = 277, + [294] = 277, + [295] = 277, + [296] = 296, [297] = 297, [298] = 298, [299] = 299, [300] = 300, [301] = 301, - [302] = 302, - [303] = 303, - [304] = 299, - [305] = 301, + [302] = 299, + [303] = 297, + [304] = 304, + [305] = 305, [306] = 306, [307] = 307, [308] = 308, - [309] = 306, + [309] = 309, [310] = 307, [311] = 308, - [312] = 312, - [313] = 313, - [314] = 313, + [312] = 306, + [313] = 309, + [314] = 314, [315] = 315, [316] = 316, [317] = 317, [318] = 318, [319] = 319, - [320] = 320, + [320] = 317, [321] = 321, [322] = 322, [323] = 323, [324] = 324, [325] = 325, - [326] = 315, - [327] = 319, - [328] = 328, - [329] = 321, + [326] = 326, + [327] = 318, + [328] = 324, + [329] = 329, [330] = 330, - [331] = 331, - [332] = 318, - [333] = 321, + [331] = 316, + [332] = 317, + [333] = 333, [334] = 334, - [335] = 317, - [336] = 324, - [337] = 330, + [335] = 324, + [336] = 318, + [337] = 337, [338] = 318, - [339] = 321, + [339] = 318, [340] = 324, - [341] = 325, - [342] = 325, - [343] = 315, - [344] = 324, - [345] = 345, - [346] = 330, - [347] = 318, - [348] = 321, - [349] = 324, - [350] = 325, - [351] = 315, - [352] = 325, - [353] = 353, + [341] = 329, + [342] = 330, + [343] = 316, + [344] = 317, + [345] = 337, + [346] = 324, + [347] = 329, + [348] = 330, + [349] = 316, + [350] = 317, + [351] = 318, + [352] = 324, + [353] = 329, [354] = 330, - [355] = 355, - [356] = 318, - [357] = 321, + [355] = 316, + [356] = 317, + [357] = 318, [358] = 324, - [359] = 318, - [360] = 315, - [361] = 330, - [362] = 331, - [363] = 330, - [364] = 318, - [365] = 321, - [366] = 324, - [367] = 325, - [368] = 315, + [359] = 330, + [360] = 329, + [361] = 318, + [362] = 324, + [363] = 329, + [364] = 330, + [365] = 316, + [366] = 317, + [367] = 367, + [368] = 329, [369] = 369, - [370] = 330, - [371] = 318, - [372] = 321, - [373] = 324, - [374] = 325, - [375] = 315, - [376] = 330, + [370] = 326, + [371] = 330, + [372] = 316, + [373] = 317, + [374] = 374, + [375] = 375, + [376] = 376, [377] = 318, - [378] = 321, - [379] = 324, - [380] = 325, - [381] = 315, + [378] = 378, + [379] = 330, + [380] = 324, + [381] = 329, [382] = 330, - [383] = 318, - [384] = 321, - [385] = 324, - [386] = 325, - [387] = 315, - [388] = 315, - [389] = 389, + [383] = 316, + [384] = 317, + [385] = 316, + [386] = 321, + [387] = 317, + [388] = 329, + [389] = 330, [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, - [394] = 330, - [395] = 325, + [391] = 318, + [392] = 316, + [393] = 324, + [394] = 329, + [395] = 395, [396] = 396, [397] = 397, [398] = 398, @@ -4892,276 +4892,276 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [417] = 417, [418] = 418, [419] = 419, - [420] = 420, + [420] = 404, [421] = 421, [422] = 422, - [423] = 412, + [423] = 401, [424] = 424, [425] = 425, - [426] = 396, - [427] = 427, + [426] = 426, + [427] = 396, [428] = 428, - [429] = 412, - [430] = 418, - [431] = 431, - [432] = 399, - [433] = 400, - [434] = 415, - [435] = 416, - [436] = 412, - [437] = 425, - [438] = 418, - [439] = 439, - [440] = 427, - [441] = 418, - [442] = 442, + [429] = 429, + [430] = 396, + [431] = 425, + [432] = 432, + [433] = 402, + [434] = 434, + [435] = 397, + [436] = 421, + [437] = 422, + [438] = 400, + [439] = 434, + [440] = 424, + [441] = 404, + [442] = 424, [443] = 443, - [444] = 418, - [445] = 418, - [446] = 446, - [447] = 447, + [444] = 404, + [445] = 403, + [446] = 434, + [447] = 424, [448] = 448, - [449] = 418, - [450] = 450, - [451] = 451, - [452] = 428, - [453] = 401, - [454] = 446, - [455] = 455, - [456] = 397, - [457] = 398, - [458] = 398, - [459] = 396, - [460] = 399, - [461] = 401, - [462] = 402, - [463] = 403, - [464] = 404, - [465] = 405, - [466] = 406, - [467] = 407, - [468] = 408, - [469] = 409, - [470] = 410, - [471] = 411, - [472] = 417, - [473] = 402, - [474] = 403, - [475] = 404, - [476] = 415, - [477] = 416, - [478] = 418, - [479] = 405, - [480] = 442, - [481] = 422, - [482] = 424, - [483] = 451, + [449] = 449, + [450] = 424, + [451] = 424, + [452] = 424, + [453] = 397, + [454] = 400, + [455] = 401, + [456] = 402, + [457] = 405, + [458] = 403, + [459] = 459, + [460] = 405, + [461] = 406, + [462] = 406, + [463] = 463, + [464] = 407, + [465] = 409, + [466] = 410, + [467] = 411, + [468] = 412, + [469] = 413, + [470] = 414, + [471] = 415, + [472] = 416, + [473] = 417, + [474] = 418, + [475] = 419, + [476] = 476, + [477] = 421, + [478] = 422, + [479] = 479, + [480] = 424, + [481] = 443, + [482] = 463, + [483] = 407, [484] = 428, - [485] = 446, - [486] = 450, - [487] = 455, - [488] = 397, - [489] = 398, - [490] = 399, - [491] = 400, - [492] = 401, - [493] = 402, - [494] = 403, - [495] = 404, - [496] = 405, - [497] = 406, - [498] = 407, - [499] = 408, - [500] = 409, - [501] = 410, - [502] = 411, - [503] = 412, - [504] = 406, - [505] = 415, - [506] = 416, - [507] = 418, - [508] = 422, + [485] = 408, + [486] = 400, + [487] = 401, + [488] = 402, + [489] = 403, + [490] = 405, + [491] = 406, + [492] = 407, + [493] = 408, + [494] = 409, + [495] = 410, + [496] = 411, + [497] = 412, + [498] = 413, + [499] = 414, + [500] = 415, + [501] = 416, + [502] = 417, + [503] = 418, + [504] = 419, + [505] = 404, + [506] = 421, + [507] = 422, + [508] = 428, [509] = 424, - [510] = 425, - [511] = 418, - [512] = 450, - [513] = 428, - [514] = 407, - [515] = 446, - [516] = 455, - [517] = 397, - [518] = 398, - [519] = 396, - [520] = 399, - [521] = 401, - [522] = 402, - [523] = 403, - [524] = 404, - [525] = 405, - [526] = 397, - [527] = 407, - [528] = 408, - [529] = 409, - [530] = 410, - [531] = 411, - [532] = 408, - [533] = 415, - [534] = 416, - [535] = 418, - [536] = 409, - [537] = 422, - [538] = 451, - [539] = 428, - [540] = 446, - [541] = 455, - [542] = 397, - [543] = 398, - [544] = 399, - [545] = 401, - [546] = 402, - [547] = 403, - [548] = 404, - [549] = 405, - [550] = 406, - [551] = 407, - [552] = 408, - [553] = 409, - [554] = 410, - [555] = 411, - [556] = 415, - [557] = 416, - [558] = 418, - [559] = 422, - [560] = 424, - [561] = 425, - [562] = 562, - [563] = 418, - [564] = 450, - [565] = 396, - [566] = 428, - [567] = 446, - [568] = 455, - [569] = 397, - [570] = 398, - [571] = 399, - [572] = 401, - [573] = 402, - [574] = 403, - [575] = 404, + [510] = 428, + [511] = 409, + [512] = 396, + [513] = 425, + [514] = 424, + [515] = 397, + [516] = 401, + [517] = 402, + [518] = 403, + [519] = 405, + [520] = 406, + [521] = 463, + [522] = 407, + [523] = 409, + [524] = 410, + [525] = 411, + [526] = 412, + [527] = 413, + [528] = 414, + [529] = 415, + [530] = 416, + [531] = 417, + [532] = 418, + [533] = 419, + [534] = 534, + [535] = 421, + [536] = 422, + [537] = 424, + [538] = 428, + [539] = 400, + [540] = 401, + [541] = 402, + [542] = 403, + [543] = 405, + [544] = 410, + [545] = 406, + [546] = 407, + [547] = 409, + [548] = 410, + [549] = 463, + [550] = 412, + [551] = 413, + [552] = 414, + [553] = 415, + [554] = 416, + [555] = 417, + [556] = 418, + [557] = 419, + [558] = 411, + [559] = 412, + [560] = 413, + [561] = 421, + [562] = 422, + [563] = 414, + [564] = 424, + [565] = 415, + [566] = 416, + [567] = 428, + [568] = 396, + [569] = 425, + [570] = 424, + [571] = 397, + [572] = 463, + [573] = 401, + [574] = 402, + [575] = 403, [576] = 405, [577] = 406, [578] = 407, - [579] = 408, - [580] = 409, - [581] = 410, - [582] = 411, - [583] = 415, - [584] = 416, - [585] = 455, - [586] = 451, - [587] = 422, - [588] = 424, - [589] = 425, - [590] = 427, - [591] = 418, - [592] = 450, - [593] = 396, + [579] = 409, + [580] = 410, + [581] = 411, + [582] = 412, + [583] = 413, + [584] = 414, + [585] = 415, + [586] = 416, + [587] = 417, + [588] = 418, + [589] = 417, + [590] = 419, + [591] = 421, + [592] = 422, + [593] = 418, [594] = 428, - [595] = 446, - [596] = 455, - [597] = 397, - [598] = 398, - [599] = 399, - [600] = 401, - [601] = 402, - [602] = 403, - [603] = 404, + [595] = 396, + [596] = 425, + [597] = 424, + [598] = 397, + [599] = 463, + [600] = 600, + [601] = 401, + [602] = 402, + [603] = 403, [604] = 405, [605] = 406, [606] = 407, - [607] = 408, - [608] = 409, - [609] = 410, - [610] = 411, - [611] = 410, - [612] = 415, - [613] = 416, - [614] = 422, - [615] = 424, - [616] = 425, - [617] = 418, - [618] = 450, - [619] = 396, - [620] = 428, - [621] = 446, - [622] = 455, - [623] = 397, - [624] = 398, - [625] = 399, + [607] = 409, + [608] = 410, + [609] = 411, + [610] = 412, + [611] = 413, + [612] = 414, + [613] = 415, + [614] = 416, + [615] = 417, + [616] = 418, + [617] = 419, + [618] = 419, + [619] = 421, + [620] = 422, + [621] = 428, + [622] = 425, + [623] = 424, + [624] = 397, + [625] = 463, [626] = 401, [627] = 402, [628] = 403, - [629] = 404, - [630] = 405, - [631] = 406, - [632] = 407, - [633] = 408, - [634] = 409, - [635] = 410, - [636] = 451, - [637] = 411, - [638] = 428, - [639] = 446, - [640] = 415, - [641] = 416, - [642] = 422, - [643] = 422, - [644] = 424, - [645] = 425, - [646] = 450, - [647] = 428, - [648] = 446, - [649] = 455, - [650] = 397, - [651] = 398, - [652] = 399, - [653] = 401, - [654] = 402, - [655] = 403, - [656] = 404, - [657] = 405, - [658] = 406, - [659] = 407, - [660] = 408, - [661] = 409, - [662] = 410, - [663] = 411, - [664] = 411, - [665] = 415, - [666] = 416, - [667] = 422, - [668] = 424, - [669] = 425, - [670] = 450, - [671] = 396, - [672] = 672, - [673] = 424, - [674] = 425, - [675] = 451, - [676] = 451, + [629] = 405, + [630] = 406, + [631] = 407, + [632] = 409, + [633] = 410, + [634] = 411, + [635] = 412, + [636] = 413, + [637] = 414, + [638] = 415, + [639] = 416, + [640] = 417, + [641] = 418, + [642] = 419, + [643] = 421, + [644] = 422, + [645] = 428, + [646] = 396, + [647] = 425, + [648] = 397, + [649] = 463, + [650] = 401, + [651] = 402, + [652] = 403, + [653] = 405, + [654] = 406, + [655] = 407, + [656] = 409, + [657] = 410, + [658] = 411, + [659] = 412, + [660] = 413, + [661] = 414, + [662] = 415, + [663] = 416, + [664] = 417, + [665] = 418, + [666] = 419, + [667] = 421, + [668] = 422, + [669] = 428, + [670] = 396, + [671] = 425, + [672] = 397, + [673] = 463, + [674] = 396, + [675] = 425, + [676] = 400, [677] = 677, - [678] = 418, - [679] = 424, - [680] = 425, - [681] = 451, - [682] = 455, - [683] = 451, - [684] = 451, - [685] = 450, - [686] = 396, - [687] = 450, - [688] = 396, - [689] = 406, + [678] = 476, + [679] = 400, + [680] = 424, + [681] = 396, + [682] = 425, + [683] = 683, + [684] = 400, + [685] = 400, + [686] = 400, + [687] = 397, + [688] = 463, + [689] = 411, [690] = 690, [691] = 690, [692] = 690, @@ -5179,110 +5179,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [704] = 703, [705] = 703, [706] = 701, - [707] = 707, - [708] = 213, - [709] = 219, - [710] = 707, + [707] = 232, + [708] = 708, + [709] = 708, + [710] = 234, [711] = 711, [712] = 712, [713] = 713, [714] = 714, [715] = 715, [716] = 716, - [717] = 716, - [718] = 718, - [719] = 718, - [720] = 720, - [721] = 720, - [722] = 716, - [723] = 718, + [717] = 717, + [718] = 716, + [719] = 717, + [720] = 716, + [721] = 721, + [722] = 717, + [723] = 721, [724] = 724, [725] = 725, [726] = 726, [727] = 726, - [728] = 728, - [729] = 728, + [728] = 726, + [729] = 729, [730] = 726, [731] = 724, [732] = 726, [733] = 725, - [734] = 726, + [734] = 729, [735] = 726, - [736] = 736, + [736] = 726, [737] = 726, - [738] = 725, + [738] = 724, [739] = 726, - [740] = 726, - [741] = 726, - [742] = 742, - [743] = 726, - [744] = 744, - [745] = 745, + [740] = 740, + [741] = 741, + [742] = 726, + [743] = 219, + [744] = 724, + [745] = 726, [746] = 746, - [747] = 212, - [748] = 726, - [749] = 749, - [750] = 749, - [751] = 725, - [752] = 749, - [753] = 236, - [754] = 236, - [755] = 235, - [756] = 238, - [757] = 211, - [758] = 235, - [759] = 212, - [760] = 210, + [747] = 726, + [748] = 748, + [749] = 216, + [750] = 750, + [751] = 751, + [752] = 750, + [753] = 750, + [754] = 221, + [755] = 222, + [756] = 217, + [757] = 209, + [758] = 216, + [759] = 222, + [760] = 217, [761] = 726, [762] = 726, [763] = 726, [764] = 726, - [765] = 742, + [765] = 726, [766] = 726, - [767] = 726, - [768] = 724, - [769] = 210, - [770] = 770, + [767] = 725, + [768] = 741, + [769] = 219, + [770] = 198, [771] = 771, - [772] = 771, + [772] = 205, [773] = 771, [774] = 771, [775] = 771, - [776] = 771, - [777] = 726, - [778] = 771, + [776] = 726, + [777] = 771, + [778] = 778, [779] = 771, - [780] = 200, + [780] = 771, [781] = 771, [782] = 771, - [783] = 201, + [783] = 771, [784] = 784, [785] = 785, [786] = 786, [787] = 787, [788] = 788, - [789] = 239, + [789] = 207, [790] = 790, [791] = 791, [792] = 792, - [793] = 784, + [793] = 793, [794] = 794, - [795] = 784, + [795] = 795, [796] = 796, - [797] = 797, - [798] = 203, + [797] = 215, + [798] = 798, [799] = 799, - [800] = 784, + [800] = 800, [801] = 801, - [802] = 240, - [803] = 803, + [802] = 802, + [803] = 787, [804] = 804, - [805] = 784, - [806] = 806, + [805] = 238, + [806] = 787, [807] = 807, - [808] = 808, + [808] = 787, [809] = 809, - [810] = 810, + [810] = 787, [811] = 811, [812] = 812, [813] = 813, @@ -5318,17 +5318,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [843] = 843, [844] = 844, [845] = 845, - [846] = 846, + [846] = 817, [847] = 847, - [848] = 820, + [848] = 848, [849] = 849, [850] = 850, [851] = 851, [852] = 852, - [853] = 853, - [854] = 854, + [853] = 821, + [854] = 221, [855] = 855, - [856] = 856, + [856] = 209, [857] = 857, [858] = 858, [859] = 859, @@ -5336,49 +5336,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [861] = 861, [862] = 862, [863] = 863, - [864] = 864, - [865] = 238, + [864] = 821, + [865] = 865, [866] = 866, [867] = 867, - [868] = 820, + [868] = 868, [869] = 869, - [870] = 870, + [870] = 230, [871] = 871, - [872] = 211, + [872] = 224, [873] = 873, [874] = 874, [875] = 875, - [876] = 821, + [876] = 876, [877] = 877, [878] = 878, [879] = 879, [880] = 880, [881] = 881, - [882] = 217, + [882] = 882, [883] = 883, [884] = 884, [885] = 885, [886] = 886, - [887] = 231, + [887] = 887, [888] = 888, - [889] = 821, + [889] = 889, [890] = 890, [891] = 891, - [892] = 892, - [893] = 893, + [892] = 817, + [893] = 821, [894] = 894, [895] = 895, [896] = 896, [897] = 897, [898] = 898, [899] = 899, - [900] = 820, + [900] = 900, [901] = 901, [902] = 902, [903] = 903, [904] = 904, [905] = 905, - [906] = 821, + [906] = 906, [907] = 907, [908] = 908, [909] = 909, @@ -5405,71 +5405,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [930] = 930, [931] = 931, [932] = 932, - [933] = 820, + [933] = 933, [934] = 934, - [935] = 821, + [935] = 935, [936] = 936, [937] = 937, - [938] = 938, + [938] = 817, [939] = 939, [940] = 940, [941] = 941, [942] = 942, - [943] = 943, - [944] = 944, + [943] = 817, + [944] = 821, [945] = 945, [946] = 946, [947] = 947, [948] = 948, - [949] = 946, - [950] = 950, - [951] = 948, + [949] = 949, + [950] = 946, + [951] = 951, [952] = 952, - [953] = 946, - [954] = 803, - [955] = 955, - [956] = 956, - [957] = 948, + [953] = 952, + [954] = 952, + [955] = 947, + [956] = 946, + [957] = 802, [958] = 958, [959] = 959, [960] = 960, - [961] = 959, - [962] = 946, - [963] = 959, - [964] = 948, - [965] = 965, - [966] = 966, - [967] = 948, - [968] = 946, - [969] = 787, - [970] = 970, - [971] = 948, - [972] = 972, - [973] = 948, - [974] = 946, - [975] = 975, + [961] = 961, + [962] = 952, + [963] = 963, + [964] = 952, + [965] = 807, + [966] = 952, + [967] = 946, + [968] = 947, + [969] = 969, + [970] = 946, + [971] = 971, + [972] = 952, + [973] = 973, + [974] = 974, + [975] = 946, [976] = 946, [977] = 977, [978] = 978, - [979] = 979, - [980] = 978, - [981] = 981, - [982] = 978, - [983] = 977, - [984] = 979, - [985] = 978, - [986] = 979, - [987] = 978, - [988] = 988, - [989] = 977, - [990] = 977, + [979] = 977, + [980] = 980, + [981] = 978, + [982] = 982, + [983] = 978, + [984] = 977, + [985] = 980, + [986] = 977, + [987] = 977, + [988] = 978, + [989] = 978, + [990] = 980, [991] = 991, [992] = 992, - [993] = 977, - [994] = 979, - [995] = 978, - [996] = 977, - [997] = 979, + [993] = 993, + [994] = 977, + [995] = 980, + [996] = 980, + [997] = 978, [998] = 998, [999] = 999, [1000] = 1000, @@ -5480,155 +5480,155 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1005] = 1005, [1006] = 1006, [1007] = 1007, - [1008] = 1008, - [1009] = 1001, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, + [1008] = 1002, + [1009] = 1009, + [1010] = 1001, + [1011] = 1002, + [1012] = 1009, [1013] = 1013, - [1014] = 1001, - [1015] = 1015, - [1016] = 1016, + [1014] = 1014, + [1015] = 1006, + [1016] = 1007, [1017] = 1017, [1018] = 1018, - [1019] = 1019, - [1020] = 998, - [1021] = 1000, - [1022] = 1002, - [1023] = 1003, - [1024] = 1024, - [1025] = 1025, - [1026] = 1010, - [1027] = 1007, - [1028] = 1008, - [1029] = 1011, - [1030] = 1012, - [1031] = 1013, - [1032] = 1015, - [1033] = 1016, + [1019] = 1017, + [1020] = 1018, + [1021] = 1006, + [1022] = 1014, + [1023] = 1023, + [1024] = 999, + [1025] = 1003, + [1026] = 1001, + [1027] = 1002, + [1028] = 1007, + [1029] = 1009, + [1030] = 1006, + [1031] = 1007, + [1032] = 1032, + [1033] = 1033, [1034] = 1034, [1035] = 1035, - [1036] = 1036, - [1037] = 1017, - [1038] = 1018, - [1039] = 998, - [1040] = 1000, - [1041] = 1015, - [1042] = 1016, - [1043] = 1002, - [1044] = 1003, - [1045] = 1004, - [1046] = 1005, - [1047] = 1024, - [1048] = 1025, - [1049] = 1049, - [1050] = 1050, + [1036] = 998, + [1037] = 1014, + [1038] = 1014, + [1039] = 1039, + [1040] = 1023, + [1041] = 1032, + [1042] = 1033, + [1043] = 1043, + [1044] = 1032, + [1045] = 1001, + [1046] = 1046, + [1047] = 1047, + [1048] = 1002, + [1049] = 1009, + [1050] = 1034, [1051] = 1051, - [1052] = 1052, - [1053] = 1017, - [1054] = 1018, - [1055] = 1055, + [1052] = 1032, + [1053] = 1033, + [1054] = 1054, + [1055] = 1013, [1056] = 1056, - [1057] = 998, - [1058] = 1000, - [1059] = 1002, - [1060] = 1003, - [1061] = 1024, - [1062] = 1025, - [1063] = 1007, - [1064] = 1008, - [1065] = 1011, - [1066] = 1012, - [1067] = 1013, - [1068] = 1015, - [1069] = 1015, - [1070] = 1016, - [1071] = 1004, - [1072] = 1017, - [1073] = 1018, - [1074] = 1004, - [1075] = 1002, - [1076] = 1003, - [1077] = 1024, - [1078] = 1025, - [1079] = 1007, - [1080] = 1008, - [1081] = 1011, - [1082] = 1012, - [1083] = 1004, - [1084] = 1001, - [1085] = 1024, - [1086] = 1016, - [1087] = 1015, - [1088] = 1016, - [1089] = 1017, - [1090] = 1018, - [1091] = 999, - [1092] = 1002, - [1093] = 1003, - [1094] = 1024, - [1095] = 1025, + [1057] = 1034, + [1058] = 1058, + [1059] = 1035, + [1060] = 1054, + [1061] = 1032, + [1062] = 1017, + [1063] = 1018, + [1064] = 998, + [1065] = 1065, + [1066] = 999, + [1067] = 1003, + [1068] = 1056, + [1069] = 1033, + [1070] = 1001, + [1071] = 1034, + [1072] = 1002, + [1073] = 999, + [1074] = 1003, + [1075] = 1075, + [1076] = 1035, + [1077] = 998, + [1078] = 1039, + [1079] = 1006, + [1080] = 1033, + [1081] = 1007, + [1082] = 1035, + [1083] = 1034, + [1084] = 1035, + [1085] = 998, + [1086] = 999, + [1087] = 1003, + [1088] = 1051, + [1089] = 1054, + [1090] = 1056, + [1091] = 1017, + [1092] = 1054, + [1093] = 1093, + [1094] = 1056, + [1095] = 1095, [1096] = 1017, [1097] = 1018, - [1098] = 1001, - [1099] = 998, - [1100] = 1000, - [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1025, - [1105] = 1007, - [1106] = 1008, - [1107] = 1011, - [1108] = 1012, - [1109] = 1013, - [1110] = 1006, - [1111] = 1001, - [1112] = 1112, - [1113] = 1112, - [1114] = 1114, - [1115] = 1035, - [1116] = 1015, - [1117] = 1016, - [1118] = 1017, - [1119] = 1018, - [1120] = 998, - [1121] = 1000, - [1122] = 1002, - [1123] = 1003, + [1098] = 1054, + [1099] = 999, + [1100] = 1003, + [1101] = 1001, + [1102] = 1002, + [1103] = 1056, + [1104] = 1006, + [1105] = 1105, + [1106] = 1007, + [1107] = 1032, + [1108] = 1033, + [1109] = 1007, + [1110] = 1034, + [1111] = 1035, + [1112] = 1093, + [1113] = 1032, + [1114] = 1033, + [1115] = 1034, + [1116] = 1035, + [1117] = 998, + [1118] = 1009, + [1119] = 998, + [1120] = 1014, + [1121] = 1121, + [1122] = 1009, + [1123] = 1123, [1124] = 1124, [1125] = 1125, - [1126] = 1126, - [1127] = 1024, - [1128] = 1128, - [1129] = 1025, - [1130] = 1007, - [1131] = 1008, - [1132] = 1011, - [1133] = 1012, - [1134] = 1013, - [1135] = 1004, - [1136] = 998, - [1137] = 1000, - [1138] = 1114, - [1139] = 1007, - [1140] = 1008, - [1141] = 1011, - [1142] = 1012, - [1143] = 999, - [1144] = 1004, - [1145] = 1013, - [1146] = 999, - [1147] = 999, - [1148] = 999, - [1149] = 999, - [1150] = 1013, + [1126] = 1054, + [1127] = 1127, + [1128] = 1056, + [1129] = 1018, + [1130] = 1130, + [1131] = 1017, + [1132] = 1054, + [1133] = 1056, + [1134] = 1014, + [1135] = 1135, + [1136] = 1001, + [1137] = 1017, + [1138] = 1018, + [1139] = 1058, + [1140] = 1006, + [1141] = 999, + [1142] = 1075, + [1143] = 1009, + [1144] = 1003, + [1145] = 1075, + [1146] = 1075, + [1147] = 1075, + [1148] = 1075, + [1149] = 1075, + [1150] = 1018, [1151] = 1151, [1152] = 1151, - [1153] = 1151, + [1153] = 1153, [1154] = 1151, [1155] = 1151, - [1156] = 1151, + [1156] = 1156, [1157] = 1151, [1158] = 1151, [1159] = 1151, @@ -5636,306 +5636,306 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1161] = 1151, [1162] = 1151, [1163] = 1163, - [1164] = 1164, - [1165] = 1163, + [1164] = 1151, + [1165] = 1151, [1166] = 1166, - [1167] = 1167, - [1168] = 1164, - [1169] = 1163, - [1170] = 1170, + [1167] = 1166, + [1168] = 1166, + [1169] = 1169, + [1170] = 1169, [1171] = 1171, - [1172] = 1167, - [1173] = 1167, - [1174] = 1164, + [1172] = 1171, + [1173] = 1171, + [1174] = 1169, [1175] = 1175, [1176] = 1176, [1177] = 1177, [1178] = 1177, [1179] = 1179, [1180] = 1179, - [1181] = 1177, - [1182] = 1182, + [1181] = 1175, + [1182] = 1177, [1183] = 1183, [1184] = 1184, - [1185] = 1175, + [1185] = 1185, [1186] = 1176, - [1187] = 1177, + [1187] = 1183, [1188] = 1177, - [1189] = 1177, - [1190] = 1184, - [1191] = 1183, - [1192] = 1182, + [1189] = 1189, + [1190] = 1177, + [1191] = 1189, + [1192] = 1177, [1193] = 1193, - [1194] = 1193, + [1194] = 1184, [1195] = 1195, - [1196] = 1193, + [1196] = 1196, [1197] = 1197, [1198] = 1198, [1199] = 1199, [1200] = 1200, [1201] = 1177, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, + [1202] = 1198, + [1203] = 1177, + [1204] = 1177, [1205] = 1205, - [1206] = 1206, + [1206] = 1176, [1207] = 1207, - [1208] = 1177, - [1209] = 1177, - [1210] = 1176, + [1208] = 1208, + [1209] = 1209, + [1210] = 1198, [1211] = 1177, [1212] = 1212, [1213] = 1213, [1214] = 1214, - [1215] = 1215, + [1215] = 1213, [1216] = 1216, - [1217] = 787, - [1218] = 1177, - [1219] = 803, - [1220] = 1177, - [1221] = 1221, - [1222] = 1221, - [1223] = 1223, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1216, + [1221] = 1177, + [1222] = 1219, + [1223] = 1176, [1224] = 1224, - [1225] = 1225, - [1226] = 1224, - [1227] = 1216, - [1228] = 1216, - [1229] = 1176, - [1230] = 1177, - [1231] = 1223, - [1232] = 1215, - [1233] = 1215, + [1225] = 1216, + [1226] = 1214, + [1227] = 1177, + [1228] = 1177, + [1229] = 1229, + [1230] = 807, + [1231] = 1218, + [1232] = 1214, + [1233] = 802, [1234] = 1177, - [1235] = 1177, - [1236] = 1177, - [1237] = 1177, + [1235] = 1209, + [1236] = 1236, + [1237] = 1237, [1238] = 1238, - [1239] = 1177, - [1240] = 1177, - [1241] = 1241, - [1242] = 1175, - [1243] = 1203, - [1244] = 1223, - [1245] = 1245, - [1246] = 1246, - [1247] = 1223, - [1248] = 1248, - [1249] = 1223, - [1250] = 1248, - [1251] = 1248, + [1239] = 1218, + [1240] = 1240, + [1241] = 1177, + [1242] = 1177, + [1243] = 1177, + [1244] = 1177, + [1245] = 1177, + [1246] = 1218, + [1247] = 1175, + [1248] = 1193, + [1249] = 1249, + [1250] = 1250, + [1251] = 1250, [1252] = 1252, - [1253] = 1248, - [1254] = 1223, - [1255] = 1255, - [1256] = 1238, - [1257] = 1248, - [1258] = 1223, - [1259] = 1248, - [1260] = 1260, - [1261] = 1223, - [1262] = 1262, - [1263] = 1223, - [1264] = 1245, + [1253] = 1250, + [1254] = 1218, + [1255] = 1193, + [1256] = 1185, + [1257] = 1218, + [1258] = 1250, + [1259] = 1259, + [1260] = 1237, + [1261] = 1261, + [1262] = 1250, + [1263] = 1238, + [1264] = 1250, [1265] = 1265, - [1266] = 1248, + [1266] = 1237, [1267] = 1177, - [1268] = 1248, - [1269] = 1269, - [1270] = 1238, - [1271] = 1248, + [1268] = 1250, + [1269] = 1218, + [1270] = 1250, + [1271] = 1238, [1272] = 1272, [1273] = 1273, - [1274] = 1248, - [1275] = 1245, - [1276] = 1276, + [1274] = 1274, + [1275] = 1185, + [1276] = 1250, [1277] = 1277, - [1278] = 1278, - [1279] = 1279, - [1280] = 1279, - [1281] = 1223, - [1282] = 1202, - [1283] = 1223, - [1284] = 1205, + [1278] = 1218, + [1279] = 1218, + [1280] = 1250, + [1281] = 1272, + [1282] = 1282, + [1283] = 1277, + [1284] = 1238, [1285] = 1285, - [1286] = 1262, - [1287] = 1287, + [1286] = 1286, + [1287] = 1238, [1288] = 1288, - [1289] = 1238, - [1290] = 1202, - [1291] = 1205, - [1292] = 1285, - [1293] = 1223, - [1294] = 1238, + [1289] = 1288, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1218, + [1294] = 1277, [1295] = 1295, - [1296] = 1223, - [1297] = 1297, - [1298] = 1223, + [1296] = 1272, + [1297] = 1218, + [1298] = 1238, [1299] = 1299, - [1300] = 1276, - [1301] = 1277, - [1302] = 1238, - [1303] = 1276, - [1304] = 1299, - [1305] = 1262, - [1306] = 1276, - [1307] = 1299, - [1308] = 1299, - [1309] = 1238, - [1310] = 1206, - [1311] = 1207, - [1312] = 1299, - [1313] = 1277, - [1314] = 1265, + [1300] = 1218, + [1301] = 1291, + [1302] = 1299, + [1303] = 1185, + [1304] = 1218, + [1305] = 1193, + [1306] = 1218, + [1307] = 1282, + [1308] = 1217, + [1309] = 1309, + [1310] = 1218, + [1311] = 1282, + [1312] = 1274, + [1313] = 1313, + [1314] = 1277, [1315] = 1315, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1260, + [1316] = 1288, + [1317] = 807, + [1318] = 1288, + [1319] = 1197, [1320] = 1277, - [1321] = 1197, - [1322] = 1213, - [1323] = 1238, - [1324] = 1277, - [1325] = 1198, - [1326] = 1316, - [1327] = 1223, - [1328] = 1276, - [1329] = 1277, - [1330] = 1200, - [1331] = 787, - [1332] = 1332, - [1333] = 1318, - [1334] = 1213, - [1335] = 803, - [1336] = 1238, - [1337] = 1299, - [1338] = 1262, - [1339] = 1202, - [1340] = 1238, - [1341] = 1273, - [1342] = 1315, - [1343] = 1276, - [1344] = 1344, - [1345] = 1205, - [1346] = 1223, - [1347] = 1212, - [1348] = 1199, - [1349] = 1277, - [1350] = 1202, - [1351] = 1351, - [1352] = 1295, - [1353] = 1299, - [1354] = 1205, - [1355] = 1299, + [1321] = 1321, + [1322] = 1282, + [1323] = 1193, + [1324] = 1272, + [1325] = 1325, + [1326] = 1218, + [1327] = 1259, + [1328] = 1288, + [1329] = 1238, + [1330] = 1282, + [1331] = 1331, + [1332] = 1277, + [1333] = 1288, + [1334] = 1205, + [1335] = 1331, + [1336] = 1325, + [1337] = 802, + [1338] = 1193, + [1339] = 1315, + [1340] = 1185, + [1341] = 1195, + [1342] = 1238, + [1343] = 1207, + [1344] = 1282, + [1345] = 1208, + [1346] = 1212, + [1347] = 1273, + [1348] = 1217, + [1349] = 1238, + [1350] = 1185, + [1351] = 1238, + [1352] = 1199, + [1353] = 1217, + [1354] = 1282, + [1355] = 1355, [1356] = 1356, - [1357] = 1238, - [1358] = 1252, - [1359] = 1351, - [1360] = 1277, - [1361] = 1276, - [1362] = 1213, - [1363] = 1278, - [1364] = 1213, - [1365] = 1365, - [1366] = 1299, - [1367] = 1205, - [1368] = 1299, - [1369] = 1202, - [1370] = 1276, - [1371] = 1260, + [1357] = 1288, + [1358] = 1358, + [1359] = 1277, + [1360] = 1288, + [1361] = 1261, + [1362] = 1362, + [1363] = 1238, + [1364] = 1288, + [1365] = 1290, + [1366] = 1273, + [1367] = 1274, + [1368] = 1193, + [1369] = 1356, + [1370] = 1185, + [1371] = 1286, [1372] = 1372, - [1373] = 1276, + [1373] = 1282, [1374] = 1277, - [1375] = 1277, - [1376] = 1265, - [1377] = 1377, - [1378] = 1276, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1380, - [1383] = 1299, - [1384] = 1277, - [1385] = 1299, - [1386] = 1380, - [1387] = 1213, + [1375] = 1282, + [1376] = 1217, + [1377] = 1277, + [1378] = 1288, + [1379] = 1277, + [1380] = 1282, + [1381] = 1288, + [1382] = 1273, + [1383] = 1383, + [1384] = 1282, + [1385] = 1385, + [1386] = 1383, + [1387] = 1387, [1388] = 1388, - [1389] = 1380, - [1390] = 1260, - [1391] = 1265, - [1392] = 1392, - [1393] = 1276, - [1394] = 1380, - [1395] = 1380, - [1396] = 1295, - [1397] = 1202, - [1398] = 1213, - [1399] = 1399, - [1400] = 1277, - [1401] = 1205, - [1402] = 1277, - [1403] = 1277, - [1404] = 1299, - [1405] = 1277, - [1406] = 1277, - [1407] = 1277, - [1408] = 1277, - [1409] = 1273, - [1410] = 1213, - [1411] = 1356, - [1412] = 1299, - [1413] = 1365, - [1414] = 1295, - [1415] = 1299, - [1416] = 1299, - [1417] = 1299, - [1418] = 1299, + [1389] = 1277, + [1390] = 1282, + [1391] = 1274, + [1392] = 1286, + [1393] = 1383, + [1394] = 1394, + [1395] = 1217, + [1396] = 1288, + [1397] = 1383, + [1398] = 1217, + [1399] = 1383, + [1400] = 1400, + [1401] = 1383, + [1402] = 1282, + [1403] = 1288, + [1404] = 1288, + [1405] = 1288, + [1406] = 1288, + [1407] = 1288, + [1408] = 1288, + [1409] = 1217, + [1410] = 1286, + [1411] = 1259, + [1412] = 1355, + [1413] = 1358, + [1414] = 1282, + [1415] = 1282, + [1416] = 1282, + [1417] = 1282, + [1418] = 1282, [1419] = 1419, [1420] = 1420, - [1421] = 1421, - [1422] = 1420, - [1423] = 1423, - [1424] = 1419, - [1425] = 1421, - [1426] = 1426, - [1427] = 1299, - [1428] = 1421, - [1429] = 1421, - [1430] = 1420, - [1431] = 1420, - [1432] = 1419, - [1433] = 1426, - [1434] = 1421, - [1435] = 1420, - [1436] = 1426, - [1437] = 1423, - [1438] = 1421, - [1439] = 1426, + [1421] = 1419, + [1422] = 1422, + [1423] = 1420, + [1424] = 1420, + [1425] = 1420, + [1426] = 1420, + [1427] = 1427, + [1428] = 1420, + [1429] = 1427, + [1430] = 1430, + [1431] = 1427, + [1432] = 1290, + [1433] = 1420, + [1434] = 1430, + [1435] = 1422, + [1436] = 1388, + [1437] = 1427, + [1438] = 1430, + [1439] = 1419, [1440] = 1420, - [1441] = 1426, - [1442] = 1423, - [1443] = 1423, - [1444] = 1421, - [1445] = 1420, - [1446] = 1278, - [1447] = 1381, - [1448] = 1421, - [1449] = 1421, - [1450] = 1423, - [1451] = 1420, - [1452] = 1421, - [1453] = 1420, - [1454] = 1426, - [1455] = 1419, - [1456] = 1213, - [1457] = 1213, - [1458] = 1277, - [1459] = 1213, - [1460] = 1423, - [1461] = 1420, + [1441] = 1430, + [1442] = 1420, + [1443] = 1420, + [1444] = 1419, + [1445] = 1427, + [1446] = 1419, + [1447] = 1430, + [1448] = 1427, + [1449] = 1430, + [1450] = 1427, + [1451] = 1422, + [1452] = 1427, + [1453] = 1217, + [1454] = 1422, + [1455] = 1217, + [1456] = 1282, + [1457] = 1217, + [1458] = 1427, + [1459] = 1288, + [1460] = 1427, + [1461] = 1422, [1462] = 1419, - [1463] = 1419, + [1463] = 1422, [1464] = 1464, [1465] = 1464, [1466] = 1464, @@ -5949,56 +5949,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1474] = 1474, [1475] = 1474, [1476] = 1474, - [1477] = 1477, + [1477] = 1474, [1478] = 1474, - [1479] = 1474, + [1479] = 1479, [1480] = 1474, [1481] = 1481, [1482] = 1482, - [1483] = 1483, - [1484] = 1482, + [1483] = 1481, + [1484] = 1481, [1485] = 1485, - [1486] = 1481, - [1487] = 1481, - [1488] = 1481, - [1489] = 1483, - [1490] = 1483, - [1491] = 1482, - [1492] = 1483, - [1493] = 1481, - [1494] = 1483, - [1495] = 1482, - [1496] = 1482, + [1486] = 1486, + [1487] = 1485, + [1488] = 1486, + [1489] = 1486, + [1490] = 1485, + [1491] = 1485, + [1492] = 1486, + [1493] = 1485, + [1494] = 1481, + [1495] = 1486, + [1496] = 1481, [1497] = 1497, [1498] = 1497, [1499] = 1497, - [1500] = 1497, - [1501] = 1501, + [1500] = 1500, + [1501] = 1497, [1502] = 1497, [1503] = 1497, [1504] = 1504, [1505] = 1505, - [1506] = 1506, + [1506] = 232, [1507] = 1507, - [1508] = 219, + [1508] = 1508, [1509] = 1509, - [1510] = 1510, - [1511] = 213, + [1510] = 234, + [1511] = 1511, [1512] = 1512, - [1513] = 988, + [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1516, - [1517] = 213, - [1518] = 992, - [1519] = 219, - [1520] = 1520, - [1521] = 206, + [1516] = 232, + [1517] = 204, + [1518] = 1518, + [1519] = 992, + [1520] = 234, + [1521] = 991, [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1525, - [1526] = 991, + [1525] = 993, + [1526] = 1526, [1527] = 1527, [1528] = 1528, [1529] = 1529, @@ -6006,14 +6006,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 212, + [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 714, + [1541] = 1541, [1542] = 1542, [1543] = 1543, [1544] = 1544, @@ -6021,22 +6021,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1546] = 1546, [1547] = 1547, [1548] = 1548, - [1549] = 1549, + [1549] = 1153, [1550] = 1550, [1551] = 1551, [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1166, + [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1560, + [1560] = 1163, [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 713, + [1562] = 198, + [1563] = 205, + [1564] = 207, [1565] = 1565, [1566] = 1566, [1567] = 1567, @@ -6051,47 +6051,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 236, + [1579] = 1579, [1580] = 1580, - [1581] = 1581, - [1582] = 711, + [1581] = 198, + [1582] = 1582, [1583] = 1583, [1584] = 1584, [1585] = 1585, - [1586] = 1586, + [1586] = 216, [1587] = 1587, - [1588] = 1588, + [1588] = 711, [1589] = 1589, - [1590] = 1170, + [1590] = 1590, [1591] = 1591, - [1592] = 1592, + [1592] = 219, [1593] = 1593, [1594] = 1594, [1595] = 1595, [1596] = 1596, - [1597] = 1597, + [1597] = 205, [1598] = 1598, [1599] = 1599, [1600] = 1600, - [1601] = 715, + [1601] = 1601, [1602] = 1602, [1603] = 1603, - [1604] = 1604, + [1604] = 207, [1605] = 1605, - [1606] = 200, - [1607] = 1171, - [1608] = 201, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, [1609] = 1609, - [1610] = 1610, + [1610] = 713, [1611] = 1611, - [1612] = 203, + [1612] = 1612, [1613] = 1613, [1614] = 1614, - [1615] = 200, - [1616] = 201, - [1617] = 203, - [1618] = 712, - [1619] = 1619, + [1615] = 1615, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 714, [1620] = 1620, [1621] = 1621, [1622] = 1622, @@ -6116,9 +6116,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1641] = 1641, [1642] = 1642, [1643] = 1643, - [1644] = 1644, + [1644] = 1156, [1645] = 1645, - [1646] = 1646, + [1646] = 712, [1647] = 1647, [1648] = 1648, [1649] = 1649, @@ -6127,7 +6127,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1652] = 1652, [1653] = 1653, [1654] = 1654, - [1655] = 1655, + [1655] = 715, [1656] = 1656, [1657] = 1657, [1658] = 1658, @@ -6138,9 +6138,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1663] = 1663, [1664] = 1664, [1665] = 1665, - [1666] = 1666, + [1666] = 230, [1667] = 1667, - [1668] = 1668, + [1668] = 217, [1669] = 1669, [1670] = 1670, [1671] = 1671, @@ -6149,12 +6149,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1674] = 1674, [1675] = 1675, [1676] = 1676, - [1677] = 1677, - [1678] = 211, + [1677] = 224, + [1678] = 1678, [1679] = 1679, - [1680] = 1680, + [1680] = 1661, [1681] = 1681, - [1682] = 1682, + [1682] = 209, [1683] = 1683, [1684] = 1684, [1685] = 1685, @@ -6166,980 +6166,980 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1691] = 1691, [1692] = 1692, [1693] = 1693, - [1694] = 1694, + [1694] = 1661, [1695] = 1695, - [1696] = 1501, - [1697] = 1697, - [1698] = 1698, - [1699] = 1699, + [1696] = 1696, + [1697] = 215, + [1698] = 238, + [1699] = 222, [1700] = 1700, [1701] = 1701, [1702] = 1702, [1703] = 1703, - [1704] = 1704, + [1704] = 1661, [1705] = 1705, [1706] = 1706, [1707] = 1707, - [1708] = 239, - [1709] = 240, + [1708] = 1708, + [1709] = 1709, [1710] = 1710, - [1711] = 231, - [1712] = 217, - [1713] = 235, - [1714] = 239, - [1715] = 240, - [1716] = 210, - [1717] = 1717, - [1718] = 1717, - [1719] = 1717, - [1720] = 1717, - [1721] = 1717, + [1711] = 1661, + [1712] = 1712, + [1713] = 215, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 221, + [1718] = 1500, + [1719] = 1719, + [1720] = 1720, + [1721] = 1721, [1722] = 1722, - [1723] = 1705, - [1724] = 212, + [1723] = 1723, + [1724] = 1724, [1725] = 1725, - [1726] = 1706, - [1727] = 235, - [1728] = 1728, - [1729] = 236, - [1730] = 1504, + [1726] = 1726, + [1727] = 1727, + [1728] = 1509, + [1729] = 1729, + [1730] = 1730, [1731] = 1731, - [1732] = 1505, - [1733] = 210, + [1732] = 1732, + [1733] = 1733, [1734] = 1734, - [1735] = 1509, - [1736] = 1731, - [1737] = 1506, - [1738] = 1734, - [1739] = 1739, - [1740] = 1740, - [1741] = 1741, - [1742] = 1742, + [1735] = 1735, + [1736] = 1736, + [1737] = 1737, + [1738] = 224, + [1739] = 221, + [1740] = 216, + [1741] = 1734, + [1742] = 1504, [1743] = 1743, [1744] = 1744, [1745] = 1745, - [1746] = 1746, - [1747] = 1747, + [1746] = 1670, + [1747] = 217, [1748] = 1748, [1749] = 1749, - [1750] = 217, + [1750] = 1508, [1751] = 1751, [1752] = 1752, - [1753] = 1753, - [1754] = 1754, - [1755] = 1755, + [1753] = 1734, + [1754] = 1730, + [1755] = 1511, [1756] = 1756, [1757] = 1757, [1758] = 1758, [1759] = 1759, [1760] = 1760, - [1761] = 1761, - [1762] = 1762, + [1761] = 219, + [1762] = 1695, [1763] = 1763, [1764] = 1764, - [1765] = 1765, - [1766] = 211, - [1767] = 1731, - [1768] = 1651, - [1769] = 1734, - [1770] = 1731, - [1771] = 231, - [1772] = 1734, - [1773] = 1731, - [1774] = 238, - [1775] = 1734, + [1765] = 222, + [1766] = 209, + [1767] = 1730, + [1768] = 1730, + [1769] = 1687, + [1770] = 1770, + [1771] = 230, + [1772] = 1772, + [1773] = 1734, + [1774] = 1774, + [1775] = 1775, [1776] = 1776, - [1777] = 1777, + [1777] = 1730, [1778] = 1778, [1779] = 1779, - [1780] = 1525, - [1781] = 1514, - [1782] = 1743, + [1780] = 1780, + [1781] = 1781, + [1782] = 1782, [1783] = 1783, [1784] = 1784, - [1785] = 1531, - [1786] = 1516, - [1787] = 1787, - [1788] = 1512, - [1789] = 1744, - [1790] = 1745, - [1791] = 1746, - [1792] = 1783, - [1793] = 1705, - [1794] = 1794, - [1795] = 988, - [1796] = 1539, - [1797] = 1706, - [1798] = 1722, - [1799] = 1651, - [1800] = 1747, + [1785] = 1734, + [1786] = 1514, + [1787] = 1752, + [1788] = 1737, + [1789] = 1789, + [1790] = 1670, + [1791] = 1733, + [1792] = 1687, + [1793] = 1732, + [1794] = 1733, + [1795] = 1743, + [1796] = 1756, + [1797] = 1545, + [1798] = 1758, + [1799] = 1776, + [1800] = 1515, [1801] = 1801, - [1802] = 1748, - [1803] = 1749, - [1804] = 1779, - [1805] = 1751, - [1806] = 1752, - [1807] = 1753, - [1808] = 1754, - [1809] = 1755, - [1810] = 1515, - [1811] = 1756, - [1812] = 1757, - [1813] = 1813, - [1814] = 1776, - [1815] = 1760, - [1816] = 1816, - [1817] = 1761, - [1818] = 1762, - [1819] = 1763, - [1820] = 1764, - [1821] = 1523, - [1822] = 1524, - [1823] = 1778, - [1824] = 1783, - [1825] = 1816, - [1826] = 1522, + [1802] = 1732, + [1803] = 1801, + [1804] = 1804, + [1805] = 1763, + [1806] = 1735, + [1807] = 1729, + [1808] = 1759, + [1809] = 1760, + [1810] = 1763, + [1811] = 1530, + [1812] = 1532, + [1813] = 1764, + [1814] = 1781, + [1815] = 1729, + [1816] = 1695, + [1817] = 1758, + [1818] = 1770, + [1819] = 991, + [1820] = 1522, + [1821] = 1821, + [1822] = 1512, + [1823] = 1526, + [1824] = 1527, + [1825] = 1528, + [1826] = 1780, [1827] = 1827, - [1828] = 1758, - [1829] = 1783, - [1830] = 1759, - [1831] = 1777, - [1832] = 1816, - [1833] = 1783, - [1834] = 1739, - [1835] = 1739, - [1836] = 1740, - [1837] = 1741, - [1838] = 991, - [1839] = 1743, - [1840] = 1744, - [1841] = 1745, - [1842] = 1746, - [1843] = 1747, - [1844] = 1748, - [1845] = 1749, - [1846] = 1779, - [1847] = 1751, - [1848] = 1752, - [1849] = 1753, - [1850] = 1754, - [1851] = 1755, - [1852] = 1756, - [1853] = 1757, - [1854] = 1758, - [1855] = 1759, - [1856] = 1760, - [1857] = 1761, - [1858] = 1762, - [1859] = 1763, - [1860] = 1764, - [1861] = 1765, - [1862] = 1531, - [1863] = 1539, - [1864] = 1816, - [1865] = 1527, - [1866] = 1740, - [1867] = 1867, - [1868] = 1741, - [1869] = 1869, - [1870] = 1870, - [1871] = 992, - [1872] = 1765, - [1873] = 1776, - [1874] = 1722, + [1828] = 1731, + [1829] = 1736, + [1830] = 1782, + [1831] = 1764, + [1832] = 1529, + [1833] = 1759, + [1834] = 1834, + [1835] = 1731, + [1836] = 1772, + [1837] = 1533, + [1838] = 1781, + [1839] = 1778, + [1840] = 1789, + [1841] = 1784, + [1842] = 1775, + [1843] = 1751, + [1844] = 1801, + [1845] = 1845, + [1846] = 1846, + [1847] = 1744, + [1848] = 1524, + [1849] = 1735, + [1850] = 1542, + [1851] = 1783, + [1852] = 1752, + [1853] = 1779, + [1854] = 1774, + [1855] = 1782, + [1856] = 1784, + [1857] = 1545, + [1858] = 1776, + [1859] = 993, + [1860] = 1760, + [1861] = 1861, + [1862] = 1737, + [1863] = 1775, + [1864] = 1531, + [1865] = 1770, + [1866] = 1743, + [1867] = 1756, + [1868] = 1789, + [1869] = 1745, + [1870] = 1736, + [1871] = 1523, + [1872] = 1872, + [1873] = 1744, + [1874] = 1774, [1875] = 1778, - [1876] = 1777, - [1877] = 1877, - [1878] = 1591, - [1879] = 1650, - [1880] = 1596, - [1881] = 1597, - [1882] = 1600, - [1883] = 1605, - [1884] = 1170, - [1885] = 206, - [1886] = 1740, - [1887] = 1744, - [1888] = 1741, - [1889] = 1877, - [1890] = 1745, - [1891] = 1746, - [1892] = 1892, - [1893] = 1893, - [1894] = 1894, - [1895] = 1747, - [1896] = 1748, - [1897] = 1749, - [1898] = 1779, - [1899] = 1751, - [1900] = 1752, - [1901] = 1753, - [1902] = 1902, - [1903] = 1754, - [1904] = 1755, - [1905] = 1905, - [1906] = 1756, - [1907] = 1528, - [1908] = 1757, - [1909] = 1593, - [1910] = 1619, - [1911] = 1574, - [1912] = 1544, - [1913] = 1758, - [1914] = 1759, - [1915] = 1554, - [1916] = 1556, - [1917] = 1877, - [1918] = 1536, - [1919] = 1743, - [1920] = 1670, - [1921] = 1867, - [1922] = 1777, - [1923] = 1722, - [1924] = 1778, - [1925] = 1581, - [1926] = 206, - [1927] = 1760, - [1928] = 1705, - [1929] = 1929, - [1930] = 1761, - [1931] = 1620, - [1932] = 1762, - [1933] = 1933, - [1934] = 1531, - [1935] = 1535, - [1936] = 1539, - [1937] = 1549, - [1938] = 714, - [1939] = 1637, - [1940] = 1940, - [1941] = 1643, - [1942] = 1645, - [1943] = 1943, - [1944] = 1944, - [1945] = 1945, - [1946] = 1763, - [1947] = 1877, - [1948] = 1648, - [1949] = 1531, - [1950] = 1539, - [1951] = 1588, - [1952] = 1647, - [1953] = 1877, - [1954] = 1531, - [1955] = 1539, - [1956] = 1707, - [1957] = 1710, - [1958] = 1670, - [1959] = 1764, - [1960] = 1776, - [1961] = 1528, - [1962] = 1962, - [1963] = 715, - [1964] = 1602, - [1965] = 1603, - [1966] = 1604, - [1967] = 1609, - [1968] = 1968, - [1969] = 1969, - [1970] = 1610, - [1971] = 1971, - [1972] = 1972, - [1973] = 1611, - [1974] = 1550, - [1975] = 1632, - [1976] = 1739, - [1977] = 1562, - [1978] = 1563, - [1979] = 1535, - [1980] = 1707, - [1981] = 1549, - [1982] = 1710, - [1983] = 1588, - [1984] = 1613, - [1985] = 1614, - [1986] = 1621, - [1987] = 1624, - [1988] = 1628, - [1989] = 1629, - [1990] = 1630, - [1991] = 1631, - [1992] = 1634, - [1993] = 1638, - [1994] = 1639, - [1995] = 1640, - [1996] = 1641, - [1997] = 1166, - [1998] = 1642, - [1999] = 1644, - [2000] = 1646, - [2001] = 1627, - [2002] = 2002, - [2003] = 1801, - [2004] = 1580, - [2005] = 2005, - [2006] = 1595, - [2007] = 1598, - [2008] = 1622, - [2009] = 712, - [2010] = 1540, - [2011] = 1599, - [2012] = 1623, - [2013] = 1625, - [2014] = 2014, - [2015] = 1636, - [2016] = 1530, - [2017] = 1532, - [2018] = 1533, - [2019] = 1633, - [2020] = 1531, - [2021] = 1537, - [2022] = 1538, - [2023] = 1542, - [2024] = 1543, - [2025] = 1539, - [2026] = 1546, - [2027] = 2027, - [2028] = 1962, - [2029] = 1547, - [2030] = 1647, - [2031] = 1626, - [2032] = 1551, - [2033] = 1553, - [2034] = 2002, - [2035] = 1801, - [2036] = 1557, - [2037] = 1171, - [2038] = 1559, - [2039] = 1560, - [2040] = 1561, - [2041] = 1765, - [2042] = 1592, - [2043] = 1649, - [2044] = 1552, - [2045] = 1558, - [2046] = 1867, - [2047] = 1635, - [2048] = 1529, - [2049] = 713, - [2050] = 1565, - [2051] = 1566, - [2052] = 1567, - [2053] = 1568, - [2054] = 1569, - [2055] = 1570, - [2056] = 1571, - [2057] = 1572, - [2058] = 1573, - [2059] = 1575, - [2060] = 1576, - [2061] = 1577, - [2062] = 1578, - [2063] = 1545, - [2064] = 1706, - [2065] = 2065, - [2066] = 2066, - [2067] = 1548, - [2068] = 2068, - [2069] = 711, + [1876] = 1779, + [1877] = 1801, + [1878] = 1878, + [1879] = 1780, + [1880] = 1789, + [1881] = 1542, + [1882] = 1745, + [1883] = 1751, + [1884] = 992, + [1885] = 1772, + [1886] = 1518, + [1887] = 1783, + [1888] = 1789, + [1889] = 1628, + [1890] = 1890, + [1891] = 1891, + [1892] = 204, + [1893] = 1783, + [1894] = 1732, + [1895] = 1733, + [1896] = 1578, + [1897] = 1897, + [1898] = 1567, + [1899] = 1570, + [1900] = 1571, + [1901] = 1901, + [1902] = 1575, + [1903] = 1576, + [1904] = 1577, + [1905] = 1580, + [1906] = 1582, + [1907] = 1735, + [1908] = 1772, + [1909] = 1909, + [1910] = 1774, + [1911] = 1775, + [1912] = 1827, + [1913] = 1559, + [1914] = 1914, + [1915] = 1776, + [1916] = 711, + [1917] = 1591, + [1918] = 1595, + [1919] = 1596, + [1920] = 1707, + [1921] = 1909, + [1922] = 1827, + [1923] = 1656, + [1924] = 1599, + [1925] = 1600, + [1926] = 1601, + [1927] = 1602, + [1928] = 1603, + [1929] = 1605, + [1930] = 1606, + [1931] = 1607, + [1932] = 1609, + [1933] = 1611, + [1934] = 1612, + [1935] = 1614, + [1936] = 1156, + [1937] = 1778, + [1938] = 1779, + [1939] = 1780, + [1940] = 1781, + [1941] = 1782, + [1942] = 1784, + [1943] = 1756, + [1944] = 1729, + [1945] = 1731, + [1946] = 1736, + [1947] = 1737, + [1948] = 1743, + [1949] = 1744, + [1950] = 1745, + [1951] = 1751, + [1952] = 1752, + [1953] = 1758, + [1954] = 1759, + [1955] = 1760, + [1956] = 1763, + [1957] = 1764, + [1958] = 714, + [1959] = 1621, + [1960] = 1622, + [1961] = 1623, + [1962] = 1624, + [1963] = 1625, + [1964] = 1626, + [1965] = 1584, + [1966] = 1544, + [1967] = 1585, + [1968] = 1546, + [1969] = 1665, + [1970] = 1572, + [1971] = 1629, + [1972] = 1633, + [1973] = 1634, + [1974] = 1638, + [1975] = 1639, + [1976] = 1642, + [1977] = 1153, + [1978] = 1647, + [1979] = 1648, + [1980] = 1649, + [1981] = 1669, + [1982] = 1845, + [1983] = 1589, + [1984] = 715, + [1985] = 1641, + [1986] = 1630, + [1987] = 1541, + [1988] = 1543, + [1989] = 1547, + [1990] = 1548, + [1991] = 1550, + [1992] = 1551, + [1993] = 1552, + [1994] = 1553, + [1995] = 1554, + [1996] = 1556, + [1997] = 1561, + [1998] = 1565, + [1999] = 1617, + [2000] = 1568, + [2001] = 1569, + [2002] = 1573, + [2003] = 1574, + [2004] = 1579, + [2005] = 1534, + [2006] = 1583, + [2007] = 1587, + [2008] = 1590, + [2009] = 1163, + [2010] = 1593, + [2011] = 1594, + [2012] = 1608, + [2013] = 1770, + [2014] = 713, + [2015] = 1613, + [2016] = 1615, + [2017] = 1620, + [2018] = 1618, + [2019] = 1627, + [2020] = 1631, + [2021] = 1632, + [2022] = 1635, + [2023] = 1636, + [2024] = 1637, + [2025] = 1640, + [2026] = 1643, + [2027] = 1645, + [2028] = 712, + [2029] = 1650, + [2030] = 1651, + [2031] = 1652, + [2032] = 1653, + [2033] = 1654, + [2034] = 1598, + [2035] = 1535, + [2036] = 1536, + [2037] = 1537, + [2038] = 1538, + [2039] = 1539, + [2040] = 1540, + [2041] = 204, + [2042] = 1914, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 2047, + [2048] = 1914, + [2049] = 1566, + [2050] = 2050, + [2051] = 1542, + [2052] = 1544, + [2053] = 1545, + [2054] = 1546, + [2055] = 1555, + [2056] = 2056, + [2057] = 1557, + [2058] = 1558, + [2059] = 2059, + [2060] = 2060, + [2061] = 2061, + [2062] = 1914, + [2063] = 1542, + [2064] = 1545, + [2065] = 1572, + [2066] = 1617, + [2067] = 1914, + [2068] = 1542, + [2069] = 1545, [2070] = 2070, - [2071] = 2071, - [2072] = 1583, - [2073] = 1584, - [2074] = 1651, - [2075] = 1877, - [2076] = 1585, - [2077] = 1586, - [2078] = 1587, - [2079] = 1589, - [2080] = 1739, - [2081] = 1740, - [2082] = 1741, - [2083] = 1743, - [2084] = 1744, - [2085] = 1745, - [2086] = 1746, - [2087] = 1747, - [2088] = 1748, - [2089] = 1749, - [2090] = 1779, - [2091] = 1751, - [2092] = 1752, - [2093] = 1753, - [2094] = 1754, - [2095] = 1755, - [2096] = 1756, - [2097] = 1757, - [2098] = 1758, - [2099] = 1759, - [2100] = 1760, - [2101] = 1761, - [2102] = 1762, - [2103] = 1763, - [2104] = 1764, - [2105] = 1765, - [2106] = 1776, - [2107] = 1722, - [2108] = 1778, - [2109] = 1777, - [2110] = 1594, - [2111] = 2111, - [2112] = 1531, - [2113] = 1539, - [2114] = 2114, - [2115] = 1531, - [2116] = 1539, - [2117] = 2117, - [2118] = 2118, - [2119] = 2117, - [2120] = 2118, - [2121] = 2121, - [2122] = 2117, - [2123] = 2118, + [2071] = 1707, + [2072] = 1665, + [2073] = 1669, + [2074] = 1620, + [2075] = 1542, + [2076] = 2050, + [2077] = 1545, + [2078] = 2078, + [2079] = 1670, + [2080] = 1695, + [2081] = 1914, + [2082] = 2082, + [2083] = 2083, + [2084] = 1845, + [2085] = 2085, + [2086] = 2086, + [2087] = 2087, + [2088] = 2088, + [2089] = 2089, + [2090] = 1687, + [2091] = 2091, + [2092] = 1772, + [2093] = 1774, + [2094] = 1775, + [2095] = 1776, + [2096] = 1778, + [2097] = 1779, + [2098] = 1780, + [2099] = 1781, + [2100] = 1782, + [2101] = 1784, + [2102] = 1756, + [2103] = 1729, + [2104] = 1731, + [2105] = 1736, + [2106] = 1737, + [2107] = 1743, + [2108] = 1744, + [2109] = 1745, + [2110] = 1751, + [2111] = 1752, + [2112] = 1758, + [2113] = 1759, + [2114] = 1760, + [2115] = 1763, + [2116] = 1764, + [2117] = 1770, + [2118] = 1783, + [2119] = 1732, + [2120] = 1733, + [2121] = 1735, + [2122] = 1616, + [2123] = 2123, [2124] = 2124, - [2125] = 2125, + [2125] = 1719, [2126] = 2126, - [2127] = 2127, - [2128] = 2128, + [2127] = 1659, + [2128] = 241, [2129] = 2129, - [2130] = 1655, - [2131] = 1739, - [2132] = 1740, - [2133] = 1741, - [2134] = 1677, - [2135] = 2135, - [2136] = 1743, - [2137] = 2137, + [2130] = 1675, + [2131] = 1827, + [2132] = 233, + [2133] = 1669, + [2134] = 2134, + [2135] = 227, + [2136] = 237, + [2137] = 229, [2138] = 2138, - [2139] = 1744, - [2140] = 1745, - [2141] = 1746, - [2142] = 2142, - [2143] = 1747, - [2144] = 2144, - [2145] = 1748, - [2146] = 1749, - [2147] = 1779, - [2148] = 1751, - [2149] = 1752, - [2150] = 1753, - [2151] = 1754, - [2152] = 1755, - [2153] = 1756, - [2154] = 1757, - [2155] = 1758, - [2156] = 1759, + [2139] = 1678, + [2140] = 233, + [2141] = 211, + [2142] = 212, + [2143] = 214, + [2144] = 225, + [2145] = 226, + [2146] = 210, + [2147] = 235, + [2148] = 1679, + [2149] = 2149, + [2150] = 2124, + [2151] = 1672, + [2152] = 2126, + [2153] = 1872, + [2154] = 2046, + [2155] = 1707, + [2156] = 1684, [2157] = 2157, - [2158] = 1760, - [2159] = 1761, - [2160] = 1762, - [2161] = 1763, - [2162] = 1764, - [2163] = 220, - [2164] = 224, - [2165] = 222, - [2166] = 2166, - [2167] = 1765, - [2168] = 223, - [2169] = 2169, - [2170] = 225, - [2171] = 2171, + [2158] = 1673, + [2159] = 1845, + [2160] = 1690, + [2161] = 2161, + [2162] = 2162, + [2163] = 211, + [2164] = 212, + [2165] = 214, + [2166] = 1665, + [2167] = 2167, + [2168] = 2168, + [2169] = 1681, + [2170] = 2170, + [2171] = 1720, [2172] = 2172, - [2173] = 230, + [2173] = 2173, [2174] = 2174, - [2175] = 1801, - [2176] = 1670, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 224, - [2181] = 225, - [2182] = 226, - [2183] = 2183, - [2184] = 209, - [2185] = 220, - [2186] = 222, - [2187] = 223, - [2188] = 2188, - [2189] = 1667, - [2190] = 227, - [2191] = 228, - [2192] = 232, - [2193] = 1661, - [2194] = 233, - [2195] = 1668, - [2196] = 2196, - [2197] = 1679, - [2198] = 1680, - [2199] = 226, - [2200] = 1681, - [2201] = 1682, - [2202] = 2202, - [2203] = 2203, - [2204] = 1683, - [2205] = 2205, - [2206] = 1684, - [2207] = 1685, - [2208] = 2142, - [2209] = 1827, - [2210] = 1686, - [2211] = 1656, - [2212] = 2142, - [2213] = 1707, - [2214] = 2169, - [2215] = 2215, - [2216] = 2216, - [2217] = 2169, - [2218] = 2172, - [2219] = 2142, - [2220] = 1669, - [2221] = 1827, - [2222] = 1687, - [2223] = 2172, - [2224] = 1794, - [2225] = 2144, - [2226] = 1707, - [2227] = 2227, - [2228] = 1657, - [2229] = 1535, - [2230] = 1663, - [2231] = 2142, - [2232] = 1549, - [2233] = 1710, - [2234] = 1664, + [2175] = 2175, + [2176] = 1683, + [2177] = 1685, + [2178] = 1727, + [2179] = 1688, + [2180] = 2180, + [2181] = 1689, + [2182] = 2124, + [2183] = 2126, + [2184] = 1707, + [2185] = 1691, + [2186] = 1692, + [2187] = 1693, + [2188] = 1663, + [2189] = 1665, + [2190] = 1845, + [2191] = 1664, + [2192] = 2192, + [2193] = 2193, + [2194] = 2124, + [2195] = 2124, + [2196] = 2126, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 2126, + [2201] = 1572, + [2202] = 1617, + [2203] = 2197, + [2204] = 2198, + [2205] = 1542, + [2206] = 1545, + [2207] = 2207, + [2208] = 1542, + [2209] = 1545, + [2210] = 2197, + [2211] = 2198, + [2212] = 2197, + [2213] = 2198, + [2214] = 2197, + [2215] = 2198, + [2216] = 227, + [2217] = 1696, + [2218] = 1544, + [2219] = 237, + [2220] = 2123, + [2221] = 1546, + [2222] = 1665, + [2223] = 2223, + [2224] = 2224, + [2225] = 1772, + [2226] = 1774, + [2227] = 1775, + [2228] = 2199, + [2229] = 1776, + [2230] = 1778, + [2231] = 1779, + [2232] = 1780, + [2233] = 2223, + [2234] = 1781, [2235] = 2235, - [2236] = 2236, - [2237] = 2142, - [2238] = 2142, - [2239] = 1776, - [2240] = 1722, - [2241] = 1778, - [2242] = 1777, - [2243] = 2243, - [2244] = 2244, - [2245] = 1660, - [2246] = 227, - [2247] = 228, - [2248] = 2248, - [2249] = 2249, - [2250] = 2166, - [2251] = 1688, - [2252] = 2252, - [2253] = 2253, - [2254] = 230, - [2255] = 1671, - [2256] = 1867, - [2257] = 2257, - [2258] = 1689, - [2259] = 232, - [2260] = 1690, + [2236] = 1782, + [2237] = 1784, + [2238] = 1756, + [2239] = 1729, + [2240] = 1731, + [2241] = 1736, + [2242] = 1737, + [2243] = 1743, + [2244] = 1744, + [2245] = 1745, + [2246] = 1751, + [2247] = 1752, + [2248] = 1758, + [2249] = 1759, + [2250] = 1760, + [2251] = 1763, + [2252] = 1764, + [2253] = 1846, + [2254] = 2254, + [2255] = 2255, + [2256] = 2254, + [2257] = 1710, + [2258] = 2258, + [2259] = 1657, + [2260] = 1714, [2261] = 2261, - [2262] = 1672, - [2263] = 2138, - [2264] = 2236, - [2265] = 1703, - [2266] = 1653, - [2267] = 1528, + [2262] = 1721, + [2263] = 1723, + [2264] = 1724, + [2265] = 2223, + [2266] = 1725, + [2267] = 2267, [2268] = 2268, - [2269] = 2269, + [2269] = 2223, [2270] = 2270, - [2271] = 1710, + [2271] = 2271, [2272] = 2272, - [2273] = 2273, + [2273] = 1706, [2274] = 2274, - [2275] = 2174, - [2276] = 2177, - [2277] = 1673, - [2278] = 1867, - [2279] = 1704, - [2280] = 1658, - [2281] = 1691, - [2282] = 1692, - [2283] = 1693, - [2284] = 1694, - [2285] = 2285, - [2286] = 1674, - [2287] = 2287, - [2288] = 2288, + [2275] = 2275, + [2276] = 2223, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, + [2280] = 1701, + [2281] = 2223, + [2282] = 2282, + [2283] = 2283, + [2284] = 2223, + [2285] = 1722, + [2286] = 2124, + [2287] = 229, + [2288] = 1783, [2289] = 2289, - [2290] = 2269, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, + [2290] = 1732, + [2291] = 1733, + [2292] = 1735, + [2293] = 241, + [2294] = 2126, [2295] = 2295, - [2296] = 2296, - [2297] = 2270, + [2296] = 1658, + [2297] = 2297, [2298] = 2298, - [2299] = 1867, - [2300] = 2300, - [2301] = 2126, + [2299] = 2172, + [2300] = 2272, + [2301] = 2282, [2302] = 2302, [2303] = 2303, - [2304] = 1695, + [2304] = 2304, [2305] = 2305, [2306] = 2306, - [2307] = 2307, - [2308] = 2308, - [2309] = 233, - [2310] = 1675, - [2311] = 2227, - [2312] = 2312, - [2313] = 2313, - [2314] = 2314, - [2315] = 2315, - [2316] = 1787, - [2317] = 1659, - [2318] = 1665, - [2319] = 1697, - [2320] = 1676, - [2321] = 2169, - [2322] = 2172, - [2323] = 1698, - [2324] = 1699, - [2325] = 1700, - [2326] = 1701, - [2327] = 1702, + [2307] = 1686, + [2308] = 225, + [2309] = 2309, + [2310] = 2310, + [2311] = 226, + [2312] = 1712, + [2313] = 1708, + [2314] = 1620, + [2315] = 1716, + [2316] = 1709, + [2317] = 1702, + [2318] = 1660, + [2319] = 1671, + [2320] = 2320, + [2321] = 2321, + [2322] = 2302, + [2323] = 2323, + [2324] = 2303, + [2325] = 1845, + [2326] = 2326, + [2327] = 2304, [2328] = 2328, - [2329] = 2272, - [2330] = 2273, + [2329] = 2329, + [2330] = 2330, [2331] = 2331, - [2332] = 2169, - [2333] = 1666, - [2334] = 2172, - [2335] = 2274, - [2336] = 2124, - [2337] = 2292, - [2338] = 1707, - [2339] = 1710, + [2332] = 2332, + [2333] = 2333, + [2334] = 2334, + [2335] = 210, + [2336] = 2336, + [2337] = 2337, + [2338] = 1700, + [2339] = 1705, [2340] = 2340, [2341] = 2341, - [2342] = 1654, + [2342] = 2342, [2343] = 2343, - [2344] = 2169, - [2345] = 209, - [2346] = 2172, - [2347] = 2117, - [2348] = 2118, - [2349] = 2314, - [2350] = 1588, - [2351] = 1647, + [2344] = 2344, + [2345] = 1676, + [2346] = 2305, + [2347] = 2157, + [2348] = 2274, + [2349] = 2306, + [2350] = 2350, + [2351] = 2351, [2352] = 2352, - [2353] = 1894, - [2354] = 2117, - [2355] = 2118, - [2356] = 1528, + [2353] = 1715, + [2354] = 1872, + [2355] = 2355, + [2356] = 1667, [2357] = 2357, - [2358] = 1652, - [2359] = 2312, - [2360] = 1755, - [2361] = 1756, - [2362] = 1757, - [2363] = 1758, - [2364] = 1759, - [2365] = 1760, - [2366] = 1761, - [2367] = 1762, - [2368] = 1763, - [2369] = 1764, - [2370] = 2370, - [2371] = 2371, - [2372] = 1588, - [2373] = 1765, + [2358] = 1878, + [2359] = 2359, + [2360] = 2360, + [2361] = 235, + [2362] = 1674, + [2363] = 2235, + [2364] = 2224, + [2365] = 2323, + [2366] = 1703, + [2367] = 1726, + [2368] = 1620, + [2369] = 1707, + [2370] = 1770, + [2371] = 1735, + [2372] = 2372, + [2373] = 2373, [2374] = 2374, [2375] = 2375, - [2376] = 1588, + [2376] = 2376, [2377] = 2377, - [2378] = 2374, - [2379] = 2379, - [2380] = 2380, - [2381] = 1647, - [2382] = 1647, - [2383] = 2383, - [2384] = 2384, - [2385] = 1827, - [2386] = 1894, - [2387] = 1739, - [2388] = 1740, - [2389] = 1741, - [2390] = 1743, - [2391] = 1744, - [2392] = 1745, - [2393] = 1746, - [2394] = 1747, - [2395] = 1748, - [2396] = 1749, - [2397] = 2397, - [2398] = 2398, - [2399] = 1779, - [2400] = 1751, - [2401] = 2401, - [2402] = 1752, - [2403] = 1753, - [2404] = 1776, - [2405] = 1722, - [2406] = 1778, - [2407] = 1777, - [2408] = 1754, - [2409] = 1755, - [2410] = 1756, - [2411] = 2411, - [2412] = 1757, - [2413] = 1758, - [2414] = 1776, - [2415] = 1722, - [2416] = 1778, - [2417] = 1777, - [2418] = 1759, - [2419] = 1760, - [2420] = 1761, - [2421] = 1762, - [2422] = 1813, - [2423] = 1763, - [2424] = 1764, - [2425] = 2425, - [2426] = 1765, - [2427] = 1894, - [2428] = 2383, - [2429] = 2429, - [2430] = 1531, + [2378] = 1772, + [2379] = 1774, + [2380] = 1775, + [2381] = 1776, + [2382] = 1778, + [2383] = 1779, + [2384] = 1780, + [2385] = 1781, + [2386] = 1782, + [2387] = 1784, + [2388] = 1756, + [2389] = 1729, + [2390] = 1731, + [2391] = 1736, + [2392] = 1737, + [2393] = 1743, + [2394] = 1744, + [2395] = 1745, + [2396] = 1751, + [2397] = 1752, + [2398] = 1758, + [2399] = 1759, + [2400] = 1760, + [2401] = 1763, + [2402] = 1764, + [2403] = 1770, + [2404] = 2046, + [2405] = 1772, + [2406] = 1774, + [2407] = 1775, + [2408] = 1776, + [2409] = 1778, + [2410] = 1779, + [2411] = 1780, + [2412] = 1781, + [2413] = 1782, + [2414] = 1784, + [2415] = 1756, + [2416] = 1729, + [2417] = 1731, + [2418] = 1736, + [2419] = 1737, + [2420] = 1743, + [2421] = 1744, + [2422] = 1745, + [2423] = 1751, + [2424] = 1752, + [2425] = 1758, + [2426] = 1759, + [2427] = 1760, + [2428] = 1763, + [2429] = 1764, + [2430] = 1770, [2431] = 2431, - [2432] = 1705, - [2433] = 2433, + [2432] = 1542, + [2433] = 1545, [2434] = 2434, [2435] = 2435, - [2436] = 1706, + [2436] = 2436, [2437] = 2437, - [2438] = 2374, - [2439] = 2439, - [2440] = 2440, - [2441] = 2377, - [2442] = 1539, + [2438] = 213, + [2439] = 1687, + [2440] = 2261, + [2441] = 1669, + [2442] = 2442, [2443] = 2443, [2444] = 2444, - [2445] = 2374, - [2446] = 1753, - [2447] = 1754, - [2448] = 1651, - [2449] = 1787, - [2450] = 2439, - [2451] = 2451, - [2452] = 2440, - [2453] = 214, - [2454] = 2435, + [2445] = 2445, + [2446] = 1617, + [2447] = 1670, + [2448] = 1695, + [2449] = 1878, + [2450] = 2450, + [2451] = 2436, + [2452] = 2443, + [2453] = 2453, + [2454] = 1845, [2455] = 2455, - [2456] = 1867, - [2457] = 2374, - [2458] = 1739, - [2459] = 2444, - [2460] = 1867, - [2461] = 2461, - [2462] = 1535, - [2463] = 2463, - [2464] = 1549, - [2465] = 1740, - [2466] = 2466, - [2467] = 1794, - [2468] = 1741, - [2469] = 1743, - [2470] = 1670, - [2471] = 1744, - [2472] = 1528, - [2473] = 2374, - [2474] = 1745, + [2456] = 2456, + [2457] = 2457, + [2458] = 1544, + [2459] = 1845, + [2460] = 2460, + [2461] = 1546, + [2462] = 2462, + [2463] = 2443, + [2464] = 1572, + [2465] = 1783, + [2466] = 1732, + [2467] = 1733, + [2468] = 1735, + [2469] = 2469, + [2470] = 1783, + [2471] = 1732, + [2472] = 1733, + [2473] = 1735, + [2474] = 1572, [2475] = 2443, - [2476] = 1707, - [2477] = 1670, - [2478] = 2478, - [2479] = 1746, - [2480] = 1710, - [2481] = 1747, - [2482] = 1748, - [2483] = 1749, - [2484] = 1739, - [2485] = 1740, - [2486] = 1741, - [2487] = 1743, - [2488] = 1744, - [2489] = 1745, - [2490] = 1746, - [2491] = 1747, - [2492] = 1748, - [2493] = 1749, - [2494] = 1779, - [2495] = 1751, - [2496] = 1752, - [2497] = 1753, - [2498] = 1754, - [2499] = 1755, - [2500] = 1756, - [2501] = 1757, - [2502] = 1758, - [2503] = 1759, - [2504] = 1760, - [2505] = 1761, - [2506] = 1762, - [2507] = 1763, - [2508] = 1764, - [2509] = 1765, - [2510] = 2510, - [2511] = 1706, - [2512] = 1779, - [2513] = 214, - [2514] = 1776, - [2515] = 1722, - [2516] = 1778, - [2517] = 1777, - [2518] = 1751, - [2519] = 1752, - [2520] = 2520, - [2521] = 1867, - [2522] = 1528, - [2523] = 1867, - [2524] = 2524, - [2525] = 991, - [2526] = 2526, - [2527] = 1739, - [2528] = 1740, - [2529] = 1743, - [2530] = 1744, - [2531] = 1745, - [2532] = 1746, - [2533] = 1747, - [2534] = 1748, - [2535] = 1749, - [2536] = 1779, - [2537] = 1751, - [2538] = 1752, - [2539] = 1753, - [2540] = 1754, - [2541] = 1755, - [2542] = 1756, - [2543] = 1757, - [2544] = 1758, - [2545] = 1759, - [2546] = 1760, - [2547] = 1761, - [2548] = 1762, - [2549] = 1763, - [2550] = 1764, - [2551] = 1765, - [2552] = 1894, + [2476] = 2443, + [2477] = 2477, + [2478] = 1707, + [2479] = 2479, + [2480] = 1669, + [2481] = 2477, + [2482] = 1846, + [2483] = 2442, + [2484] = 1665, + [2485] = 1845, + [2486] = 2046, + [2487] = 2437, + [2488] = 2488, + [2489] = 2453, + [2490] = 2469, + [2491] = 2491, + [2492] = 1834, + [2493] = 1617, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2443, + [2498] = 1670, + [2499] = 2491, + [2500] = 2500, + [2501] = 1620, + [2502] = 2502, + [2503] = 1772, + [2504] = 1774, + [2505] = 1775, + [2506] = 1776, + [2507] = 1778, + [2508] = 1779, + [2509] = 1780, + [2510] = 1781, + [2511] = 1782, + [2512] = 1784, + [2513] = 1756, + [2514] = 1729, + [2515] = 1731, + [2516] = 1736, + [2517] = 1737, + [2518] = 1743, + [2519] = 1744, + [2520] = 1745, + [2521] = 1751, + [2522] = 1752, + [2523] = 1758, + [2524] = 1759, + [2525] = 1760, + [2526] = 1763, + [2527] = 1764, + [2528] = 1770, + [2529] = 213, + [2530] = 2530, + [2531] = 1783, + [2532] = 1732, + [2533] = 1733, + [2534] = 1845, + [2535] = 1620, + [2536] = 1872, + [2537] = 2537, + [2538] = 2538, + [2539] = 1687, + [2540] = 1707, + [2541] = 1670, + [2542] = 1781, + [2543] = 1695, + [2544] = 2544, + [2545] = 1752, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2549, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, [2553] = 2553, - [2554] = 2554, - [2555] = 2555, - [2556] = 2556, - [2557] = 1670, - [2558] = 1705, - [2559] = 1706, - [2560] = 1651, - [2561] = 988, - [2562] = 1787, - [2563] = 992, - [2564] = 1670, - [2565] = 1588, - [2566] = 1647, - [2567] = 1707, - [2568] = 1710, - [2569] = 2569, + [2554] = 2544, + [2555] = 1758, + [2556] = 1759, + [2557] = 2544, + [2558] = 1760, + [2559] = 2544, + [2560] = 2560, + [2561] = 2561, + [2562] = 2562, + [2563] = 2563, + [2564] = 991, + [2565] = 1620, + [2566] = 1763, + [2567] = 2567, + [2568] = 1845, + [2569] = 2544, [2570] = 2570, - [2571] = 1867, - [2572] = 2572, + [2571] = 1764, + [2572] = 1770, [2573] = 2573, - [2574] = 2574, + [2574] = 1784, [2575] = 2575, - [2576] = 2576, - [2577] = 1776, - [2578] = 1722, - [2579] = 1778, - [2580] = 1777, - [2581] = 2581, - [2582] = 2582, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2572, - [2588] = 2572, - [2589] = 2572, - [2590] = 2572, - [2591] = 2553, - [2592] = 2572, - [2593] = 2593, - [2594] = 2594, - [2595] = 2572, - [2596] = 2596, - [2597] = 2597, - [2598] = 2598, - [2599] = 1528, - [2600] = 2600, - [2601] = 2572, - [2602] = 2602, - [2603] = 2603, - [2604] = 2572, + [2576] = 2544, + [2577] = 1756, + [2578] = 1729, + [2579] = 1782, + [2580] = 2580, + [2581] = 993, + [2582] = 1731, + [2583] = 1669, + [2584] = 1736, + [2585] = 1772, + [2586] = 1774, + [2587] = 1775, + [2588] = 1737, + [2589] = 2046, + [2590] = 1743, + [2591] = 2591, + [2592] = 2544, + [2593] = 1669, + [2594] = 2544, + [2595] = 1744, + [2596] = 1745, + [2597] = 1751, + [2598] = 1572, + [2599] = 1783, + [2600] = 1732, + [2601] = 1733, + [2602] = 1735, + [2603] = 1617, + [2604] = 2604, [2605] = 2605, - [2606] = 2572, - [2607] = 2607, - [2608] = 1741, - [2609] = 2118, + [2606] = 2606, + [2607] = 1846, + [2608] = 2537, + [2609] = 1665, [2610] = 2610, [2611] = 2611, - [2612] = 2612, - [2613] = 2117, - [2614] = 2118, - [2615] = 2117, - [2616] = 2118, - [2617] = 2117, - [2618] = 2118, + [2612] = 1776, + [2613] = 1778, + [2614] = 2614, + [2615] = 2544, + [2616] = 1779, + [2617] = 2544, + [2618] = 1780, [2619] = 2619, - [2620] = 2117, + [2620] = 992, [2621] = 2621, - [2622] = 2433, + [2622] = 2622, [2623] = 2623, [2624] = 2624, [2625] = 2625, - [2626] = 2117, - [2627] = 2117, - [2628] = 2118, - [2629] = 2118, - [2630] = 2630, + [2626] = 2197, + [2627] = 2625, + [2628] = 2628, + [2629] = 2629, + [2630] = 2198, [2631] = 2631, [2632] = 2632, - [2633] = 2633, + [2633] = 2198, [2634] = 2634, - [2635] = 2635, - [2636] = 2636, - [2637] = 2637, - [2638] = 1827, - [2639] = 2639, - [2640] = 2640, + [2635] = 2462, + [2636] = 2198, + [2637] = 2197, + [2638] = 2638, + [2639] = 2197, + [2640] = 2198, [2641] = 2641, - [2642] = 1528, - [2643] = 1528, - [2644] = 2611, + [2642] = 2642, + [2643] = 2643, + [2644] = 2644, [2645] = 2645, - [2646] = 1528, + [2646] = 2646, [2647] = 2647, - [2648] = 236, - [2649] = 2649, - [2650] = 2650, - [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, + [2648] = 2648, + [2649] = 2197, + [2650] = 2198, + [2651] = 1872, + [2652] = 2197, + [2653] = 2198, + [2654] = 2197, + [2655] = 1620, + [2656] = 1620, + [2657] = 1620, [2658] = 2658, [2659] = 2659, [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, + [2661] = 217, + [2662] = 216, + [2663] = 222, [2664] = 2664, [2665] = 2665, [2666] = 2666, - [2667] = 2652, + [2667] = 2667, [2668] = 2668, [2669] = 2669, [2670] = 2670, @@ -7147,160 +7147,160 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2672] = 2672, [2673] = 2673, [2674] = 2674, - [2675] = 2652, - [2676] = 2652, - [2677] = 2652, - [2678] = 235, + [2675] = 2675, + [2676] = 2676, + [2677] = 2677, + [2678] = 2678, [2679] = 2679, [2680] = 2680, - [2681] = 212, - [2682] = 2652, - [2683] = 2683, - [2684] = 210, + [2681] = 2681, + [2682] = 2682, + [2683] = 1559, + [2684] = 219, [2685] = 2685, - [2686] = 2652, + [2686] = 2686, [2687] = 2687, [2688] = 2688, - [2689] = 2652, + [2689] = 2689, [2690] = 2690, [2691] = 2691, [2692] = 2692, [2693] = 2693, - [2694] = 1648, + [2694] = 2694, [2695] = 2695, [2696] = 2696, - [2697] = 212, - [2698] = 236, - [2699] = 2699, + [2697] = 2697, + [2698] = 219, + [2699] = 2669, [2700] = 2700, [2701] = 2701, [2702] = 2702, [2703] = 2703, [2704] = 2704, [2705] = 2705, - [2706] = 2652, - [2707] = 2707, + [2706] = 2706, + [2707] = 2669, [2708] = 2708, - [2709] = 2652, - [2710] = 2710, - [2711] = 1246, - [2712] = 2712, - [2713] = 2554, - [2714] = 2555, - [2715] = 235, + [2709] = 2669, + [2710] = 2669, + [2711] = 2711, + [2712] = 2669, + [2713] = 2669, + [2714] = 2714, + [2715] = 2669, [2716] = 2716, [2717] = 2717, - [2718] = 2718, - [2719] = 1633, + [2718] = 2669, + [2719] = 2719, [2720] = 2720, [2721] = 2721, - [2722] = 2722, - [2723] = 210, - [2724] = 2724, + [2722] = 216, + [2723] = 2669, + [2724] = 1236, [2725] = 2725, - [2726] = 2726, - [2727] = 2727, - [2728] = 2728, - [2729] = 1272, - [2730] = 2196, + [2726] = 1566, + [2727] = 2606, + [2728] = 2619, + [2729] = 2729, + [2730] = 2730, [2731] = 2731, [2732] = 2732, - [2733] = 2340, - [2734] = 2114, + [2733] = 222, + [2734] = 2734, [2735] = 2735, - [2736] = 2736, - [2737] = 2252, - [2738] = 2738, - [2739] = 2380, - [2740] = 2461, - [2741] = 2524, - [2742] = 2443, - [2743] = 2443, - [2744] = 2463, - [2745] = 2375, - [2746] = 2444, - [2747] = 2383, - [2748] = 2461, - [2749] = 2434, + [2736] = 217, + [2737] = 2737, + [2738] = 2321, + [2739] = 2207, + [2740] = 2740, + [2741] = 2741, + [2742] = 2742, + [2743] = 2743, + [2744] = 2175, + [2745] = 2745, + [2746] = 1265, + [2747] = 2747, + [2748] = 2138, + [2749] = 2749, [2750] = 2750, - [2751] = 2444, - [2752] = 2752, - [2753] = 2524, - [2754] = 2520, - [2755] = 2520, - [2756] = 2455, + [2751] = 2456, + [2752] = 2376, + [2753] = 2488, + [2754] = 2450, + [2755] = 2491, + [2756] = 2756, [2757] = 2757, [2758] = 2758, - [2759] = 2455, - [2760] = 2757, - [2761] = 1269, - [2762] = 2510, - [2763] = 2750, - [2764] = 2440, - [2765] = 2440, - [2766] = 2766, - [2767] = 2767, - [2768] = 2383, - [2769] = 2769, - [2770] = 2770, - [2771] = 2771, - [2772] = 2769, - [2773] = 2773, - [2774] = 2774, + [2759] = 2375, + [2760] = 2437, + [2761] = 2500, + [2762] = 2453, + [2763] = 2453, + [2764] = 2450, + [2765] = 2765, + [2766] = 2491, + [2767] = 2375, + [2768] = 2456, + [2769] = 2460, + [2770] = 2757, + [2771] = 2455, + [2772] = 2460, + [2773] = 2469, + [2774] = 2756, [2775] = 2775, [2776] = 2776, - [2777] = 2775, - [2778] = 2776, - [2779] = 2779, - [2780] = 2780, + [2777] = 1249, + [2778] = 2445, + [2779] = 2437, + [2780] = 2469, [2781] = 2781, - [2782] = 2779, - [2783] = 2780, + [2782] = 2782, + [2783] = 2783, [2784] = 2784, - [2785] = 2784, - [2786] = 2786, - [2787] = 2770, - [2788] = 2770, + [2785] = 2782, + [2786] = 2783, + [2787] = 2787, + [2788] = 2788, [2789] = 2789, - [2790] = 1287, + [2790] = 2787, [2791] = 2791, [2792] = 2792, [2793] = 2793, [2794] = 2794, [2795] = 2795, - [2796] = 2796, - [2797] = 2797, - [2798] = 2798, - [2799] = 2799, - [2800] = 2800, + [2796] = 2792, + [2797] = 2789, + [2798] = 2793, + [2799] = 2791, + [2800] = 2793, [2801] = 2801, - [2802] = 1344, + [2802] = 2802, [2803] = 2803, - [2804] = 1332, + [2804] = 2804, [2805] = 2805, - [2806] = 1317, + [2806] = 2806, [2807] = 2807, [2808] = 2808, [2809] = 2809, - [2810] = 1288, + [2810] = 1285, [2811] = 2811, - [2812] = 2451, + [2812] = 2812, [2813] = 2813, [2814] = 2814, - [2815] = 2815, + [2815] = 1321, [2816] = 2816, - [2817] = 2817, - [2818] = 2818, + [2817] = 1295, + [2818] = 1313, [2819] = 2819, [2820] = 2820, [2821] = 2821, - [2822] = 2822, - [2823] = 2823, + [2822] = 2457, + [2823] = 1309, [2824] = 2824, [2825] = 2825, [2826] = 2826, [2827] = 2827, - [2828] = 2825, + [2828] = 2828, [2829] = 2829, [2830] = 2830, [2831] = 2831, @@ -7308,873 +7308,873 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2833] = 2833, [2834] = 2834, [2835] = 2835, - [2836] = 2831, - [2837] = 2817, + [2836] = 2836, + [2837] = 2837, [2838] = 2838, [2839] = 2839, - [2840] = 2839, + [2840] = 2840, [2841] = 2841, - [2842] = 2838, + [2842] = 2842, [2843] = 2843, - [2844] = 2827, + [2844] = 2829, [2845] = 2845, - [2846] = 2841, - [2847] = 2847, + [2846] = 2846, + [2847] = 2834, [2848] = 2848, [2849] = 2849, - [2850] = 2850, + [2850] = 2841, [2851] = 2851, [2852] = 2852, [2853] = 2853, - [2854] = 2854, - [2855] = 2845, + [2854] = 2848, + [2855] = 2855, [2856] = 2856, [2857] = 2857, [2858] = 2858, [2859] = 2859, - [2860] = 2835, - [2861] = 2832, + [2860] = 2860, + [2861] = 2861, [2862] = 2862, [2863] = 2863, [2864] = 2864, [2865] = 2865, [2866] = 2866, - [2867] = 2834, + [2867] = 2846, [2868] = 2868, - [2869] = 2822, + [2869] = 2869, [2870] = 2870, [2871] = 2871, [2872] = 2872, [2873] = 2873, [2874] = 2874, - [2875] = 2875, - [2876] = 1509, - [2877] = 1506, - [2878] = 1504, - [2879] = 1623, - [2880] = 1587, - [2881] = 1591, - [2882] = 1597, - [2883] = 1572, - [2884] = 1570, - [2885] = 1573, - [2886] = 1575, - [2887] = 1571, - [2888] = 1583, - [2889] = 1540, - [2890] = 1599, - [2891] = 1585, - [2892] = 1625, - [2893] = 1584, - [2894] = 1596, - [2895] = 1530, - [2896] = 1532, - [2897] = 1533, - [2898] = 1589, - [2899] = 1537, - [2900] = 1538, - [2901] = 1542, - [2902] = 1565, - [2903] = 1566, - [2904] = 1567, - [2905] = 1543, - [2906] = 1568, - [2907] = 1546, - [2908] = 1547, - [2909] = 1569, - [2910] = 1650, - [2911] = 1586, - [2912] = 1636, - [2913] = 213, - [2914] = 219, - [2915] = 1639, - [2916] = 1550, - [2917] = 1602, - [2918] = 1604, - [2919] = 1641, - [2920] = 1610, - [2921] = 2921, - [2922] = 1562, - [2923] = 1512, - [2924] = 1624, - [2925] = 1504, - [2926] = 1628, - [2927] = 1629, - [2928] = 1638, - [2929] = 1630, - [2930] = 1640, - [2931] = 1509, - [2932] = 1505, - [2933] = 1506, - [2934] = 1548, - [2935] = 1522, - [2936] = 1529, - [2937] = 1514, - [2938] = 1574, - [2939] = 1527, - [2940] = 1516, - [2941] = 1589, - [2942] = 2942, - [2943] = 1568, - [2944] = 2944, - [2945] = 2945, - [2946] = 1569, - [2947] = 1553, - [2948] = 2948, - [2949] = 1649, - [2950] = 1636, - [2951] = 1506, - [2952] = 1530, - [2953] = 1532, - [2954] = 1533, - [2955] = 1577, - [2956] = 1583, - [2957] = 1551, - [2958] = 1584, - [2959] = 1585, - [2960] = 1599, - [2961] = 1586, - [2962] = 1600, - [2963] = 1587, - [2964] = 1626, - [2965] = 1591, - [2966] = 1650, - [2967] = 1596, - [2968] = 2942, - [2969] = 1597, - [2970] = 1620, - [2971] = 1558, - [2972] = 1578, - [2973] = 1611, - [2974] = 2948, - [2975] = 1609, - [2976] = 1646, - [2977] = 2942, - [2978] = 1637, - [2979] = 2979, - [2980] = 2979, - [2981] = 1554, - [2982] = 2944, - [2983] = 1570, - [2984] = 2944, - [2985] = 2945, - [2986] = 2979, - [2987] = 1540, - [2988] = 1598, - [2989] = 1571, - [2990] = 1572, - [2991] = 1580, - [2992] = 1576, - [2993] = 1567, - [2994] = 1632, - [2995] = 1565, - [2996] = 2948, - [2997] = 1573, - [2998] = 1559, - [2999] = 1613, - [3000] = 2942, - [3001] = 1614, - [3002] = 2944, - [3003] = 2979, - [3004] = 2979, - [3005] = 1623, - [3006] = 2945, - [3007] = 1544, - [3008] = 2945, - [3009] = 2979, - [3010] = 1563, - [3011] = 1621, - [3012] = 1625, - [3013] = 2979, - [3014] = 1537, - [3015] = 1603, - [3016] = 1505, - [3017] = 1538, - [3018] = 1560, - [3019] = 1594, - [3020] = 2979, - [3021] = 1642, - [3022] = 1575, - [3023] = 1631, - [3024] = 1635, - [3025] = 2979, - [3026] = 1504, - [3027] = 1542, - [3028] = 1543, - [3029] = 2979, - [3030] = 1545, - [3031] = 1546, - [3032] = 2948, - [3033] = 1547, - [3034] = 2948, - [3035] = 2942, - [3036] = 2944, - [3037] = 1509, - [3038] = 1566, - [3039] = 1556, - [3040] = 2945, - [3041] = 1536, - [3042] = 1622, - [3043] = 3043, - [3044] = 3044, - [3045] = 3045, - [3046] = 3046, - [3047] = 3047, - [3048] = 3048, - [3049] = 3047, - [3050] = 3048, - [3051] = 3048, - [3052] = 3048, - [3053] = 3047, - [3054] = 1523, - [3055] = 3047, - [3056] = 1524, - [3057] = 3057, - [3058] = 3058, - [3059] = 1525, - [3060] = 3060, - [3061] = 3047, - [3062] = 3062, - [3063] = 3063, - [3064] = 3064, - [3065] = 3065, - [3066] = 3066, - [3067] = 3067, - [3068] = 3048, + [2875] = 2853, + [2876] = 2876, + [2877] = 2849, + [2878] = 2878, + [2879] = 2830, + [2880] = 2851, + [2881] = 2852, + [2882] = 2871, + [2883] = 2883, + [2884] = 2884, + [2885] = 2876, + [2886] = 2886, + [2887] = 2887, + [2888] = 1508, + [2889] = 1509, + [2890] = 1511, + [2891] = 1543, + [2892] = 1616, + [2893] = 1618, + [2894] = 1627, + [2895] = 1631, + [2896] = 1632, + [2897] = 1635, + [2898] = 1636, + [2899] = 1637, + [2900] = 1613, + [2901] = 1641, + [2902] = 1630, + [2903] = 1541, + [2904] = 1561, + [2905] = 1547, + [2906] = 1548, + [2907] = 1565, + [2908] = 1550, + [2909] = 1551, + [2910] = 1552, + [2911] = 1538, + [2912] = 1553, + [2913] = 1556, + [2914] = 1650, + [2915] = 1554, + [2916] = 1651, + [2917] = 1652, + [2918] = 1653, + [2919] = 1654, + [2920] = 1598, + [2921] = 1535, + [2922] = 1536, + [2923] = 1537, + [2924] = 1615, + [2925] = 232, + [2926] = 1526, + [2927] = 234, + [2928] = 1522, + [2929] = 1527, + [2930] = 1512, + [2931] = 1528, + [2932] = 1529, + [2933] = 1590, + [2934] = 1625, + [2935] = 1574, + [2936] = 1579, + [2937] = 1534, + [2938] = 1583, + [2939] = 1587, + [2940] = 1504, + [2941] = 1634, + [2942] = 1511, + [2943] = 2943, + [2944] = 1523, + [2945] = 1509, + [2946] = 1508, + [2947] = 1621, + [2948] = 1591, + [2949] = 1623, + [2950] = 1638, + [2951] = 1595, + [2952] = 1533, + [2953] = 1514, + [2954] = 1515, + [2955] = 1611, + [2956] = 1524, + [2957] = 1614, + [2958] = 1622, + [2959] = 1568, + [2960] = 1569, + [2961] = 1535, + [2962] = 2962, + [2963] = 2963, + [2964] = 2964, + [2965] = 2965, + [2966] = 1593, + [2967] = 1594, + [2968] = 2968, + [2969] = 1609, + [2970] = 1641, + [2971] = 1630, + [2972] = 1561, + [2973] = 2962, + [2974] = 2963, + [2975] = 2964, + [2976] = 2965, + [2977] = 1628, + [2978] = 1629, + [2979] = 2964, + [2980] = 1575, + [2981] = 1541, + [2982] = 1565, + [2983] = 1536, + [2984] = 1612, + [2985] = 2968, + [2986] = 1633, + [2987] = 1537, + [2988] = 1543, + [2989] = 2962, + [2990] = 2963, + [2991] = 2964, + [2992] = 2965, + [2993] = 1504, + [2994] = 1547, + [2995] = 1576, + [2996] = 1577, + [2997] = 1580, + [2998] = 2968, + [2999] = 1538, + [3000] = 1582, + [3001] = 2962, + [3002] = 2963, + [3003] = 2964, + [3004] = 2965, + [3005] = 1548, + [3006] = 1550, + [3007] = 1599, + [3008] = 2968, + [3009] = 1551, + [3010] = 1552, + [3011] = 1613, + [3012] = 1601, + [3013] = 1596, + [3014] = 1615, + [3015] = 1567, + [3016] = 2968, + [3017] = 1539, + [3018] = 2965, + [3019] = 1616, + [3020] = 1618, + [3021] = 2968, + [3022] = 1602, + [3023] = 1553, + [3024] = 1627, + [3025] = 1624, + [3026] = 1656, + [3027] = 1640, + [3028] = 1643, + [3029] = 1645, + [3030] = 2968, + [3031] = 1631, + [3032] = 1554, + [3033] = 1632, + [3034] = 1639, + [3035] = 1635, + [3036] = 1636, + [3037] = 2968, + [3038] = 2968, + [3039] = 1637, + [3040] = 1647, + [3041] = 1606, + [3042] = 1650, + [3043] = 1649, + [3044] = 1626, + [3045] = 1651, + [3046] = 1652, + [3047] = 1653, + [3048] = 1522, + [3049] = 1603, + [3050] = 1555, + [3051] = 1654, + [3052] = 1512, + [3053] = 1526, + [3054] = 1570, + [3055] = 2962, + [3056] = 1527, + [3057] = 1528, + [3058] = 2963, + [3059] = 1571, + [3060] = 1529, + [3061] = 1511, + [3062] = 1509, + [3063] = 1508, + [3064] = 2968, + [3065] = 1598, + [3066] = 1556, + [3067] = 1518, + [3068] = 3068, [3069] = 3069, [3070] = 3070, [3071] = 3071, [3072] = 3072, - [3073] = 3073, + [3073] = 1515, [3074] = 3074, - [3075] = 3047, - [3076] = 1514, - [3077] = 1512, - [3078] = 3047, - [3079] = 3079, + [3075] = 3075, + [3076] = 3075, + [3077] = 3075, + [3078] = 3078, + [3079] = 1530, [3080] = 3080, [3081] = 3081, - [3082] = 3082, + [3082] = 3075, [3083] = 3083, - [3084] = 1538, + [3084] = 3084, [3085] = 3085, - [3086] = 1602, + [3086] = 3086, [3087] = 3087, - [3088] = 988, - [3089] = 1604, - [3090] = 1610, - [3091] = 1624, - [3092] = 1628, - [3093] = 1629, - [3094] = 991, - [3095] = 1634, - [3096] = 1644, - [3097] = 3097, - [3098] = 3098, - [3099] = 992, - [3100] = 1630, - [3101] = 1638, - [3102] = 1639, - [3103] = 1640, - [3104] = 1641, - [3105] = 3105, - [3106] = 1552, - [3107] = 1540, - [3108] = 1599, - [3109] = 1623, - [3110] = 1625, - [3111] = 3111, - [3112] = 1636, - [3113] = 1530, - [3114] = 1532, - [3115] = 1533, - [3116] = 1537, - [3117] = 1542, - [3118] = 1543, - [3119] = 1546, - [3120] = 1547, - [3121] = 1565, - [3122] = 1566, - [3123] = 1567, - [3124] = 1562, - [3125] = 1569, - [3126] = 1570, - [3127] = 1571, - [3128] = 1572, - [3129] = 1505, - [3130] = 1573, - [3131] = 1575, - [3132] = 1583, - [3133] = 1584, - [3134] = 1585, - [3135] = 3135, - [3136] = 1586, - [3137] = 1587, - [3138] = 1589, - [3139] = 1591, - [3140] = 1650, - [3141] = 1596, - [3142] = 1597, - [3143] = 3143, - [3144] = 3144, - [3145] = 1557, - [3146] = 1561, - [3147] = 3147, - [3148] = 1643, - [3149] = 1645, - [3150] = 1595, - [3151] = 1527, - [3152] = 3152, - [3153] = 1592, - [3154] = 1605, - [3155] = 1550, - [3156] = 1568, - [3157] = 3157, - [3158] = 1512, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3162, - [3163] = 3163, - [3164] = 3164, - [3165] = 1170, - [3166] = 1525, + [3088] = 1532, + [3089] = 3089, + [3090] = 3090, + [3091] = 3075, + [3092] = 3092, + [3093] = 3093, + [3094] = 3094, + [3095] = 3087, + [3096] = 3087, + [3097] = 3075, + [3098] = 3087, + [3099] = 3099, + [3100] = 3100, + [3101] = 3101, + [3102] = 3087, + [3103] = 3103, + [3104] = 3104, + [3105] = 1523, + [3106] = 3106, + [3107] = 3075, + [3108] = 1550, + [3109] = 1504, + [3110] = 1615, + [3111] = 1605, + [3112] = 1623, + [3113] = 1625, + [3114] = 1537, + [3115] = 1608, + [3116] = 1538, + [3117] = 1543, + [3118] = 1607, + [3119] = 1522, + [3120] = 1600, + [3121] = 1642, + [3122] = 1554, + [3123] = 1557, + [3124] = 1558, + [3125] = 1547, + [3126] = 1512, + [3127] = 1634, + [3128] = 1526, + [3129] = 3129, + [3130] = 1163, + [3131] = 1556, + [3132] = 993, + [3133] = 1153, + [3134] = 3134, + [3135] = 1514, + [3136] = 1638, + [3137] = 1648, + [3138] = 1548, + [3139] = 3139, + [3140] = 1561, + [3141] = 1535, + [3142] = 1591, + [3143] = 1595, + [3144] = 992, + [3145] = 1616, + [3146] = 1618, + [3147] = 1654, + [3148] = 1627, + [3149] = 1565, + [3150] = 1631, + [3151] = 1551, + [3152] = 1598, + [3153] = 1632, + [3154] = 3154, + [3155] = 1641, + [3156] = 1635, + [3157] = 1552, + [3158] = 1636, + [3159] = 1637, + [3160] = 1630, + [3161] = 1650, + [3162] = 1156, + [3163] = 1574, + [3164] = 991, + [3165] = 1553, + [3166] = 3166, [3167] = 3167, - [3168] = 1548, - [3169] = 3169, + [3168] = 1579, + [3169] = 1529, [3170] = 3170, - [3171] = 3171, - [3172] = 3172, - [3173] = 3173, - [3174] = 3174, - [3175] = 3167, - [3176] = 3176, - [3177] = 3177, - [3178] = 3178, - [3179] = 1166, - [3180] = 3180, - [3181] = 1514, - [3182] = 3182, - [3183] = 3183, - [3184] = 3167, - [3185] = 3185, - [3186] = 3167, + [3171] = 1534, + [3172] = 1540, + [3173] = 1651, + [3174] = 1536, + [3175] = 3175, + [3176] = 1613, + [3177] = 1541, + [3178] = 1527, + [3179] = 1583, + [3180] = 1621, + [3181] = 1573, + [3182] = 1652, + [3183] = 1587, + [3184] = 1528, + [3185] = 1590, + [3186] = 1653, [3187] = 3187, [3188] = 3188, [3189] = 3189, [3190] = 3190, [3191] = 3191, [3192] = 3192, - [3193] = 1522, + [3193] = 3193, [3194] = 3194, [3195] = 3195, - [3196] = 1504, - [3197] = 1509, - [3198] = 1506, + [3196] = 3196, + [3197] = 1533, + [3198] = 1611, [3199] = 3199, - [3200] = 1574, - [3201] = 1171, + [3200] = 1614, + [3201] = 3201, [3202] = 3202, - [3203] = 3203, - [3204] = 1516, + [3203] = 1530, + [3204] = 1532, [3205] = 3205, - [3206] = 1529, - [3207] = 1523, + [3206] = 3206, + [3207] = 3207, [3208] = 3208, - [3209] = 3209, - [3210] = 3210, - [3211] = 3211, - [3212] = 1524, + [3209] = 1511, + [3210] = 1509, + [3211] = 1508, + [3212] = 3212, [3213] = 3213, - [3214] = 3167, - [3215] = 1603, - [3216] = 1649, - [3217] = 1545, - [3218] = 713, - [3219] = 1552, - [3220] = 1550, - [3221] = 1562, - [3222] = 1592, - [3223] = 988, - [3224] = 1602, - [3225] = 1604, - [3226] = 1610, + [3214] = 3193, + [3215] = 3215, + [3216] = 3216, + [3217] = 1518, + [3218] = 3218, + [3219] = 3193, + [3220] = 3220, + [3221] = 3221, + [3222] = 3222, + [3223] = 3223, + [3224] = 3224, + [3225] = 3225, + [3226] = 1524, [3227] = 3227, - [3228] = 1624, - [3229] = 1631, - [3230] = 1628, - [3231] = 1629, - [3232] = 1576, - [3233] = 1630, - [3234] = 1638, - [3235] = 1639, - [3236] = 1640, - [3237] = 1641, - [3238] = 991, - [3239] = 1577, - [3240] = 1578, - [3241] = 711, - [3242] = 1634, - [3243] = 1600, - [3244] = 1605, - [3245] = 715, - [3246] = 1642, - [3247] = 992, - [3248] = 1644, - [3249] = 1646, - [3250] = 1626, - [3251] = 1645, - [3252] = 712, - [3253] = 3253, - [3254] = 1558, - [3255] = 1609, - [3256] = 3256, - [3257] = 1611, - [3258] = 1613, - [3259] = 1551, - [3260] = 1614, - [3261] = 1553, - [3262] = 1505, - [3263] = 1621, - [3264] = 1620, - [3265] = 1632, - [3266] = 1635, - [3267] = 1557, - [3268] = 3174, - [3269] = 1559, - [3270] = 1560, - [3271] = 1544, - [3272] = 1554, - [3273] = 1556, - [3274] = 1536, - [3275] = 1561, - [3276] = 1643, - [3277] = 714, - [3278] = 1527, - [3279] = 3279, - [3280] = 1563, - [3281] = 1580, - [3282] = 1594, - [3283] = 1595, - [3284] = 1598, - [3285] = 1622, - [3286] = 1637, - [3287] = 1522, - [3288] = 1525, - [3289] = 1548, - [3290] = 3290, - [3291] = 3291, - [3292] = 3292, - [3293] = 3291, - [3294] = 3294, - [3295] = 3295, - [3296] = 3296, - [3297] = 3290, - [3298] = 3298, - [3299] = 3299, - [3300] = 3290, - [3301] = 1523, - [3302] = 3302, - [3303] = 1514, - [3304] = 3304, - [3305] = 1524, - [3306] = 1505, - [3307] = 3307, - [3308] = 3291, - [3309] = 1516, - [3310] = 3294, - [3311] = 1574, - [3312] = 3312, - [3313] = 3313, - [3314] = 3314, - [3315] = 3315, - [3316] = 3298, - [3317] = 1529, - [3318] = 3318, - [3319] = 1626, - [3320] = 3320, - [3321] = 3321, - [3322] = 1613, - [3323] = 3323, - [3324] = 3324, - [3325] = 1614, + [3228] = 3228, + [3229] = 3229, + [3230] = 3230, + [3231] = 3231, + [3232] = 3232, + [3233] = 3233, + [3234] = 3234, + [3235] = 1575, + [3236] = 3236, + [3237] = 3237, + [3238] = 3193, + [3239] = 1515, + [3240] = 3193, + [3241] = 1523, + [3242] = 3242, + [3243] = 3243, + [3244] = 3244, + [3245] = 711, + [3246] = 1574, + [3247] = 3196, + [3248] = 1579, + [3249] = 1156, + [3250] = 1534, + [3251] = 3251, + [3252] = 714, + [3253] = 1622, + [3254] = 1624, + [3255] = 1626, + [3256] = 1596, + [3257] = 1539, + [3258] = 1628, + [3259] = 1629, + [3260] = 1633, + [3261] = 1583, + [3262] = 1587, + [3263] = 1590, + [3264] = 3264, + [3265] = 1639, + [3266] = 1642, + [3267] = 1153, + [3268] = 1623, + [3269] = 1647, + [3270] = 1648, + [3271] = 1649, + [3272] = 1656, + [3273] = 1599, + [3274] = 1555, + [3275] = 1600, + [3276] = 715, + [3277] = 1163, + [3278] = 1163, + [3279] = 1601, + [3280] = 1602, + [3281] = 1603, + [3282] = 993, + [3283] = 992, + [3284] = 1540, + [3285] = 1568, + [3286] = 1569, + [3287] = 1573, + [3288] = 1567, + [3289] = 1570, + [3290] = 1621, + [3291] = 1605, + [3292] = 1606, + [3293] = 1607, + [3294] = 1593, + [3295] = 1594, + [3296] = 1608, + [3297] = 1557, + [3298] = 1609, + [3299] = 1558, + [3300] = 1153, + [3301] = 713, + [3302] = 1504, + [3303] = 1634, + [3304] = 1576, + [3305] = 1577, + [3306] = 1580, + [3307] = 1582, + [3308] = 1612, + [3309] = 1638, + [3310] = 1640, + [3311] = 3311, + [3312] = 1643, + [3313] = 1514, + [3314] = 1645, + [3315] = 712, + [3316] = 3316, + [3317] = 1625, + [3318] = 1591, + [3319] = 1595, + [3320] = 1156, + [3321] = 991, + [3322] = 1571, + [3323] = 1504, + [3324] = 1515, + [3325] = 1529, [3326] = 3326, - [3327] = 1576, - [3328] = 1577, - [3329] = 1578, - [3330] = 3315, - [3331] = 711, - [3332] = 1621, + [3327] = 3327, + [3328] = 3328, + [3329] = 3326, + [3330] = 3330, + [3331] = 3327, + [3332] = 3332, [3333] = 3333, - [3334] = 3334, - [3335] = 1592, - [3336] = 1637, - [3337] = 714, - [3338] = 1649, - [3339] = 1552, - [3340] = 3302, + [3334] = 3326, + [3335] = 1530, + [3336] = 3336, + [3337] = 3337, + [3338] = 1527, + [3339] = 1528, + [3340] = 1524, [3341] = 3341, - [3342] = 3342, - [3343] = 3343, - [3344] = 1600, - [3345] = 1605, - [3346] = 213, - [3347] = 1558, + [3342] = 1532, + [3343] = 1518, + [3344] = 3344, + [3345] = 1575, + [3346] = 3346, + [3347] = 3327, [3348] = 3348, - [3349] = 3349, + [3349] = 3333, [3350] = 3350, - [3351] = 1170, - [3352] = 219, - [3353] = 3167, - [3354] = 1645, - [3355] = 1631, - [3356] = 1634, - [3357] = 1166, - [3358] = 3358, - [3359] = 1171, + [3351] = 1522, + [3352] = 1512, + [3353] = 3353, + [3354] = 1533, + [3355] = 1611, + [3356] = 1614, + [3357] = 3357, + [3358] = 1526, + [3359] = 3330, [3360] = 3360, - [3361] = 3304, + [3361] = 3361, [3362] = 3362, - [3363] = 1545, - [3364] = 3167, + [3363] = 232, + [3364] = 3364, [3365] = 3365, [3366] = 3366, [3367] = 3367, [3368] = 3368, [3369] = 3369, - [3370] = 3167, + [3370] = 3360, [3371] = 3371, - [3372] = 1166, - [3373] = 1642, - [3374] = 3167, - [3375] = 1644, - [3376] = 3376, - [3377] = 3377, - [3378] = 1646, + [3372] = 3332, + [3373] = 3373, + [3374] = 3374, + [3375] = 3375, + [3376] = 3369, + [3377] = 713, + [3378] = 3378, [3379] = 3379, [3380] = 3380, - [3381] = 3381, - [3382] = 1170, - [3383] = 1563, - [3384] = 1643, + [3381] = 1515, + [3382] = 3368, + [3383] = 1628, + [3384] = 3193, [3385] = 3385, - [3386] = 712, + [3386] = 234, [3387] = 3387, - [3388] = 1514, - [3389] = 3349, - [3390] = 715, - [3391] = 3391, - [3392] = 3392, - [3393] = 3393, - [3394] = 3394, - [3395] = 3341, - [3396] = 3396, + [3388] = 3388, + [3389] = 3341, + [3390] = 3390, + [3391] = 1624, + [3392] = 1557, + [3393] = 1540, + [3394] = 1622, + [3395] = 3395, + [3396] = 1558, [3397] = 3397, - [3398] = 1622, - [3399] = 3399, - [3400] = 3400, - [3401] = 1603, - [3402] = 3402, - [3403] = 3403, - [3404] = 3404, + [3398] = 3398, + [3399] = 3193, + [3400] = 715, + [3401] = 3401, + [3402] = 3390, + [3403] = 1573, + [3404] = 3193, [3405] = 3405, - [3406] = 1594, - [3407] = 3381, - [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3341, - [3412] = 1512, + [3406] = 3406, + [3407] = 3407, + [3408] = 3193, + [3409] = 1629, + [3410] = 1647, + [3411] = 1648, + [3412] = 3412, [3413] = 3413, - [3414] = 3414, + [3414] = 1633, [3415] = 3415, [3416] = 3416, - [3417] = 3167, - [3418] = 3418, + [3417] = 3417, + [3418] = 1539, [3419] = 3419, - [3420] = 1609, - [3421] = 3416, + [3420] = 3420, + [3421] = 3421, [3422] = 3422, - [3423] = 3423, - [3424] = 3413, + [3423] = 3337, + [3424] = 3424, [3425] = 3425, - [3426] = 3426, - [3427] = 3167, + [3426] = 1626, + [3427] = 714, [3428] = 3428, [3429] = 3429, - [3430] = 1551, - [3431] = 1620, - [3432] = 1553, - [3433] = 1557, - [3434] = 3349, - [3435] = 3365, - [3436] = 1595, - [3437] = 1632, - [3438] = 3362, - [3439] = 1635, + [3430] = 3368, + [3431] = 1639, + [3432] = 3432, + [3433] = 3433, + [3434] = 3434, + [3435] = 3193, + [3436] = 1567, + [3437] = 3437, + [3438] = 1570, + [3439] = 1571, [3440] = 3440, - [3441] = 3404, + [3441] = 3441, [3442] = 3442, - [3443] = 1171, - [3444] = 1559, - [3445] = 1560, + [3443] = 3360, + [3444] = 3444, + [3445] = 1576, [3446] = 3446, - [3447] = 1561, - [3448] = 1544, - [3449] = 3449, - [3450] = 1554, - [3451] = 3451, + [3447] = 1577, + [3448] = 1580, + [3449] = 1582, + [3450] = 1555, + [3451] = 1642, [3452] = 3452, - [3453] = 1556, - [3454] = 1536, - [3455] = 1598, - [3456] = 713, - [3457] = 1611, - [3458] = 3458, - [3459] = 3459, + [3453] = 3193, + [3454] = 3380, + [3455] = 3455, + [3456] = 3456, + [3457] = 1649, + [3458] = 1640, + [3459] = 3374, [3460] = 3460, [3461] = 3461, [3462] = 3462, - [3463] = 1580, - [3464] = 3464, + [3463] = 1568, + [3464] = 711, [3465] = 3465, - [3466] = 3466, - [3467] = 3467, - [3468] = 3468, + [3466] = 1523, + [3467] = 1643, + [3468] = 3412, [3469] = 3469, - [3470] = 3470, - [3471] = 3174, - [3472] = 3472, - [3473] = 3473, - [3474] = 3472, - [3475] = 3473, - [3476] = 3473, - [3477] = 3473, - [3478] = 3473, - [3479] = 3473, - [3480] = 3469, - [3481] = 3472, - [3482] = 213, - [3483] = 219, - [3484] = 3473, + [3470] = 1596, + [3471] = 1645, + [3472] = 1656, + [3473] = 1599, + [3474] = 1600, + [3475] = 1601, + [3476] = 1602, + [3477] = 1603, + [3478] = 1605, + [3479] = 1606, + [3480] = 1607, + [3481] = 1569, + [3482] = 1609, + [3483] = 1593, + [3484] = 3484, [3485] = 3485, - [3486] = 3472, - [3487] = 1527, - [3488] = 3488, - [3489] = 991, - [3490] = 992, + [3486] = 3486, + [3487] = 1594, + [3488] = 1612, + [3489] = 1608, + [3490] = 3371, [3491] = 3491, [3492] = 3492, - [3493] = 1523, - [3494] = 1524, + [3493] = 3493, + [3494] = 712, [3495] = 3495, - [3496] = 3472, + [3496] = 3496, [3497] = 3497, [3498] = 3498, - [3499] = 200, - [3500] = 201, - [3501] = 3473, - [3502] = 3302, - [3503] = 1525, - [3504] = 3472, + [3499] = 3499, + [3500] = 232, + [3501] = 3501, + [3502] = 3502, + [3503] = 3503, + [3504] = 3504, [3505] = 3505, - [3506] = 988, - [3507] = 3507, + [3506] = 3506, + [3507] = 3506, [3508] = 3508, [3509] = 3509, [3510] = 3510, [3511] = 3511, [3512] = 3512, - [3513] = 3513, - [3514] = 3514, - [3515] = 3515, + [3513] = 1514, + [3514] = 198, + [3515] = 205, [3516] = 3516, [3517] = 3517, - [3518] = 3518, - [3519] = 3519, + [3518] = 3506, + [3519] = 3502, [3520] = 3520, - [3521] = 3521, - [3522] = 3522, - [3523] = 3523, + [3521] = 3502, + [3522] = 1518, + [3523] = 3502, [3524] = 3524, - [3525] = 3299, - [3526] = 3526, - [3527] = 3527, - [3528] = 3528, - [3529] = 3529, - [3530] = 3530, - [3531] = 3531, - [3532] = 3532, + [3525] = 3506, + [3526] = 1530, + [3527] = 234, + [3528] = 3196, + [3529] = 1532, + [3530] = 3506, + [3531] = 3502, + [3532] = 992, [3533] = 3533, [3534] = 3534, - [3535] = 3535, - [3536] = 3536, - [3537] = 3537, - [3538] = 3538, - [3539] = 3539, - [3540] = 3540, - [3541] = 3541, - [3542] = 1605, - [3543] = 3508, + [3535] = 993, + [3536] = 3341, + [3537] = 3506, + [3538] = 3517, + [3539] = 3502, + [3540] = 991, + [3541] = 3506, + [3542] = 3506, + [3543] = 3543, [3544] = 3544, [3545] = 3545, - [3546] = 3540, + [3546] = 3546, [3547] = 3547, [3548] = 3548, - [3549] = 1525, + [3549] = 3549, [3550] = 3550, [3551] = 3551, [3552] = 3552, - [3553] = 3553, + [3553] = 207, [3554] = 3554, [3555] = 3555, [3556] = 3556, [3557] = 3557, - [3558] = 3558, - [3559] = 3559, + [3558] = 215, + [3559] = 238, [3560] = 3560, [3561] = 3561, [3562] = 3562, - [3563] = 3508, + [3563] = 3563, [3564] = 3564, [3565] = 3565, [3566] = 3566, [3567] = 3567, [3568] = 3568, [3569] = 3569, - [3570] = 3508, + [3570] = 3570, [3571] = 3571, - [3572] = 3540, + [3572] = 3572, [3573] = 3573, - [3574] = 3508, - [3575] = 3540, + [3574] = 3574, + [3575] = 3575, [3576] = 3576, [3577] = 3577, [3578] = 3578, [3579] = 3579, - [3580] = 3580, - [3581] = 3555, + [3580] = 3444, + [3581] = 3581, [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 3585, - [3586] = 3586, - [3587] = 3366, - [3588] = 3588, + [3585] = 3545, + [3586] = 3373, + [3587] = 3564, + [3588] = 3576, [3589] = 3589, [3590] = 3590, [3591] = 3591, [3592] = 3592, - [3593] = 3508, + [3593] = 3593, [3594] = 3594, [3595] = 3595, - [3596] = 3595, + [3596] = 3596, [3597] = 3597, [3598] = 3598, - [3599] = 3540, - [3600] = 3577, - [3601] = 3601, - [3602] = 3602, + [3599] = 3599, + [3600] = 3600, + [3601] = 3581, + [3602] = 3346, [3603] = 3603, - [3604] = 3604, + [3604] = 1518, [3605] = 3605, [3606] = 3606, [3607] = 3607, [3608] = 3608, - [3609] = 3540, - [3610] = 3605, - [3611] = 3611, + [3609] = 3609, + [3610] = 3610, + [3611] = 3603, [3612] = 3612, [3613] = 3613, - [3614] = 3371, + [3614] = 3605, [3615] = 3615, - [3616] = 3545, - [3617] = 3617, - [3618] = 3618, - [3619] = 3619, - [3620] = 3620, - [3621] = 3594, + [3616] = 3616, + [3617] = 3606, + [3618] = 3316, + [3619] = 3564, + [3620] = 3576, + [3621] = 3407, [3622] = 3622, [3623] = 3623, - [3624] = 3624, - [3625] = 3625, - [3626] = 3626, - [3627] = 3627, - [3628] = 3628, + [3624] = 3469, + [3625] = 3607, + [3626] = 3581, + [3627] = 3605, + [3628] = 3441, [3629] = 3629, [3630] = 3630, [3631] = 3631, [3632] = 3632, [3633] = 3633, [3634] = 3634, - [3635] = 3635, + [3635] = 3576, [3636] = 3636, [3637] = 3637, - [3638] = 3507, - [3639] = 3636, + [3638] = 3581, + [3639] = 3639, [3640] = 3640, [3641] = 3641, [3642] = 3642, [3643] = 3643, - [3644] = 3377, - [3645] = 3619, - [3646] = 3646, + [3644] = 3644, + [3645] = 3576, + [3646] = 3581, [3647] = 3647, [3648] = 3648, [3649] = 3649, - [3650] = 3634, + [3650] = 3650, [3651] = 3651, [3652] = 3652, [3653] = 3653, [3654] = 3654, [3655] = 3655, - [3656] = 3656, + [3656] = 3576, [3657] = 3657, - [3658] = 3658, + [3658] = 3581, [3659] = 3659, - [3660] = 1595, - [3661] = 1592, - [3662] = 1552, - [3663] = 3508, + [3660] = 3660, + [3661] = 3576, + [3662] = 3581, + [3663] = 3663, [3664] = 3664, - [3665] = 3665, + [3665] = 3600, [3666] = 3666, - [3667] = 3410, + [3667] = 3667, [3668] = 3668, [3669] = 3669, - [3670] = 3670, - [3671] = 3671, + [3670] = 3579, + [3671] = 3583, [3672] = 3672, [3673] = 3673, [3674] = 3674, - [3675] = 3545, - [3676] = 3643, - [3677] = 3652, + [3675] = 3675, + [3676] = 3675, + [3677] = 3576, [3678] = 3678, [3679] = 3679, - [3680] = 3532, + [3680] = 3680, [3681] = 3681, [3682] = 3682, [3683] = 3683, - [3684] = 3684, - [3685] = 3666, - [3686] = 3686, - [3687] = 3687, - [3688] = 3688, - [3689] = 3555, - [3690] = 3690, - [3691] = 3691, - [3692] = 3579, - [3693] = 3642, - [3694] = 3253, - [3695] = 3508, - [3696] = 1523, - [3697] = 1524, - [3698] = 203, + [3684] = 1530, + [3685] = 1532, + [3686] = 1642, + [3687] = 1648, + [3688] = 3577, + [3689] = 1573, + [3690] = 1608, + [3691] = 1557, + [3692] = 1558, + [3693] = 3595, + [3694] = 3694, + [3695] = 3695, + [3696] = 3696, + [3697] = 3697, + [3698] = 1540, [3699] = 3699, [3700] = 3700, [3701] = 3701, - [3702] = 3409, + [3702] = 3702, [3703] = 3703, [3704] = 3704, [3705] = 3705, @@ -8183,257 +8183,257 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3708] = 3708, [3709] = 3709, [3710] = 3710, - [3711] = 1634, + [3711] = 3711, [3712] = 3712, - [3713] = 1644, + [3713] = 3608, [3714] = 3714, [3715] = 3715, - [3716] = 3578, - [3717] = 3590, + [3716] = 3584, + [3717] = 3717, [3718] = 3718, - [3719] = 3642, - [3720] = 3709, + [3719] = 3719, + [3720] = 3596, [3721] = 3721, [3722] = 3722, - [3723] = 3634, + [3723] = 3723, [3724] = 3724, [3725] = 3725, [3726] = 3726, [3727] = 3727, [3728] = 3728, [3729] = 3729, - [3730] = 1557, - [3731] = 1561, - [3732] = 1643, - [3733] = 1645, + [3730] = 3730, + [3731] = 3672, + [3732] = 3732, + [3733] = 3733, [3734] = 3734, [3735] = 3735, [3736] = 3736, [3737] = 3737, [3738] = 3738, - [3739] = 3540, - [3740] = 239, + [3739] = 3739, + [3740] = 3740, [3741] = 3741, [3742] = 3742, - [3743] = 240, - [3744] = 3558, + [3743] = 3743, + [3744] = 3744, [3745] = 3745, [3746] = 3746, [3747] = 3747, [3748] = 3748, [3749] = 3749, - [3750] = 3750, - [3751] = 3606, - [3752] = 3752, - [3753] = 3753, - [3754] = 3524, - [3755] = 3755, - [3756] = 3749, - [3757] = 3527, - [3758] = 3758, - [3759] = 3625, - [3760] = 712, + [3750] = 3650, + [3751] = 3751, + [3752] = 3582, + [3753] = 3566, + [3754] = 3754, + [3755] = 1575, + [3756] = 3756, + [3757] = 3757, + [3758] = 1600, + [3759] = 1605, + [3760] = 1607, [3761] = 3761, - [3762] = 3668, - [3763] = 1643, + [3762] = 3762, + [3763] = 3763, [3764] = 3764, - [3765] = 3304, - [3766] = 1645, - [3767] = 1595, - [3768] = 3755, - [3769] = 1592, - [3770] = 3649, - [3771] = 1552, - [3772] = 713, - [3773] = 3773, + [3765] = 3765, + [3766] = 3766, + [3767] = 3767, + [3768] = 3768, + [3769] = 3769, + [3770] = 3770, + [3771] = 3597, + [3772] = 3772, + [3773] = 3650, [3774] = 3774, - [3775] = 3755, - [3776] = 711, + [3775] = 3566, + [3776] = 3776, [3777] = 3777, [3778] = 3778, - [3779] = 3227, + [3779] = 3779, [3780] = 3780, [3781] = 3781, [3782] = 3782, - [3783] = 3626, - [3784] = 3755, - [3785] = 3764, + [3783] = 3783, + [3784] = 3784, + [3785] = 3785, [3786] = 3786, - [3787] = 3787, - [3788] = 3755, - [3789] = 3707, - [3790] = 3786, + [3787] = 3629, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, [3791] = 3791, [3792] = 3792, - [3793] = 3786, + [3793] = 3793, [3794] = 3794, - [3795] = 3795, - [3796] = 3631, - [3797] = 3794, + [3795] = 3724, + [3796] = 3796, + [3797] = 3797, [3798] = 3798, - [3799] = 3589, - [3800] = 3632, - [3801] = 3750, - [3802] = 3802, - [3803] = 3794, + [3799] = 3264, + [3800] = 3800, + [3801] = 3801, + [3802] = 3798, + [3803] = 3803, [3804] = 3804, - [3805] = 3547, - [3806] = 3315, + [3805] = 3791, + [3806] = 3806, [3807] = 3807, - [3808] = 3794, - [3809] = 3777, - [3810] = 3777, - [3811] = 3811, + [3808] = 3808, + [3809] = 3790, + [3810] = 3741, + [3811] = 711, [3812] = 3812, - [3813] = 3640, - [3814] = 3786, - [3815] = 3777, + [3813] = 3706, + [3814] = 3814, + [3815] = 3707, [3816] = 3816, - [3817] = 3817, - [3818] = 3818, - [3819] = 3627, - [3820] = 3598, - [3821] = 3761, - [3822] = 3752, - [3823] = 3823, - [3824] = 1557, - [3825] = 3825, - [3826] = 3826, - [3827] = 3827, - [3828] = 3780, - [3829] = 3829, - [3830] = 3774, - [3831] = 3831, + [3817] = 714, + [3818] = 3701, + [3819] = 3819, + [3820] = 3702, + [3821] = 3821, + [3822] = 3791, + [3823] = 3788, + [3824] = 3788, + [3825] = 3791, + [3826] = 715, + [3827] = 3801, + [3828] = 3828, + [3829] = 3798, + [3830] = 3830, + [3831] = 713, [3832] = 3832, - [3833] = 3833, - [3834] = 3834, - [3835] = 3835, - [3836] = 3836, - [3837] = 3837, - [3838] = 1605, - [3839] = 3601, - [3840] = 3840, - [3841] = 3841, - [3842] = 3826, - [3843] = 3843, - [3844] = 3777, + [3833] = 712, + [3834] = 3703, + [3835] = 3803, + [3836] = 3708, + [3837] = 3808, + [3838] = 3800, + [3839] = 3839, + [3840] = 3711, + [3841] = 3715, + [3842] = 3842, + [3843] = 3679, + [3844] = 3680, [3845] = 3845, [3846] = 3846, - [3847] = 3604, - [3848] = 3597, - [3849] = 1561, - [3850] = 1644, - [3851] = 3851, + [3847] = 3801, + [3848] = 3681, + [3849] = 3682, + [3850] = 3850, + [3851] = 3788, [3852] = 3852, - [3853] = 3816, - [3854] = 3823, - [3855] = 3633, - [3856] = 3856, - [3857] = 1634, - [3858] = 3858, - [3859] = 3831, - [3860] = 3833, - [3861] = 3852, - [3862] = 3862, - [3863] = 3863, - [3864] = 3750, - [3865] = 3761, - [3866] = 3804, - [3867] = 3858, - [3868] = 3794, + [3853] = 3791, + [3854] = 3798, + [3855] = 3855, + [3856] = 3801, + [3857] = 3798, + [3858] = 3801, + [3859] = 3808, + [3860] = 3332, + [3861] = 3861, + [3862] = 1642, + [3863] = 1648, + [3864] = 3864, + [3865] = 3865, + [3866] = 3866, + [3867] = 3797, + [3868] = 3653, [3869] = 3869, - [3870] = 3608, - [3871] = 3782, - [3872] = 3851, - [3873] = 3812, - [3874] = 3874, - [3875] = 3786, - [3876] = 714, + [3870] = 3749, + [3871] = 3871, + [3872] = 3872, + [3873] = 3792, + [3874] = 3788, + [3875] = 3704, + [3876] = 3791, [3877] = 3877, - [3878] = 3837, - [3879] = 3750, - [3880] = 3880, - [3881] = 3559, - [3882] = 3863, - [3883] = 3755, - [3884] = 3786, - [3885] = 3521, - [3886] = 3886, - [3887] = 3777, - [3888] = 3840, - [3889] = 3750, - [3890] = 3753, - [3891] = 3750, - [3892] = 715, - [3893] = 3637, - [3894] = 3831, - [3895] = 3522, - [3896] = 3794, - [3897] = 3880, - [3898] = 3836, - [3899] = 3899, - [3900] = 3714, - [3901] = 3901, + [3878] = 3337, + [3879] = 3879, + [3880] = 3850, + [3881] = 3881, + [3882] = 3877, + [3883] = 3808, + [3884] = 3884, + [3885] = 3885, + [3886] = 3806, + [3887] = 3801, + [3888] = 3798, + [3889] = 1573, + [3890] = 3808, + [3891] = 1608, + [3892] = 1557, + [3893] = 3794, + [3894] = 3654, + [3895] = 3694, + [3896] = 1558, + [3897] = 3695, + [3898] = 3898, + [3899] = 3696, + [3900] = 3900, + [3901] = 3845, [3902] = 3902, [3903] = 3903, [3904] = 3904, - [3905] = 3905, - [3906] = 3906, + [3905] = 3712, + [3906] = 3898, [3907] = 3907, - [3908] = 3908, + [3908] = 3697, [3909] = 3909, - [3910] = 3910, - [3911] = 3911, - [3912] = 3912, - [3913] = 3913, - [3914] = 3914, + [3910] = 3830, + [3911] = 3865, + [3912] = 1540, + [3913] = 3655, + [3914] = 3832, [3915] = 3915, [3916] = 3916, [3917] = 3917, - [3918] = 3811, - [3919] = 3862, - [3920] = 3920, - [3921] = 3886, + [3918] = 3793, + [3919] = 3919, + [3920] = 3814, + [3921] = 3921, [3922] = 3922, - [3923] = 3923, - [3924] = 3924, - [3925] = 921, - [3926] = 929, - [3927] = 938, - [3928] = 942, - [3929] = 944, - [3930] = 3930, - [3931] = 794, - [3932] = 814, - [3933] = 816, - [3934] = 818, - [3935] = 822, - [3936] = 3936, - [3937] = 3937, + [3923] = 3819, + [3924] = 3794, + [3925] = 3902, + [3926] = 3922, + [3927] = 3902, + [3928] = 1600, + [3929] = 1605, + [3930] = 1607, + [3931] = 3808, + [3932] = 3932, + [3933] = 3717, + [3934] = 3904, + [3935] = 3788, + [3936] = 3842, + [3937] = 3903, [3938] = 3938, [3939] = 3939, - [3940] = 3940, - [3941] = 3592, + [3940] = 3756, + [3941] = 3941, [3942] = 3942, - [3943] = 839, + [3943] = 3943, [3944] = 3944, - [3945] = 842, - [3946] = 846, - [3947] = 3947, - [3948] = 3948, + [3945] = 3777, + [3946] = 879, + [3947] = 932, + [3948] = 933, [3949] = 3949, [3950] = 3950, [3951] = 3951, [3952] = 3952, - [3953] = 902, - [3954] = 903, - [3955] = 904, + [3953] = 3953, + [3954] = 3954, + [3955] = 3955, [3956] = 3956, - [3957] = 3957, - [3958] = 3958, - [3959] = 3959, - [3960] = 3960, - [3961] = 3961, + [3957] = 224, + [3958] = 3846, + [3959] = 920, + [3960] = 922, + [3961] = 923, [3962] = 3962, [3963] = 3963, [3964] = 3964, @@ -8441,155 +8441,155 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3966] = 3966, [3967] = 3967, [3968] = 3968, - [3969] = 3969, + [3969] = 925, [3970] = 3970, [3971] = 3971, [3972] = 3972, [3973] = 3973, - [3974] = 3974, + [3974] = 928, [3975] = 3975, [3976] = 3976, [3977] = 3977, [3978] = 3978, - [3979] = 812, + [3979] = 3979, [3980] = 3980, - [3981] = 786, - [3982] = 851, + [3981] = 3981, + [3982] = 3982, [3983] = 3983, - [3984] = 869, - [3985] = 870, + [3984] = 3984, + [3985] = 3985, [3986] = 3986, [3987] = 3987, [3988] = 3988, - [3989] = 3989, + [3989] = 230, [3990] = 3990, [3991] = 3991, - [3992] = 873, - [3993] = 3993, - [3994] = 893, - [3995] = 896, - [3996] = 899, - [3997] = 799, - [3998] = 796, - [3999] = 804, - [4000] = 811, - [4001] = 4001, - [4002] = 788, + [3992] = 3992, + [3993] = 3966, + [3994] = 3994, + [3995] = 3995, + [3996] = 3996, + [3997] = 818, + [3998] = 3998, + [3999] = 3973, + [4000] = 819, + [4001] = 820, + [4002] = 822, [4003] = 4003, - [4004] = 909, + [4004] = 4004, [4005] = 4005, [4006] = 4006, - [4007] = 801, + [4007] = 4007, [4008] = 4008, [4009] = 4009, [4010] = 4010, - [4011] = 923, + [4011] = 4011, [4012] = 4012, [4013] = 4013, - [4014] = 4014, - [4015] = 4015, - [4016] = 879, - [4017] = 857, - [4018] = 866, - [4019] = 4019, - [4020] = 910, - [4021] = 4021, + [4014] = 823, + [4015] = 827, + [4016] = 828, + [4017] = 831, + [4018] = 798, + [4019] = 799, + [4020] = 801, + [4021] = 839, [4022] = 4022, [4023] = 4023, [4024] = 4024, - [4025] = 4025, + [4025] = 844, [4026] = 4026, [4027] = 4027, [4028] = 4028, [4029] = 4029, [4030] = 4030, - [4031] = 4031, - [4032] = 934, - [4033] = 936, - [4034] = 939, - [4035] = 941, - [4036] = 911, - [4037] = 4037, - [4038] = 4038, - [4039] = 3964, - [4040] = 862, + [4031] = 3709, + [4032] = 3710, + [4033] = 4033, + [4034] = 910, + [4035] = 4035, + [4036] = 3966, + [4037] = 848, + [4038] = 874, + [4039] = 4039, + [4040] = 4040, [4041] = 875, - [4042] = 4012, - [4043] = 912, - [4044] = 792, - [4045] = 797, - [4046] = 3923, - [4047] = 791, - [4048] = 925, + [4042] = 878, + [4043] = 4043, + [4044] = 4044, + [4045] = 4045, + [4046] = 882, + [4047] = 4047, + [4048] = 4048, [4049] = 4049, [4050] = 4050, [4051] = 4051, [4052] = 4052, - [4053] = 3944, + [4053] = 4053, [4054] = 4054, [4055] = 4055, [4056] = 4056, - [4057] = 3901, + [4057] = 4057, [4058] = 4058, - [4059] = 4059, + [4059] = 3973, [4060] = 4060, - [4061] = 883, - [4062] = 3964, - [4063] = 885, + [4061] = 4061, + [4062] = 4062, + [4063] = 4063, [4064] = 4064, [4065] = 4065, [4066] = 4066, - [4067] = 890, - [4068] = 891, - [4069] = 894, - [4070] = 901, - [4071] = 927, - [4072] = 863, - [4073] = 825, - [4074] = 806, - [4075] = 4075, + [4067] = 4067, + [4068] = 4068, + [4069] = 4069, + [4070] = 4070, + [4071] = 890, + [4072] = 891, + [4073] = 894, + [4074] = 895, + [4075] = 896, [4076] = 4076, [4077] = 4077, - [4078] = 859, - [4079] = 4079, - [4080] = 4080, - [4081] = 4081, - [4082] = 4082, + [4078] = 4078, + [4079] = 897, + [4080] = 898, + [4081] = 3943, + [4082] = 3998, [4083] = 4083, - [4084] = 4084, - [4085] = 3923, - [4086] = 4086, - [4087] = 3948, - [4088] = 881, - [4089] = 886, - [4090] = 888, - [4091] = 898, - [4092] = 3901, + [4084] = 903, + [4085] = 4085, + [4086] = 790, + [4087] = 4087, + [4088] = 793, + [4089] = 794, + [4090] = 915, + [4091] = 4091, + [4092] = 4092, [4093] = 4093, - [4094] = 4009, + [4094] = 4094, [4095] = 4095, [4096] = 4096, [4097] = 4097, - [4098] = 4098, - [4099] = 4099, + [4098] = 3981, + [4099] = 4087, [4100] = 4100, [4101] = 4101, [4102] = 4102, - [4103] = 4103, - [4104] = 4005, + [4103] = 3973, + [4104] = 4104, [4105] = 4105, [4106] = 4106, - [4107] = 3923, - [4108] = 3901, + [4107] = 4107, + [4108] = 4108, [4109] = 4109, [4110] = 4110, [4111] = 4111, - [4112] = 3901, + [4112] = 3952, [4113] = 4113, [4114] = 4114, [4115] = 4115, - [4116] = 3971, - [4117] = 4117, + [4116] = 4116, + [4117] = 939, [4118] = 4118, [4119] = 4119, [4120] = 4120, @@ -8597,10 +8597,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4122] = 4122, [4123] = 4123, [4124] = 4124, - [4125] = 3972, - [4126] = 4126, + [4125] = 4125, + [4126] = 941, [4127] = 4127, - [4128] = 4128, + [4128] = 3949, [4129] = 4129, [4130] = 4130, [4131] = 4131, @@ -8615,415 +8615,415 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4140] = 4140, [4141] = 4141, [4142] = 4142, - [4143] = 4143, - [4144] = 4144, - [4145] = 4145, - [4146] = 4146, - [4147] = 3987, + [4143] = 816, + [4144] = 866, + [4145] = 921, + [4146] = 838, + [4147] = 837, [4148] = 4148, [4149] = 4149, - [4150] = 4150, - [4151] = 3976, + [4150] = 869, + [4151] = 876, [4152] = 4152, - [4153] = 4150, + [4153] = 4153, [4154] = 4154, [4155] = 4155, - [4156] = 4156, + [4156] = 796, [4157] = 4157, [4158] = 4158, [4159] = 4159, [4160] = 4160, [4161] = 4161, [4162] = 4162, - [4163] = 4163, - [4164] = 4164, + [4163] = 3966, + [4164] = 851, [4165] = 4165, [4166] = 4166, - [4167] = 4167, + [4167] = 3967, [4168] = 4168, [4169] = 4169, [4170] = 4170, - [4171] = 3939, - [4172] = 4172, + [4171] = 940, + [4172] = 4170, [4173] = 4173, [4174] = 4174, [4175] = 4175, - [4176] = 4038, + [4176] = 4176, [4177] = 4177, [4178] = 4178, [4179] = 4179, [4180] = 4180, - [4181] = 4181, + [4181] = 859, [4182] = 4182, [4183] = 4183, - [4184] = 4184, - [4185] = 4185, - [4186] = 4186, + [4184] = 862, + [4185] = 881, + [4186] = 887, [4187] = 4187, - [4188] = 4188, - [4189] = 4013, - [4190] = 4190, - [4191] = 3980, + [4188] = 868, + [4189] = 4189, + [4190] = 4027, + [4191] = 4035, [4192] = 4192, [4193] = 4193, [4194] = 4194, - [4195] = 4195, + [4195] = 900, [4196] = 4196, - [4197] = 4197, + [4197] = 901, [4198] = 4198, - [4199] = 4199, - [4200] = 4031, - [4201] = 4154, - [4202] = 3983, - [4203] = 4184, + [4199] = 902, + [4200] = 4060, + [4201] = 4201, + [4202] = 4066, + [4203] = 4203, [4204] = 4204, [4205] = 4205, [4206] = 4206, - [4207] = 4185, - [4208] = 3951, - [4209] = 4209, - [4210] = 4210, - [4211] = 4211, + [4207] = 3943, + [4208] = 4092, + [4209] = 3988, + [4210] = 4093, + [4211] = 4154, [4212] = 4212, - [4213] = 4213, + [4213] = 3949, [4214] = 4214, [4215] = 4215, [4216] = 4216, - [4217] = 3987, - [4218] = 3923, + [4217] = 4217, + [4218] = 800, [4219] = 4219, [4220] = 4220, - [4221] = 4221, - [4222] = 4150, - [4223] = 4223, - [4224] = 4160, - [4225] = 4161, + [4221] = 4119, + [4222] = 4222, + [4223] = 4152, + [4224] = 4224, + [4225] = 4225, [4226] = 4226, [4227] = 4227, - [4228] = 3986, - [4229] = 4038, - [4230] = 4230, - [4231] = 4231, - [4232] = 4232, + [4228] = 4228, + [4229] = 4229, + [4230] = 4092, + [4231] = 4026, + [4232] = 4166, [4233] = 4233, [4234] = 4234, [4235] = 4235, [4236] = 4236, - [4237] = 4237, + [4237] = 4093, [4238] = 4238, - [4239] = 4239, - [4240] = 4240, + [4239] = 4182, + [4240] = 4155, [4241] = 4241, - [4242] = 4242, + [4242] = 4076, [4243] = 4243, [4244] = 4244, [4245] = 4245, [4246] = 4246, [4247] = 4247, - [4248] = 4172, + [4248] = 4248, [4249] = 4249, - [4250] = 3961, + [4250] = 4250, [4251] = 4251, [4252] = 4252, [4253] = 4253, - [4254] = 3962, + [4254] = 4254, [4255] = 4255, [4256] = 4256, - [4257] = 4257, + [4257] = 791, [4258] = 4258, [4259] = 4259, - [4260] = 4173, - [4261] = 4261, + [4260] = 4260, + [4261] = 4121, [4262] = 4262, - [4263] = 4263, - [4264] = 4264, + [4263] = 792, + [4264] = 4229, [4265] = 4265, [4266] = 4266, [4267] = 4267, [4268] = 4268, [4269] = 4269, - [4270] = 231, + [4270] = 4270, [4271] = 4271, - [4272] = 4272, - [4273] = 4174, - [4274] = 4274, - [4275] = 831, - [4276] = 3654, - [4277] = 3989, + [4272] = 4066, + [4273] = 4273, + [4274] = 795, + [4275] = 4275, + [4276] = 4276, + [4277] = 4277, [4278] = 4278, - [4279] = 4175, - [4280] = 217, + [4279] = 4279, + [4280] = 4280, [4281] = 4281, [4282] = 4282, [4283] = 4283, [4284] = 4284, [4285] = 4285, - [4286] = 919, - [4287] = 824, + [4286] = 4286, + [4287] = 4178, [4288] = 4288, [4289] = 4289, - [4290] = 3903, + [4290] = 4290, [4291] = 4291, [4292] = 4292, - [4293] = 4193, - [4294] = 4294, + [4293] = 4293, + [4294] = 4108, [4295] = 4295, [4296] = 4296, [4297] = 4297, - [4298] = 4157, + [4298] = 4298, [4299] = 4299, [4300] = 4300, [4301] = 4301, [4302] = 4302, [4303] = 4303, - [4304] = 4301, - [4305] = 4197, + [4304] = 4304, + [4305] = 4305, [4306] = 4306, - [4307] = 4307, - [4308] = 4001, - [4309] = 3722, - [4310] = 867, - [4311] = 878, - [4312] = 4312, + [4307] = 4212, + [4308] = 4308, + [4309] = 4309, + [4310] = 4310, + [4311] = 4311, + [4312] = 4271, [4313] = 4313, [4314] = 4314, [4315] = 4315, - [4316] = 4316, - [4317] = 3948, + [4316] = 4162, + [4317] = 4317, [4318] = 4318, - [4319] = 4249, - [4320] = 4010, - [4321] = 3971, - [4322] = 3972, - [4323] = 4190, - [4324] = 3825, + [4319] = 4319, + [4320] = 4320, + [4321] = 4321, + [4322] = 4322, + [4323] = 4323, + [4324] = 4196, [4325] = 4325, - [4326] = 3989, - [4327] = 937, + [4326] = 4326, + [4327] = 4327, [4328] = 4328, - [4329] = 4329, - [4330] = 844, + [4329] = 3869, + [4330] = 4330, [4331] = 4331, - [4332] = 4332, + [4332] = 4282, [4333] = 4333, - [4334] = 4334, - [4335] = 4335, + [4334] = 4277, + [4335] = 3871, [4336] = 4336, - [4337] = 4337, + [4337] = 3872, [4338] = 4338, [4339] = 4339, - [4340] = 3607, - [4341] = 3687, - [4342] = 850, - [4343] = 856, - [4344] = 4344, - [4345] = 4345, + [4340] = 4340, + [4341] = 4341, + [4342] = 3981, + [4343] = 4217, + [4344] = 3774, + [4345] = 907, [4346] = 4346, [4347] = 4347, - [4348] = 4160, - [4349] = 4349, - [4350] = 1624, - [4351] = 1630, - [4352] = 4352, - [4353] = 4353, - [4354] = 4161, - [4355] = 3944, + [4348] = 4225, + [4349] = 4222, + [4350] = 4350, + [4351] = 1634, + [4352] = 4027, + [4353] = 4035, + [4354] = 4354, + [4355] = 4341, [4356] = 4356, [4357] = 4357, - [4358] = 4358, - [4359] = 4196, + [4358] = 4182, + [4359] = 908, [4360] = 4360, - [4361] = 4361, + [4361] = 911, [4362] = 4362, [4363] = 4363, - [4364] = 4364, - [4365] = 4365, + [4364] = 4138, + [4365] = 1638, [4366] = 4366, [4367] = 4367, [4368] = 4368, - [4369] = 4369, - [4370] = 4370, - [4371] = 877, + [4369] = 929, + [4370] = 930, + [4371] = 4371, [4372] = 4372, - [4373] = 4145, - [4374] = 897, - [4375] = 907, - [4376] = 4376, - [4377] = 4377, - [4378] = 4378, - [4379] = 4379, - [4380] = 4380, - [4381] = 4381, + [4373] = 4373, + [4374] = 4374, + [4375] = 4375, + [4376] = 804, + [4377] = 934, + [4378] = 935, + [4379] = 3966, + [4380] = 4124, + [4381] = 4125, [4382] = 4382, [4383] = 4383, - [4384] = 4382, + [4384] = 4384, [4385] = 4385, [4386] = 4386, [4387] = 4387, - [4388] = 4382, + [4388] = 4388, [4389] = 4389, - [4390] = 4390, - [4391] = 4391, - [4392] = 4380, - [4393] = 4390, + [4390] = 936, + [4391] = 942, + [4392] = 4392, + [4393] = 4393, [4394] = 4394, - [4395] = 4381, - [4396] = 4380, - [4397] = 4387, - [4398] = 4398, + [4395] = 4076, + [4396] = 4396, + [4397] = 4397, + [4398] = 4140, [4399] = 4399, [4400] = 4400, [4401] = 4401, - [4402] = 4394, - [4403] = 4403, - [4404] = 4390, - [4405] = 4387, + [4402] = 4402, + [4403] = 3973, + [4404] = 4404, + [4405] = 4405, [4406] = 4406, - [4407] = 4407, + [4407] = 912, [4408] = 4408, [4409] = 4409, [4410] = 4410, - [4411] = 4380, - [4412] = 4394, - [4413] = 4413, - [4414] = 4414, - [4415] = 4391, - [4416] = 4416, - [4417] = 3792, + [4411] = 4384, + [4412] = 4412, + [4413] = 3967, + [4414] = 917, + [4415] = 4415, + [4416] = 863, + [4417] = 4417, [4418] = 4418, [4419] = 4419, [4420] = 4420, - [4421] = 4389, + [4421] = 4421, [4422] = 4422, [4423] = 4423, [4424] = 4424, - [4425] = 3722, + [4425] = 4425, [4426] = 4426, [4427] = 4427, - [4428] = 4413, - [4429] = 4408, - [4430] = 4413, + [4428] = 4428, + [4429] = 4429, + [4430] = 4430, [4431] = 4431, - [4432] = 4409, - [4433] = 4391, - [4434] = 4387, - [4435] = 4409, - [4436] = 4436, - [4437] = 4391, - [4438] = 4413, + [4432] = 4432, + [4433] = 4433, + [4434] = 4434, + [4435] = 4435, + [4436] = 4434, + [4437] = 4437, + [4438] = 4438, [4439] = 4439, - [4440] = 4440, - [4441] = 4441, + [4440] = 3774, + [4441] = 3821, [4442] = 4442, - [4443] = 4381, + [4443] = 4423, [4444] = 4444, [4445] = 4445, - [4446] = 4446, + [4446] = 4432, [4447] = 4447, - [4448] = 4420, - [4449] = 4439, - [4450] = 4385, - [4451] = 4416, - [4452] = 4381, - [4453] = 4390, - [4454] = 4391, - [4455] = 4455, - [4456] = 4381, - [4457] = 3807, - [4458] = 4458, + [4448] = 4442, + [4449] = 4449, + [4450] = 4450, + [4451] = 4451, + [4452] = 4433, + [4453] = 4453, + [4454] = 4442, + [4455] = 4433, + [4456] = 4456, + [4457] = 4430, + [4458] = 4428, [4459] = 4459, - [4460] = 4427, - [4461] = 4409, - [4462] = 4462, - [4463] = 4444, - [4464] = 4426, - [4465] = 4394, - [4466] = 4381, - [4467] = 4467, - [4468] = 4382, - [4469] = 4469, - [4470] = 4413, - [4471] = 4390, - [4472] = 4439, - [4473] = 4420, - [4474] = 4439, - [4475] = 4407, - [4476] = 4394, - [4477] = 4387, - [4478] = 4381, - [4479] = 4406, - [4480] = 4480, + [4460] = 4460, + [4461] = 4461, + [4462] = 4434, + [4463] = 4432, + [4464] = 4431, + [4465] = 4434, + [4466] = 4466, + [4467] = 4432, + [4468] = 4425, + [4469] = 3816, + [4470] = 4461, + [4471] = 4471, + [4472] = 4472, + [4473] = 4473, + [4474] = 4431, + [4475] = 4475, + [4476] = 4433, + [4477] = 4473, + [4478] = 4478, + [4479] = 4423, + [4480] = 4435, [4481] = 4481, - [4482] = 4380, + [4482] = 4466, [4483] = 4483, [4484] = 4484, - [4485] = 4485, - [4486] = 4409, + [4485] = 4425, + [4486] = 4423, [4487] = 4487, [4488] = 4488, - [4489] = 4420, - [4490] = 4391, - [4491] = 4491, - [4492] = 4420, - [4493] = 4390, - [4494] = 4494, - [4495] = 4495, - [4496] = 4380, - [4497] = 4420, - [4498] = 4391, - [4499] = 4499, - [4500] = 4382, - [4501] = 4413, - [4502] = 4382, - [4503] = 4439, - [4504] = 4413, + [4489] = 4466, + [4490] = 4466, + [4491] = 4423, + [4492] = 4423, + [4493] = 4428, + [4494] = 4425, + [4495] = 4442, + [4496] = 4437, + [4497] = 4433, + [4498] = 4442, + [4499] = 4432, + [4500] = 4423, + [4501] = 4466, + [4502] = 4425, + [4503] = 4503, + [4504] = 4428, [4505] = 4505, [4506] = 4459, - [4507] = 4439, - [4508] = 4439, - [4509] = 4390, - [4510] = 4420, - [4511] = 4380, - [4512] = 4394, - [4513] = 4394, + [4507] = 4449, + [4508] = 4447, + [4509] = 4431, + [4510] = 4510, + [4511] = 4466, + [4512] = 4442, + [4513] = 4425, [4514] = 4514, - [4515] = 4458, - [4516] = 4516, - [4517] = 4517, - [4518] = 4518, - [4519] = 4519, - [4520] = 4520, + [4515] = 4433, + [4516] = 4433, + [4517] = 4450, + [4518] = 4466, + [4519] = 4434, + [4520] = 4425, [4521] = 4521, - [4522] = 4522, - [4523] = 4523, - [4524] = 4524, + [4522] = 4473, + [4523] = 4431, + [4524] = 4431, [4525] = 4525, - [4526] = 4526, - [4527] = 4527, + [4526] = 4428, + [4527] = 4473, [4528] = 4528, - [4529] = 4529, - [4530] = 4530, + [4529] = 4442, + [4530] = 4473, [4531] = 4531, [4532] = 4532, - [4533] = 4533, + [4533] = 4461, [4534] = 4534, [4535] = 4535, [4536] = 4536, - [4537] = 4537, - [4538] = 4538, - [4539] = 4539, - [4540] = 4540, - [4541] = 4541, + [4537] = 4438, + [4538] = 4451, + [4539] = 4453, + [4540] = 4432, + [4541] = 4432, [4542] = 4542, - [4543] = 4543, - [4544] = 4544, + [4543] = 4434, + [4544] = 4434, [4545] = 4545, - [4546] = 4546, - [4547] = 4547, - [4548] = 4548, - [4549] = 4549, + [4546] = 4473, + [4547] = 4461, + [4548] = 4460, + [4549] = 4461, [4550] = 4550, - [4551] = 4551, + [4551] = 4473, [4552] = 4552, [4553] = 4553, [4554] = 4554, @@ -9034,13 +9034,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4559] = 4559, [4560] = 4560, [4561] = 4561, - [4562] = 4562, + [4562] = 3717, [4563] = 4563, [4564] = 4564, [4565] = 4565, [4566] = 4566, [4567] = 4567, - [4568] = 4540, + [4568] = 4568, [4569] = 4569, [4570] = 4570, [4571] = 4571, @@ -9050,7 +9050,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4575] = 4575, [4576] = 4576, [4577] = 4577, - [4578] = 4531, + [4578] = 4578, [4579] = 4579, [4580] = 4580, [4581] = 4581, @@ -9058,77 +9058,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4583] = 4583, [4584] = 4584, [4585] = 4585, - [4586] = 4540, - [4587] = 4541, - [4588] = 4542, + [4586] = 4586, + [4587] = 4556, + [4588] = 4561, [4589] = 4589, - [4590] = 4544, - [4591] = 4545, + [4590] = 4590, + [4591] = 4591, [4592] = 4592, [4593] = 4593, - [4594] = 4533, - [4595] = 4537, - [4596] = 4543, - [4597] = 4553, + [4594] = 4594, + [4595] = 4595, + [4596] = 4596, + [4597] = 4597, [4598] = 4598, - [4599] = 4552, + [4599] = 4599, [4600] = 4600, [4601] = 4601, - [4602] = 4554, + [4602] = 4602, [4603] = 4603, [4604] = 4604, [4605] = 4605, [4606] = 4606, [4607] = 4607, - [4608] = 4608, + [4608] = 4566, [4609] = 4609, [4610] = 4610, [4611] = 4611, [4612] = 4612, - [4613] = 4613, + [4613] = 4582, [4614] = 4614, [4615] = 4615, [4616] = 4616, [4617] = 4617, [4618] = 4618, [4619] = 4619, - [4620] = 4552, - [4621] = 4621, - [4622] = 4541, + [4620] = 3749, + [4621] = 4233, + [4622] = 4569, [4623] = 4623, [4624] = 4624, [4625] = 4625, [4626] = 4626, - [4627] = 4627, + [4627] = 4582, [4628] = 4628, - [4629] = 4629, - [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4633, + [4629] = 4583, + [4630] = 4584, + [4631] = 4569, + [4632] = 4556, + [4633] = 4561, [4634] = 4634, - [4635] = 4635, - [4636] = 4542, + [4635] = 4606, + [4636] = 4636, [4637] = 4637, - [4638] = 4544, - [4639] = 4545, + [4638] = 4638, + [4639] = 4639, [4640] = 4640, [4641] = 4641, - [4642] = 4642, + [4642] = 4593, [4643] = 4643, - [4644] = 4554, - [4645] = 4645, + [4644] = 4644, + [4645] = 4596, [4646] = 4646, - [4647] = 4554, - [4648] = 4648, - [4649] = 4552, - [4650] = 4531, - [4651] = 4148, + [4647] = 4647, + [4648] = 4570, + [4649] = 4649, + [4650] = 4571, + [4651] = 4651, [4652] = 4652, - [4653] = 4544, - [4654] = 4545, + [4653] = 4653, + [4654] = 4654, [4655] = 4655, - [4656] = 4554, + [4656] = 4656, [4657] = 4657, [4658] = 4658, [4659] = 4659, @@ -9137,63 +9137,63 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4662] = 4662, [4663] = 4663, [4664] = 4664, - [4665] = 4665, - [4666] = 4666, - [4667] = 4667, - [4668] = 4668, + [4665] = 4647, + [4666] = 4651, + [4667] = 4585, + [4668] = 4615, [4669] = 4669, - [4670] = 4670, + [4670] = 4593, [4671] = 4671, [4672] = 4672, [4673] = 4673, [4674] = 4674, - [4675] = 4675, - [4676] = 4676, - [4677] = 4677, + [4675] = 4584, + [4676] = 4556, + [4677] = 4561, [4678] = 4678, [4679] = 4679, - [4680] = 4680, - [4681] = 4531, + [4680] = 4596, + [4681] = 4681, [4682] = 4682, [4683] = 4683, [4684] = 4684, [4685] = 4685, - [4686] = 4671, - [4687] = 4663, - [4688] = 4643, + [4686] = 4686, + [4687] = 4687, + [4688] = 4688, [4689] = 4689, [4690] = 4690, - [4691] = 4691, - [4692] = 4646, - [4693] = 4542, + [4691] = 4556, + [4692] = 4561, + [4693] = 4596, [4694] = 4694, [4695] = 4695, [4696] = 4696, - [4697] = 790, - [4698] = 4554, + [4697] = 4697, + [4698] = 4698, [4699] = 4699, [4700] = 4700, [4701] = 4701, [4702] = 4702, - [4703] = 4703, + [4703] = 4583, [4704] = 4704, [4705] = 4705, [4706] = 4706, [4707] = 4707, - [4708] = 4541, + [4708] = 4708, [4709] = 4709, [4710] = 4710, [4711] = 4711, [4712] = 4712, [4713] = 4713, - [4714] = 4555, - [4715] = 4715, + [4714] = 4714, + [4715] = 4582, [4716] = 4716, [4717] = 4717, [4718] = 4718, [4719] = 4719, - [4720] = 4720, - [4721] = 4576, + [4720] = 4583, + [4721] = 4721, [4722] = 4722, [4723] = 4723, [4724] = 4724, @@ -9202,22 +9202,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4727] = 4727, [4728] = 4728, [4729] = 4729, - [4730] = 4730, + [4730] = 4584, [4731] = 4731, - [4732] = 4732, - [4733] = 4524, + [4732] = 4569, + [4733] = 4733, [4734] = 4734, [4735] = 4735, [4736] = 4736, [4737] = 4737, - [4738] = 4738, + [4738] = 4649, [4739] = 4739, - [4740] = 4685, + [4740] = 4194, [4741] = 4741, [4742] = 4742, [4743] = 4743, - [4744] = 4734, - [4745] = 4736, + [4744] = 4718, + [4745] = 4745, [4746] = 4746, [4747] = 4747, [4748] = 4748, @@ -9225,11 +9225,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4750] = 4750, [4751] = 4751, [4752] = 4752, - [4753] = 4753, - [4754] = 4754, + [4753] = 4556, + [4754] = 4561, [4755] = 4755, [4756] = 4756, - [4757] = 4757, + [4757] = 784, [4758] = 4758, [4759] = 4759, [4760] = 4760, @@ -9245,11 +9245,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4770] = 4770, [4771] = 4771, [4772] = 4772, - [4773] = 4773, + [4773] = 4583, [4774] = 4774, [4775] = 4775, [4776] = 4776, - [4777] = 4777, + [4777] = 3741, [4778] = 4778, [4779] = 4779, [4780] = 4780, @@ -9261,45 +9261,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4786] = 4786, [4787] = 4787, [4788] = 4788, - [4789] = 4544, - [4790] = 4545, + [4789] = 4789, + [4790] = 4790, [4791] = 4791, [4792] = 4792, [4793] = 4793, [4794] = 4794, [4795] = 4795, [4796] = 4796, - [4797] = 4672, + [4797] = 4797, [4798] = 4798, [4799] = 4799, [4800] = 4800, [4801] = 4801, - [4802] = 4802, - [4803] = 4803, + [4802] = 4201, + [4803] = 4681, [4804] = 4804, - [4805] = 4805, - [4806] = 4806, + [4805] = 4584, + [4806] = 4565, [4807] = 4807, - [4808] = 4531, + [4808] = 4808, [4809] = 4809, - [4810] = 4792, + [4810] = 4810, [4811] = 4811, - [4812] = 4812, + [4812] = 4593, [4813] = 4813, - [4814] = 3559, - [4815] = 4802, + [4814] = 4814, + [4815] = 4815, [4816] = 4816, - [4817] = 4817, + [4817] = 4682, [4818] = 4818, - [4819] = 4819, + [4819] = 4762, [4820] = 4820, [4821] = 4821, [4822] = 4822, - [4823] = 4823, - [4824] = 4824, + [4823] = 4596, + [4824] = 4739, [4825] = 4825, [4826] = 4826, - [4827] = 4827, + [4827] = 4706, [4828] = 4828, [4829] = 4829, [4830] = 4830, @@ -9321,13 +9321,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4846] = 4846, [4847] = 4847, [4848] = 4848, - [4849] = 4849, + [4849] = 4569, [4850] = 4850, - [4851] = 4851, + [4851] = 4653, [4852] = 4852, - [4853] = 4853, + [4853] = 4844, [4854] = 4854, - [4855] = 4855, + [4855] = 4845, [4856] = 4856, [4857] = 4857, [4858] = 4858, @@ -9350,28 +9350,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4875] = 4875, [4876] = 4876, [4877] = 4877, - [4878] = 4531, + [4878] = 4878, [4879] = 4879, - [4880] = 4880, + [4880] = 1603, [4881] = 4881, [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 4885, + [4885] = 1612, [4886] = 4886, [4887] = 4887, [4888] = 4888, [4889] = 4889, [4890] = 4890, - [4891] = 4288, + [4891] = 4891, [4892] = 4892, [4893] = 4893, [4894] = 4894, [4895] = 4895, [4896] = 4896, - [4897] = 3807, + [4897] = 4897, [4898] = 4898, - [4899] = 4621, + [4899] = 4899, [4900] = 4900, [4901] = 4901, [4902] = 4902, @@ -9380,9 +9380,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4905] = 4905, [4906] = 4906, [4907] = 4907, - [4908] = 4668, + [4908] = 4908, [4909] = 4909, - [4910] = 4576, + [4910] = 4910, [4911] = 4911, [4912] = 4912, [4913] = 4913, @@ -9397,8 +9397,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4922] = 4922, [4923] = 4923, [4924] = 4924, - [4925] = 4734, - [4926] = 4926, + [4925] = 4925, + [4926] = 4820, [4927] = 4927, [4928] = 4928, [4929] = 4929, @@ -9407,12 +9407,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4932] = 4932, [4933] = 4933, [4934] = 4934, - [4935] = 3668, + [4935] = 4935, [4936] = 4936, [4937] = 4937, - [4938] = 4938, - [4939] = 4621, - [4940] = 4940, + [4938] = 4822, + [4939] = 4939, + [4940] = 4596, [4941] = 4941, [4942] = 4942, [4943] = 4943, @@ -9422,98 +9422,98 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4947] = 4947, [4948] = 4948, [4949] = 4949, - [4950] = 4531, - [4951] = 4951, + [4950] = 4950, + [4951] = 3821, [4952] = 4952, [4953] = 4953, [4954] = 4954, [4955] = 4955, - [4956] = 4540, + [4956] = 4956, [4957] = 4957, [4958] = 4958, - [4959] = 4806, - [4960] = 4792, - [4961] = 4812, - [4962] = 4712, + [4959] = 4959, + [4960] = 4960, + [4961] = 4961, + [4962] = 4962, [4963] = 4963, - [4964] = 4869, - [4965] = 4812, - [4966] = 4716, + [4964] = 4964, + [4965] = 4965, + [4966] = 4966, [4967] = 4967, [4968] = 4968, - [4969] = 4927, + [4969] = 4969, [4970] = 4970, - [4971] = 4946, + [4971] = 4971, [4972] = 4972, [4973] = 4973, [4974] = 4974, - [4975] = 4955, + [4975] = 4975, [4976] = 4976, [4977] = 4977, - [4978] = 4978, - [4979] = 4979, - [4980] = 4980, - [4981] = 4541, + [4978] = 4594, + [4979] = 3724, + [4980] = 4679, + [4981] = 4592, [4982] = 4982, [4983] = 4983, [4984] = 4984, [4985] = 4985, [4986] = 4986, - [4987] = 4879, + [4987] = 4987, [4988] = 4988, [4989] = 4989, - [4990] = 4890, + [4990] = 4595, [4991] = 4991, [4992] = 4992, [4993] = 4993, - [4994] = 4994, + [4994] = 4566, [4995] = 4995, - [4996] = 4678, - [4997] = 4700, - [4998] = 4998, - [4999] = 4540, + [4996] = 4996, + [4997] = 4997, + [4998] = 4637, + [4999] = 4570, [5000] = 5000, - [5001] = 4541, + [5001] = 3816, [5002] = 5002, [5003] = 5003, - [5004] = 5004, - [5005] = 5000, - [5006] = 4542, + [5004] = 4592, + [5005] = 5005, + [5006] = 5006, [5007] = 5007, - [5008] = 4544, + [5008] = 5008, [5009] = 5009, [5010] = 5010, - [5011] = 4545, + [5011] = 5011, [5012] = 5012, - [5013] = 3707, - [5014] = 4869, + [5013] = 5013, + [5014] = 5014, [5015] = 5015, - [5016] = 4542, + [5016] = 5016, [5017] = 5017, [5018] = 5018, - [5019] = 5003, + [5019] = 4599, [5020] = 5020, [5021] = 5021, - [5022] = 4541, - [5023] = 4977, + [5022] = 4600, + [5023] = 4727, [5024] = 5024, - [5025] = 5025, - [5026] = 3792, - [5027] = 4533, + [5025] = 4569, + [5026] = 5026, + [5027] = 5027, [5028] = 5028, [5029] = 5029, - [5030] = 4537, + [5030] = 5030, [5031] = 5031, - [5032] = 4543, - [5033] = 4553, - [5034] = 5034, - [5035] = 5035, + [5032] = 4647, + [5033] = 5033, + [5034] = 4615, + [5035] = 4846, [5036] = 5036, [5037] = 5037, - [5038] = 4713, - [5039] = 4564, - [5040] = 5040, - [5041] = 4566, + [5038] = 5038, + [5039] = 5039, + [5040] = 4679, + [5041] = 4569, [5042] = 5042, [5043] = 5043, [5044] = 5044, @@ -9524,8 +9524,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5049] = 5049, [5050] = 5050, [5051] = 5051, - [5052] = 4552, - [5053] = 5053, + [5052] = 5052, + [5053] = 4582, [5054] = 5054, [5055] = 5055, [5056] = 5056, @@ -9533,30 +9533,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5058] = 5058, [5059] = 5059, [5060] = 5060, - [5061] = 5061, - [5062] = 4554, - [5063] = 5063, + [5061] = 4876, + [5062] = 4583, + [5063] = 4583, [5064] = 5064, - [5065] = 5065, + [5065] = 4584, [5066] = 5066, [5067] = 5067, [5068] = 5068, - [5069] = 5069, + [5069] = 4556, [5070] = 5070, - [5071] = 5071, + [5071] = 4561, [5072] = 5072, - [5073] = 5073, + [5073] = 4638, [5074] = 5074, - [5075] = 1626, - [5076] = 1545, - [5077] = 5077, - [5078] = 5078, + [5075] = 5075, + [5076] = 5076, + [5077] = 4637, + [5078] = 4638, [5079] = 5079, [5080] = 5080, [5081] = 5081, - [5082] = 5082, + [5082] = 4639, [5083] = 5083, - [5084] = 5084, + [5084] = 4640, [5085] = 5085, [5086] = 5086, [5087] = 5087, @@ -9568,28 +9568,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5093] = 5093, [5094] = 5094, [5095] = 5095, - [5096] = 3722, + [5096] = 5096, [5097] = 5097, [5098] = 5098, - [5099] = 5099, + [5099] = 4593, [5100] = 5100, [5101] = 5101, [5102] = 5102, [5103] = 5103, [5104] = 5104, [5105] = 5105, - [5106] = 4164, + [5106] = 5106, [5107] = 5107, - [5108] = 4780, - [5109] = 5109, - [5110] = 5110, + [5108] = 4639, + [5109] = 4596, + [5110] = 4717, [5111] = 5111, [5112] = 5112, [5113] = 5113, [5114] = 5114, - [5115] = 4544, - [5116] = 4545, - [5117] = 5117, + [5115] = 5115, + [5116] = 4787, + [5117] = 4788, [5118] = 5118, [5119] = 5119, [5120] = 5120, @@ -9597,7 +9597,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5122] = 5122, [5123] = 5123, [5124] = 5124, - [5125] = 3547, + [5125] = 5125, [5126] = 5126, [5127] = 5127, [5128] = 5128, @@ -9605,8 +9605,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5130] = 5130, [5131] = 5131, [5132] = 5132, - [5133] = 5133, - [5134] = 2650, + [5133] = 3774, + [5134] = 5134, [5135] = 5135, [5136] = 5136, [5137] = 5137, @@ -9619,14 +9619,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5144] = 5144, [5145] = 5145, [5146] = 5146, - [5147] = 2672, + [5147] = 5147, [5148] = 5148, - [5149] = 5149, + [5149] = 4749, [5150] = 5150, [5151] = 5151, [5152] = 5152, - [5153] = 5153, - [5154] = 5130, + [5153] = 4640, + [5154] = 5154, [5155] = 5155, [5156] = 5156, [5157] = 5157, @@ -9640,708 +9640,748 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5165] = 5165, [5166] = 5166, [5167] = 5167, - [5168] = 5168, - [5169] = 5169, + [5168] = 2667, + [5169] = 2668, [5170] = 5170, [5171] = 5171, [5172] = 5172, - [5173] = 5130, - [5174] = 5163, + [5173] = 5173, + [5174] = 5174, [5175] = 5175, - [5176] = 5166, - [5177] = 5177, + [5176] = 5176, + [5177] = 2689, [5178] = 5178, - [5179] = 5167, - [5180] = 5180, + [5179] = 5179, + [5180] = 2690, [5181] = 5181, [5182] = 5182, [5183] = 5183, [5184] = 5184, - [5185] = 5185, + [5185] = 5184, [5186] = 5186, [5187] = 5187, [5188] = 5188, [5189] = 5189, - [5190] = 5190, + [5190] = 5174, [5191] = 5191, - [5192] = 5192, - [5193] = 3811, - [5194] = 1674, - [5195] = 1675, - [5196] = 3862, + [5192] = 2703, + [5193] = 5193, + [5194] = 5194, + [5195] = 5195, + [5196] = 5196, [5197] = 5197, - [5198] = 5182, - [5199] = 3886, - [5200] = 5184, - [5201] = 5149, - [5202] = 5202, - [5203] = 5161, - [5204] = 5204, - [5205] = 5146, - [5206] = 5202, - [5207] = 5172, - [5208] = 5163, + [5198] = 5198, + [5199] = 5199, + [5200] = 5188, + [5201] = 5201, + [5202] = 5191, + [5203] = 5203, + [5204] = 5176, + [5205] = 2664, + [5206] = 5206, + [5207] = 2665, + [5208] = 5208, [5209] = 5209, - [5210] = 5167, - [5211] = 5189, - [5212] = 5212, + [5210] = 5210, + [5211] = 5201, + [5212] = 5206, [5213] = 5213, - [5214] = 2655, + [5214] = 5210, [5215] = 5215, [5216] = 5216, - [5217] = 5127, + [5217] = 5217, [5218] = 5218, [5219] = 5219, - [5220] = 5220, - [5221] = 2657, - [5222] = 5168, + [5220] = 5216, + [5221] = 5221, + [5222] = 5222, [5223] = 5223, - [5224] = 5224, + [5224] = 5219, [5225] = 5225, [5226] = 5226, [5227] = 5227, [5228] = 5228, - [5229] = 5138, + [5229] = 5229, [5230] = 5230, - [5231] = 5219, + [5231] = 5231, [5232] = 5232, [5233] = 5233, [5234] = 5234, [5235] = 5235, [5236] = 5236, - [5237] = 5183, - [5238] = 2662, + [5237] = 5237, + [5238] = 5238, [5239] = 5239, - [5240] = 5128, - [5241] = 5228, - [5242] = 5133, - [5243] = 5146, + [5240] = 5195, + [5241] = 5241, + [5242] = 5242, + [5243] = 5243, [5244] = 5244, [5245] = 5245, [5246] = 5246, [5247] = 5247, - [5248] = 5146, - [5249] = 5233, - [5250] = 5187, - [5251] = 5146, - [5252] = 5163, - [5253] = 5167, - [5254] = 5190, - [5255] = 5144, + [5248] = 5248, + [5249] = 5249, + [5250] = 5184, + [5251] = 5251, + [5252] = 5208, + [5253] = 5253, + [5254] = 5213, + [5255] = 5255, [5256] = 5256, [5257] = 5257, - [5258] = 5258, - [5259] = 2708, + [5258] = 5242, + [5259] = 5259, [5260] = 5260, - [5261] = 5137, - [5262] = 2693, - [5263] = 5263, - [5264] = 5162, + [5261] = 5261, + [5262] = 5262, + [5263] = 1706, + [5264] = 5264, [5265] = 5265, - [5266] = 5143, - [5267] = 5267, - [5268] = 5145, - [5269] = 5162, + [5266] = 5266, + [5267] = 5195, + [5268] = 5208, + [5269] = 5269, [5270] = 5270, - [5271] = 5191, + [5271] = 5167, [5272] = 5272, - [5273] = 5143, + [5273] = 5273, [5274] = 5274, - [5275] = 5166, - [5276] = 5224, + [5275] = 5275, + [5276] = 5276, [5277] = 5277, [5278] = 5278, - [5279] = 5184, + [5279] = 5279, [5280] = 5280, - [5281] = 5190, - [5282] = 5191, - [5283] = 5283, + [5281] = 5281, + [5282] = 5282, + [5283] = 5187, [5284] = 5284, - [5285] = 5285, - [5286] = 5280, + [5285] = 5197, + [5286] = 5203, [5287] = 5287, - [5288] = 5150, - [5289] = 5289, - [5290] = 5290, - [5291] = 5158, - [5292] = 5163, - [5293] = 5293, - [5294] = 5283, + [5288] = 5184, + [5289] = 5193, + [5290] = 5262, + [5291] = 5208, + [5292] = 5292, + [5293] = 5213, + [5294] = 5213, [5295] = 5295, - [5296] = 5287, - [5297] = 2710, - [5298] = 5181, - [5299] = 5175, - [5300] = 5227, - [5301] = 5155, + [5296] = 5296, + [5297] = 5184, + [5298] = 5298, + [5299] = 5187, + [5300] = 5197, + [5301] = 5203, [5302] = 5302, [5303] = 5303, [5304] = 5304, [5305] = 5305, - [5306] = 3825, + [5306] = 5195, [5307] = 5307, - [5308] = 5162, + [5308] = 3869, [5309] = 5309, [5310] = 5310, - [5311] = 5143, + [5311] = 5311, [5312] = 5312, [5313] = 5313, [5314] = 5314, [5315] = 5315, - [5316] = 2669, - [5317] = 5191, - [5318] = 5318, - [5319] = 5319, - [5320] = 5283, - [5321] = 5130, + [5316] = 5255, + [5317] = 5274, + [5318] = 1675, + [5319] = 1678, + [5320] = 5265, + [5321] = 5321, [5322] = 5322, - [5323] = 5283, + [5323] = 5323, [5324] = 5324, - [5325] = 5166, - [5326] = 5326, - [5327] = 5130, - [5328] = 5233, + [5325] = 3871, + [5326] = 5276, + [5327] = 5187, + [5328] = 5281, [5329] = 5329, [5330] = 5330, - [5331] = 5331, - [5332] = 5188, + [5331] = 5217, + [5332] = 5195, [5333] = 5333, [5334] = 5334, - [5335] = 5335, + [5335] = 5197, [5336] = 5336, [5337] = 5337, - [5338] = 5184, - [5339] = 5190, - [5340] = 5303, - [5341] = 5304, + [5338] = 5338, + [5339] = 5282, + [5340] = 5172, + [5341] = 3872, [5342] = 5342, - [5343] = 5343, - [5344] = 5344, - [5345] = 2712, - [5346] = 5346, - [5347] = 5302, - [5348] = 2653, - [5349] = 5349, + [5343] = 2720, + [5344] = 5338, + [5345] = 5255, + [5346] = 5203, + [5347] = 5347, + [5348] = 5348, + [5349] = 5208, [5350] = 5350, - [5351] = 5218, - [5352] = 5166, - [5353] = 5353, - [5354] = 5184, + [5351] = 5351, + [5352] = 5197, + [5353] = 5203, + [5354] = 5354, [5355] = 5355, [5356] = 5356, - [5357] = 5190, - [5358] = 5358, - [5359] = 5359, - [5360] = 5360, - [5361] = 5146, - [5362] = 5312, - [5363] = 5315, + [5357] = 5357, + [5358] = 5222, + [5359] = 5223, + [5360] = 5238, + [5361] = 5221, + [5362] = 5362, + [5363] = 5251, [5364] = 5364, - [5365] = 5318, - [5366] = 5324, - [5367] = 5367, - [5368] = 2690, - [5369] = 5326, + [5365] = 2670, + [5366] = 5256, + [5367] = 2671, + [5368] = 5302, + [5369] = 5257, [5370] = 5370, - [5371] = 5197, - [5372] = 5344, + [5371] = 2708, + [5372] = 5372, [5373] = 5373, - [5374] = 5183, - [5375] = 5163, - [5376] = 5293, - [5377] = 5224, - [5378] = 5167, - [5379] = 5379, - [5380] = 5162, + [5374] = 5374, + [5375] = 2721, + [5376] = 5376, + [5377] = 5377, + [5378] = 5378, + [5379] = 5295, + [5380] = 5173, [5381] = 5381, - [5382] = 5143, - [5383] = 1659, + [5382] = 5236, + [5383] = 5163, [5384] = 5384, - [5385] = 5385, - [5386] = 5191, - [5387] = 5167, - [5388] = 5283, - [5389] = 2659, - [5390] = 5390, - [5391] = 5135, - [5392] = 2660, + [5385] = 5199, + [5386] = 5278, + [5387] = 5260, + [5388] = 5388, + [5389] = 5389, + [5390] = 5292, + [5391] = 5391, + [5392] = 5312, [5393] = 5393, - [5394] = 5192, - [5395] = 5395, - [5396] = 5130, - [5397] = 5227, - [5398] = 5398, - [5399] = 5390, - [5400] = 5400, + [5394] = 5266, + [5395] = 5275, + [5396] = 5396, + [5397] = 5397, + [5398] = 5184, + [5399] = 5227, + [5400] = 5178, [5401] = 5401, - [5402] = 5402, - [5403] = 5364, - [5404] = 5274, - [5405] = 5310, - [5406] = 5406, - [5407] = 5239, - [5408] = 5204, - [5409] = 5175, - [5410] = 5228, - [5411] = 5411, - [5412] = 5412, - [5413] = 5413, - [5414] = 5234, - [5415] = 5415, - [5416] = 2687, + [5402] = 5232, + [5403] = 5370, + [5404] = 5213, + [5405] = 2694, + [5406] = 5187, + [5407] = 5208, + [5408] = 5197, + [5409] = 5255, + [5410] = 5203, + [5411] = 5351, + [5412] = 5265, + [5413] = 5276, + [5414] = 5281, + [5415] = 2680, + [5416] = 5265, [5417] = 5417, [5418] = 5418, - [5419] = 5419, - [5420] = 2707, - [5421] = 5235, - [5422] = 5395, - [5423] = 5423, + [5419] = 5336, + [5420] = 5420, + [5421] = 5164, + [5422] = 5213, + [5423] = 5163, [5424] = 5424, - [5425] = 5424, - [5426] = 5426, - [5427] = 5130, - [5428] = 5428, - [5429] = 5236, - [5430] = 5303, - [5431] = 5431, - [5432] = 5212, - [5433] = 2695, - [5434] = 2688, - [5435] = 5426, - [5436] = 5436, + [5425] = 5292, + [5426] = 5276, + [5427] = 2679, + [5428] = 5255, + [5429] = 5429, + [5430] = 5265, + [5431] = 5276, + [5432] = 5165, + [5433] = 5433, + [5434] = 5354, + [5435] = 5281, + [5436] = 5199, [5437] = 5437, - [5438] = 5213, - [5439] = 5439, + [5438] = 5195, + [5439] = 2681, [5440] = 5440, - [5441] = 2696, - [5442] = 5440, + [5441] = 5348, + [5442] = 5373, [5443] = 5443, - [5444] = 5180, - [5445] = 5186, - [5446] = 5215, - [5447] = 5346, - [5448] = 5216, - [5449] = 5418, - [5450] = 5220, - [5451] = 5350, - [5452] = 5223, - [5453] = 5247, - [5454] = 5146, - [5455] = 5158, - [5456] = 5163, - [5457] = 5423, - [5458] = 5344, - [5459] = 5167, - [5460] = 5460, - [5461] = 5428, + [5444] = 5195, + [5445] = 5196, + [5446] = 5347, + [5447] = 3846, + [5448] = 5209, + [5449] = 2675, + [5450] = 5307, + [5451] = 5376, + [5452] = 5172, + [5453] = 5270, + [5454] = 5454, + [5455] = 5455, + [5456] = 5456, + [5457] = 5259, + [5458] = 2676, + [5459] = 5459, + [5460] = 2716, + [5461] = 2717, [5462] = 5462, - [5463] = 2702, - [5464] = 2704, - [5465] = 2668, - [5466] = 5466, + [5463] = 5463, + [5464] = 5322, + [5465] = 2677, + [5466] = 5243, [5467] = 5467, - [5468] = 5468, + [5468] = 5273, [5469] = 5469, - [5470] = 5470, + [5470] = 2678, [5471] = 5471, - [5472] = 5472, - [5473] = 5471, + [5472] = 5277, + [5473] = 5188, [5474] = 5474, [5475] = 5475, [5476] = 5476, - [5477] = 5466, - [5478] = 5472, - [5479] = 5479, + [5477] = 5477, + [5478] = 5215, + [5479] = 5307, [5480] = 5480, - [5481] = 5481, - [5482] = 5482, - [5483] = 5469, - [5484] = 5484, - [5485] = 5467, - [5486] = 5474, - [5487] = 5487, - [5488] = 5488, - [5489] = 5489, - [5490] = 5490, - [5491] = 5472, - [5492] = 5492, - [5493] = 5493, - [5494] = 5482, - [5495] = 5495, - [5496] = 5496, - [5497] = 5497, - [5498] = 5498, - [5499] = 5469, + [5481] = 5311, + [5482] = 5334, + [5483] = 5483, + [5484] = 5217, + [5485] = 5485, + [5486] = 5486, + [5487] = 5253, + [5488] = 5463, + [5489] = 5337, + [5490] = 5184, + [5491] = 5491, + [5492] = 5348, + [5493] = 5208, + [5494] = 5281, + [5495] = 5218, + [5496] = 5232, + [5497] = 5213, + [5498] = 5342, + [5499] = 5499, [5500] = 5500, - [5501] = 5501, + [5501] = 5350, [5502] = 5502, - [5503] = 5493, - [5504] = 5480, - [5505] = 5469, + [5503] = 5391, + [5504] = 5397, + [5505] = 5187, [5506] = 5506, - [5507] = 5476, - [5508] = 5466, + [5507] = 5507, + [5508] = 5508, [5509] = 5509, [5510] = 5510, [5511] = 5511, [5512] = 5512, [5513] = 5513, - [5514] = 5512, + [5514] = 5514, [5515] = 5515, - [5516] = 5516, - [5517] = 5495, - [5518] = 5472, - [5519] = 5475, - [5520] = 5495, + [5516] = 5514, + [5517] = 5510, + [5518] = 5518, + [5519] = 5519, + [5520] = 5520, [5521] = 5521, - [5522] = 5492, - [5523] = 5496, - [5524] = 5521, + [5522] = 5522, + [5523] = 5523, + [5524] = 5524, [5525] = 5525, [5526] = 5526, - [5527] = 5475, - [5528] = 5476, - [5529] = 5466, + [5527] = 5527, + [5528] = 5508, + [5529] = 5529, [5530] = 5530, - [5531] = 5479, - [5532] = 5480, - [5533] = 5481, + [5531] = 5531, + [5532] = 5532, + [5533] = 5533, [5534] = 5534, - [5535] = 5474, + [5535] = 5511, [5536] = 5536, - [5537] = 5521, + [5537] = 5537, [5538] = 5538, [5539] = 5539, - [5540] = 5540, - [5541] = 5489, - [5542] = 5542, + [5540] = 5527, + [5541] = 5541, + [5542] = 5507, [5543] = 5543, - [5544] = 5492, + [5544] = 5544, [5545] = 5545, - [5546] = 5546, + [5546] = 5511, [5547] = 5547, [5548] = 5548, - [5549] = 5493, + [5549] = 5549, [5550] = 5550, - [5551] = 5551, - [5552] = 5547, + [5551] = 5508, + [5552] = 5552, [5553] = 5553, [5554] = 5554, - [5555] = 5479, - [5556] = 5493, - [5557] = 5557, - [5558] = 5466, + [5555] = 5518, + [5556] = 5515, + [5557] = 5510, + [5558] = 5558, [5559] = 5559, - [5560] = 5547, - [5561] = 5561, + [5560] = 5560, + [5561] = 5519, [5562] = 5562, - [5563] = 5563, - [5564] = 5471, + [5563] = 5541, + [5564] = 5564, [5565] = 5565, - [5566] = 5566, - [5567] = 5474, - [5568] = 5467, - [5569] = 5475, - [5570] = 5501, - [5571] = 5484, - [5572] = 5521, - [5573] = 5548, - [5574] = 5476, - [5575] = 5513, - [5576] = 5557, - [5577] = 5472, - [5578] = 5480, - [5579] = 5579, - [5580] = 5492, - [5581] = 5559, - [5582] = 5476, + [5566] = 5520, + [5567] = 5515, + [5568] = 5514, + [5569] = 5558, + [5570] = 5518, + [5571] = 5519, + [5572] = 5520, + [5573] = 5573, + [5574] = 5574, + [5575] = 5575, + [5576] = 5576, + [5577] = 5577, + [5578] = 5530, + [5579] = 5565, + [5580] = 5508, + [5581] = 5547, + [5582] = 5510, [5583] = 5583, - [5584] = 5584, - [5585] = 5466, - [5586] = 5480, - [5587] = 5495, + [5584] = 5524, + [5585] = 5530, + [5586] = 5531, + [5587] = 5547, [5588] = 5588, - [5589] = 5479, - [5590] = 5480, - [5591] = 5481, - [5592] = 5521, - [5593] = 5495, - [5594] = 5481, - [5595] = 5595, + [5589] = 5589, + [5590] = 5590, + [5591] = 5520, + [5592] = 5549, + [5593] = 5593, + [5594] = 5576, + [5595] = 5583, [5596] = 5596, - [5597] = 5597, - [5598] = 5479, - [5599] = 5467, - [5600] = 5480, - [5601] = 5481, - [5602] = 5602, + [5597] = 5527, + [5598] = 5598, + [5599] = 5599, + [5600] = 5532, + [5601] = 5596, + [5602] = 5552, [5603] = 5603, [5604] = 5604, [5605] = 5605, - [5606] = 5606, + [5606] = 5509, [5607] = 5607, - [5608] = 5608, + [5608] = 5598, [5609] = 5609, - [5610] = 5489, - [5611] = 5611, + [5610] = 5575, + [5611] = 5596, [5612] = 5612, - [5613] = 5613, - [5614] = 5614, - [5615] = 5489, - [5616] = 5538, - [5617] = 5617, - [5618] = 5469, - [5619] = 5475, + [5613] = 5515, + [5614] = 5533, + [5615] = 5615, + [5616] = 5616, + [5617] = 5514, + [5618] = 5537, + [5619] = 5521, [5620] = 5620, - [5621] = 5548, - [5622] = 5622, - [5623] = 5534, - [5624] = 5497, + [5621] = 5550, + [5622] = 5538, + [5623] = 5539, + [5624] = 5523, [5625] = 5625, - [5626] = 5626, - [5627] = 5482, - [5628] = 5614, - [5629] = 5626, - [5630] = 5470, + [5626] = 5543, + [5627] = 5544, + [5628] = 5628, + [5629] = 5629, + [5630] = 5553, [5631] = 5631, - [5632] = 5547, - [5633] = 5474, - [5634] = 5476, - [5635] = 5635, - [5636] = 5470, - [5637] = 5637, - [5638] = 5638, - [5639] = 5475, - [5640] = 5640, - [5641] = 5596, - [5642] = 5642, + [5632] = 5632, + [5633] = 5564, + [5634] = 5545, + [5635] = 5518, + [5636] = 5636, + [5637] = 5518, + [5638] = 5541, + [5639] = 5519, + [5640] = 5520, + [5641] = 5515, + [5642] = 5514, [5643] = 5643, - [5644] = 5644, - [5645] = 5645, - [5646] = 5469, - [5647] = 5472, - [5648] = 5648, - [5649] = 5553, - [5650] = 5650, - [5651] = 5493, - [5652] = 5617, - [5653] = 5547, - [5654] = 5469, - [5655] = 5482, - [5656] = 5656, - [5657] = 5657, - [5658] = 5489, + [5644] = 5518, + [5645] = 5549, + [5646] = 5519, + [5647] = 5550, + [5648] = 5553, + [5649] = 5508, + [5650] = 5520, + [5651] = 5651, + [5652] = 5508, + [5653] = 5620, + [5654] = 5510, + [5655] = 5655, + [5656] = 5558, + [5657] = 5651, + [5658] = 5576, [5659] = 5659, - [5660] = 5660, - [5661] = 5603, - [5662] = 5553, + [5660] = 5518, + [5661] = 5661, + [5662] = 5662, [5663] = 5663, - [5664] = 5500, - [5665] = 5665, - [5666] = 5515, - [5667] = 5607, - [5668] = 5482, - [5669] = 5510, - [5670] = 5493, - [5671] = 5547, - [5672] = 5596, - [5673] = 5501, - [5674] = 5656, - [5675] = 5501, - [5676] = 5611, - [5677] = 5603, - [5678] = 5622, - [5679] = 5513, - [5680] = 5561, - [5681] = 5681, - [5682] = 5665, - [5683] = 5553, - [5684] = 5540, - [5685] = 5607, - [5686] = 5611, - [5687] = 5511, - [5688] = 5688, - [5689] = 5635, + [5664] = 5534, + [5665] = 5508, + [5666] = 5625, + [5667] = 5541, + [5668] = 5525, + [5669] = 5669, + [5670] = 5589, + [5671] = 5671, + [5672] = 5564, + [5673] = 5573, + [5674] = 5527, + [5675] = 5573, + [5676] = 5507, + [5677] = 5677, + [5678] = 5511, + [5679] = 5547, + [5680] = 5522, + [5681] = 5577, + [5682] = 5575, + [5683] = 5677, + [5684] = 5519, + [5685] = 5685, + [5686] = 5526, + [5687] = 5527, + [5688] = 5575, + [5689] = 5651, [5690] = 5690, - [5691] = 5691, - [5692] = 5645, - [5693] = 5481, - [5694] = 5510, - [5695] = 5642, - [5696] = 5681, - [5697] = 5583, - [5698] = 5492, - [5699] = 5540, - [5700] = 5635, - [5701] = 5497, - [5702] = 5502, + [5691] = 5574, + [5692] = 5519, + [5693] = 5560, + [5694] = 5560, + [5695] = 5577, + [5696] = 5651, + [5697] = 5524, + [5698] = 5698, + [5699] = 5560, + [5700] = 5700, + [5701] = 5574, + [5702] = 5558, [5703] = 5512, - [5704] = 5665, - [5705] = 5648, - [5706] = 5546, - [5707] = 5638, - [5708] = 5489, - [5709] = 5493, - [5710] = 5710, - [5711] = 5547, - [5712] = 5650, - [5713] = 5659, - [5714] = 5660, - [5715] = 5691, - [5716] = 5645, - [5717] = 5583, - [5718] = 5583, - [5719] = 5497, - [5720] = 5502, - [5721] = 5512, - [5722] = 5722, - [5723] = 5562, - [5724] = 5501, - [5725] = 5642, - [5726] = 5565, - [5727] = 5650, - [5728] = 5546, + [5704] = 5704, + [5705] = 5589, + [5706] = 5706, + [5707] = 5707, + [5708] = 5506, + [5709] = 5527, + [5710] = 5522, + [5711] = 5677, + [5712] = 5552, + [5713] = 5526, + [5714] = 5714, + [5715] = 5512, + [5716] = 5576, + [5717] = 5575, + [5718] = 5530, + [5719] = 5560, + [5720] = 5720, + [5721] = 5526, + [5722] = 5530, + [5723] = 5723, + [5724] = 5577, + [5725] = 5552, + [5726] = 5726, + [5727] = 5598, + [5728] = 5728, [5729] = 5729, - [5730] = 5730, - [5731] = 5617, - [5732] = 5484, - [5733] = 5602, - [5734] = 5490, - [5735] = 5735, - [5736] = 5736, - [5737] = 5596, - [5738] = 5530, - [5739] = 5739, - [5740] = 5603, - [5741] = 5470, - [5742] = 5607, - [5743] = 5659, - [5744] = 5645, - [5745] = 5611, - [5746] = 5484, - [5747] = 5501, - [5748] = 5748, - [5749] = 5546, - [5750] = 5750, - [5751] = 5542, - [5752] = 5476, - [5753] = 5635, - [5754] = 5638, - [5755] = 5466, - [5756] = 5691, - [5757] = 5642, - [5758] = 5489, - [5759] = 5596, - [5760] = 5479, - [5761] = 5603, - [5762] = 5480, - [5763] = 5607, - [5764] = 5481, - [5765] = 5650, - [5766] = 5659, - [5767] = 5660, - [5768] = 5476, - [5769] = 5472, - [5770] = 5496, - [5771] = 5466, - [5772] = 5660, - [5773] = 5492, - [5774] = 5476, - [5775] = 5665, - [5776] = 5479, - [5777] = 5495, - [5778] = 5480, - [5779] = 5481, - [5780] = 5513, - [5781] = 5611, - [5782] = 5644, - [5783] = 5489, - [5784] = 5510, - [5785] = 5471, - [5786] = 5681, - [5787] = 5496, - [5788] = 5489, - [5789] = 5538, - [5790] = 5476, - [5791] = 5540, + [5730] = 5507, + [5731] = 5550, + [5732] = 5598, + [5733] = 5651, + [5734] = 5531, + [5735] = 5558, + [5736] = 5534, + [5737] = 5737, + [5738] = 5521, + [5739] = 5536, + [5740] = 5520, + [5741] = 5690, + [5742] = 5553, + [5743] = 5662, + [5744] = 5530, + [5745] = 5524, + [5746] = 5515, + [5747] = 5604, + [5748] = 5532, + [5749] = 5749, + [5750] = 5522, + [5751] = 5677, + [5752] = 5752, + [5753] = 5512, + [5754] = 5565, + [5755] = 5531, + [5756] = 5532, + [5757] = 5560, + [5758] = 5533, + [5759] = 5537, + [5760] = 5560, + [5761] = 5522, + [5762] = 5700, + [5763] = 5533, + [5764] = 5729, + [5765] = 5677, + [5766] = 5565, + [5767] = 5538, + [5768] = 5768, + [5769] = 5537, + [5770] = 5564, + [5771] = 5538, + [5772] = 5512, + [5773] = 5773, + [5774] = 5663, + [5775] = 5514, + [5776] = 5776, + [5777] = 5777, + [5778] = 5575, + [5779] = 5779, + [5780] = 5539, + [5781] = 5513, + [5782] = 5543, + [5783] = 5515, + [5784] = 5515, + [5785] = 5785, + [5786] = 5514, + [5787] = 5787, + [5788] = 5631, + [5789] = 5539, + [5790] = 5576, + [5791] = 5518, [5792] = 5792, - [5793] = 5793, - [5794] = 5691, - [5795] = 5635, - [5796] = 5474, - [5797] = 5645, - [5798] = 5638, - [5799] = 5583, - [5800] = 5466, - [5801] = 5553, - [5802] = 5642, - [5803] = 5492, - [5804] = 5650, - [5805] = 5538, - [5806] = 5497, - [5807] = 5502, - [5808] = 5659, - [5809] = 5512, - [5810] = 5660, - [5811] = 5546, - [5812] = 5812, - [5813] = 5813, - [5814] = 5481, - [5815] = 5492, - [5816] = 5538, - [5817] = 5812, - [5818] = 5617, - [5819] = 5681, - [5820] = 5820, - [5821] = 5466, - [5822] = 5813, - [5823] = 5492, - [5824] = 5496, - [5825] = 5479, - [5826] = 5826, - [5827] = 5492, - [5828] = 5521, - [5829] = 5479, - [5830] = 5617, - [5831] = 5480, - [5832] = 5665, - [5833] = 5471, - [5834] = 5481, - [5835] = 5498, - [5836] = 5729, - [5837] = 5487, - [5838] = 5750, - [5839] = 5488, - [5840] = 5475, - [5841] = 5665, - [5842] = 5538, - [5843] = 5617, - [5844] = 5844, - [5845] = 5845, - [5846] = 5510, - [5847] = 5739, - [5848] = 5548, - [5849] = 5597, - [5850] = 5793, - [5851] = 5710, - [5852] = 5681, - [5853] = 5484, - [5854] = 5826, - [5855] = 5516, - [5856] = 5617, - [5857] = 5584, - [5858] = 5665, - [5859] = 5479, - [5860] = 5467, - [5861] = 5501, - [5862] = 5540, - [5863] = 5863, - [5864] = 5691, - [5865] = 5538, - [5866] = 5502, - [5867] = 5489, - [5868] = 5548, - [5869] = 5638, + [5793] = 5573, + [5794] = 5794, + [5795] = 5589, + [5796] = 5534, + [5797] = 5519, + [5798] = 5520, + [5799] = 5507, + [5800] = 5514, + [5801] = 5596, + [5802] = 5511, + [5803] = 5522, + [5804] = 5547, + [5805] = 5549, + [5806] = 5677, + [5807] = 5550, + [5808] = 5515, + [5809] = 5543, + [5810] = 5737, + [5811] = 5514, + [5812] = 5574, + [5813] = 5521, + [5814] = 5553, + [5815] = 5564, + [5816] = 5518, + [5817] = 5573, + [5818] = 5519, + [5819] = 5520, + [5820] = 5574, + [5821] = 5655, + [5822] = 5544, + [5823] = 5518, + [5824] = 5519, + [5825] = 5530, + [5826] = 5508, + [5827] = 5544, + [5828] = 5508, + [5829] = 5655, + [5830] = 5541, + [5831] = 5599, + [5832] = 5832, + [5833] = 5520, + [5834] = 5524, + [5835] = 5531, + [5836] = 5526, + [5837] = 5545, + [5838] = 5838, + [5839] = 5532, + [5840] = 5533, + [5841] = 5512, + [5842] = 5537, + [5843] = 5521, + [5844] = 5598, + [5845] = 5655, + [5846] = 5538, + [5847] = 5615, + [5848] = 5539, + [5849] = 5593, + [5850] = 5596, + [5851] = 5543, + [5852] = 5616, + [5853] = 5714, + [5854] = 5545, + [5855] = 5521, + [5856] = 5655, + [5857] = 5544, + [5858] = 5545, + [5859] = 5859, + [5860] = 5860, + [5861] = 5523, + [5862] = 5862, + [5863] = 5521, + [5864] = 5521, + [5865] = 5865, + [5866] = 5508, + [5867] = 5521, + [5868] = 5576, + [5869] = 5728, + [5870] = 5589, + [5871] = 5558, + [5872] = 5720, + [5873] = 5873, + [5874] = 5874, + [5875] = 5773, + [5876] = 5629, + [5877] = 5877, + [5878] = 5707, + [5879] = 5862, + [5880] = 5880, + [5881] = 5576, + [5882] = 5655, + [5883] = 5558, + [5884] = 5723, + [5885] = 5704, + [5886] = 5886, + [5887] = 5887, + [5888] = 5888, + [5889] = 5838, + [5890] = 5651, + [5891] = 5512, + [5892] = 5523, + [5893] = 5893, + [5894] = 5661, + [5895] = 5706, + [5896] = 5577, + [5897] = 5897, + [5898] = 5515, + [5899] = 5565, + [5900] = 5526, + [5901] = 5522, + [5902] = 5514, + [5903] = 5527, + [5904] = 5521, + [5905] = 5655, + [5906] = 5677, + [5907] = 5887, + [5908] = 5534, + [5909] = 5549, }; static TSCharacterRange extras_character_set_1[] = { @@ -12954,16 +12994,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [28] = {.lex_state = 75, .external_lex_state = 2}, [29] = {.lex_state = 75, .external_lex_state = 2}, [30] = {.lex_state = 75, .external_lex_state = 2}, - [31] = {.lex_state = 8, .external_lex_state = 2}, - [32] = {.lex_state = 75, .external_lex_state = 2}, + [31] = {.lex_state = 75, .external_lex_state = 2}, + [32] = {.lex_state = 8, .external_lex_state = 2}, [33] = {.lex_state = 75, .external_lex_state = 2}, [34] = {.lex_state = 75, .external_lex_state = 2}, [35] = {.lex_state = 75, .external_lex_state = 2}, [36] = {.lex_state = 75, .external_lex_state = 2}, [37] = {.lex_state = 75, .external_lex_state = 2}, - [38] = {.lex_state = 8, .external_lex_state = 2}, + [38] = {.lex_state = 75, .external_lex_state = 2}, [39] = {.lex_state = 75, .external_lex_state = 2}, - [40] = {.lex_state = 8, .external_lex_state = 2}, + [40] = {.lex_state = 75, .external_lex_state = 2}, [41] = {.lex_state = 75, .external_lex_state = 2}, [42] = {.lex_state = 75, .external_lex_state = 2}, [43] = {.lex_state = 75, .external_lex_state = 2}, @@ -12973,46 +13013,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [47] = {.lex_state = 75, .external_lex_state = 2}, [48] = {.lex_state = 75, .external_lex_state = 2}, [49] = {.lex_state = 75, .external_lex_state = 2}, - [50] = {.lex_state = 75, .external_lex_state = 2}, + [50] = {.lex_state = 8, .external_lex_state = 2}, [51] = {.lex_state = 75, .external_lex_state = 2}, [52] = {.lex_state = 75, .external_lex_state = 2}, - [53] = {.lex_state = 8, .external_lex_state = 2}, + [53] = {.lex_state = 75, .external_lex_state = 2}, [54] = {.lex_state = 75, .external_lex_state = 2}, [55] = {.lex_state = 75, .external_lex_state = 2}, - [56] = {.lex_state = 8, .external_lex_state = 2}, + [56] = {.lex_state = 75, .external_lex_state = 2}, [57] = {.lex_state = 75, .external_lex_state = 2}, [58] = {.lex_state = 75, .external_lex_state = 2}, [59] = {.lex_state = 75, .external_lex_state = 2}, [60] = {.lex_state = 75, .external_lex_state = 2}, - [61] = {.lex_state = 75, .external_lex_state = 2}, + [61] = {.lex_state = 8, .external_lex_state = 2}, [62] = {.lex_state = 75, .external_lex_state = 2}, [63] = {.lex_state = 8, .external_lex_state = 2}, [64] = {.lex_state = 75, .external_lex_state = 2}, - [65] = {.lex_state = 75, .external_lex_state = 2}, + [65] = {.lex_state = 8, .external_lex_state = 2}, [66] = {.lex_state = 8, .external_lex_state = 2}, [67] = {.lex_state = 8, .external_lex_state = 2}, [68] = {.lex_state = 8, .external_lex_state = 2}, [69] = {.lex_state = 8, .external_lex_state = 2}, - [70] = {.lex_state = 75, .external_lex_state = 2}, + [70] = {.lex_state = 8, .external_lex_state = 2}, [71] = {.lex_state = 75, .external_lex_state = 2}, [72] = {.lex_state = 3, .external_lex_state = 4}, [73] = {.lex_state = 3, .external_lex_state = 4}, [74] = {.lex_state = 3, .external_lex_state = 4}, [75] = {.lex_state = 3, .external_lex_state = 3}, - [76] = {.lex_state = 8, .external_lex_state = 2}, - [77] = {.lex_state = 8, .external_lex_state = 2}, + [76] = {.lex_state = 3, .external_lex_state = 3}, + [77] = {.lex_state = 3, .external_lex_state = 3}, [78] = {.lex_state = 3, .external_lex_state = 3}, [79] = {.lex_state = 3, .external_lex_state = 3}, [80] = {.lex_state = 3, .external_lex_state = 3}, [81] = {.lex_state = 8, .external_lex_state = 2}, [82] = {.lex_state = 3, .external_lex_state = 3}, - [83] = {.lex_state = 3, .external_lex_state = 3}, - [84] = {.lex_state = 3, .external_lex_state = 3}, + [83] = {.lex_state = 8, .external_lex_state = 2}, + [84] = {.lex_state = 8, .external_lex_state = 2}, [85] = {.lex_state = 3, .external_lex_state = 3}, - [86] = {.lex_state = 8, .external_lex_state = 2}, - [87] = {.lex_state = 3, .external_lex_state = 3}, - [88] = {.lex_state = 3, .external_lex_state = 3}, - [89] = {.lex_state = 8, .external_lex_state = 2}, + [86] = {.lex_state = 3, .external_lex_state = 3}, + [87] = {.lex_state = 8, .external_lex_state = 2}, + [88] = {.lex_state = 8, .external_lex_state = 2}, + [89] = {.lex_state = 3, .external_lex_state = 3}, [90] = {.lex_state = 8, .external_lex_state = 2}, [91] = {.lex_state = 8, .external_lex_state = 2}, [92] = {.lex_state = 8, .external_lex_state = 2}, @@ -13024,11 +13064,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [98] = {.lex_state = 3, .external_lex_state = 3}, [99] = {.lex_state = 3, .external_lex_state = 4}, [100] = {.lex_state = 3, .external_lex_state = 4}, - [101] = {.lex_state = 3, .external_lex_state = 3}, + [101] = {.lex_state = 3, .external_lex_state = 4}, [102] = {.lex_state = 3, .external_lex_state = 4}, [103] = {.lex_state = 3, .external_lex_state = 4}, [104] = {.lex_state = 3, .external_lex_state = 4}, - [105] = {.lex_state = 3, .external_lex_state = 4}, + [105] = {.lex_state = 3, .external_lex_state = 3}, [106] = {.lex_state = 3, .external_lex_state = 4}, [107] = {.lex_state = 3, .external_lex_state = 3}, [108] = {.lex_state = 3, .external_lex_state = 3}, @@ -13038,10 +13078,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [112] = {.lex_state = 3, .external_lex_state = 3}, [113] = {.lex_state = 3, .external_lex_state = 3}, [114] = {.lex_state = 3, .external_lex_state = 3}, - [115] = {.lex_state = 3, .external_lex_state = 3}, + [115] = {.lex_state = 3, .external_lex_state = 4}, [116] = {.lex_state = 3, .external_lex_state = 4}, [117] = {.lex_state = 3, .external_lex_state = 3}, - [118] = {.lex_state = 3, .external_lex_state = 4}, + [118] = {.lex_state = 3, .external_lex_state = 3}, [119] = {.lex_state = 3, .external_lex_state = 3}, [120] = {.lex_state = 3, .external_lex_state = 4}, [121] = {.lex_state = 3, .external_lex_state = 3}, @@ -13066,11 +13106,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 3, .external_lex_state = 3}, [141] = {.lex_state = 3, .external_lex_state = 3}, [142] = {.lex_state = 3, .external_lex_state = 3}, - [143] = {.lex_state = 8, .external_lex_state = 2}, + [143] = {.lex_state = 3, .external_lex_state = 3}, [144] = {.lex_state = 3, .external_lex_state = 3}, [145] = {.lex_state = 3, .external_lex_state = 3}, [146] = {.lex_state = 3, .external_lex_state = 3}, - [147] = {.lex_state = 3, .external_lex_state = 3}, + [147] = {.lex_state = 8, .external_lex_state = 2}, [148] = {.lex_state = 3, .external_lex_state = 3}, [149] = {.lex_state = 3, .external_lex_state = 3}, [150] = {.lex_state = 8, .external_lex_state = 2}, @@ -13103,15 +13143,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [177] = {.lex_state = 2, .external_lex_state = 3}, [178] = {.lex_state = 2, .external_lex_state = 3}, [179] = {.lex_state = 75, .external_lex_state = 2}, - [180] = {.lex_state = 75, .external_lex_state = 2}, - [181] = {.lex_state = 75, .external_lex_state = 2}, - [182] = {.lex_state = 2, .external_lex_state = 3}, - [183] = {.lex_state = 2, .external_lex_state = 4}, + [180] = {.lex_state = 2, .external_lex_state = 3}, + [181] = {.lex_state = 2, .external_lex_state = 3}, + [182] = {.lex_state = 75, .external_lex_state = 2}, + [183] = {.lex_state = 2, .external_lex_state = 3}, [184] = {.lex_state = 75, .external_lex_state = 2}, - [185] = {.lex_state = 2, .external_lex_state = 3}, + [185] = {.lex_state = 75, .external_lex_state = 2}, [186] = {.lex_state = 75, .external_lex_state = 2}, - [187] = {.lex_state = 2, .external_lex_state = 3}, - [188] = {.lex_state = 75, .external_lex_state = 2}, + [187] = {.lex_state = 75, .external_lex_state = 2}, + [188] = {.lex_state = 2, .external_lex_state = 4}, [189] = {.lex_state = 2, .external_lex_state = 3}, [190] = {.lex_state = 2, .external_lex_state = 3}, [191] = {.lex_state = 2, .external_lex_state = 3}, @@ -13121,16 +13161,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 75, .external_lex_state = 2}, [196] = {.lex_state = 75, .external_lex_state = 2}, [197] = {.lex_state = 75, .external_lex_state = 2}, - [198] = {.lex_state = 75, .external_lex_state = 2}, + [198] = {.lex_state = 74, .external_lex_state = 4}, [199] = {.lex_state = 75, .external_lex_state = 2}, - [200] = {.lex_state = 74, .external_lex_state = 4}, - [201] = {.lex_state = 74, .external_lex_state = 4}, + [200] = {.lex_state = 75, .external_lex_state = 2}, + [201] = {.lex_state = 75, .external_lex_state = 2}, [202] = {.lex_state = 75, .external_lex_state = 2}, - [203] = {.lex_state = 74, .external_lex_state = 4}, - [204] = {.lex_state = 75, .external_lex_state = 2}, - [205] = {.lex_state = 75, .external_lex_state = 2}, - [206] = {.lex_state = 74, .external_lex_state = 4}, - [207] = {.lex_state = 75, .external_lex_state = 2}, + [203] = {.lex_state = 75, .external_lex_state = 2}, + [204] = {.lex_state = 74, .external_lex_state = 4}, + [205] = {.lex_state = 74, .external_lex_state = 4}, + [206] = {.lex_state = 75, .external_lex_state = 2}, + [207] = {.lex_state = 74, .external_lex_state = 4}, [208] = {.lex_state = 75, .external_lex_state = 2}, [209] = {.lex_state = 74, .external_lex_state = 4}, [210] = {.lex_state = 74, .external_lex_state = 4}, @@ -13138,33 +13178,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 74, .external_lex_state = 4}, [213] = {.lex_state = 74, .external_lex_state = 4}, [214] = {.lex_state = 74, .external_lex_state = 4}, - [215] = {.lex_state = 75, .external_lex_state = 2}, - [216] = {.lex_state = 75, .external_lex_state = 2}, + [215] = {.lex_state = 74, .external_lex_state = 4}, + [216] = {.lex_state = 74, .external_lex_state = 4}, [217] = {.lex_state = 74, .external_lex_state = 4}, [218] = {.lex_state = 75, .external_lex_state = 2}, [219] = {.lex_state = 74, .external_lex_state = 4}, - [220] = {.lex_state = 74, .external_lex_state = 4}, - [221] = {.lex_state = 75, .external_lex_state = 2}, + [220] = {.lex_state = 75, .external_lex_state = 2}, + [221] = {.lex_state = 74, .external_lex_state = 4}, [222] = {.lex_state = 74, .external_lex_state = 4}, - [223] = {.lex_state = 74, .external_lex_state = 4}, + [223] = {.lex_state = 75, .external_lex_state = 2}, [224] = {.lex_state = 74, .external_lex_state = 4}, [225] = {.lex_state = 74, .external_lex_state = 4}, [226] = {.lex_state = 74, .external_lex_state = 4}, [227] = {.lex_state = 74, .external_lex_state = 4}, - [228] = {.lex_state = 74, .external_lex_state = 4}, - [229] = {.lex_state = 75, .external_lex_state = 2}, + [228] = {.lex_state = 75, .external_lex_state = 2}, + [229] = {.lex_state = 74, .external_lex_state = 4}, [230] = {.lex_state = 74, .external_lex_state = 4}, - [231] = {.lex_state = 74, .external_lex_state = 4}, + [231] = {.lex_state = 75, .external_lex_state = 2}, [232] = {.lex_state = 74, .external_lex_state = 4}, [233] = {.lex_state = 74, .external_lex_state = 4}, - [234] = {.lex_state = 75, .external_lex_state = 2}, + [234] = {.lex_state = 74, .external_lex_state = 4}, [235] = {.lex_state = 74, .external_lex_state = 4}, - [236] = {.lex_state = 74, .external_lex_state = 4}, - [237] = {.lex_state = 75, .external_lex_state = 2}, + [236] = {.lex_state = 75, .external_lex_state = 2}, + [237] = {.lex_state = 74, .external_lex_state = 4}, [238] = {.lex_state = 74, .external_lex_state = 4}, - [239] = {.lex_state = 74, .external_lex_state = 4}, - [240] = {.lex_state = 74, .external_lex_state = 4}, - [241] = {.lex_state = 75, .external_lex_state = 2}, + [239] = {.lex_state = 75, .external_lex_state = 2}, + [240] = {.lex_state = 75, .external_lex_state = 2}, + [241] = {.lex_state = 74, .external_lex_state = 4}, [242] = {.lex_state = 75, .external_lex_state = 5}, [243] = {.lex_state = 75, .external_lex_state = 2}, [244] = {.lex_state = 75, .external_lex_state = 2}, @@ -13177,10 +13217,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [251] = {.lex_state = 75, .external_lex_state = 2}, [252] = {.lex_state = 75, .external_lex_state = 2}, [253] = {.lex_state = 75, .external_lex_state = 2}, - [254] = {.lex_state = 75, .external_lex_state = 2}, - [255] = {.lex_state = 75, .external_lex_state = 2}, - [256] = {.lex_state = 3, .external_lex_state = 3}, - [257] = {.lex_state = 3, .external_lex_state = 3}, + [254] = {.lex_state = 3, .external_lex_state = 3}, + [255] = {.lex_state = 3, .external_lex_state = 3}, + [256] = {.lex_state = 75, .external_lex_state = 2}, + [257] = {.lex_state = 75, .external_lex_state = 2}, [258] = {.lex_state = 3, .external_lex_state = 3}, [259] = {.lex_state = 3, .external_lex_state = 3}, [260] = {.lex_state = 75, .external_lex_state = 2}, @@ -13220,10 +13260,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [294] = {.lex_state = 75, .external_lex_state = 2}, [295] = {.lex_state = 75, .external_lex_state = 2}, [296] = {.lex_state = 75, .external_lex_state = 2}, - [297] = {.lex_state = 75, .external_lex_state = 5}, + [297] = {.lex_state = 75, .external_lex_state = 2}, [298] = {.lex_state = 75, .external_lex_state = 2}, [299] = {.lex_state = 75, .external_lex_state = 2}, - [300] = {.lex_state = 75, .external_lex_state = 2}, + [300] = {.lex_state = 75, .external_lex_state = 5}, [301] = {.lex_state = 75, .external_lex_state = 2}, [302] = {.lex_state = 75, .external_lex_state = 2}, [303] = {.lex_state = 75, .external_lex_state = 2}, @@ -13350,26 +13390,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [424] = {.lex_state = 75, .external_lex_state = 2}, [425] = {.lex_state = 75, .external_lex_state = 2}, [426] = {.lex_state = 75, .external_lex_state = 2}, - [427] = {.lex_state = 3, .external_lex_state = 4}, + [427] = {.lex_state = 75, .external_lex_state = 2}, [428] = {.lex_state = 75, .external_lex_state = 2}, [429] = {.lex_state = 75, .external_lex_state = 2}, [430] = {.lex_state = 75, .external_lex_state = 2}, [431] = {.lex_state = 75, .external_lex_state = 2}, [432] = {.lex_state = 75, .external_lex_state = 2}, [433] = {.lex_state = 75, .external_lex_state = 2}, - [434] = {.lex_state = 75, .external_lex_state = 2}, + [434] = {.lex_state = 3, .external_lex_state = 4}, [435] = {.lex_state = 75, .external_lex_state = 2}, [436] = {.lex_state = 75, .external_lex_state = 2}, [437] = {.lex_state = 75, .external_lex_state = 2}, [438] = {.lex_state = 75, .external_lex_state = 2}, - [439] = {.lex_state = 75, .external_lex_state = 2}, - [440] = {.lex_state = 3, .external_lex_state = 4}, + [439] = {.lex_state = 3, .external_lex_state = 4}, + [440] = {.lex_state = 75, .external_lex_state = 2}, [441] = {.lex_state = 75, .external_lex_state = 2}, [442] = {.lex_state = 75, .external_lex_state = 2}, [443] = {.lex_state = 75, .external_lex_state = 2}, [444] = {.lex_state = 75, .external_lex_state = 2}, [445] = {.lex_state = 75, .external_lex_state = 2}, - [446] = {.lex_state = 75, .external_lex_state = 2}, + [446] = {.lex_state = 3, .external_lex_state = 4}, [447] = {.lex_state = 75, .external_lex_state = 2}, [448] = {.lex_state = 75, .external_lex_state = 2}, [449] = {.lex_state = 75, .external_lex_state = 2}, @@ -13513,7 +13553,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [587] = {.lex_state = 75, .external_lex_state = 2}, [588] = {.lex_state = 75, .external_lex_state = 2}, [589] = {.lex_state = 75, .external_lex_state = 2}, - [590] = {.lex_state = 3, .external_lex_state = 4}, + [590] = {.lex_state = 75, .external_lex_state = 2}, [591] = {.lex_state = 75, .external_lex_state = 2}, [592] = {.lex_state = 75, .external_lex_state = 2}, [593] = {.lex_state = 75, .external_lex_state = 2}, @@ -13630,10 +13670,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [704] = {.lex_state = 2, .external_lex_state = 4}, [705] = {.lex_state = 2, .external_lex_state = 4}, [706] = {.lex_state = 2, .external_lex_state = 4}, - [707] = {.lex_state = 2, .external_lex_state = 4}, - [708] = {.lex_state = 75, .external_lex_state = 2}, - [709] = {.lex_state = 75, .external_lex_state = 2}, - [710] = {.lex_state = 2, .external_lex_state = 4}, + [707] = {.lex_state = 75, .external_lex_state = 2}, + [708] = {.lex_state = 2, .external_lex_state = 4}, + [709] = {.lex_state = 2, .external_lex_state = 4}, + [710] = {.lex_state = 75, .external_lex_state = 2}, [711] = {.lex_state = 75, .external_lex_state = 2}, [712] = {.lex_state = 75, .external_lex_state = 2}, [713] = {.lex_state = 75, .external_lex_state = 2}, @@ -13660,30 +13700,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [734] = {.lex_state = 2, .external_lex_state = 4}, [735] = {.lex_state = 2, .external_lex_state = 4}, [736] = {.lex_state = 2, .external_lex_state = 3}, - [737] = {.lex_state = 3, .external_lex_state = 3}, + [737] = {.lex_state = 2, .external_lex_state = 3}, [738] = {.lex_state = 2, .external_lex_state = 3}, - [739] = {.lex_state = 2, .external_lex_state = 3}, - [740] = {.lex_state = 3, .external_lex_state = 3}, + [739] = {.lex_state = 3, .external_lex_state = 3}, + [740] = {.lex_state = 2, .external_lex_state = 3}, [741] = {.lex_state = 2, .external_lex_state = 3}, - [742] = {.lex_state = 2, .external_lex_state = 3}, - [743] = {.lex_state = 2, .external_lex_state = 4}, + [742] = {.lex_state = 3, .external_lex_state = 3}, + [743] = {.lex_state = 75, .external_lex_state = 5}, [744] = {.lex_state = 2, .external_lex_state = 3}, - [745] = {.lex_state = 75, .external_lex_state = 2}, + [745] = {.lex_state = 2, .external_lex_state = 4}, [746] = {.lex_state = 2, .external_lex_state = 3}, - [747] = {.lex_state = 75, .external_lex_state = 5}, - [748] = {.lex_state = 2, .external_lex_state = 4}, - [749] = {.lex_state = 2, .external_lex_state = 4}, + [747] = {.lex_state = 2, .external_lex_state = 4}, + [748] = {.lex_state = 2, .external_lex_state = 3}, + [749] = {.lex_state = 75, .external_lex_state = 5}, [750] = {.lex_state = 2, .external_lex_state = 4}, - [751] = {.lex_state = 2, .external_lex_state = 3}, + [751] = {.lex_state = 75, .external_lex_state = 2}, [752] = {.lex_state = 2, .external_lex_state = 4}, - [753] = {.lex_state = 75, .external_lex_state = 5}, + [753] = {.lex_state = 2, .external_lex_state = 4}, [754] = {.lex_state = 75, .external_lex_state = 5}, [755] = {.lex_state = 75, .external_lex_state = 2}, [756] = {.lex_state = 75, .external_lex_state = 5}, [757] = {.lex_state = 75, .external_lex_state = 5}, [758] = {.lex_state = 75, .external_lex_state = 5}, [759] = {.lex_state = 75, .external_lex_state = 5}, - [760] = {.lex_state = 75, .external_lex_state = 5}, + [760] = {.lex_state = 75, .external_lex_state = 2}, [761] = {.lex_state = 2, .external_lex_state = 3}, [762] = {.lex_state = 2, .external_lex_state = 3}, [763] = {.lex_state = 2, .external_lex_state = 3}, @@ -13692,58 +13732,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [766] = {.lex_state = 2, .external_lex_state = 3}, [767] = {.lex_state = 2, .external_lex_state = 3}, [768] = {.lex_state = 2, .external_lex_state = 3}, - [769] = {.lex_state = 75, .external_lex_state = 2}, + [769] = {.lex_state = 75, .external_lex_state = 5}, [770] = {.lex_state = 75, .external_lex_state = 2}, [771] = {.lex_state = 2, .external_lex_state = 3}, - [772] = {.lex_state = 2, .external_lex_state = 3}, + [772] = {.lex_state = 75, .external_lex_state = 2}, [773] = {.lex_state = 2, .external_lex_state = 3}, [774] = {.lex_state = 2, .external_lex_state = 3}, [775] = {.lex_state = 2, .external_lex_state = 3}, [776] = {.lex_state = 2, .external_lex_state = 3}, [777] = {.lex_state = 2, .external_lex_state = 3}, - [778] = {.lex_state = 2, .external_lex_state = 3}, + [778] = {.lex_state = 75, .external_lex_state = 2}, [779] = {.lex_state = 2, .external_lex_state = 3}, - [780] = {.lex_state = 75, .external_lex_state = 2}, + [780] = {.lex_state = 2, .external_lex_state = 3}, [781] = {.lex_state = 2, .external_lex_state = 3}, [782] = {.lex_state = 2, .external_lex_state = 3}, - [783] = {.lex_state = 75, .external_lex_state = 2}, - [784] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 2, .external_lex_state = 3}, + [784] = {.lex_state = 75, .external_lex_state = 2}, [785] = {.lex_state = 75, .external_lex_state = 5}, - [786] = {.lex_state = 75, .external_lex_state = 5}, - [787] = {.lex_state = 75, .external_lex_state = 5}, - [788] = {.lex_state = 75, .external_lex_state = 5}, + [786] = {.lex_state = 75, .external_lex_state = 2}, + [787] = {.lex_state = 9, .external_lex_state = 2}, + [788] = {.lex_state = 75, .external_lex_state = 2}, [789] = {.lex_state = 75, .external_lex_state = 2}, - [790] = {.lex_state = 75, .external_lex_state = 2}, + [790] = {.lex_state = 75, .external_lex_state = 5}, [791] = {.lex_state = 75, .external_lex_state = 5}, [792] = {.lex_state = 75, .external_lex_state = 5}, - [793] = {.lex_state = 9, .external_lex_state = 2}, + [793] = {.lex_state = 75, .external_lex_state = 5}, [794] = {.lex_state = 75, .external_lex_state = 5}, - [795] = {.lex_state = 9, .external_lex_state = 2}, + [795] = {.lex_state = 75, .external_lex_state = 5}, [796] = {.lex_state = 75, .external_lex_state = 5}, - [797] = {.lex_state = 75, .external_lex_state = 5}, - [798] = {.lex_state = 75, .external_lex_state = 2}, + [797] = {.lex_state = 75, .external_lex_state = 2}, + [798] = {.lex_state = 75, .external_lex_state = 5}, [799] = {.lex_state = 75, .external_lex_state = 5}, - [800] = {.lex_state = 9, .external_lex_state = 2}, + [800] = {.lex_state = 75, .external_lex_state = 5}, [801] = {.lex_state = 75, .external_lex_state = 5}, - [802] = {.lex_state = 75, .external_lex_state = 2}, - [803] = {.lex_state = 75, .external_lex_state = 5}, + [802] = {.lex_state = 75, .external_lex_state = 5}, + [803] = {.lex_state = 9, .external_lex_state = 2}, [804] = {.lex_state = 75, .external_lex_state = 5}, - [805] = {.lex_state = 9, .external_lex_state = 2}, - [806] = {.lex_state = 75, .external_lex_state = 5}, - [807] = {.lex_state = 75, .external_lex_state = 2}, - [808] = {.lex_state = 75, .external_lex_state = 2}, + [805] = {.lex_state = 75, .external_lex_state = 2}, + [806] = {.lex_state = 9, .external_lex_state = 2}, + [807] = {.lex_state = 75, .external_lex_state = 5}, + [808] = {.lex_state = 9, .external_lex_state = 2}, [809] = {.lex_state = 75, .external_lex_state = 2}, - [810] = {.lex_state = 75, .external_lex_state = 2}, - [811] = {.lex_state = 75, .external_lex_state = 5}, + [810] = {.lex_state = 9, .external_lex_state = 2}, + [811] = {.lex_state = 75, .external_lex_state = 2}, [812] = {.lex_state = 75, .external_lex_state = 2}, [813] = {.lex_state = 75, .external_lex_state = 2}, [814] = {.lex_state = 75, .external_lex_state = 2}, [815] = {.lex_state = 75, .external_lex_state = 2}, [816] = {.lex_state = 75, .external_lex_state = 2}, - [817] = {.lex_state = 75, .external_lex_state = 2}, + [817] = {.lex_state = 9, .external_lex_state = 2}, [818] = {.lex_state = 75, .external_lex_state = 2}, [819] = {.lex_state = 75, .external_lex_state = 2}, - [820] = {.lex_state = 9, .external_lex_state = 2}, + [820] = {.lex_state = 75, .external_lex_state = 2}, [821] = {.lex_state = 9, .external_lex_state = 2}, [822] = {.lex_state = 75, .external_lex_state = 2}, [823] = {.lex_state = 75, .external_lex_state = 2}, @@ -13769,14 +13809,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [843] = {.lex_state = 75, .external_lex_state = 2}, [844] = {.lex_state = 75, .external_lex_state = 2}, [845] = {.lex_state = 75, .external_lex_state = 2}, - [846] = {.lex_state = 75, .external_lex_state = 2}, + [846] = {.lex_state = 9, .external_lex_state = 2}, [847] = {.lex_state = 75, .external_lex_state = 2}, - [848] = {.lex_state = 9, .external_lex_state = 2}, + [848] = {.lex_state = 75, .external_lex_state = 2}, [849] = {.lex_state = 75, .external_lex_state = 2}, [850] = {.lex_state = 75, .external_lex_state = 2}, [851] = {.lex_state = 75, .external_lex_state = 2}, [852] = {.lex_state = 75, .external_lex_state = 2}, - [853] = {.lex_state = 75, .external_lex_state = 2}, + [853] = {.lex_state = 9, .external_lex_state = 2}, [854] = {.lex_state = 75, .external_lex_state = 2}, [855] = {.lex_state = 75, .external_lex_state = 2}, [856] = {.lex_state = 75, .external_lex_state = 2}, @@ -13787,11 +13827,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [861] = {.lex_state = 75, .external_lex_state = 2}, [862] = {.lex_state = 75, .external_lex_state = 2}, [863] = {.lex_state = 75, .external_lex_state = 2}, - [864] = {.lex_state = 75, .external_lex_state = 2}, + [864] = {.lex_state = 9, .external_lex_state = 2}, [865] = {.lex_state = 75, .external_lex_state = 2}, [866] = {.lex_state = 75, .external_lex_state = 2}, [867] = {.lex_state = 75, .external_lex_state = 2}, - [868] = {.lex_state = 9, .external_lex_state = 2}, + [868] = {.lex_state = 75, .external_lex_state = 2}, [869] = {.lex_state = 75, .external_lex_state = 2}, [870] = {.lex_state = 75, .external_lex_state = 2}, [871] = {.lex_state = 75, .external_lex_state = 2}, @@ -13799,7 +13839,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [873] = {.lex_state = 75, .external_lex_state = 2}, [874] = {.lex_state = 75, .external_lex_state = 2}, [875] = {.lex_state = 75, .external_lex_state = 2}, - [876] = {.lex_state = 9, .external_lex_state = 2}, + [876] = {.lex_state = 75, .external_lex_state = 2}, [877] = {.lex_state = 75, .external_lex_state = 2}, [878] = {.lex_state = 75, .external_lex_state = 2}, [879] = {.lex_state = 75, .external_lex_state = 2}, @@ -13812,24 +13852,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [886] = {.lex_state = 75, .external_lex_state = 2}, [887] = {.lex_state = 75, .external_lex_state = 2}, [888] = {.lex_state = 75, .external_lex_state = 2}, - [889] = {.lex_state = 9, .external_lex_state = 2}, + [889] = {.lex_state = 75, .external_lex_state = 2}, [890] = {.lex_state = 75, .external_lex_state = 2}, [891] = {.lex_state = 75, .external_lex_state = 2}, - [892] = {.lex_state = 75, .external_lex_state = 2}, - [893] = {.lex_state = 75, .external_lex_state = 2}, + [892] = {.lex_state = 9, .external_lex_state = 2}, + [893] = {.lex_state = 9, .external_lex_state = 2}, [894] = {.lex_state = 75, .external_lex_state = 2}, [895] = {.lex_state = 75, .external_lex_state = 2}, [896] = {.lex_state = 75, .external_lex_state = 2}, [897] = {.lex_state = 75, .external_lex_state = 2}, [898] = {.lex_state = 75, .external_lex_state = 2}, [899] = {.lex_state = 75, .external_lex_state = 2}, - [900] = {.lex_state = 9, .external_lex_state = 2}, + [900] = {.lex_state = 75, .external_lex_state = 2}, [901] = {.lex_state = 75, .external_lex_state = 2}, [902] = {.lex_state = 75, .external_lex_state = 2}, [903] = {.lex_state = 75, .external_lex_state = 2}, [904] = {.lex_state = 75, .external_lex_state = 2}, [905] = {.lex_state = 75, .external_lex_state = 2}, - [906] = {.lex_state = 9, .external_lex_state = 2}, + [906] = {.lex_state = 75, .external_lex_state = 2}, [907] = {.lex_state = 75, .external_lex_state = 2}, [908] = {.lex_state = 75, .external_lex_state = 2}, [909] = {.lex_state = 75, .external_lex_state = 2}, @@ -13856,49 +13896,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [930] = {.lex_state = 75, .external_lex_state = 2}, [931] = {.lex_state = 75, .external_lex_state = 2}, [932] = {.lex_state = 75, .external_lex_state = 2}, - [933] = {.lex_state = 9, .external_lex_state = 2}, + [933] = {.lex_state = 75, .external_lex_state = 2}, [934] = {.lex_state = 75, .external_lex_state = 2}, - [935] = {.lex_state = 9, .external_lex_state = 2}, + [935] = {.lex_state = 75, .external_lex_state = 2}, [936] = {.lex_state = 75, .external_lex_state = 2}, [937] = {.lex_state = 75, .external_lex_state = 2}, - [938] = {.lex_state = 75, .external_lex_state = 2}, + [938] = {.lex_state = 9, .external_lex_state = 2}, [939] = {.lex_state = 75, .external_lex_state = 2}, [940] = {.lex_state = 75, .external_lex_state = 2}, [941] = {.lex_state = 75, .external_lex_state = 2}, [942] = {.lex_state = 75, .external_lex_state = 2}, - [943] = {.lex_state = 75, .external_lex_state = 2}, - [944] = {.lex_state = 75, .external_lex_state = 2}, + [943] = {.lex_state = 9, .external_lex_state = 2}, + [944] = {.lex_state = 9, .external_lex_state = 2}, [945] = {.lex_state = 9, .external_lex_state = 2}, [946] = {.lex_state = 9, .external_lex_state = 2}, - [947] = {.lex_state = 75, .external_lex_state = 2}, - [948] = {.lex_state = 9, .external_lex_state = 2}, - [949] = {.lex_state = 9, .external_lex_state = 2}, - [950] = {.lex_state = 75, .external_lex_state = 2}, - [951] = {.lex_state = 9, .external_lex_state = 2}, - [952] = {.lex_state = 75, .external_lex_state = 2}, + [947] = {.lex_state = 9, .external_lex_state = 2}, + [948] = {.lex_state = 75, .external_lex_state = 2}, + [949] = {.lex_state = 75, .external_lex_state = 2}, + [950] = {.lex_state = 9, .external_lex_state = 2}, + [951] = {.lex_state = 75, .external_lex_state = 2}, + [952] = {.lex_state = 9, .external_lex_state = 2}, [953] = {.lex_state = 9, .external_lex_state = 2}, - [954] = {.lex_state = 75, .external_lex_state = 2}, - [955] = {.lex_state = 75, .external_lex_state = 2}, - [956] = {.lex_state = 75, .external_lex_state = 2}, - [957] = {.lex_state = 9, .external_lex_state = 2}, + [954] = {.lex_state = 9, .external_lex_state = 2}, + [955] = {.lex_state = 9, .external_lex_state = 2}, + [956] = {.lex_state = 9, .external_lex_state = 2}, + [957] = {.lex_state = 75, .external_lex_state = 2}, [958] = {.lex_state = 75, .external_lex_state = 2}, - [959] = {.lex_state = 9, .external_lex_state = 2}, + [959] = {.lex_state = 75, .external_lex_state = 2}, [960] = {.lex_state = 75, .external_lex_state = 2}, - [961] = {.lex_state = 9, .external_lex_state = 2}, + [961] = {.lex_state = 75, .external_lex_state = 2}, [962] = {.lex_state = 9, .external_lex_state = 2}, - [963] = {.lex_state = 9, .external_lex_state = 2}, + [963] = {.lex_state = 75, .external_lex_state = 2}, [964] = {.lex_state = 9, .external_lex_state = 2}, [965] = {.lex_state = 75, .external_lex_state = 2}, - [966] = {.lex_state = 75, .external_lex_state = 2}, + [966] = {.lex_state = 9, .external_lex_state = 2}, [967] = {.lex_state = 9, .external_lex_state = 2}, [968] = {.lex_state = 9, .external_lex_state = 2}, [969] = {.lex_state = 75, .external_lex_state = 2}, - [970] = {.lex_state = 75, .external_lex_state = 2}, - [971] = {.lex_state = 9, .external_lex_state = 2}, - [972] = {.lex_state = 75, .external_lex_state = 2}, - [973] = {.lex_state = 9, .external_lex_state = 2}, - [974] = {.lex_state = 9, .external_lex_state = 2}, - [975] = {.lex_state = 75, .external_lex_state = 2}, + [970] = {.lex_state = 9, .external_lex_state = 2}, + [971] = {.lex_state = 75, .external_lex_state = 2}, + [972] = {.lex_state = 9, .external_lex_state = 2}, + [973] = {.lex_state = 75, .external_lex_state = 2}, + [974] = {.lex_state = 75, .external_lex_state = 2}, + [975] = {.lex_state = 9, .external_lex_state = 2}, [976] = {.lex_state = 9, .external_lex_state = 2}, [977] = {.lex_state = 9, .external_lex_state = 2}, [978] = {.lex_state = 9, .external_lex_state = 2}, @@ -13911,12 +13951,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [985] = {.lex_state = 9, .external_lex_state = 2}, [986] = {.lex_state = 9, .external_lex_state = 2}, [987] = {.lex_state = 9, .external_lex_state = 2}, - [988] = {.lex_state = 7, .external_lex_state = 2}, + [988] = {.lex_state = 9, .external_lex_state = 2}, [989] = {.lex_state = 9, .external_lex_state = 2}, [990] = {.lex_state = 9, .external_lex_state = 2}, [991] = {.lex_state = 7, .external_lex_state = 2}, [992] = {.lex_state = 7, .external_lex_state = 2}, - [993] = {.lex_state = 9, .external_lex_state = 2}, + [993] = {.lex_state = 7, .external_lex_state = 2}, [994] = {.lex_state = 9, .external_lex_state = 2}, [995] = {.lex_state = 9, .external_lex_state = 2}, [996] = {.lex_state = 9, .external_lex_state = 2}, @@ -14076,255 +14116,255 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1150] = {.lex_state = 9, .external_lex_state = 2}, [1151] = {.lex_state = 10, .external_lex_state = 2}, [1152] = {.lex_state = 10, .external_lex_state = 2}, - [1153] = {.lex_state = 10, .external_lex_state = 2}, + [1153] = {.lex_state = 75, .external_lex_state = 2}, [1154] = {.lex_state = 10, .external_lex_state = 2}, [1155] = {.lex_state = 10, .external_lex_state = 2}, - [1156] = {.lex_state = 10, .external_lex_state = 2}, + [1156] = {.lex_state = 75, .external_lex_state = 2}, [1157] = {.lex_state = 10, .external_lex_state = 2}, [1158] = {.lex_state = 10, .external_lex_state = 2}, [1159] = {.lex_state = 10, .external_lex_state = 2}, [1160] = {.lex_state = 10, .external_lex_state = 2}, [1161] = {.lex_state = 10, .external_lex_state = 2}, [1162] = {.lex_state = 10, .external_lex_state = 2}, - [1163] = {.lex_state = 3, .external_lex_state = 4}, - [1164] = {.lex_state = 2, .external_lex_state = 4}, - [1165] = {.lex_state = 3, .external_lex_state = 4}, - [1166] = {.lex_state = 75, .external_lex_state = 2}, + [1163] = {.lex_state = 75, .external_lex_state = 2}, + [1164] = {.lex_state = 10, .external_lex_state = 2}, + [1165] = {.lex_state = 10, .external_lex_state = 2}, + [1166] = {.lex_state = 2, .external_lex_state = 4}, [1167] = {.lex_state = 2, .external_lex_state = 4}, [1168] = {.lex_state = 2, .external_lex_state = 4}, [1169] = {.lex_state = 3, .external_lex_state = 4}, - [1170] = {.lex_state = 75, .external_lex_state = 2}, - [1171] = {.lex_state = 75, .external_lex_state = 2}, + [1170] = {.lex_state = 3, .external_lex_state = 4}, + [1171] = {.lex_state = 2, .external_lex_state = 4}, [1172] = {.lex_state = 2, .external_lex_state = 4}, [1173] = {.lex_state = 2, .external_lex_state = 4}, - [1174] = {.lex_state = 2, .external_lex_state = 4}, + [1174] = {.lex_state = 3, .external_lex_state = 4}, [1175] = {.lex_state = 2, .external_lex_state = 3}, [1176] = {.lex_state = 2, .external_lex_state = 3}, [1177] = {.lex_state = 2, .external_lex_state = 3}, [1178] = {.lex_state = 2, .external_lex_state = 3}, [1179] = {.lex_state = 10, .external_lex_state = 2}, [1180] = {.lex_state = 10, .external_lex_state = 2}, - [1181] = {.lex_state = 2, .external_lex_state = 4}, - [1182] = {.lex_state = 3, .external_lex_state = 4}, + [1181] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 2, .external_lex_state = 4}, [1183] = {.lex_state = 2, .external_lex_state = 4}, [1184] = {.lex_state = 2, .external_lex_state = 4}, - [1185] = {.lex_state = 2, .external_lex_state = 3}, + [1185] = {.lex_state = 3, .external_lex_state = 3}, [1186] = {.lex_state = 2, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 4}, [1188] = {.lex_state = 2, .external_lex_state = 4}, - [1189] = {.lex_state = 2, .external_lex_state = 4}, + [1189] = {.lex_state = 3, .external_lex_state = 4}, [1190] = {.lex_state = 2, .external_lex_state = 4}, - [1191] = {.lex_state = 2, .external_lex_state = 4}, - [1192] = {.lex_state = 3, .external_lex_state = 4}, - [1193] = {.lex_state = 2, .external_lex_state = 4}, + [1191] = {.lex_state = 3, .external_lex_state = 4}, + [1192] = {.lex_state = 2, .external_lex_state = 4}, + [1193] = {.lex_state = 3, .external_lex_state = 3}, [1194] = {.lex_state = 2, .external_lex_state = 4}, - [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 2, .external_lex_state = 4}, + [1195] = {.lex_state = 3, .external_lex_state = 3}, + [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 3, .external_lex_state = 3}, - [1198] = {.lex_state = 3, .external_lex_state = 3}, + [1198] = {.lex_state = 2, .external_lex_state = 4}, [1199] = {.lex_state = 3, .external_lex_state = 3}, [1200] = {.lex_state = 3, .external_lex_state = 3}, - [1201] = {.lex_state = 3, .external_lex_state = 3}, - [1202] = {.lex_state = 3, .external_lex_state = 3}, + [1201] = {.lex_state = 2, .external_lex_state = 3}, + [1202] = {.lex_state = 2, .external_lex_state = 4}, [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 3, .external_lex_state = 3}, [1205] = {.lex_state = 3, .external_lex_state = 3}, - [1206] = {.lex_state = 3, .external_lex_state = 3}, + [1206] = {.lex_state = 2, .external_lex_state = 3}, [1207] = {.lex_state = 3, .external_lex_state = 3}, - [1208] = {.lex_state = 2, .external_lex_state = 3}, - [1209] = {.lex_state = 3, .external_lex_state = 3}, - [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1208] = {.lex_state = 3, .external_lex_state = 3}, + [1209] = {.lex_state = 2, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 4}, + [1211] = {.lex_state = 3, .external_lex_state = 3}, [1212] = {.lex_state = 3, .external_lex_state = 3}, - [1213] = {.lex_state = 3, .external_lex_state = 3}, - [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1213] = {.lex_state = 2, .external_lex_state = 4}, + [1214] = {.lex_state = 2, .external_lex_state = 4}, [1215] = {.lex_state = 2, .external_lex_state = 4}, [1216] = {.lex_state = 2, .external_lex_state = 4}, [1217] = {.lex_state = 3, .external_lex_state = 3}, [1218] = {.lex_state = 2, .external_lex_state = 4}, - [1219] = {.lex_state = 3, .external_lex_state = 3}, + [1219] = {.lex_state = 3, .external_lex_state = 4}, [1220] = {.lex_state = 2, .external_lex_state = 4}, - [1221] = {.lex_state = 3, .external_lex_state = 4}, + [1221] = {.lex_state = 2, .external_lex_state = 4}, [1222] = {.lex_state = 3, .external_lex_state = 4}, [1223] = {.lex_state = 2, .external_lex_state = 3}, - [1224] = {.lex_state = 2, .external_lex_state = 4}, - [1225] = {.lex_state = 2, .external_lex_state = 3}, + [1224] = {.lex_state = 2, .external_lex_state = 3}, + [1225] = {.lex_state = 2, .external_lex_state = 4}, [1226] = {.lex_state = 2, .external_lex_state = 4}, [1227] = {.lex_state = 2, .external_lex_state = 4}, [1228] = {.lex_state = 2, .external_lex_state = 4}, [1229] = {.lex_state = 2, .external_lex_state = 3}, - [1230] = {.lex_state = 2, .external_lex_state = 4}, - [1231] = {.lex_state = 2, .external_lex_state = 4}, + [1230] = {.lex_state = 3, .external_lex_state = 3}, + [1231] = {.lex_state = 2, .external_lex_state = 3}, [1232] = {.lex_state = 2, .external_lex_state = 4}, - [1233] = {.lex_state = 2, .external_lex_state = 4}, + [1233] = {.lex_state = 3, .external_lex_state = 3}, [1234] = {.lex_state = 2, .external_lex_state = 3}, [1235] = {.lex_state = 2, .external_lex_state = 3}, - [1236] = {.lex_state = 2, .external_lex_state = 3}, - [1237] = {.lex_state = 2, .external_lex_state = 3}, + [1236] = {.lex_state = 75, .external_lex_state = 2}, + [1237] = {.lex_state = 2, .external_lex_state = 4}, [1238] = {.lex_state = 2, .external_lex_state = 3}, - [1239] = {.lex_state = 2, .external_lex_state = 3}, + [1239] = {.lex_state = 2, .external_lex_state = 4}, [1240] = {.lex_state = 2, .external_lex_state = 3}, [1241] = {.lex_state = 2, .external_lex_state = 3}, [1242] = {.lex_state = 2, .external_lex_state = 3}, [1243] = {.lex_state = 2, .external_lex_state = 3}, - [1244] = {.lex_state = 2, .external_lex_state = 4}, - [1245] = {.lex_state = 2, .external_lex_state = 4}, - [1246] = {.lex_state = 75, .external_lex_state = 2}, - [1247] = {.lex_state = 2, .external_lex_state = 4}, - [1248] = {.lex_state = 2, .external_lex_state = 3}, - [1249] = {.lex_state = 2, .external_lex_state = 4}, + [1244] = {.lex_state = 2, .external_lex_state = 3}, + [1245] = {.lex_state = 2, .external_lex_state = 3}, + [1246] = {.lex_state = 2, .external_lex_state = 4}, + [1247] = {.lex_state = 2, .external_lex_state = 3}, + [1248] = {.lex_state = 2, .external_lex_state = 4}, + [1249] = {.lex_state = 75, .external_lex_state = 2}, [1250] = {.lex_state = 2, .external_lex_state = 3}, [1251] = {.lex_state = 2, .external_lex_state = 3}, - [1252] = {.lex_state = 2, .external_lex_state = 3}, + [1252] = {.lex_state = 3, .external_lex_state = 3}, [1253] = {.lex_state = 2, .external_lex_state = 3}, - [1254] = {.lex_state = 3, .external_lex_state = 3}, - [1255] = {.lex_state = 3, .external_lex_state = 3}, + [1254] = {.lex_state = 2, .external_lex_state = 3}, + [1255] = {.lex_state = 2, .external_lex_state = 4}, [1256] = {.lex_state = 2, .external_lex_state = 4}, - [1257] = {.lex_state = 2, .external_lex_state = 3}, + [1257] = {.lex_state = 3, .external_lex_state = 3}, [1258] = {.lex_state = 2, .external_lex_state = 3}, [1259] = {.lex_state = 2, .external_lex_state = 3}, [1260] = {.lex_state = 2, .external_lex_state = 3}, [1261] = {.lex_state = 2, .external_lex_state = 3}, - [1262] = {.lex_state = 2, .external_lex_state = 4}, - [1263] = {.lex_state = 2, .external_lex_state = 3}, + [1262] = {.lex_state = 2, .external_lex_state = 3}, + [1263] = {.lex_state = 2, .external_lex_state = 4}, [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 2, .external_lex_state = 3}, + [1265] = {.lex_state = 75, .external_lex_state = 2}, [1266] = {.lex_state = 2, .external_lex_state = 3}, [1267] = {.lex_state = 2, .external_lex_state = 3}, [1268] = {.lex_state = 2, .external_lex_state = 3}, - [1269] = {.lex_state = 75, .external_lex_state = 2}, - [1270] = {.lex_state = 2, .external_lex_state = 4}, - [1271] = {.lex_state = 2, .external_lex_state = 3}, - [1272] = {.lex_state = 75, .external_lex_state = 2}, + [1269] = {.lex_state = 2, .external_lex_state = 3}, + [1270] = {.lex_state = 2, .external_lex_state = 3}, + [1271] = {.lex_state = 2, .external_lex_state = 4}, + [1272] = {.lex_state = 2, .external_lex_state = 4}, [1273] = {.lex_state = 2, .external_lex_state = 3}, [1274] = {.lex_state = 2, .external_lex_state = 3}, - [1275] = {.lex_state = 2, .external_lex_state = 3}, + [1275] = {.lex_state = 2, .external_lex_state = 4}, [1276] = {.lex_state = 2, .external_lex_state = 3}, [1277] = {.lex_state = 2, .external_lex_state = 3}, - [1278] = {.lex_state = 2, .external_lex_state = 3}, + [1278] = {.lex_state = 2, .external_lex_state = 4}, [1279] = {.lex_state = 2, .external_lex_state = 3}, [1280] = {.lex_state = 2, .external_lex_state = 3}, [1281] = {.lex_state = 2, .external_lex_state = 3}, - [1282] = {.lex_state = 2, .external_lex_state = 4}, - [1283] = {.lex_state = 2, .external_lex_state = 3}, + [1282] = {.lex_state = 2, .external_lex_state = 3}, + [1283] = {.lex_state = 2, .external_lex_state = 4}, [1284] = {.lex_state = 2, .external_lex_state = 4}, - [1285] = {.lex_state = 2, .external_lex_state = 4}, + [1285] = {.lex_state = 75, .external_lex_state = 2}, [1286] = {.lex_state = 2, .external_lex_state = 3}, - [1287] = {.lex_state = 75, .external_lex_state = 2}, - [1288] = {.lex_state = 75, .external_lex_state = 2}, + [1287] = {.lex_state = 3, .external_lex_state = 3}, + [1288] = {.lex_state = 2, .external_lex_state = 3}, [1289] = {.lex_state = 2, .external_lex_state = 3}, - [1290] = {.lex_state = 2, .external_lex_state = 4}, - [1291] = {.lex_state = 2, .external_lex_state = 4}, - [1292] = {.lex_state = 2, .external_lex_state = 4}, + [1290] = {.lex_state = 2, .external_lex_state = 3}, + [1291] = {.lex_state = 2, .external_lex_state = 3}, + [1292] = {.lex_state = 75, .external_lex_state = 2}, [1293] = {.lex_state = 2, .external_lex_state = 3}, [1294] = {.lex_state = 2, .external_lex_state = 4}, - [1295] = {.lex_state = 2, .external_lex_state = 3}, + [1295] = {.lex_state = 75, .external_lex_state = 2}, [1296] = {.lex_state = 2, .external_lex_state = 3}, - [1297] = {.lex_state = 75, .external_lex_state = 2}, + [1297] = {.lex_state = 2, .external_lex_state = 3}, [1298] = {.lex_state = 2, .external_lex_state = 3}, - [1299] = {.lex_state = 2, .external_lex_state = 3}, - [1300] = {.lex_state = 2, .external_lex_state = 4}, + [1299] = {.lex_state = 2, .external_lex_state = 4}, + [1300] = {.lex_state = 2, .external_lex_state = 3}, [1301] = {.lex_state = 2, .external_lex_state = 3}, - [1302] = {.lex_state = 3, .external_lex_state = 3}, - [1303] = {.lex_state = 2, .external_lex_state = 4}, + [1302] = {.lex_state = 2, .external_lex_state = 4}, + [1303] = {.lex_state = 2, .external_lex_state = 3}, [1304] = {.lex_state = 2, .external_lex_state = 3}, [1305] = {.lex_state = 2, .external_lex_state = 3}, [1306] = {.lex_state = 2, .external_lex_state = 3}, - [1307] = {.lex_state = 2, .external_lex_state = 4}, - [1308] = {.lex_state = 2, .external_lex_state = 4}, - [1309] = {.lex_state = 2, .external_lex_state = 3}, - [1310] = {.lex_state = 2, .external_lex_state = 4}, + [1307] = {.lex_state = 2, .external_lex_state = 3}, + [1308] = {.lex_state = 2, .external_lex_state = 3}, + [1309] = {.lex_state = 75, .external_lex_state = 2}, + [1310] = {.lex_state = 2, .external_lex_state = 3}, [1311] = {.lex_state = 2, .external_lex_state = 4}, - [1312] = {.lex_state = 2, .external_lex_state = 4}, - [1313] = {.lex_state = 2, .external_lex_state = 4}, - [1314] = {.lex_state = 2, .external_lex_state = 3}, - [1315] = {.lex_state = 2, .external_lex_state = 4}, + [1312] = {.lex_state = 2, .external_lex_state = 3}, + [1313] = {.lex_state = 75, .external_lex_state = 2}, + [1314] = {.lex_state = 2, .external_lex_state = 4}, + [1315] = {.lex_state = 2, .external_lex_state = 3}, [1316] = {.lex_state = 2, .external_lex_state = 4}, - [1317] = {.lex_state = 75, .external_lex_state = 2}, - [1318] = {.lex_state = 2, .external_lex_state = 3}, - [1319] = {.lex_state = 2, .external_lex_state = 3}, - [1320] = {.lex_state = 2, .external_lex_state = 4}, - [1321] = {.lex_state = 2, .external_lex_state = 4}, - [1322] = {.lex_state = 2, .external_lex_state = 3}, + [1317] = {.lex_state = 2, .external_lex_state = 4}, + [1318] = {.lex_state = 2, .external_lex_state = 4}, + [1319] = {.lex_state = 2, .external_lex_state = 4}, + [1320] = {.lex_state = 3, .external_lex_state = 3}, + [1321] = {.lex_state = 75, .external_lex_state = 2}, + [1322] = {.lex_state = 2, .external_lex_state = 4}, [1323] = {.lex_state = 2, .external_lex_state = 3}, - [1324] = {.lex_state = 2, .external_lex_state = 4}, + [1324] = {.lex_state = 2, .external_lex_state = 3}, [1325] = {.lex_state = 2, .external_lex_state = 4}, - [1326] = {.lex_state = 2, .external_lex_state = 4}, + [1326] = {.lex_state = 2, .external_lex_state = 3}, [1327] = {.lex_state = 2, .external_lex_state = 3}, [1328] = {.lex_state = 2, .external_lex_state = 4}, - [1329] = {.lex_state = 2, .external_lex_state = 4}, + [1329] = {.lex_state = 2, .external_lex_state = 3}, [1330] = {.lex_state = 2, .external_lex_state = 4}, [1331] = {.lex_state = 2, .external_lex_state = 4}, - [1332] = {.lex_state = 75, .external_lex_state = 2}, - [1333] = {.lex_state = 2, .external_lex_state = 3}, + [1332] = {.lex_state = 2, .external_lex_state = 3}, + [1333] = {.lex_state = 2, .external_lex_state = 4}, [1334] = {.lex_state = 2, .external_lex_state = 4}, [1335] = {.lex_state = 2, .external_lex_state = 4}, - [1336] = {.lex_state = 2, .external_lex_state = 3}, + [1336] = {.lex_state = 2, .external_lex_state = 4}, [1337] = {.lex_state = 2, .external_lex_state = 4}, - [1338] = {.lex_state = 2, .external_lex_state = 3}, + [1338] = {.lex_state = 2, .external_lex_state = 4}, [1339] = {.lex_state = 2, .external_lex_state = 3}, - [1340] = {.lex_state = 2, .external_lex_state = 3}, - [1341] = {.lex_state = 2, .external_lex_state = 3}, - [1342] = {.lex_state = 2, .external_lex_state = 4}, - [1343] = {.lex_state = 3, .external_lex_state = 3}, - [1344] = {.lex_state = 75, .external_lex_state = 2}, - [1345] = {.lex_state = 2, .external_lex_state = 3}, - [1346] = {.lex_state = 2, .external_lex_state = 3}, - [1347] = {.lex_state = 2, .external_lex_state = 4}, + [1340] = {.lex_state = 2, .external_lex_state = 4}, + [1341] = {.lex_state = 2, .external_lex_state = 4}, + [1342] = {.lex_state = 2, .external_lex_state = 3}, + [1343] = {.lex_state = 2, .external_lex_state = 4}, + [1344] = {.lex_state = 2, .external_lex_state = 4}, + [1345] = {.lex_state = 2, .external_lex_state = 4}, + [1346] = {.lex_state = 2, .external_lex_state = 4}, + [1347] = {.lex_state = 2, .external_lex_state = 3}, [1348] = {.lex_state = 2, .external_lex_state = 4}, [1349] = {.lex_state = 2, .external_lex_state = 3}, - [1350] = {.lex_state = 2, .external_lex_state = 4}, - [1351] = {.lex_state = 2, .external_lex_state = 4}, - [1352] = {.lex_state = 2, .external_lex_state = 3}, - [1353] = {.lex_state = 3, .external_lex_state = 3}, - [1354] = {.lex_state = 2, .external_lex_state = 3}, - [1355] = {.lex_state = 3, .external_lex_state = 3}, - [1356] = {.lex_state = 2, .external_lex_state = 3}, - [1357] = {.lex_state = 2, .external_lex_state = 3}, + [1350] = {.lex_state = 2, .external_lex_state = 3}, + [1351] = {.lex_state = 2, .external_lex_state = 3}, + [1352] = {.lex_state = 2, .external_lex_state = 4}, + [1353] = {.lex_state = 2, .external_lex_state = 4}, + [1354] = {.lex_state = 3, .external_lex_state = 3}, + [1355] = {.lex_state = 2, .external_lex_state = 3}, + [1356] = {.lex_state = 2, .external_lex_state = 4}, + [1357] = {.lex_state = 3, .external_lex_state = 3}, [1358] = {.lex_state = 2, .external_lex_state = 3}, - [1359] = {.lex_state = 2, .external_lex_state = 4}, + [1359] = {.lex_state = 2, .external_lex_state = 3}, [1360] = {.lex_state = 2, .external_lex_state = 3}, [1361] = {.lex_state = 2, .external_lex_state = 3}, - [1362] = {.lex_state = 2, .external_lex_state = 4}, + [1362] = {.lex_state = 2, .external_lex_state = 3}, [1363] = {.lex_state = 2, .external_lex_state = 3}, - [1364] = {.lex_state = 2, .external_lex_state = 4}, + [1364] = {.lex_state = 3, .external_lex_state = 3}, [1365] = {.lex_state = 2, .external_lex_state = 3}, [1366] = {.lex_state = 2, .external_lex_state = 3}, - [1367] = {.lex_state = 2, .external_lex_state = 4}, + [1367] = {.lex_state = 2, .external_lex_state = 3}, [1368] = {.lex_state = 2, .external_lex_state = 3}, - [1369] = {.lex_state = 2, .external_lex_state = 3}, + [1369] = {.lex_state = 2, .external_lex_state = 4}, [1370] = {.lex_state = 2, .external_lex_state = 3}, [1371] = {.lex_state = 2, .external_lex_state = 3}, [1372] = {.lex_state = 2, .external_lex_state = 3}, [1373] = {.lex_state = 2, .external_lex_state = 3}, - [1374] = {.lex_state = 3, .external_lex_state = 3}, - [1375] = {.lex_state = 3, .external_lex_state = 3}, - [1376] = {.lex_state = 2, .external_lex_state = 3}, + [1374] = {.lex_state = 2, .external_lex_state = 3}, + [1375] = {.lex_state = 2, .external_lex_state = 3}, + [1376] = {.lex_state = 2, .external_lex_state = 4}, [1377] = {.lex_state = 2, .external_lex_state = 3}, [1378] = {.lex_state = 2, .external_lex_state = 3}, [1379] = {.lex_state = 2, .external_lex_state = 3}, - [1380] = {.lex_state = 9, .external_lex_state = 2}, - [1381] = {.lex_state = 2, .external_lex_state = 3}, - [1382] = {.lex_state = 9, .external_lex_state = 2}, - [1383] = {.lex_state = 2, .external_lex_state = 4}, + [1380] = {.lex_state = 3, .external_lex_state = 3}, + [1381] = {.lex_state = 2, .external_lex_state = 4}, + [1382] = {.lex_state = 2, .external_lex_state = 3}, + [1383] = {.lex_state = 9, .external_lex_state = 2}, [1384] = {.lex_state = 2, .external_lex_state = 4}, - [1385] = {.lex_state = 2, .external_lex_state = 4}, + [1385] = {.lex_state = 2, .external_lex_state = 3}, [1386] = {.lex_state = 9, .external_lex_state = 2}, - [1387] = {.lex_state = 3, .external_lex_state = 3}, + [1387] = {.lex_state = 2, .external_lex_state = 3}, [1388] = {.lex_state = 2, .external_lex_state = 3}, - [1389] = {.lex_state = 9, .external_lex_state = 2}, - [1390] = {.lex_state = 2, .external_lex_state = 3}, + [1389] = {.lex_state = 2, .external_lex_state = 3}, + [1390] = {.lex_state = 2, .external_lex_state = 4}, [1391] = {.lex_state = 2, .external_lex_state = 3}, [1392] = {.lex_state = 2, .external_lex_state = 3}, - [1393] = {.lex_state = 2, .external_lex_state = 3}, - [1394] = {.lex_state = 9, .external_lex_state = 2}, - [1395] = {.lex_state = 9, .external_lex_state = 2}, - [1396] = {.lex_state = 2, .external_lex_state = 3}, - [1397] = {.lex_state = 2, .external_lex_state = 3}, - [1398] = {.lex_state = 2, .external_lex_state = 3}, - [1399] = {.lex_state = 2, .external_lex_state = 3}, - [1400] = {.lex_state = 2, .external_lex_state = 4}, - [1401] = {.lex_state = 2, .external_lex_state = 3}, + [1393] = {.lex_state = 9, .external_lex_state = 2}, + [1394] = {.lex_state = 2, .external_lex_state = 3}, + [1395] = {.lex_state = 2, .external_lex_state = 3}, + [1396] = {.lex_state = 2, .external_lex_state = 4}, + [1397] = {.lex_state = 9, .external_lex_state = 2}, + [1398] = {.lex_state = 3, .external_lex_state = 3}, + [1399] = {.lex_state = 9, .external_lex_state = 2}, + [1400] = {.lex_state = 2, .external_lex_state = 3}, + [1401] = {.lex_state = 9, .external_lex_state = 2}, [1402] = {.lex_state = 2, .external_lex_state = 3}, [1403] = {.lex_state = 2, .external_lex_state = 3}, [1404] = {.lex_state = 2, .external_lex_state = 3}, @@ -14332,8 +14372,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1406] = {.lex_state = 2, .external_lex_state = 3}, [1407] = {.lex_state = 2, .external_lex_state = 3}, [1408] = {.lex_state = 2, .external_lex_state = 3}, - [1409] = {.lex_state = 2, .external_lex_state = 3}, - [1410] = {.lex_state = 2, .external_lex_state = 4}, + [1409] = {.lex_state = 2, .external_lex_state = 4}, + [1410] = {.lex_state = 2, .external_lex_state = 3}, [1411] = {.lex_state = 2, .external_lex_state = 3}, [1412] = {.lex_state = 2, .external_lex_state = 3}, [1413] = {.lex_state = 2, .external_lex_state = 3}, @@ -14344,47 +14384,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1418] = {.lex_state = 2, .external_lex_state = 3}, [1419] = {.lex_state = 9, .external_lex_state = 2}, [1420] = {.lex_state = 2, .external_lex_state = 3}, - [1421] = {.lex_state = 2, .external_lex_state = 3}, - [1422] = {.lex_state = 2, .external_lex_state = 3}, - [1423] = {.lex_state = 9, .external_lex_state = 2}, - [1424] = {.lex_state = 9, .external_lex_state = 2}, + [1421] = {.lex_state = 9, .external_lex_state = 2}, + [1422] = {.lex_state = 9, .external_lex_state = 2}, + [1423] = {.lex_state = 2, .external_lex_state = 3}, + [1424] = {.lex_state = 2, .external_lex_state = 3}, [1425] = {.lex_state = 2, .external_lex_state = 3}, - [1426] = {.lex_state = 9, .external_lex_state = 2}, + [1426] = {.lex_state = 2, .external_lex_state = 3}, [1427] = {.lex_state = 2, .external_lex_state = 3}, [1428] = {.lex_state = 2, .external_lex_state = 3}, [1429] = {.lex_state = 2, .external_lex_state = 3}, - [1430] = {.lex_state = 2, .external_lex_state = 3}, + [1430] = {.lex_state = 9, .external_lex_state = 2}, [1431] = {.lex_state = 2, .external_lex_state = 3}, - [1432] = {.lex_state = 9, .external_lex_state = 2}, - [1433] = {.lex_state = 9, .external_lex_state = 2}, - [1434] = {.lex_state = 2, .external_lex_state = 3}, - [1435] = {.lex_state = 2, .external_lex_state = 3}, - [1436] = {.lex_state = 9, .external_lex_state = 2}, - [1437] = {.lex_state = 9, .external_lex_state = 2}, - [1438] = {.lex_state = 2, .external_lex_state = 3}, + [1432] = {.lex_state = 2, .external_lex_state = 3}, + [1433] = {.lex_state = 2, .external_lex_state = 3}, + [1434] = {.lex_state = 9, .external_lex_state = 2}, + [1435] = {.lex_state = 9, .external_lex_state = 2}, + [1436] = {.lex_state = 2, .external_lex_state = 3}, + [1437] = {.lex_state = 2, .external_lex_state = 3}, + [1438] = {.lex_state = 9, .external_lex_state = 2}, [1439] = {.lex_state = 9, .external_lex_state = 2}, [1440] = {.lex_state = 2, .external_lex_state = 3}, [1441] = {.lex_state = 9, .external_lex_state = 2}, - [1442] = {.lex_state = 9, .external_lex_state = 2}, - [1443] = {.lex_state = 9, .external_lex_state = 2}, - [1444] = {.lex_state = 2, .external_lex_state = 3}, + [1442] = {.lex_state = 2, .external_lex_state = 3}, + [1443] = {.lex_state = 2, .external_lex_state = 3}, + [1444] = {.lex_state = 9, .external_lex_state = 2}, [1445] = {.lex_state = 2, .external_lex_state = 3}, - [1446] = {.lex_state = 2, .external_lex_state = 3}, - [1447] = {.lex_state = 2, .external_lex_state = 3}, + [1446] = {.lex_state = 9, .external_lex_state = 2}, + [1447] = {.lex_state = 9, .external_lex_state = 2}, [1448] = {.lex_state = 2, .external_lex_state = 3}, - [1449] = {.lex_state = 2, .external_lex_state = 3}, - [1450] = {.lex_state = 9, .external_lex_state = 2}, - [1451] = {.lex_state = 2, .external_lex_state = 3}, + [1449] = {.lex_state = 9, .external_lex_state = 2}, + [1450] = {.lex_state = 2, .external_lex_state = 3}, + [1451] = {.lex_state = 9, .external_lex_state = 2}, [1452] = {.lex_state = 2, .external_lex_state = 3}, [1453] = {.lex_state = 2, .external_lex_state = 3}, [1454] = {.lex_state = 9, .external_lex_state = 2}, - [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1455] = {.lex_state = 2, .external_lex_state = 3}, [1456] = {.lex_state = 2, .external_lex_state = 3}, [1457] = {.lex_state = 2, .external_lex_state = 3}, [1458] = {.lex_state = 2, .external_lex_state = 3}, [1459] = {.lex_state = 2, .external_lex_state = 3}, - [1460] = {.lex_state = 9, .external_lex_state = 2}, - [1461] = {.lex_state = 2, .external_lex_state = 3}, + [1460] = {.lex_state = 2, .external_lex_state = 3}, + [1461] = {.lex_state = 9, .external_lex_state = 2}, [1462] = {.lex_state = 9, .external_lex_state = 2}, [1463] = {.lex_state = 9, .external_lex_state = 2}, [1464] = {.lex_state = 2, .external_lex_state = 3}, @@ -14404,47 +14444,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1478] = {.lex_state = 9, .external_lex_state = 2}, [1479] = {.lex_state = 9, .external_lex_state = 2}, [1480] = {.lex_state = 9, .external_lex_state = 2}, - [1481] = {.lex_state = 75, .external_lex_state = 5}, + [1481] = {.lex_state = 9, .external_lex_state = 2}, [1482] = {.lex_state = 9, .external_lex_state = 2}, [1483] = {.lex_state = 9, .external_lex_state = 2}, [1484] = {.lex_state = 9, .external_lex_state = 2}, [1485] = {.lex_state = 9, .external_lex_state = 2}, [1486] = {.lex_state = 75, .external_lex_state = 5}, - [1487] = {.lex_state = 75, .external_lex_state = 5}, + [1487] = {.lex_state = 9, .external_lex_state = 2}, [1488] = {.lex_state = 75, .external_lex_state = 5}, - [1489] = {.lex_state = 9, .external_lex_state = 2}, + [1489] = {.lex_state = 75, .external_lex_state = 5}, [1490] = {.lex_state = 9, .external_lex_state = 2}, [1491] = {.lex_state = 9, .external_lex_state = 2}, - [1492] = {.lex_state = 9, .external_lex_state = 2}, - [1493] = {.lex_state = 75, .external_lex_state = 5}, + [1492] = {.lex_state = 75, .external_lex_state = 5}, + [1493] = {.lex_state = 9, .external_lex_state = 2}, [1494] = {.lex_state = 9, .external_lex_state = 2}, - [1495] = {.lex_state = 9, .external_lex_state = 2}, + [1495] = {.lex_state = 75, .external_lex_state = 5}, [1496] = {.lex_state = 9, .external_lex_state = 2}, [1497] = {.lex_state = 75, .external_lex_state = 2}, [1498] = {.lex_state = 75, .external_lex_state = 2}, [1499] = {.lex_state = 75, .external_lex_state = 2}, - [1500] = {.lex_state = 75, .external_lex_state = 2}, - [1501] = {.lex_state = 74, .external_lex_state = 3}, + [1500] = {.lex_state = 74, .external_lex_state = 3}, + [1501] = {.lex_state = 75, .external_lex_state = 2}, [1502] = {.lex_state = 75, .external_lex_state = 2}, [1503] = {.lex_state = 75, .external_lex_state = 2}, [1504] = {.lex_state = 74, .external_lex_state = 3}, - [1505] = {.lex_state = 74, .external_lex_state = 3}, - [1506] = {.lex_state = 74, .external_lex_state = 3}, + [1505] = {.lex_state = 75, .external_lex_state = 5}, + [1506] = {.lex_state = 74, .external_lex_state = 4}, [1507] = {.lex_state = 75, .external_lex_state = 5}, - [1508] = {.lex_state = 74, .external_lex_state = 4}, + [1508] = {.lex_state = 74, .external_lex_state = 3}, [1509] = {.lex_state = 74, .external_lex_state = 3}, - [1510] = {.lex_state = 75, .external_lex_state = 5}, - [1511] = {.lex_state = 74, .external_lex_state = 4}, + [1510] = {.lex_state = 74, .external_lex_state = 4}, + [1511] = {.lex_state = 74, .external_lex_state = 3}, [1512] = {.lex_state = 74, .external_lex_state = 3}, - [1513] = {.lex_state = 74, .external_lex_state = 3}, + [1513] = {.lex_state = 75, .external_lex_state = 2}, [1514] = {.lex_state = 74, .external_lex_state = 3}, [1515] = {.lex_state = 74, .external_lex_state = 3}, [1516] = {.lex_state = 74, .external_lex_state = 3}, - [1517] = {.lex_state = 74, .external_lex_state = 3}, + [1517] = {.lex_state = 74, .external_lex_state = 4}, [1518] = {.lex_state = 74, .external_lex_state = 3}, [1519] = {.lex_state = 74, .external_lex_state = 3}, - [1520] = {.lex_state = 75, .external_lex_state = 2}, - [1521] = {.lex_state = 74, .external_lex_state = 4}, + [1520] = {.lex_state = 74, .external_lex_state = 3}, + [1521] = {.lex_state = 74, .external_lex_state = 3}, [1522] = {.lex_state = 74, .external_lex_state = 3}, [1523] = {.lex_state = 74, .external_lex_state = 3}, [1524] = {.lex_state = 74, .external_lex_state = 3}, @@ -14457,7 +14497,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1531] = {.lex_state = 74, .external_lex_state = 3}, [1532] = {.lex_state = 74, .external_lex_state = 3}, [1533] = {.lex_state = 74, .external_lex_state = 3}, - [1534] = {.lex_state = 74, .external_lex_state = 4}, + [1534] = {.lex_state = 74, .external_lex_state = 3}, [1535] = {.lex_state = 74, .external_lex_state = 3}, [1536] = {.lex_state = 74, .external_lex_state = 3}, [1537] = {.lex_state = 74, .external_lex_state = 3}, @@ -14502,40 +14542,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1576] = {.lex_state = 74, .external_lex_state = 3}, [1577] = {.lex_state = 74, .external_lex_state = 3}, [1578] = {.lex_state = 74, .external_lex_state = 3}, - [1579] = {.lex_state = 74, .external_lex_state = 4}, + [1579] = {.lex_state = 74, .external_lex_state = 3}, [1580] = {.lex_state = 74, .external_lex_state = 3}, - [1581] = {.lex_state = 74, .external_lex_state = 3}, + [1581] = {.lex_state = 74, .external_lex_state = 4}, [1582] = {.lex_state = 74, .external_lex_state = 3}, [1583] = {.lex_state = 74, .external_lex_state = 3}, [1584] = {.lex_state = 74, .external_lex_state = 3}, [1585] = {.lex_state = 74, .external_lex_state = 3}, - [1586] = {.lex_state = 74, .external_lex_state = 3}, + [1586] = {.lex_state = 74, .external_lex_state = 4}, [1587] = {.lex_state = 74, .external_lex_state = 3}, [1588] = {.lex_state = 74, .external_lex_state = 3}, [1589] = {.lex_state = 74, .external_lex_state = 3}, [1590] = {.lex_state = 74, .external_lex_state = 3}, [1591] = {.lex_state = 74, .external_lex_state = 3}, - [1592] = {.lex_state = 74, .external_lex_state = 3}, + [1592] = {.lex_state = 74, .external_lex_state = 4}, [1593] = {.lex_state = 74, .external_lex_state = 3}, [1594] = {.lex_state = 74, .external_lex_state = 3}, [1595] = {.lex_state = 74, .external_lex_state = 3}, [1596] = {.lex_state = 74, .external_lex_state = 3}, - [1597] = {.lex_state = 74, .external_lex_state = 3}, + [1597] = {.lex_state = 74, .external_lex_state = 4}, [1598] = {.lex_state = 74, .external_lex_state = 3}, [1599] = {.lex_state = 74, .external_lex_state = 3}, [1600] = {.lex_state = 74, .external_lex_state = 3}, [1601] = {.lex_state = 74, .external_lex_state = 3}, [1602] = {.lex_state = 74, .external_lex_state = 3}, [1603] = {.lex_state = 74, .external_lex_state = 3}, - [1604] = {.lex_state = 74, .external_lex_state = 3}, + [1604] = {.lex_state = 74, .external_lex_state = 4}, [1605] = {.lex_state = 74, .external_lex_state = 3}, - [1606] = {.lex_state = 74, .external_lex_state = 4}, + [1606] = {.lex_state = 74, .external_lex_state = 3}, [1607] = {.lex_state = 74, .external_lex_state = 3}, - [1608] = {.lex_state = 74, .external_lex_state = 4}, + [1608] = {.lex_state = 74, .external_lex_state = 3}, [1609] = {.lex_state = 74, .external_lex_state = 3}, [1610] = {.lex_state = 74, .external_lex_state = 3}, [1611] = {.lex_state = 74, .external_lex_state = 3}, - [1612] = {.lex_state = 74, .external_lex_state = 4}, + [1612] = {.lex_state = 74, .external_lex_state = 3}, [1613] = {.lex_state = 74, .external_lex_state = 3}, [1614] = {.lex_state = 74, .external_lex_state = 3}, [1615] = {.lex_state = 74, .external_lex_state = 3}, @@ -14584,8 +14624,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1658] = {.lex_state = 74, .external_lex_state = 3}, [1659] = {.lex_state = 74, .external_lex_state = 3}, [1660] = {.lex_state = 74, .external_lex_state = 3}, - [1661] = {.lex_state = 74, .external_lex_state = 3}, - [1662] = {.lex_state = 74, .external_lex_state = 3}, + [1661] = {.lex_state = 75, .external_lex_state = 5}, + [1662] = {.lex_state = 74, .external_lex_state = 4}, [1663] = {.lex_state = 74, .external_lex_state = 3}, [1664] = {.lex_state = 74, .external_lex_state = 3}, [1665] = {.lex_state = 74, .external_lex_state = 3}, @@ -14603,7 +14643,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1677] = {.lex_state = 74, .external_lex_state = 3}, [1678] = {.lex_state = 74, .external_lex_state = 3}, [1679] = {.lex_state = 74, .external_lex_state = 3}, - [1680] = {.lex_state = 74, .external_lex_state = 3}, + [1680] = {.lex_state = 75, .external_lex_state = 5}, [1681] = {.lex_state = 74, .external_lex_state = 3}, [1682] = {.lex_state = 74, .external_lex_state = 3}, [1683] = {.lex_state = 74, .external_lex_state = 3}, @@ -14617,9 +14657,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1691] = {.lex_state = 74, .external_lex_state = 3}, [1692] = {.lex_state = 74, .external_lex_state = 3}, [1693] = {.lex_state = 74, .external_lex_state = 3}, - [1694] = {.lex_state = 74, .external_lex_state = 3}, + [1694] = {.lex_state = 75, .external_lex_state = 5}, [1695] = {.lex_state = 74, .external_lex_state = 3}, - [1696] = {.lex_state = 74, .external_lex_state = 4}, + [1696] = {.lex_state = 74, .external_lex_state = 3}, [1697] = {.lex_state = 74, .external_lex_state = 3}, [1698] = {.lex_state = 74, .external_lex_state = 3}, [1699] = {.lex_state = 74, .external_lex_state = 3}, @@ -14627,107 +14667,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1701] = {.lex_state = 74, .external_lex_state = 3}, [1702] = {.lex_state = 74, .external_lex_state = 3}, [1703] = {.lex_state = 74, .external_lex_state = 3}, - [1704] = {.lex_state = 74, .external_lex_state = 3}, + [1704] = {.lex_state = 75, .external_lex_state = 5}, [1705] = {.lex_state = 74, .external_lex_state = 3}, [1706] = {.lex_state = 74, .external_lex_state = 3}, [1707] = {.lex_state = 74, .external_lex_state = 3}, - [1708] = {.lex_state = 74, .external_lex_state = 4}, - [1709] = {.lex_state = 74, .external_lex_state = 4}, + [1708] = {.lex_state = 74, .external_lex_state = 3}, + [1709] = {.lex_state = 74, .external_lex_state = 3}, [1710] = {.lex_state = 74, .external_lex_state = 3}, - [1711] = {.lex_state = 74, .external_lex_state = 3}, + [1711] = {.lex_state = 75, .external_lex_state = 5}, [1712] = {.lex_state = 74, .external_lex_state = 3}, - [1713] = {.lex_state = 74, .external_lex_state = 3}, + [1713] = {.lex_state = 74, .external_lex_state = 4}, [1714] = {.lex_state = 74, .external_lex_state = 3}, [1715] = {.lex_state = 74, .external_lex_state = 3}, [1716] = {.lex_state = 74, .external_lex_state = 3}, - [1717] = {.lex_state = 75, .external_lex_state = 5}, - [1718] = {.lex_state = 75, .external_lex_state = 5}, - [1719] = {.lex_state = 75, .external_lex_state = 5}, - [1720] = {.lex_state = 75, .external_lex_state = 5}, - [1721] = {.lex_state = 75, .external_lex_state = 5}, + [1717] = {.lex_state = 74, .external_lex_state = 3}, + [1718] = {.lex_state = 74, .external_lex_state = 4}, + [1719] = {.lex_state = 74, .external_lex_state = 3}, + [1720] = {.lex_state = 74, .external_lex_state = 3}, + [1721] = {.lex_state = 74, .external_lex_state = 3}, [1722] = {.lex_state = 74, .external_lex_state = 3}, [1723] = {.lex_state = 74, .external_lex_state = 3}, - [1724] = {.lex_state = 74, .external_lex_state = 4}, - [1725] = {.lex_state = 75, .external_lex_state = 5}, + [1724] = {.lex_state = 74, .external_lex_state = 3}, + [1725] = {.lex_state = 74, .external_lex_state = 3}, [1726] = {.lex_state = 74, .external_lex_state = 3}, - [1727] = {.lex_state = 74, .external_lex_state = 4}, - [1728] = {.lex_state = 75, .external_lex_state = 5}, - [1729] = {.lex_state = 74, .external_lex_state = 4}, - [1730] = {.lex_state = 74, .external_lex_state = 4}, - [1731] = {.lex_state = 75, .external_lex_state = 5}, - [1732] = {.lex_state = 74, .external_lex_state = 4}, - [1733] = {.lex_state = 74, .external_lex_state = 4}, + [1727] = {.lex_state = 74, .external_lex_state = 3}, + [1728] = {.lex_state = 74, .external_lex_state = 4}, + [1729] = {.lex_state = 74, .external_lex_state = 3}, + [1730] = {.lex_state = 75, .external_lex_state = 5}, + [1731] = {.lex_state = 74, .external_lex_state = 3}, + [1732] = {.lex_state = 74, .external_lex_state = 3}, + [1733] = {.lex_state = 74, .external_lex_state = 3}, [1734] = {.lex_state = 75, .external_lex_state = 5}, - [1735] = {.lex_state = 74, .external_lex_state = 4}, - [1736] = {.lex_state = 75, .external_lex_state = 5}, - [1737] = {.lex_state = 74, .external_lex_state = 4}, - [1738] = {.lex_state = 75, .external_lex_state = 5}, - [1739] = {.lex_state = 74, .external_lex_state = 3}, - [1740] = {.lex_state = 74, .external_lex_state = 3}, - [1741] = {.lex_state = 74, .external_lex_state = 3}, - [1742] = {.lex_state = 75, .external_lex_state = 5}, + [1735] = {.lex_state = 74, .external_lex_state = 3}, + [1736] = {.lex_state = 74, .external_lex_state = 3}, + [1737] = {.lex_state = 74, .external_lex_state = 3}, + [1738] = {.lex_state = 74, .external_lex_state = 4}, + [1739] = {.lex_state = 74, .external_lex_state = 4}, + [1740] = {.lex_state = 74, .external_lex_state = 4}, + [1741] = {.lex_state = 75, .external_lex_state = 5}, + [1742] = {.lex_state = 74, .external_lex_state = 4}, [1743] = {.lex_state = 74, .external_lex_state = 3}, [1744] = {.lex_state = 74, .external_lex_state = 3}, [1745] = {.lex_state = 74, .external_lex_state = 3}, [1746] = {.lex_state = 74, .external_lex_state = 3}, - [1747] = {.lex_state = 74, .external_lex_state = 3}, - [1748] = {.lex_state = 74, .external_lex_state = 3}, - [1749] = {.lex_state = 74, .external_lex_state = 3}, + [1747] = {.lex_state = 74, .external_lex_state = 4}, + [1748] = {.lex_state = 75, .external_lex_state = 5}, + [1749] = {.lex_state = 75, .external_lex_state = 5}, [1750] = {.lex_state = 74, .external_lex_state = 4}, [1751] = {.lex_state = 74, .external_lex_state = 3}, [1752] = {.lex_state = 74, .external_lex_state = 3}, - [1753] = {.lex_state = 74, .external_lex_state = 3}, - [1754] = {.lex_state = 74, .external_lex_state = 3}, - [1755] = {.lex_state = 74, .external_lex_state = 3}, + [1753] = {.lex_state = 75, .external_lex_state = 5}, + [1754] = {.lex_state = 75, .external_lex_state = 5}, + [1755] = {.lex_state = 74, .external_lex_state = 4}, [1756] = {.lex_state = 74, .external_lex_state = 3}, - [1757] = {.lex_state = 74, .external_lex_state = 3}, + [1757] = {.lex_state = 75, .external_lex_state = 5}, [1758] = {.lex_state = 74, .external_lex_state = 3}, [1759] = {.lex_state = 74, .external_lex_state = 3}, [1760] = {.lex_state = 74, .external_lex_state = 3}, - [1761] = {.lex_state = 74, .external_lex_state = 3}, + [1761] = {.lex_state = 74, .external_lex_state = 4}, [1762] = {.lex_state = 74, .external_lex_state = 3}, [1763] = {.lex_state = 74, .external_lex_state = 3}, [1764] = {.lex_state = 74, .external_lex_state = 3}, - [1765] = {.lex_state = 74, .external_lex_state = 3}, + [1765] = {.lex_state = 74, .external_lex_state = 4}, [1766] = {.lex_state = 74, .external_lex_state = 4}, [1767] = {.lex_state = 75, .external_lex_state = 5}, - [1768] = {.lex_state = 74, .external_lex_state = 3}, - [1769] = {.lex_state = 75, .external_lex_state = 5}, - [1770] = {.lex_state = 75, .external_lex_state = 5}, + [1768] = {.lex_state = 75, .external_lex_state = 5}, + [1769] = {.lex_state = 74, .external_lex_state = 3}, + [1770] = {.lex_state = 74, .external_lex_state = 3}, [1771] = {.lex_state = 74, .external_lex_state = 4}, - [1772] = {.lex_state = 75, .external_lex_state = 5}, + [1772] = {.lex_state = 74, .external_lex_state = 3}, [1773] = {.lex_state = 75, .external_lex_state = 5}, - [1774] = {.lex_state = 74, .external_lex_state = 4}, - [1775] = {.lex_state = 75, .external_lex_state = 5}, + [1774] = {.lex_state = 74, .external_lex_state = 3}, + [1775] = {.lex_state = 74, .external_lex_state = 3}, [1776] = {.lex_state = 74, .external_lex_state = 3}, - [1777] = {.lex_state = 74, .external_lex_state = 3}, + [1777] = {.lex_state = 75, .external_lex_state = 5}, [1778] = {.lex_state = 74, .external_lex_state = 3}, [1779] = {.lex_state = 74, .external_lex_state = 3}, - [1780] = {.lex_state = 74, .external_lex_state = 4}, - [1781] = {.lex_state = 74, .external_lex_state = 4}, - [1782] = {.lex_state = 74, .external_lex_state = 4}, - [1783] = {.lex_state = 75, .external_lex_state = 5}, - [1784] = {.lex_state = 75, .external_lex_state = 5}, - [1785] = {.lex_state = 74, .external_lex_state = 4}, + [1780] = {.lex_state = 74, .external_lex_state = 3}, + [1781] = {.lex_state = 74, .external_lex_state = 3}, + [1782] = {.lex_state = 74, .external_lex_state = 3}, + [1783] = {.lex_state = 74, .external_lex_state = 3}, + [1784] = {.lex_state = 74, .external_lex_state = 3}, + [1785] = {.lex_state = 75, .external_lex_state = 5}, [1786] = {.lex_state = 74, .external_lex_state = 4}, - [1787] = {.lex_state = 74, .external_lex_state = 3}, + [1787] = {.lex_state = 74, .external_lex_state = 4}, [1788] = {.lex_state = 74, .external_lex_state = 4}, - [1789] = {.lex_state = 74, .external_lex_state = 4}, - [1790] = {.lex_state = 74, .external_lex_state = 4}, + [1789] = {.lex_state = 75, .external_lex_state = 5}, + [1790] = {.lex_state = 74, .external_lex_state = 3}, [1791] = {.lex_state = 74, .external_lex_state = 4}, - [1792] = {.lex_state = 75, .external_lex_state = 5}, - [1793] = {.lex_state = 74, .external_lex_state = 3}, - [1794] = {.lex_state = 74, .external_lex_state = 3}, + [1792] = {.lex_state = 74, .external_lex_state = 3}, + [1793] = {.lex_state = 74, .external_lex_state = 4}, + [1794] = {.lex_state = 74, .external_lex_state = 4}, [1795] = {.lex_state = 74, .external_lex_state = 4}, [1796] = {.lex_state = 74, .external_lex_state = 4}, - [1797] = {.lex_state = 74, .external_lex_state = 3}, + [1797] = {.lex_state = 74, .external_lex_state = 4}, [1798] = {.lex_state = 74, .external_lex_state = 4}, - [1799] = {.lex_state = 74, .external_lex_state = 3}, + [1799] = {.lex_state = 74, .external_lex_state = 4}, [1800] = {.lex_state = 74, .external_lex_state = 4}, - [1801] = {.lex_state = 74, .external_lex_state = 4}, + [1801] = {.lex_state = 74, .external_lex_state = 3}, [1802] = {.lex_state = 74, .external_lex_state = 4}, - [1803] = {.lex_state = 74, .external_lex_state = 4}, - [1804] = {.lex_state = 74, .external_lex_state = 4}, + [1803] = {.lex_state = 74, .external_lex_state = 3}, + [1804] = {.lex_state = 75, .external_lex_state = 5}, [1805] = {.lex_state = 74, .external_lex_state = 4}, [1806] = {.lex_state = 74, .external_lex_state = 4}, [1807] = {.lex_state = 74, .external_lex_state = 4}, @@ -14736,7 +14776,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1810] = {.lex_state = 74, .external_lex_state = 4}, [1811] = {.lex_state = 74, .external_lex_state = 4}, [1812] = {.lex_state = 74, .external_lex_state = 4}, - [1813] = {.lex_state = 74, .external_lex_state = 3}, + [1813] = {.lex_state = 74, .external_lex_state = 4}, [1814] = {.lex_state = 74, .external_lex_state = 4}, [1815] = {.lex_state = 74, .external_lex_state = 4}, [1816] = {.lex_state = 74, .external_lex_state = 3}, @@ -14744,32 +14784,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1818] = {.lex_state = 74, .external_lex_state = 4}, [1819] = {.lex_state = 74, .external_lex_state = 4}, [1820] = {.lex_state = 74, .external_lex_state = 4}, - [1821] = {.lex_state = 74, .external_lex_state = 4}, + [1821] = {.lex_state = 75, .external_lex_state = 5}, [1822] = {.lex_state = 74, .external_lex_state = 4}, [1823] = {.lex_state = 74, .external_lex_state = 4}, - [1824] = {.lex_state = 75, .external_lex_state = 5}, - [1825] = {.lex_state = 74, .external_lex_state = 3}, + [1824] = {.lex_state = 74, .external_lex_state = 4}, + [1825] = {.lex_state = 74, .external_lex_state = 4}, [1826] = {.lex_state = 74, .external_lex_state = 4}, - [1827] = {.lex_state = 4, .external_lex_state = 3}, + [1827] = {.lex_state = 74, .external_lex_state = 4}, [1828] = {.lex_state = 74, .external_lex_state = 4}, - [1829] = {.lex_state = 75, .external_lex_state = 5}, + [1829] = {.lex_state = 74, .external_lex_state = 4}, [1830] = {.lex_state = 74, .external_lex_state = 4}, [1831] = {.lex_state = 74, .external_lex_state = 4}, - [1832] = {.lex_state = 74, .external_lex_state = 3}, - [1833] = {.lex_state = 75, .external_lex_state = 5}, - [1834] = {.lex_state = 74, .external_lex_state = 4}, + [1832] = {.lex_state = 74, .external_lex_state = 4}, + [1833] = {.lex_state = 74, .external_lex_state = 4}, + [1834] = {.lex_state = 74, .external_lex_state = 3}, [1835] = {.lex_state = 74, .external_lex_state = 4}, [1836] = {.lex_state = 74, .external_lex_state = 4}, [1837] = {.lex_state = 74, .external_lex_state = 4}, [1838] = {.lex_state = 74, .external_lex_state = 4}, [1839] = {.lex_state = 74, .external_lex_state = 4}, - [1840] = {.lex_state = 74, .external_lex_state = 4}, + [1840] = {.lex_state = 75, .external_lex_state = 5}, [1841] = {.lex_state = 74, .external_lex_state = 4}, [1842] = {.lex_state = 74, .external_lex_state = 4}, [1843] = {.lex_state = 74, .external_lex_state = 4}, - [1844] = {.lex_state = 74, .external_lex_state = 4}, - [1845] = {.lex_state = 74, .external_lex_state = 4}, - [1846] = {.lex_state = 74, .external_lex_state = 4}, + [1844] = {.lex_state = 74, .external_lex_state = 3}, + [1845] = {.lex_state = 74, .external_lex_state = 3}, + [1846] = {.lex_state = 74, .external_lex_state = 3}, [1847] = {.lex_state = 74, .external_lex_state = 4}, [1848] = {.lex_state = 74, .external_lex_state = 4}, [1849] = {.lex_state = 74, .external_lex_state = 4}, @@ -14784,122 +14824,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1858] = {.lex_state = 74, .external_lex_state = 4}, [1859] = {.lex_state = 74, .external_lex_state = 4}, [1860] = {.lex_state = 74, .external_lex_state = 4}, - [1861] = {.lex_state = 74, .external_lex_state = 4}, + [1861] = {.lex_state = 75, .external_lex_state = 5}, [1862] = {.lex_state = 74, .external_lex_state = 4}, [1863] = {.lex_state = 74, .external_lex_state = 4}, - [1864] = {.lex_state = 74, .external_lex_state = 3}, + [1864] = {.lex_state = 74, .external_lex_state = 4}, [1865] = {.lex_state = 74, .external_lex_state = 4}, [1866] = {.lex_state = 74, .external_lex_state = 4}, - [1867] = {.lex_state = 74, .external_lex_state = 3}, - [1868] = {.lex_state = 74, .external_lex_state = 4}, - [1869] = {.lex_state = 75, .external_lex_state = 5}, - [1870] = {.lex_state = 75, .external_lex_state = 5}, + [1867] = {.lex_state = 74, .external_lex_state = 4}, + [1868] = {.lex_state = 75, .external_lex_state = 5}, + [1869] = {.lex_state = 74, .external_lex_state = 4}, + [1870] = {.lex_state = 74, .external_lex_state = 4}, [1871] = {.lex_state = 74, .external_lex_state = 4}, - [1872] = {.lex_state = 74, .external_lex_state = 4}, + [1872] = {.lex_state = 4, .external_lex_state = 3}, [1873] = {.lex_state = 74, .external_lex_state = 4}, [1874] = {.lex_state = 74, .external_lex_state = 4}, [1875] = {.lex_state = 74, .external_lex_state = 4}, [1876] = {.lex_state = 74, .external_lex_state = 4}, - [1877] = {.lex_state = 75, .external_lex_state = 2}, - [1878] = {.lex_state = 74, .external_lex_state = 4}, + [1877] = {.lex_state = 74, .external_lex_state = 3}, + [1878] = {.lex_state = 74, .external_lex_state = 3}, [1879] = {.lex_state = 74, .external_lex_state = 4}, - [1880] = {.lex_state = 74, .external_lex_state = 4}, + [1880] = {.lex_state = 75, .external_lex_state = 5}, [1881] = {.lex_state = 74, .external_lex_state = 4}, [1882] = {.lex_state = 74, .external_lex_state = 4}, [1883] = {.lex_state = 74, .external_lex_state = 4}, [1884] = {.lex_state = 74, .external_lex_state = 4}, [1885] = {.lex_state = 74, .external_lex_state = 4}, - [1886] = {.lex_state = 74, .external_lex_state = 3}, - [1887] = {.lex_state = 74, .external_lex_state = 3}, - [1888] = {.lex_state = 74, .external_lex_state = 3}, - [1889] = {.lex_state = 75, .external_lex_state = 2}, - [1890] = {.lex_state = 74, .external_lex_state = 3}, - [1891] = {.lex_state = 74, .external_lex_state = 3}, - [1892] = {.lex_state = 75, .external_lex_state = 5}, - [1893] = {.lex_state = 74, .external_lex_state = 4}, - [1894] = {.lex_state = 74, .external_lex_state = 4}, + [1886] = {.lex_state = 74, .external_lex_state = 4}, + [1887] = {.lex_state = 74, .external_lex_state = 4}, + [1888] = {.lex_state = 75, .external_lex_state = 5}, + [1889] = {.lex_state = 74, .external_lex_state = 4}, + [1890] = {.lex_state = 75, .external_lex_state = 5}, + [1891] = {.lex_state = 75, .external_lex_state = 5}, + [1892] = {.lex_state = 74, .external_lex_state = 4}, + [1893] = {.lex_state = 74, .external_lex_state = 3}, + [1894] = {.lex_state = 74, .external_lex_state = 3}, [1895] = {.lex_state = 74, .external_lex_state = 3}, - [1896] = {.lex_state = 74, .external_lex_state = 3}, - [1897] = {.lex_state = 74, .external_lex_state = 3}, - [1898] = {.lex_state = 74, .external_lex_state = 3}, - [1899] = {.lex_state = 74, .external_lex_state = 3}, - [1900] = {.lex_state = 74, .external_lex_state = 3}, - [1901] = {.lex_state = 74, .external_lex_state = 3}, + [1896] = {.lex_state = 74, .external_lex_state = 4}, + [1897] = {.lex_state = 74, .external_lex_state = 4}, + [1898] = {.lex_state = 74, .external_lex_state = 4}, + [1899] = {.lex_state = 74, .external_lex_state = 4}, + [1900] = {.lex_state = 74, .external_lex_state = 4}, + [1901] = {.lex_state = 75, .external_lex_state = 5}, [1902] = {.lex_state = 74, .external_lex_state = 4}, - [1903] = {.lex_state = 74, .external_lex_state = 3}, - [1904] = {.lex_state = 74, .external_lex_state = 3}, + [1903] = {.lex_state = 74, .external_lex_state = 4}, + [1904] = {.lex_state = 74, .external_lex_state = 4}, [1905] = {.lex_state = 74, .external_lex_state = 4}, - [1906] = {.lex_state = 74, .external_lex_state = 3}, + [1906] = {.lex_state = 74, .external_lex_state = 4}, [1907] = {.lex_state = 74, .external_lex_state = 3}, [1908] = {.lex_state = 74, .external_lex_state = 3}, - [1909] = {.lex_state = 74, .external_lex_state = 4}, - [1910] = {.lex_state = 74, .external_lex_state = 4}, - [1911] = {.lex_state = 74, .external_lex_state = 4}, - [1912] = {.lex_state = 74, .external_lex_state = 4}, - [1913] = {.lex_state = 74, .external_lex_state = 3}, - [1914] = {.lex_state = 74, .external_lex_state = 3}, - [1915] = {.lex_state = 74, .external_lex_state = 4}, + [1909] = {.lex_state = 74, .external_lex_state = 3}, + [1910] = {.lex_state = 74, .external_lex_state = 3}, + [1911] = {.lex_state = 74, .external_lex_state = 3}, + [1912] = {.lex_state = 74, .external_lex_state = 3}, + [1913] = {.lex_state = 74, .external_lex_state = 4}, + [1914] = {.lex_state = 75, .external_lex_state = 2}, + [1915] = {.lex_state = 74, .external_lex_state = 3}, [1916] = {.lex_state = 74, .external_lex_state = 4}, - [1917] = {.lex_state = 75, .external_lex_state = 2}, + [1917] = {.lex_state = 74, .external_lex_state = 4}, [1918] = {.lex_state = 74, .external_lex_state = 4}, - [1919] = {.lex_state = 74, .external_lex_state = 3}, + [1919] = {.lex_state = 74, .external_lex_state = 4}, [1920] = {.lex_state = 74, .external_lex_state = 4}, - [1921] = {.lex_state = 74, .external_lex_state = 4}, + [1921] = {.lex_state = 74, .external_lex_state = 3}, [1922] = {.lex_state = 74, .external_lex_state = 3}, - [1923] = {.lex_state = 74, .external_lex_state = 3}, - [1924] = {.lex_state = 74, .external_lex_state = 3}, + [1923] = {.lex_state = 74, .external_lex_state = 4}, + [1924] = {.lex_state = 74, .external_lex_state = 4}, [1925] = {.lex_state = 74, .external_lex_state = 4}, [1926] = {.lex_state = 74, .external_lex_state = 4}, - [1927] = {.lex_state = 74, .external_lex_state = 3}, + [1927] = {.lex_state = 74, .external_lex_state = 4}, [1928] = {.lex_state = 74, .external_lex_state = 4}, - [1929] = {.lex_state = 75, .external_lex_state = 5}, - [1930] = {.lex_state = 74, .external_lex_state = 3}, + [1929] = {.lex_state = 74, .external_lex_state = 4}, + [1930] = {.lex_state = 74, .external_lex_state = 4}, [1931] = {.lex_state = 74, .external_lex_state = 4}, - [1932] = {.lex_state = 74, .external_lex_state = 3}, - [1933] = {.lex_state = 75, .external_lex_state = 5}, - [1934] = {.lex_state = 74, .external_lex_state = 3}, + [1932] = {.lex_state = 74, .external_lex_state = 4}, + [1933] = {.lex_state = 74, .external_lex_state = 4}, + [1934] = {.lex_state = 74, .external_lex_state = 4}, [1935] = {.lex_state = 74, .external_lex_state = 4}, - [1936] = {.lex_state = 74, .external_lex_state = 3}, - [1937] = {.lex_state = 74, .external_lex_state = 4}, - [1938] = {.lex_state = 74, .external_lex_state = 4}, - [1939] = {.lex_state = 74, .external_lex_state = 4}, - [1940] = {.lex_state = 74, .external_lex_state = 4}, - [1941] = {.lex_state = 74, .external_lex_state = 4}, - [1942] = {.lex_state = 74, .external_lex_state = 4}, - [1943] = {.lex_state = 74, .external_lex_state = 4}, - [1944] = {.lex_state = 74, .external_lex_state = 4}, - [1945] = {.lex_state = 74, .external_lex_state = 4}, + [1936] = {.lex_state = 74, .external_lex_state = 4}, + [1937] = {.lex_state = 74, .external_lex_state = 3}, + [1938] = {.lex_state = 74, .external_lex_state = 3}, + [1939] = {.lex_state = 74, .external_lex_state = 3}, + [1940] = {.lex_state = 74, .external_lex_state = 3}, + [1941] = {.lex_state = 74, .external_lex_state = 3}, + [1942] = {.lex_state = 74, .external_lex_state = 3}, + [1943] = {.lex_state = 74, .external_lex_state = 3}, + [1944] = {.lex_state = 74, .external_lex_state = 3}, + [1945] = {.lex_state = 74, .external_lex_state = 3}, [1946] = {.lex_state = 74, .external_lex_state = 3}, - [1947] = {.lex_state = 75, .external_lex_state = 2}, - [1948] = {.lex_state = 74, .external_lex_state = 4}, + [1947] = {.lex_state = 74, .external_lex_state = 3}, + [1948] = {.lex_state = 74, .external_lex_state = 3}, [1949] = {.lex_state = 74, .external_lex_state = 3}, [1950] = {.lex_state = 74, .external_lex_state = 3}, - [1951] = {.lex_state = 74, .external_lex_state = 4}, - [1952] = {.lex_state = 74, .external_lex_state = 4}, - [1953] = {.lex_state = 75, .external_lex_state = 2}, + [1951] = {.lex_state = 74, .external_lex_state = 3}, + [1952] = {.lex_state = 74, .external_lex_state = 3}, + [1953] = {.lex_state = 74, .external_lex_state = 3}, [1954] = {.lex_state = 74, .external_lex_state = 3}, [1955] = {.lex_state = 74, .external_lex_state = 3}, - [1956] = {.lex_state = 74, .external_lex_state = 4}, - [1957] = {.lex_state = 74, .external_lex_state = 4}, + [1956] = {.lex_state = 74, .external_lex_state = 3}, + [1957] = {.lex_state = 74, .external_lex_state = 3}, [1958] = {.lex_state = 74, .external_lex_state = 4}, - [1959] = {.lex_state = 74, .external_lex_state = 3}, - [1960] = {.lex_state = 74, .external_lex_state = 3}, + [1959] = {.lex_state = 74, .external_lex_state = 4}, + [1960] = {.lex_state = 74, .external_lex_state = 4}, [1961] = {.lex_state = 74, .external_lex_state = 4}, - [1962] = {.lex_state = 75, .external_lex_state = 2}, + [1962] = {.lex_state = 74, .external_lex_state = 4}, [1963] = {.lex_state = 74, .external_lex_state = 4}, [1964] = {.lex_state = 74, .external_lex_state = 4}, [1965] = {.lex_state = 74, .external_lex_state = 4}, [1966] = {.lex_state = 74, .external_lex_state = 4}, [1967] = {.lex_state = 74, .external_lex_state = 4}, - [1968] = {.lex_state = 75, .external_lex_state = 5}, - [1969] = {.lex_state = 75, .external_lex_state = 5}, + [1968] = {.lex_state = 74, .external_lex_state = 4}, + [1969] = {.lex_state = 74, .external_lex_state = 4}, [1970] = {.lex_state = 74, .external_lex_state = 4}, - [1971] = {.lex_state = 75, .external_lex_state = 5}, - [1972] = {.lex_state = 75, .external_lex_state = 5}, + [1971] = {.lex_state = 74, .external_lex_state = 4}, + [1972] = {.lex_state = 74, .external_lex_state = 4}, [1973] = {.lex_state = 74, .external_lex_state = 4}, [1974] = {.lex_state = 74, .external_lex_state = 4}, [1975] = {.lex_state = 74, .external_lex_state = 4}, - [1976] = {.lex_state = 74, .external_lex_state = 3}, + [1976] = {.lex_state = 74, .external_lex_state = 4}, [1977] = {.lex_state = 74, .external_lex_state = 4}, [1978] = {.lex_state = 74, .external_lex_state = 4}, [1979] = {.lex_state = 74, .external_lex_state = 4}, @@ -14925,8 +14965,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1999] = {.lex_state = 74, .external_lex_state = 4}, [2000] = {.lex_state = 74, .external_lex_state = 4}, [2001] = {.lex_state = 74, .external_lex_state = 4}, - [2002] = {.lex_state = 74, .external_lex_state = 3}, - [2003] = {.lex_state = 74, .external_lex_state = 3}, + [2002] = {.lex_state = 74, .external_lex_state = 4}, + [2003] = {.lex_state = 74, .external_lex_state = 4}, [2004] = {.lex_state = 74, .external_lex_state = 4}, [2005] = {.lex_state = 74, .external_lex_state = 4}, [2006] = {.lex_state = 74, .external_lex_state = 4}, @@ -14936,85 +14976,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2010] = {.lex_state = 74, .external_lex_state = 4}, [2011] = {.lex_state = 74, .external_lex_state = 4}, [2012] = {.lex_state = 74, .external_lex_state = 4}, - [2013] = {.lex_state = 74, .external_lex_state = 4}, - [2014] = {.lex_state = 75, .external_lex_state = 5}, + [2013] = {.lex_state = 74, .external_lex_state = 3}, + [2014] = {.lex_state = 74, .external_lex_state = 4}, [2015] = {.lex_state = 74, .external_lex_state = 4}, [2016] = {.lex_state = 74, .external_lex_state = 4}, - [2017] = {.lex_state = 74, .external_lex_state = 4}, + [2017] = {.lex_state = 74, .external_lex_state = 3}, [2018] = {.lex_state = 74, .external_lex_state = 4}, [2019] = {.lex_state = 74, .external_lex_state = 4}, - [2020] = {.lex_state = 74, .external_lex_state = 3}, + [2020] = {.lex_state = 74, .external_lex_state = 4}, [2021] = {.lex_state = 74, .external_lex_state = 4}, [2022] = {.lex_state = 74, .external_lex_state = 4}, [2023] = {.lex_state = 74, .external_lex_state = 4}, [2024] = {.lex_state = 74, .external_lex_state = 4}, - [2025] = {.lex_state = 74, .external_lex_state = 3}, + [2025] = {.lex_state = 74, .external_lex_state = 4}, [2026] = {.lex_state = 74, .external_lex_state = 4}, - [2027] = {.lex_state = 74, .external_lex_state = 3}, - [2028] = {.lex_state = 75, .external_lex_state = 2}, + [2027] = {.lex_state = 74, .external_lex_state = 4}, + [2028] = {.lex_state = 74, .external_lex_state = 4}, [2029] = {.lex_state = 74, .external_lex_state = 4}, [2030] = {.lex_state = 74, .external_lex_state = 4}, [2031] = {.lex_state = 74, .external_lex_state = 4}, [2032] = {.lex_state = 74, .external_lex_state = 4}, [2033] = {.lex_state = 74, .external_lex_state = 4}, - [2034] = {.lex_state = 74, .external_lex_state = 3}, - [2035] = {.lex_state = 74, .external_lex_state = 3}, + [2034] = {.lex_state = 74, .external_lex_state = 4}, + [2035] = {.lex_state = 74, .external_lex_state = 4}, [2036] = {.lex_state = 74, .external_lex_state = 4}, [2037] = {.lex_state = 74, .external_lex_state = 4}, [2038] = {.lex_state = 74, .external_lex_state = 4}, [2039] = {.lex_state = 74, .external_lex_state = 4}, [2040] = {.lex_state = 74, .external_lex_state = 4}, - [2041] = {.lex_state = 74, .external_lex_state = 3}, - [2042] = {.lex_state = 74, .external_lex_state = 4}, + [2041] = {.lex_state = 74, .external_lex_state = 4}, + [2042] = {.lex_state = 75, .external_lex_state = 2}, [2043] = {.lex_state = 74, .external_lex_state = 4}, [2044] = {.lex_state = 74, .external_lex_state = 4}, [2045] = {.lex_state = 74, .external_lex_state = 4}, [2046] = {.lex_state = 74, .external_lex_state = 4}, [2047] = {.lex_state = 74, .external_lex_state = 4}, - [2048] = {.lex_state = 74, .external_lex_state = 4}, + [2048] = {.lex_state = 75, .external_lex_state = 2}, [2049] = {.lex_state = 74, .external_lex_state = 4}, - [2050] = {.lex_state = 74, .external_lex_state = 4}, - [2051] = {.lex_state = 74, .external_lex_state = 4}, + [2050] = {.lex_state = 75, .external_lex_state = 2}, + [2051] = {.lex_state = 74, .external_lex_state = 3}, [2052] = {.lex_state = 74, .external_lex_state = 4}, - [2053] = {.lex_state = 74, .external_lex_state = 4}, + [2053] = {.lex_state = 74, .external_lex_state = 3}, [2054] = {.lex_state = 74, .external_lex_state = 4}, [2055] = {.lex_state = 74, .external_lex_state = 4}, - [2056] = {.lex_state = 74, .external_lex_state = 4}, + [2056] = {.lex_state = 75, .external_lex_state = 5}, [2057] = {.lex_state = 74, .external_lex_state = 4}, [2058] = {.lex_state = 74, .external_lex_state = 4}, - [2059] = {.lex_state = 74, .external_lex_state = 4}, - [2060] = {.lex_state = 74, .external_lex_state = 4}, - [2061] = {.lex_state = 74, .external_lex_state = 4}, - [2062] = {.lex_state = 74, .external_lex_state = 4}, - [2063] = {.lex_state = 74, .external_lex_state = 4}, - [2064] = {.lex_state = 74, .external_lex_state = 4}, - [2065] = {.lex_state = 75, .external_lex_state = 5}, - [2066] = {.lex_state = 75, .external_lex_state = 5}, - [2067] = {.lex_state = 74, .external_lex_state = 4}, - [2068] = {.lex_state = 75, .external_lex_state = 5}, - [2069] = {.lex_state = 74, .external_lex_state = 4}, + [2059] = {.lex_state = 75, .external_lex_state = 5}, + [2060] = {.lex_state = 75, .external_lex_state = 5}, + [2061] = {.lex_state = 75, .external_lex_state = 5}, + [2062] = {.lex_state = 75, .external_lex_state = 2}, + [2063] = {.lex_state = 74, .external_lex_state = 3}, + [2064] = {.lex_state = 74, .external_lex_state = 3}, + [2065] = {.lex_state = 74, .external_lex_state = 4}, + [2066] = {.lex_state = 74, .external_lex_state = 4}, + [2067] = {.lex_state = 75, .external_lex_state = 2}, + [2068] = {.lex_state = 74, .external_lex_state = 3}, + [2069] = {.lex_state = 74, .external_lex_state = 3}, [2070] = {.lex_state = 75, .external_lex_state = 5}, - [2071] = {.lex_state = 75, .external_lex_state = 5}, + [2071] = {.lex_state = 74, .external_lex_state = 4}, [2072] = {.lex_state = 74, .external_lex_state = 4}, [2073] = {.lex_state = 74, .external_lex_state = 4}, [2074] = {.lex_state = 74, .external_lex_state = 4}, - [2075] = {.lex_state = 75, .external_lex_state = 2}, - [2076] = {.lex_state = 74, .external_lex_state = 4}, - [2077] = {.lex_state = 74, .external_lex_state = 4}, - [2078] = {.lex_state = 74, .external_lex_state = 4}, + [2075] = {.lex_state = 74, .external_lex_state = 3}, + [2076] = {.lex_state = 75, .external_lex_state = 2}, + [2077] = {.lex_state = 74, .external_lex_state = 3}, + [2078] = {.lex_state = 74, .external_lex_state = 3}, [2079] = {.lex_state = 74, .external_lex_state = 4}, - [2080] = {.lex_state = 74, .external_lex_state = 3}, - [2081] = {.lex_state = 74, .external_lex_state = 3}, - [2082] = {.lex_state = 74, .external_lex_state = 3}, - [2083] = {.lex_state = 74, .external_lex_state = 3}, - [2084] = {.lex_state = 74, .external_lex_state = 3}, - [2085] = {.lex_state = 74, .external_lex_state = 3}, - [2086] = {.lex_state = 74, .external_lex_state = 3}, - [2087] = {.lex_state = 74, .external_lex_state = 3}, - [2088] = {.lex_state = 74, .external_lex_state = 3}, - [2089] = {.lex_state = 74, .external_lex_state = 3}, - [2090] = {.lex_state = 74, .external_lex_state = 3}, - [2091] = {.lex_state = 74, .external_lex_state = 3}, + [2080] = {.lex_state = 74, .external_lex_state = 4}, + [2081] = {.lex_state = 75, .external_lex_state = 2}, + [2082] = {.lex_state = 75, .external_lex_state = 5}, + [2083] = {.lex_state = 75, .external_lex_state = 5}, + [2084] = {.lex_state = 74, .external_lex_state = 4}, + [2085] = {.lex_state = 75, .external_lex_state = 5}, + [2086] = {.lex_state = 75, .external_lex_state = 5}, + [2087] = {.lex_state = 75, .external_lex_state = 5}, + [2088] = {.lex_state = 74, .external_lex_state = 4}, + [2089] = {.lex_state = 74, .external_lex_state = 4}, + [2090] = {.lex_state = 74, .external_lex_state = 4}, + [2091] = {.lex_state = 74, .external_lex_state = 4}, [2092] = {.lex_state = 74, .external_lex_state = 3}, [2093] = {.lex_state = 74, .external_lex_state = 3}, [2094] = {.lex_state = 74, .external_lex_state = 3}, @@ -15033,282 +15073,282 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2107] = {.lex_state = 74, .external_lex_state = 3}, [2108] = {.lex_state = 74, .external_lex_state = 3}, [2109] = {.lex_state = 74, .external_lex_state = 3}, - [2110] = {.lex_state = 74, .external_lex_state = 4}, - [2111] = {.lex_state = 75, .external_lex_state = 5}, + [2110] = {.lex_state = 74, .external_lex_state = 3}, + [2111] = {.lex_state = 74, .external_lex_state = 3}, [2112] = {.lex_state = 74, .external_lex_state = 3}, [2113] = {.lex_state = 74, .external_lex_state = 3}, - [2114] = {.lex_state = 75, .external_lex_state = 5}, - [2115] = {.lex_state = 74, .external_lex_state = 4}, - [2116] = {.lex_state = 74, .external_lex_state = 4}, - [2117] = {.lex_state = 75, .external_lex_state = 5}, - [2118] = {.lex_state = 75, .external_lex_state = 5}, - [2119] = {.lex_state = 75, .external_lex_state = 5}, - [2120] = {.lex_state = 75, .external_lex_state = 5}, + [2114] = {.lex_state = 74, .external_lex_state = 3}, + [2115] = {.lex_state = 74, .external_lex_state = 3}, + [2116] = {.lex_state = 74, .external_lex_state = 3}, + [2117] = {.lex_state = 74, .external_lex_state = 3}, + [2118] = {.lex_state = 74, .external_lex_state = 3}, + [2119] = {.lex_state = 74, .external_lex_state = 3}, + [2120] = {.lex_state = 74, .external_lex_state = 3}, [2121] = {.lex_state = 74, .external_lex_state = 3}, - [2122] = {.lex_state = 75, .external_lex_state = 5}, - [2123] = {.lex_state = 75, .external_lex_state = 5}, - [2124] = {.lex_state = 74, .external_lex_state = 3}, - [2125] = {.lex_state = 74, .external_lex_state = 3}, - [2126] = {.lex_state = 74, .external_lex_state = 3}, - [2127] = {.lex_state = 74, .external_lex_state = 3}, - [2128] = {.lex_state = 74, .external_lex_state = 3}, + [2122] = {.lex_state = 74, .external_lex_state = 4}, + [2123] = {.lex_state = 74, .external_lex_state = 3}, + [2124] = {.lex_state = 75, .external_lex_state = 2}, + [2125] = {.lex_state = 74, .external_lex_state = 4}, + [2126] = {.lex_state = 75, .external_lex_state = 2}, + [2127] = {.lex_state = 74, .external_lex_state = 4}, + [2128] = {.lex_state = 74, .external_lex_state = 4}, [2129] = {.lex_state = 74, .external_lex_state = 3}, [2130] = {.lex_state = 74, .external_lex_state = 4}, - [2131] = {.lex_state = 74, .external_lex_state = 4}, + [2131] = {.lex_state = 74, .external_lex_state = 3}, [2132] = {.lex_state = 74, .external_lex_state = 4}, - [2133] = {.lex_state = 74, .external_lex_state = 4}, + [2133] = {.lex_state = 74, .external_lex_state = 3}, [2134] = {.lex_state = 74, .external_lex_state = 4}, - [2135] = {.lex_state = 74, .external_lex_state = 3}, + [2135] = {.lex_state = 74, .external_lex_state = 4}, [2136] = {.lex_state = 74, .external_lex_state = 4}, - [2137] = {.lex_state = 75, .external_lex_state = 5}, + [2137] = {.lex_state = 74, .external_lex_state = 4}, [2138] = {.lex_state = 75, .external_lex_state = 5}, [2139] = {.lex_state = 74, .external_lex_state = 4}, [2140] = {.lex_state = 74, .external_lex_state = 4}, [2141] = {.lex_state = 74, .external_lex_state = 4}, - [2142] = {.lex_state = 74, .external_lex_state = 3}, + [2142] = {.lex_state = 74, .external_lex_state = 4}, [2143] = {.lex_state = 74, .external_lex_state = 4}, - [2144] = {.lex_state = 74, .external_lex_state = 3}, + [2144] = {.lex_state = 74, .external_lex_state = 4}, [2145] = {.lex_state = 74, .external_lex_state = 4}, [2146] = {.lex_state = 74, .external_lex_state = 4}, [2147] = {.lex_state = 74, .external_lex_state = 4}, [2148] = {.lex_state = 74, .external_lex_state = 4}, - [2149] = {.lex_state = 74, .external_lex_state = 4}, - [2150] = {.lex_state = 74, .external_lex_state = 4}, + [2149] = {.lex_state = 75, .external_lex_state = 2}, + [2150] = {.lex_state = 75, .external_lex_state = 2}, [2151] = {.lex_state = 74, .external_lex_state = 4}, - [2152] = {.lex_state = 74, .external_lex_state = 4}, - [2153] = {.lex_state = 74, .external_lex_state = 4}, + [2152] = {.lex_state = 75, .external_lex_state = 2}, + [2153] = {.lex_state = 4, .external_lex_state = 4}, [2154] = {.lex_state = 74, .external_lex_state = 4}, - [2155] = {.lex_state = 74, .external_lex_state = 4}, + [2155] = {.lex_state = 74, .external_lex_state = 3}, [2156] = {.lex_state = 74, .external_lex_state = 4}, - [2157] = {.lex_state = 75, .external_lex_state = 5}, + [2157] = {.lex_state = 74, .external_lex_state = 3}, [2158] = {.lex_state = 74, .external_lex_state = 4}, [2159] = {.lex_state = 74, .external_lex_state = 4}, [2160] = {.lex_state = 74, .external_lex_state = 4}, - [2161] = {.lex_state = 74, .external_lex_state = 4}, - [2162] = {.lex_state = 74, .external_lex_state = 4}, + [2161] = {.lex_state = 74, .external_lex_state = 3}, + [2162] = {.lex_state = 74, .external_lex_state = 3}, [2163] = {.lex_state = 74, .external_lex_state = 4}, [2164] = {.lex_state = 74, .external_lex_state = 4}, [2165] = {.lex_state = 74, .external_lex_state = 4}, [2166] = {.lex_state = 74, .external_lex_state = 3}, - [2167] = {.lex_state = 74, .external_lex_state = 4}, - [2168] = {.lex_state = 74, .external_lex_state = 4}, - [2169] = {.lex_state = 75, .external_lex_state = 2}, - [2170] = {.lex_state = 74, .external_lex_state = 4}, - [2171] = {.lex_state = 75, .external_lex_state = 5}, - [2172] = {.lex_state = 75, .external_lex_state = 2}, - [2173] = {.lex_state = 74, .external_lex_state = 4}, - [2174] = {.lex_state = 74, .external_lex_state = 3}, - [2175] = {.lex_state = 74, .external_lex_state = 3}, - [2176] = {.lex_state = 74, .external_lex_state = 3}, - [2177] = {.lex_state = 75, .external_lex_state = 5}, - [2178] = {.lex_state = 75, .external_lex_state = 5}, - [2179] = {.lex_state = 75, .external_lex_state = 5}, + [2167] = {.lex_state = 74, .external_lex_state = 3}, + [2168] = {.lex_state = 74, .external_lex_state = 3}, + [2169] = {.lex_state = 74, .external_lex_state = 4}, + [2170] = {.lex_state = 74, .external_lex_state = 3}, + [2171] = {.lex_state = 74, .external_lex_state = 4}, + [2172] = {.lex_state = 75, .external_lex_state = 5}, + [2173] = {.lex_state = 75, .external_lex_state = 5}, + [2174] = {.lex_state = 75, .external_lex_state = 5}, + [2175] = {.lex_state = 75, .external_lex_state = 5}, + [2176] = {.lex_state = 74, .external_lex_state = 4}, + [2177] = {.lex_state = 74, .external_lex_state = 4}, + [2178] = {.lex_state = 74, .external_lex_state = 4}, + [2179] = {.lex_state = 74, .external_lex_state = 4}, [2180] = {.lex_state = 74, .external_lex_state = 4}, [2181] = {.lex_state = 74, .external_lex_state = 4}, - [2182] = {.lex_state = 74, .external_lex_state = 4}, - [2183] = {.lex_state = 74, .external_lex_state = 3}, - [2184] = {.lex_state = 74, .external_lex_state = 4}, + [2182] = {.lex_state = 75, .external_lex_state = 2}, + [2183] = {.lex_state = 75, .external_lex_state = 2}, + [2184] = {.lex_state = 74, .external_lex_state = 3}, [2185] = {.lex_state = 74, .external_lex_state = 4}, [2186] = {.lex_state = 74, .external_lex_state = 4}, [2187] = {.lex_state = 74, .external_lex_state = 4}, - [2188] = {.lex_state = 74, .external_lex_state = 3}, - [2189] = {.lex_state = 74, .external_lex_state = 4}, - [2190] = {.lex_state = 74, .external_lex_state = 4}, + [2188] = {.lex_state = 74, .external_lex_state = 4}, + [2189] = {.lex_state = 74, .external_lex_state = 3}, + [2190] = {.lex_state = 74, .external_lex_state = 3}, [2191] = {.lex_state = 74, .external_lex_state = 4}, - [2192] = {.lex_state = 74, .external_lex_state = 4}, - [2193] = {.lex_state = 74, .external_lex_state = 4}, - [2194] = {.lex_state = 74, .external_lex_state = 4}, - [2195] = {.lex_state = 74, .external_lex_state = 4}, - [2196] = {.lex_state = 75, .external_lex_state = 5}, - [2197] = {.lex_state = 74, .external_lex_state = 4}, - [2198] = {.lex_state = 74, .external_lex_state = 4}, - [2199] = {.lex_state = 74, .external_lex_state = 4}, - [2200] = {.lex_state = 74, .external_lex_state = 4}, - [2201] = {.lex_state = 74, .external_lex_state = 4}, - [2202] = {.lex_state = 74, .external_lex_state = 4}, + [2192] = {.lex_state = 75, .external_lex_state = 5}, + [2193] = {.lex_state = 75, .external_lex_state = 5}, + [2194] = {.lex_state = 75, .external_lex_state = 2}, + [2195] = {.lex_state = 75, .external_lex_state = 2}, + [2196] = {.lex_state = 75, .external_lex_state = 2}, + [2197] = {.lex_state = 75, .external_lex_state = 5}, + [2198] = {.lex_state = 75, .external_lex_state = 5}, + [2199] = {.lex_state = 74, .external_lex_state = 3}, + [2200] = {.lex_state = 75, .external_lex_state = 2}, + [2201] = {.lex_state = 74, .external_lex_state = 3}, + [2202] = {.lex_state = 74, .external_lex_state = 3}, [2203] = {.lex_state = 75, .external_lex_state = 5}, - [2204] = {.lex_state = 74, .external_lex_state = 4}, - [2205] = {.lex_state = 75, .external_lex_state = 5}, - [2206] = {.lex_state = 74, .external_lex_state = 4}, - [2207] = {.lex_state = 74, .external_lex_state = 4}, - [2208] = {.lex_state = 74, .external_lex_state = 3}, - [2209] = {.lex_state = 4, .external_lex_state = 4}, - [2210] = {.lex_state = 74, .external_lex_state = 4}, - [2211] = {.lex_state = 74, .external_lex_state = 4}, - [2212] = {.lex_state = 74, .external_lex_state = 3}, - [2213] = {.lex_state = 74, .external_lex_state = 3}, - [2214] = {.lex_state = 75, .external_lex_state = 2}, + [2204] = {.lex_state = 75, .external_lex_state = 5}, + [2205] = {.lex_state = 74, .external_lex_state = 3}, + [2206] = {.lex_state = 74, .external_lex_state = 3}, + [2207] = {.lex_state = 75, .external_lex_state = 5}, + [2208] = {.lex_state = 74, .external_lex_state = 4}, + [2209] = {.lex_state = 74, .external_lex_state = 4}, + [2210] = {.lex_state = 75, .external_lex_state = 5}, + [2211] = {.lex_state = 75, .external_lex_state = 5}, + [2212] = {.lex_state = 75, .external_lex_state = 5}, + [2213] = {.lex_state = 75, .external_lex_state = 5}, + [2214] = {.lex_state = 75, .external_lex_state = 5}, [2215] = {.lex_state = 75, .external_lex_state = 5}, - [2216] = {.lex_state = 75, .external_lex_state = 5}, - [2217] = {.lex_state = 75, .external_lex_state = 2}, - [2218] = {.lex_state = 75, .external_lex_state = 2}, - [2219] = {.lex_state = 74, .external_lex_state = 3}, - [2220] = {.lex_state = 74, .external_lex_state = 4}, - [2221] = {.lex_state = 4, .external_lex_state = 4}, - [2222] = {.lex_state = 74, .external_lex_state = 4}, - [2223] = {.lex_state = 75, .external_lex_state = 2}, - [2224] = {.lex_state = 74, .external_lex_state = 4}, - [2225] = {.lex_state = 74, .external_lex_state = 3}, - [2226] = {.lex_state = 74, .external_lex_state = 3}, - [2227] = {.lex_state = 74, .external_lex_state = 3}, - [2228] = {.lex_state = 74, .external_lex_state = 4}, - [2229] = {.lex_state = 74, .external_lex_state = 3}, + [2216] = {.lex_state = 74, .external_lex_state = 4}, + [2217] = {.lex_state = 74, .external_lex_state = 4}, + [2218] = {.lex_state = 74, .external_lex_state = 3}, + [2219] = {.lex_state = 74, .external_lex_state = 4}, + [2220] = {.lex_state = 74, .external_lex_state = 3}, + [2221] = {.lex_state = 74, .external_lex_state = 3}, + [2222] = {.lex_state = 74, .external_lex_state = 3}, + [2223] = {.lex_state = 74, .external_lex_state = 3}, + [2224] = {.lex_state = 74, .external_lex_state = 3}, + [2225] = {.lex_state = 74, .external_lex_state = 4}, + [2226] = {.lex_state = 74, .external_lex_state = 4}, + [2227] = {.lex_state = 74, .external_lex_state = 4}, + [2228] = {.lex_state = 74, .external_lex_state = 3}, + [2229] = {.lex_state = 74, .external_lex_state = 4}, [2230] = {.lex_state = 74, .external_lex_state = 4}, - [2231] = {.lex_state = 74, .external_lex_state = 3}, - [2232] = {.lex_state = 74, .external_lex_state = 3}, + [2231] = {.lex_state = 74, .external_lex_state = 4}, + [2232] = {.lex_state = 74, .external_lex_state = 4}, [2233] = {.lex_state = 74, .external_lex_state = 3}, [2234] = {.lex_state = 74, .external_lex_state = 4}, - [2235] = {.lex_state = 75, .external_lex_state = 5}, - [2236] = {.lex_state = 74, .external_lex_state = 3}, - [2237] = {.lex_state = 74, .external_lex_state = 3}, - [2238] = {.lex_state = 74, .external_lex_state = 3}, + [2235] = {.lex_state = 74, .external_lex_state = 3}, + [2236] = {.lex_state = 74, .external_lex_state = 4}, + [2237] = {.lex_state = 74, .external_lex_state = 4}, + [2238] = {.lex_state = 74, .external_lex_state = 4}, [2239] = {.lex_state = 74, .external_lex_state = 4}, [2240] = {.lex_state = 74, .external_lex_state = 4}, [2241] = {.lex_state = 74, .external_lex_state = 4}, [2242] = {.lex_state = 74, .external_lex_state = 4}, - [2243] = {.lex_state = 74, .external_lex_state = 3}, - [2244] = {.lex_state = 75, .external_lex_state = 5}, + [2243] = {.lex_state = 74, .external_lex_state = 4}, + [2244] = {.lex_state = 74, .external_lex_state = 4}, [2245] = {.lex_state = 74, .external_lex_state = 4}, [2246] = {.lex_state = 74, .external_lex_state = 4}, [2247] = {.lex_state = 74, .external_lex_state = 4}, - [2248] = {.lex_state = 75, .external_lex_state = 5}, + [2248] = {.lex_state = 74, .external_lex_state = 4}, [2249] = {.lex_state = 74, .external_lex_state = 4}, - [2250] = {.lex_state = 74, .external_lex_state = 3}, + [2250] = {.lex_state = 74, .external_lex_state = 4}, [2251] = {.lex_state = 74, .external_lex_state = 4}, - [2252] = {.lex_state = 75, .external_lex_state = 5}, - [2253] = {.lex_state = 75, .external_lex_state = 5}, - [2254] = {.lex_state = 74, .external_lex_state = 4}, - [2255] = {.lex_state = 74, .external_lex_state = 4}, - [2256] = {.lex_state = 74, .external_lex_state = 4}, - [2257] = {.lex_state = 75, .external_lex_state = 5}, - [2258] = {.lex_state = 74, .external_lex_state = 4}, + [2252] = {.lex_state = 74, .external_lex_state = 4}, + [2253] = {.lex_state = 74, .external_lex_state = 3}, + [2254] = {.lex_state = 74, .external_lex_state = 3}, + [2255] = {.lex_state = 74, .external_lex_state = 3}, + [2256] = {.lex_state = 74, .external_lex_state = 3}, + [2257] = {.lex_state = 74, .external_lex_state = 4}, + [2258] = {.lex_state = 74, .external_lex_state = 3}, [2259] = {.lex_state = 74, .external_lex_state = 4}, [2260] = {.lex_state = 74, .external_lex_state = 4}, [2261] = {.lex_state = 74, .external_lex_state = 3}, [2262] = {.lex_state = 74, .external_lex_state = 4}, - [2263] = {.lex_state = 75, .external_lex_state = 5}, - [2264] = {.lex_state = 74, .external_lex_state = 3}, - [2265] = {.lex_state = 74, .external_lex_state = 4}, + [2263] = {.lex_state = 74, .external_lex_state = 4}, + [2264] = {.lex_state = 74, .external_lex_state = 4}, + [2265] = {.lex_state = 74, .external_lex_state = 3}, [2266] = {.lex_state = 74, .external_lex_state = 4}, - [2267] = {.lex_state = 74, .external_lex_state = 4}, - [2268] = {.lex_state = 75, .external_lex_state = 5}, + [2267] = {.lex_state = 75, .external_lex_state = 2}, + [2268] = {.lex_state = 74, .external_lex_state = 3}, [2269] = {.lex_state = 74, .external_lex_state = 3}, - [2270] = {.lex_state = 75, .external_lex_state = 5}, + [2270] = {.lex_state = 74, .external_lex_state = 3}, [2271] = {.lex_state = 74, .external_lex_state = 3}, [2272] = {.lex_state = 74, .external_lex_state = 3}, - [2273] = {.lex_state = 74, .external_lex_state = 3}, - [2274] = {.lex_state = 75, .external_lex_state = 5}, + [2273] = {.lex_state = 74, .external_lex_state = 4}, + [2274] = {.lex_state = 74, .external_lex_state = 3}, [2275] = {.lex_state = 74, .external_lex_state = 3}, - [2276] = {.lex_state = 75, .external_lex_state = 5}, - [2277] = {.lex_state = 74, .external_lex_state = 4}, + [2276] = {.lex_state = 74, .external_lex_state = 3}, + [2277] = {.lex_state = 74, .external_lex_state = 3}, [2278] = {.lex_state = 74, .external_lex_state = 3}, - [2279] = {.lex_state = 74, .external_lex_state = 4}, + [2279] = {.lex_state = 74, .external_lex_state = 3}, [2280] = {.lex_state = 74, .external_lex_state = 4}, - [2281] = {.lex_state = 74, .external_lex_state = 4}, - [2282] = {.lex_state = 74, .external_lex_state = 4}, - [2283] = {.lex_state = 74, .external_lex_state = 4}, - [2284] = {.lex_state = 74, .external_lex_state = 4}, - [2285] = {.lex_state = 74, .external_lex_state = 3}, - [2286] = {.lex_state = 74, .external_lex_state = 4}, - [2287] = {.lex_state = 74, .external_lex_state = 3}, - [2288] = {.lex_state = 74, .external_lex_state = 3}, - [2289] = {.lex_state = 74, .external_lex_state = 3}, - [2290] = {.lex_state = 74, .external_lex_state = 3}, - [2291] = {.lex_state = 74, .external_lex_state = 3}, - [2292] = {.lex_state = 74, .external_lex_state = 3}, - [2293] = {.lex_state = 74, .external_lex_state = 3}, - [2294] = {.lex_state = 74, .external_lex_state = 3}, - [2295] = {.lex_state = 74, .external_lex_state = 3}, - [2296] = {.lex_state = 74, .external_lex_state = 3}, + [2281] = {.lex_state = 74, .external_lex_state = 3}, + [2282] = {.lex_state = 75, .external_lex_state = 5}, + [2283] = {.lex_state = 75, .external_lex_state = 5}, + [2284] = {.lex_state = 74, .external_lex_state = 3}, + [2285] = {.lex_state = 74, .external_lex_state = 4}, + [2286] = {.lex_state = 75, .external_lex_state = 2}, + [2287] = {.lex_state = 74, .external_lex_state = 4}, + [2288] = {.lex_state = 74, .external_lex_state = 4}, + [2289] = {.lex_state = 75, .external_lex_state = 5}, + [2290] = {.lex_state = 74, .external_lex_state = 4}, + [2291] = {.lex_state = 74, .external_lex_state = 4}, + [2292] = {.lex_state = 74, .external_lex_state = 4}, + [2293] = {.lex_state = 74, .external_lex_state = 4}, + [2294] = {.lex_state = 75, .external_lex_state = 2}, + [2295] = {.lex_state = 75, .external_lex_state = 5}, + [2296] = {.lex_state = 74, .external_lex_state = 4}, [2297] = {.lex_state = 75, .external_lex_state = 5}, [2298] = {.lex_state = 75, .external_lex_state = 5}, - [2299] = {.lex_state = 74, .external_lex_state = 3}, - [2300] = {.lex_state = 75, .external_lex_state = 5}, - [2301] = {.lex_state = 74, .external_lex_state = 3}, - [2302] = {.lex_state = 74, .external_lex_state = 4}, - [2303] = {.lex_state = 75, .external_lex_state = 5}, - [2304] = {.lex_state = 74, .external_lex_state = 4}, + [2299] = {.lex_state = 75, .external_lex_state = 5}, + [2300] = {.lex_state = 74, .external_lex_state = 3}, + [2301] = {.lex_state = 75, .external_lex_state = 5}, + [2302] = {.lex_state = 74, .external_lex_state = 3}, + [2303] = {.lex_state = 74, .external_lex_state = 3}, + [2304] = {.lex_state = 75, .external_lex_state = 5}, [2305] = {.lex_state = 74, .external_lex_state = 3}, [2306] = {.lex_state = 75, .external_lex_state = 5}, - [2307] = {.lex_state = 75, .external_lex_state = 5}, - [2308] = {.lex_state = 74, .external_lex_state = 3}, - [2309] = {.lex_state = 74, .external_lex_state = 4}, - [2310] = {.lex_state = 74, .external_lex_state = 4}, - [2311] = {.lex_state = 74, .external_lex_state = 3}, - [2312] = {.lex_state = 74, .external_lex_state = 3}, - [2313] = {.lex_state = 75, .external_lex_state = 5}, - [2314] = {.lex_state = 74, .external_lex_state = 3}, - [2315] = {.lex_state = 75, .external_lex_state = 2}, - [2316] = {.lex_state = 74, .external_lex_state = 3}, + [2307] = {.lex_state = 74, .external_lex_state = 4}, + [2308] = {.lex_state = 74, .external_lex_state = 4}, + [2309] = {.lex_state = 75, .external_lex_state = 5}, + [2310] = {.lex_state = 75, .external_lex_state = 5}, + [2311] = {.lex_state = 74, .external_lex_state = 4}, + [2312] = {.lex_state = 74, .external_lex_state = 4}, + [2313] = {.lex_state = 74, .external_lex_state = 4}, + [2314] = {.lex_state = 74, .external_lex_state = 4}, + [2315] = {.lex_state = 74, .external_lex_state = 4}, + [2316] = {.lex_state = 74, .external_lex_state = 4}, [2317] = {.lex_state = 74, .external_lex_state = 4}, [2318] = {.lex_state = 74, .external_lex_state = 4}, [2319] = {.lex_state = 74, .external_lex_state = 4}, - [2320] = {.lex_state = 74, .external_lex_state = 4}, - [2321] = {.lex_state = 75, .external_lex_state = 2}, - [2322] = {.lex_state = 75, .external_lex_state = 2}, - [2323] = {.lex_state = 74, .external_lex_state = 4}, - [2324] = {.lex_state = 74, .external_lex_state = 4}, - [2325] = {.lex_state = 74, .external_lex_state = 4}, - [2326] = {.lex_state = 74, .external_lex_state = 4}, - [2327] = {.lex_state = 74, .external_lex_state = 4}, + [2320] = {.lex_state = 74, .external_lex_state = 3}, + [2321] = {.lex_state = 75, .external_lex_state = 5}, + [2322] = {.lex_state = 74, .external_lex_state = 3}, + [2323] = {.lex_state = 74, .external_lex_state = 3}, + [2324] = {.lex_state = 74, .external_lex_state = 3}, + [2325] = {.lex_state = 74, .external_lex_state = 3}, + [2326] = {.lex_state = 74, .external_lex_state = 3}, + [2327] = {.lex_state = 75, .external_lex_state = 5}, [2328] = {.lex_state = 74, .external_lex_state = 3}, - [2329] = {.lex_state = 74, .external_lex_state = 3}, - [2330] = {.lex_state = 74, .external_lex_state = 3}, - [2331] = {.lex_state = 74, .external_lex_state = 3}, - [2332] = {.lex_state = 75, .external_lex_state = 2}, - [2333] = {.lex_state = 74, .external_lex_state = 4}, - [2334] = {.lex_state = 75, .external_lex_state = 2}, - [2335] = {.lex_state = 75, .external_lex_state = 5}, - [2336] = {.lex_state = 74, .external_lex_state = 3}, + [2329] = {.lex_state = 75, .external_lex_state = 5}, + [2330] = {.lex_state = 75, .external_lex_state = 5}, + [2331] = {.lex_state = 75, .external_lex_state = 5}, + [2332] = {.lex_state = 75, .external_lex_state = 5}, + [2333] = {.lex_state = 75, .external_lex_state = 5}, + [2334] = {.lex_state = 75, .external_lex_state = 5}, + [2335] = {.lex_state = 74, .external_lex_state = 4}, + [2336] = {.lex_state = 75, .external_lex_state = 5}, [2337] = {.lex_state = 74, .external_lex_state = 3}, - [2338] = {.lex_state = 74, .external_lex_state = 3}, - [2339] = {.lex_state = 74, .external_lex_state = 3}, - [2340] = {.lex_state = 75, .external_lex_state = 5}, + [2338] = {.lex_state = 74, .external_lex_state = 4}, + [2339] = {.lex_state = 74, .external_lex_state = 4}, + [2340] = {.lex_state = 74, .external_lex_state = 3}, [2341] = {.lex_state = 74, .external_lex_state = 3}, - [2342] = {.lex_state = 74, .external_lex_state = 4}, - [2343] = {.lex_state = 75, .external_lex_state = 2}, - [2344] = {.lex_state = 75, .external_lex_state = 2}, + [2342] = {.lex_state = 74, .external_lex_state = 3}, + [2343] = {.lex_state = 74, .external_lex_state = 3}, + [2344] = {.lex_state = 74, .external_lex_state = 3}, [2345] = {.lex_state = 74, .external_lex_state = 4}, - [2346] = {.lex_state = 75, .external_lex_state = 2}, - [2347] = {.lex_state = 75, .external_lex_state = 5}, - [2348] = {.lex_state = 75, .external_lex_state = 5}, - [2349] = {.lex_state = 74, .external_lex_state = 3}, - [2350] = {.lex_state = 74, .external_lex_state = 3}, - [2351] = {.lex_state = 74, .external_lex_state = 3}, - [2352] = {.lex_state = 75, .external_lex_state = 5}, + [2346] = {.lex_state = 74, .external_lex_state = 3}, + [2347] = {.lex_state = 74, .external_lex_state = 3}, + [2348] = {.lex_state = 74, .external_lex_state = 3}, + [2349] = {.lex_state = 75, .external_lex_state = 5}, + [2350] = {.lex_state = 75, .external_lex_state = 5}, + [2351] = {.lex_state = 75, .external_lex_state = 5}, + [2352] = {.lex_state = 74, .external_lex_state = 4}, [2353] = {.lex_state = 74, .external_lex_state = 4}, - [2354] = {.lex_state = 75, .external_lex_state = 5}, + [2354] = {.lex_state = 4, .external_lex_state = 4}, [2355] = {.lex_state = 75, .external_lex_state = 5}, [2356] = {.lex_state = 74, .external_lex_state = 4}, [2357] = {.lex_state = 75, .external_lex_state = 5}, [2358] = {.lex_state = 74, .external_lex_state = 4}, - [2359] = {.lex_state = 74, .external_lex_state = 3}, - [2360] = {.lex_state = 74, .external_lex_state = 3}, - [2361] = {.lex_state = 74, .external_lex_state = 3}, - [2362] = {.lex_state = 74, .external_lex_state = 3}, + [2359] = {.lex_state = 75, .external_lex_state = 5}, + [2360] = {.lex_state = 75, .external_lex_state = 5}, + [2361] = {.lex_state = 74, .external_lex_state = 4}, + [2362] = {.lex_state = 74, .external_lex_state = 4}, [2363] = {.lex_state = 74, .external_lex_state = 3}, [2364] = {.lex_state = 74, .external_lex_state = 3}, [2365] = {.lex_state = 74, .external_lex_state = 3}, - [2366] = {.lex_state = 74, .external_lex_state = 3}, - [2367] = {.lex_state = 74, .external_lex_state = 3}, - [2368] = {.lex_state = 74, .external_lex_state = 3}, + [2366] = {.lex_state = 74, .external_lex_state = 4}, + [2367] = {.lex_state = 74, .external_lex_state = 4}, + [2368] = {.lex_state = 74, .external_lex_state = 4}, [2369] = {.lex_state = 74, .external_lex_state = 3}, - [2370] = {.lex_state = 74, .external_lex_state = 3}, + [2370] = {.lex_state = 74, .external_lex_state = 4}, [2371] = {.lex_state = 74, .external_lex_state = 3}, - [2372] = {.lex_state = 74, .external_lex_state = 4}, - [2373] = {.lex_state = 74, .external_lex_state = 3}, - [2374] = {.lex_state = 75, .external_lex_state = 2}, + [2372] = {.lex_state = 75, .external_lex_state = 2}, + [2373] = {.lex_state = 75, .external_lex_state = 5}, + [2374] = {.lex_state = 75, .external_lex_state = 5}, [2375] = {.lex_state = 75, .external_lex_state = 5}, - [2376] = {.lex_state = 74, .external_lex_state = 3}, - [2377] = {.lex_state = 74, .external_lex_state = 4}, - [2378] = {.lex_state = 75, .external_lex_state = 2}, - [2379] = {.lex_state = 75, .external_lex_state = 5}, - [2380] = {.lex_state = 75, .external_lex_state = 5}, - [2381] = {.lex_state = 74, .external_lex_state = 4}, + [2376] = {.lex_state = 75, .external_lex_state = 5}, + [2377] = {.lex_state = 75, .external_lex_state = 2}, + [2378] = {.lex_state = 74, .external_lex_state = 3}, + [2379] = {.lex_state = 74, .external_lex_state = 3}, + [2380] = {.lex_state = 74, .external_lex_state = 3}, + [2381] = {.lex_state = 74, .external_lex_state = 3}, [2382] = {.lex_state = 74, .external_lex_state = 3}, - [2383] = {.lex_state = 75, .external_lex_state = 5}, - [2384] = {.lex_state = 75, .external_lex_state = 2}, - [2385] = {.lex_state = 4, .external_lex_state = 3}, + [2383] = {.lex_state = 74, .external_lex_state = 3}, + [2384] = {.lex_state = 74, .external_lex_state = 3}, + [2385] = {.lex_state = 74, .external_lex_state = 3}, [2386] = {.lex_state = 74, .external_lex_state = 3}, [2387] = {.lex_state = 74, .external_lex_state = 3}, [2388] = {.lex_state = 74, .external_lex_state = 3}, @@ -15320,11 +15360,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2394] = {.lex_state = 74, .external_lex_state = 3}, [2395] = {.lex_state = 74, .external_lex_state = 3}, [2396] = {.lex_state = 74, .external_lex_state = 3}, - [2397] = {.lex_state = 75, .external_lex_state = 2}, - [2398] = {.lex_state = 75, .external_lex_state = 5}, + [2397] = {.lex_state = 74, .external_lex_state = 3}, + [2398] = {.lex_state = 74, .external_lex_state = 3}, [2399] = {.lex_state = 74, .external_lex_state = 3}, [2400] = {.lex_state = 74, .external_lex_state = 3}, - [2401] = {.lex_state = 75, .external_lex_state = 5}, + [2401] = {.lex_state = 74, .external_lex_state = 3}, [2402] = {.lex_state = 74, .external_lex_state = 3}, [2403] = {.lex_state = 74, .external_lex_state = 3}, [2404] = {.lex_state = 74, .external_lex_state = 3}, @@ -15334,7 +15374,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2408] = {.lex_state = 74, .external_lex_state = 3}, [2409] = {.lex_state = 74, .external_lex_state = 3}, [2410] = {.lex_state = 74, .external_lex_state = 3}, - [2411] = {.lex_state = 74, .external_lex_state = 4}, + [2411] = {.lex_state = 74, .external_lex_state = 3}, [2412] = {.lex_state = 74, .external_lex_state = 3}, [2413] = {.lex_state = 74, .external_lex_state = 3}, [2414] = {.lex_state = 74, .external_lex_state = 3}, @@ -15351,81 +15391,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2425] = {.lex_state = 74, .external_lex_state = 3}, [2426] = {.lex_state = 74, .external_lex_state = 3}, [2427] = {.lex_state = 74, .external_lex_state = 3}, - [2428] = {.lex_state = 75, .external_lex_state = 5}, - [2429] = {.lex_state = 75, .external_lex_state = 2}, + [2428] = {.lex_state = 74, .external_lex_state = 3}, + [2429] = {.lex_state = 74, .external_lex_state = 3}, [2430] = {.lex_state = 74, .external_lex_state = 3}, - [2431] = {.lex_state = 75, .external_lex_state = 5}, + [2431] = {.lex_state = 74, .external_lex_state = 3}, [2432] = {.lex_state = 74, .external_lex_state = 3}, [2433] = {.lex_state = 74, .external_lex_state = 3}, [2434] = {.lex_state = 75, .external_lex_state = 5}, - [2435] = {.lex_state = 74, .external_lex_state = 4}, - [2436] = {.lex_state = 74, .external_lex_state = 3}, + [2435] = {.lex_state = 75, .external_lex_state = 5}, + [2436] = {.lex_state = 74, .external_lex_state = 4}, [2437] = {.lex_state = 75, .external_lex_state = 5}, - [2438] = {.lex_state = 75, .external_lex_state = 2}, + [2438] = {.lex_state = 74, .external_lex_state = 4}, [2439] = {.lex_state = 74, .external_lex_state = 3}, - [2440] = {.lex_state = 75, .external_lex_state = 5}, - [2441] = {.lex_state = 74, .external_lex_state = 4}, + [2440] = {.lex_state = 74, .external_lex_state = 3}, + [2441] = {.lex_state = 74, .external_lex_state = 3}, [2442] = {.lex_state = 74, .external_lex_state = 3}, - [2443] = {.lex_state = 75, .external_lex_state = 5}, - [2444] = {.lex_state = 75, .external_lex_state = 5}, - [2445] = {.lex_state = 75, .external_lex_state = 2}, + [2443] = {.lex_state = 75, .external_lex_state = 2}, + [2444] = {.lex_state = 74, .external_lex_state = 4}, + [2445] = {.lex_state = 75, .external_lex_state = 5}, [2446] = {.lex_state = 74, .external_lex_state = 3}, [2447] = {.lex_state = 74, .external_lex_state = 3}, [2448] = {.lex_state = 74, .external_lex_state = 3}, [2449] = {.lex_state = 74, .external_lex_state = 3}, - [2450] = {.lex_state = 74, .external_lex_state = 3}, - [2451] = {.lex_state = 75, .external_lex_state = 5}, - [2452] = {.lex_state = 75, .external_lex_state = 5}, - [2453] = {.lex_state = 74, .external_lex_state = 4}, - [2454] = {.lex_state = 74, .external_lex_state = 4}, + [2450] = {.lex_state = 75, .external_lex_state = 5}, + [2451] = {.lex_state = 74, .external_lex_state = 4}, + [2452] = {.lex_state = 75, .external_lex_state = 2}, + [2453] = {.lex_state = 75, .external_lex_state = 5}, + [2454] = {.lex_state = 74, .external_lex_state = 3}, [2455] = {.lex_state = 75, .external_lex_state = 5}, - [2456] = {.lex_state = 74, .external_lex_state = 3}, - [2457] = {.lex_state = 75, .external_lex_state = 2}, + [2456] = {.lex_state = 75, .external_lex_state = 5}, + [2457] = {.lex_state = 75, .external_lex_state = 5}, [2458] = {.lex_state = 74, .external_lex_state = 3}, - [2459] = {.lex_state = 75, .external_lex_state = 5}, - [2460] = {.lex_state = 74, .external_lex_state = 3}, - [2461] = {.lex_state = 75, .external_lex_state = 5}, + [2459] = {.lex_state = 74, .external_lex_state = 3}, + [2460] = {.lex_state = 75, .external_lex_state = 5}, + [2461] = {.lex_state = 74, .external_lex_state = 3}, [2462] = {.lex_state = 74, .external_lex_state = 3}, - [2463] = {.lex_state = 75, .external_lex_state = 5}, - [2464] = {.lex_state = 74, .external_lex_state = 3}, + [2463] = {.lex_state = 75, .external_lex_state = 2}, + [2464] = {.lex_state = 74, .external_lex_state = 4}, [2465] = {.lex_state = 74, .external_lex_state = 3}, - [2466] = {.lex_state = 75, .external_lex_state = 5}, + [2466] = {.lex_state = 74, .external_lex_state = 3}, [2467] = {.lex_state = 74, .external_lex_state = 3}, [2468] = {.lex_state = 74, .external_lex_state = 3}, - [2469] = {.lex_state = 74, .external_lex_state = 3}, + [2469] = {.lex_state = 75, .external_lex_state = 5}, [2470] = {.lex_state = 74, .external_lex_state = 3}, [2471] = {.lex_state = 74, .external_lex_state = 3}, [2472] = {.lex_state = 74, .external_lex_state = 3}, - [2473] = {.lex_state = 75, .external_lex_state = 2}, + [2473] = {.lex_state = 74, .external_lex_state = 3}, [2474] = {.lex_state = 74, .external_lex_state = 3}, - [2475] = {.lex_state = 75, .external_lex_state = 5}, - [2476] = {.lex_state = 74, .external_lex_state = 4}, + [2475] = {.lex_state = 75, .external_lex_state = 2}, + [2476] = {.lex_state = 75, .external_lex_state = 2}, [2477] = {.lex_state = 74, .external_lex_state = 4}, - [2478] = {.lex_state = 75, .external_lex_state = 2}, - [2479] = {.lex_state = 74, .external_lex_state = 3}, + [2478] = {.lex_state = 74, .external_lex_state = 4}, + [2479] = {.lex_state = 75, .external_lex_state = 2}, [2480] = {.lex_state = 74, .external_lex_state = 4}, - [2481] = {.lex_state = 74, .external_lex_state = 3}, + [2481] = {.lex_state = 74, .external_lex_state = 4}, [2482] = {.lex_state = 74, .external_lex_state = 3}, [2483] = {.lex_state = 74, .external_lex_state = 3}, - [2484] = {.lex_state = 74, .external_lex_state = 3}, + [2484] = {.lex_state = 74, .external_lex_state = 4}, [2485] = {.lex_state = 74, .external_lex_state = 3}, [2486] = {.lex_state = 74, .external_lex_state = 3}, - [2487] = {.lex_state = 74, .external_lex_state = 3}, - [2488] = {.lex_state = 74, .external_lex_state = 3}, - [2489] = {.lex_state = 74, .external_lex_state = 3}, - [2490] = {.lex_state = 74, .external_lex_state = 3}, - [2491] = {.lex_state = 74, .external_lex_state = 3}, + [2487] = {.lex_state = 75, .external_lex_state = 5}, + [2488] = {.lex_state = 75, .external_lex_state = 5}, + [2489] = {.lex_state = 75, .external_lex_state = 5}, + [2490] = {.lex_state = 75, .external_lex_state = 5}, + [2491] = {.lex_state = 75, .external_lex_state = 5}, [2492] = {.lex_state = 74, .external_lex_state = 3}, - [2493] = {.lex_state = 74, .external_lex_state = 3}, + [2493] = {.lex_state = 74, .external_lex_state = 4}, [2494] = {.lex_state = 74, .external_lex_state = 3}, - [2495] = {.lex_state = 74, .external_lex_state = 3}, + [2495] = {.lex_state = 75, .external_lex_state = 5}, [2496] = {.lex_state = 74, .external_lex_state = 3}, - [2497] = {.lex_state = 74, .external_lex_state = 3}, + [2497] = {.lex_state = 75, .external_lex_state = 2}, [2498] = {.lex_state = 74, .external_lex_state = 3}, - [2499] = {.lex_state = 74, .external_lex_state = 3}, - [2500] = {.lex_state = 74, .external_lex_state = 3}, + [2499] = {.lex_state = 75, .external_lex_state = 5}, + [2500] = {.lex_state = 75, .external_lex_state = 5}, [2501] = {.lex_state = 74, .external_lex_state = 3}, - [2502] = {.lex_state = 74, .external_lex_state = 3}, + [2502] = {.lex_state = 75, .external_lex_state = 2}, [2503] = {.lex_state = 74, .external_lex_state = 3}, [2504] = {.lex_state = 74, .external_lex_state = 3}, [2505] = {.lex_state = 74, .external_lex_state = 3}, @@ -15433,33 +15473,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2507] = {.lex_state = 74, .external_lex_state = 3}, [2508] = {.lex_state = 74, .external_lex_state = 3}, [2509] = {.lex_state = 74, .external_lex_state = 3}, - [2510] = {.lex_state = 75, .external_lex_state = 5}, + [2510] = {.lex_state = 74, .external_lex_state = 3}, [2511] = {.lex_state = 74, .external_lex_state = 3}, [2512] = {.lex_state = 74, .external_lex_state = 3}, - [2513] = {.lex_state = 74, .external_lex_state = 4}, + [2513] = {.lex_state = 74, .external_lex_state = 3}, [2514] = {.lex_state = 74, .external_lex_state = 3}, [2515] = {.lex_state = 74, .external_lex_state = 3}, [2516] = {.lex_state = 74, .external_lex_state = 3}, [2517] = {.lex_state = 74, .external_lex_state = 3}, [2518] = {.lex_state = 74, .external_lex_state = 3}, [2519] = {.lex_state = 74, .external_lex_state = 3}, - [2520] = {.lex_state = 75, .external_lex_state = 5}, + [2520] = {.lex_state = 74, .external_lex_state = 3}, [2521] = {.lex_state = 74, .external_lex_state = 3}, [2522] = {.lex_state = 74, .external_lex_state = 3}, [2523] = {.lex_state = 74, .external_lex_state = 3}, - [2524] = {.lex_state = 75, .external_lex_state = 5}, - [2525] = {.lex_state = 75, .external_lex_state = 2}, - [2526] = {.lex_state = 75, .external_lex_state = 5}, + [2524] = {.lex_state = 74, .external_lex_state = 3}, + [2525] = {.lex_state = 74, .external_lex_state = 3}, + [2526] = {.lex_state = 74, .external_lex_state = 3}, [2527] = {.lex_state = 74, .external_lex_state = 3}, [2528] = {.lex_state = 74, .external_lex_state = 3}, - [2529] = {.lex_state = 74, .external_lex_state = 3}, - [2530] = {.lex_state = 74, .external_lex_state = 3}, + [2529] = {.lex_state = 74, .external_lex_state = 4}, + [2530] = {.lex_state = 75, .external_lex_state = 5}, [2531] = {.lex_state = 74, .external_lex_state = 3}, [2532] = {.lex_state = 74, .external_lex_state = 3}, [2533] = {.lex_state = 74, .external_lex_state = 3}, [2534] = {.lex_state = 74, .external_lex_state = 3}, [2535] = {.lex_state = 74, .external_lex_state = 3}, - [2536] = {.lex_state = 74, .external_lex_state = 3}, + [2536] = {.lex_state = 4, .external_lex_state = 3}, [2537] = {.lex_state = 74, .external_lex_state = 3}, [2538] = {.lex_state = 74, .external_lex_state = 3}, [2539] = {.lex_state = 74, .external_lex_state = 3}, @@ -15469,120 +15509,120 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2543] = {.lex_state = 74, .external_lex_state = 3}, [2544] = {.lex_state = 74, .external_lex_state = 3}, [2545] = {.lex_state = 74, .external_lex_state = 3}, - [2546] = {.lex_state = 74, .external_lex_state = 3}, - [2547] = {.lex_state = 74, .external_lex_state = 3}, + [2546] = {.lex_state = 75, .external_lex_state = 5}, + [2547] = {.lex_state = 75, .external_lex_state = 5}, [2548] = {.lex_state = 74, .external_lex_state = 3}, - [2549] = {.lex_state = 74, .external_lex_state = 3}, - [2550] = {.lex_state = 74, .external_lex_state = 3}, - [2551] = {.lex_state = 74, .external_lex_state = 3}, - [2552] = {.lex_state = 74, .external_lex_state = 3}, - [2553] = {.lex_state = 74, .external_lex_state = 3}, - [2554] = {.lex_state = 75, .external_lex_state = 5}, - [2555] = {.lex_state = 75, .external_lex_state = 5}, - [2556] = {.lex_state = 75, .external_lex_state = 2}, + [2549] = {.lex_state = 75, .external_lex_state = 5}, + [2550] = {.lex_state = 75, .external_lex_state = 5}, + [2551] = {.lex_state = 75, .external_lex_state = 2}, + [2552] = {.lex_state = 75, .external_lex_state = 5}, + [2553] = {.lex_state = 75, .external_lex_state = 5}, + [2554] = {.lex_state = 74, .external_lex_state = 3}, + [2555] = {.lex_state = 74, .external_lex_state = 3}, + [2556] = {.lex_state = 74, .external_lex_state = 3}, [2557] = {.lex_state = 74, .external_lex_state = 3}, [2558] = {.lex_state = 74, .external_lex_state = 3}, [2559] = {.lex_state = 74, .external_lex_state = 3}, - [2560] = {.lex_state = 74, .external_lex_state = 3}, + [2560] = {.lex_state = 75, .external_lex_state = 5}, [2561] = {.lex_state = 75, .external_lex_state = 2}, - [2562] = {.lex_state = 74, .external_lex_state = 3}, + [2562] = {.lex_state = 75, .external_lex_state = 5}, [2563] = {.lex_state = 75, .external_lex_state = 2}, - [2564] = {.lex_state = 74, .external_lex_state = 3}, - [2565] = {.lex_state = 74, .external_lex_state = 3}, + [2564] = {.lex_state = 75, .external_lex_state = 2}, + [2565] = {.lex_state = 74, .external_lex_state = 4}, [2566] = {.lex_state = 74, .external_lex_state = 3}, [2567] = {.lex_state = 74, .external_lex_state = 3}, [2568] = {.lex_state = 74, .external_lex_state = 3}, - [2569] = {.lex_state = 75, .external_lex_state = 2}, - [2570] = {.lex_state = 75, .external_lex_state = 2}, + [2569] = {.lex_state = 74, .external_lex_state = 3}, + [2570] = {.lex_state = 75, .external_lex_state = 5}, [2571] = {.lex_state = 74, .external_lex_state = 3}, [2572] = {.lex_state = 74, .external_lex_state = 3}, - [2573] = {.lex_state = 74, .external_lex_state = 3}, + [2573] = {.lex_state = 75, .external_lex_state = 2}, [2574] = {.lex_state = 74, .external_lex_state = 3}, - [2575] = {.lex_state = 74, .external_lex_state = 3}, + [2575] = {.lex_state = 75, .external_lex_state = 2}, [2576] = {.lex_state = 74, .external_lex_state = 3}, [2577] = {.lex_state = 74, .external_lex_state = 3}, [2578] = {.lex_state = 74, .external_lex_state = 3}, [2579] = {.lex_state = 74, .external_lex_state = 3}, - [2580] = {.lex_state = 74, .external_lex_state = 3}, + [2580] = {.lex_state = 75, .external_lex_state = 5}, [2581] = {.lex_state = 75, .external_lex_state = 2}, - [2582] = {.lex_state = 75, .external_lex_state = 2}, - [2583] = {.lex_state = 75, .external_lex_state = 5}, - [2584] = {.lex_state = 75, .external_lex_state = 5}, - [2585] = {.lex_state = 75, .external_lex_state = 5}, - [2586] = {.lex_state = 75, .external_lex_state = 5}, + [2582] = {.lex_state = 74, .external_lex_state = 3}, + [2583] = {.lex_state = 74, .external_lex_state = 3}, + [2584] = {.lex_state = 74, .external_lex_state = 3}, + [2585] = {.lex_state = 74, .external_lex_state = 3}, + [2586] = {.lex_state = 74, .external_lex_state = 3}, [2587] = {.lex_state = 74, .external_lex_state = 3}, [2588] = {.lex_state = 74, .external_lex_state = 3}, [2589] = {.lex_state = 74, .external_lex_state = 3}, [2590] = {.lex_state = 74, .external_lex_state = 3}, [2591] = {.lex_state = 74, .external_lex_state = 3}, [2592] = {.lex_state = 74, .external_lex_state = 3}, - [2593] = {.lex_state = 75, .external_lex_state = 5}, - [2594] = {.lex_state = 75, .external_lex_state = 5}, + [2593] = {.lex_state = 74, .external_lex_state = 3}, + [2594] = {.lex_state = 74, .external_lex_state = 3}, [2595] = {.lex_state = 74, .external_lex_state = 3}, [2596] = {.lex_state = 74, .external_lex_state = 3}, [2597] = {.lex_state = 74, .external_lex_state = 3}, [2598] = {.lex_state = 74, .external_lex_state = 3}, - [2599] = {.lex_state = 74, .external_lex_state = 4}, - [2600] = {.lex_state = 75, .external_lex_state = 5}, + [2599] = {.lex_state = 74, .external_lex_state = 3}, + [2600] = {.lex_state = 74, .external_lex_state = 3}, [2601] = {.lex_state = 74, .external_lex_state = 3}, - [2602] = {.lex_state = 75, .external_lex_state = 5}, + [2602] = {.lex_state = 74, .external_lex_state = 3}, [2603] = {.lex_state = 74, .external_lex_state = 3}, [2604] = {.lex_state = 74, .external_lex_state = 3}, [2605] = {.lex_state = 74, .external_lex_state = 3}, - [2606] = {.lex_state = 74, .external_lex_state = 3}, - [2607] = {.lex_state = 75, .external_lex_state = 5}, + [2606] = {.lex_state = 75, .external_lex_state = 5}, + [2607] = {.lex_state = 74, .external_lex_state = 3}, [2608] = {.lex_state = 74, .external_lex_state = 3}, - [2609] = {.lex_state = 75, .external_lex_state = 2}, - [2610] = {.lex_state = 75, .external_lex_state = 2}, + [2609] = {.lex_state = 74, .external_lex_state = 3}, + [2610] = {.lex_state = 74, .external_lex_state = 3}, [2611] = {.lex_state = 74, .external_lex_state = 3}, - [2612] = {.lex_state = 75, .external_lex_state = 5}, - [2613] = {.lex_state = 75, .external_lex_state = 2}, - [2614] = {.lex_state = 75, .external_lex_state = 2}, - [2615] = {.lex_state = 75, .external_lex_state = 2}, - [2616] = {.lex_state = 75, .external_lex_state = 2}, - [2617] = {.lex_state = 75, .external_lex_state = 2}, - [2618] = {.lex_state = 75, .external_lex_state = 2}, + [2612] = {.lex_state = 74, .external_lex_state = 3}, + [2613] = {.lex_state = 74, .external_lex_state = 3}, + [2614] = {.lex_state = 74, .external_lex_state = 3}, + [2615] = {.lex_state = 74, .external_lex_state = 3}, + [2616] = {.lex_state = 74, .external_lex_state = 3}, + [2617] = {.lex_state = 74, .external_lex_state = 3}, + [2618] = {.lex_state = 74, .external_lex_state = 3}, [2619] = {.lex_state = 75, .external_lex_state = 5}, [2620] = {.lex_state = 75, .external_lex_state = 2}, - [2621] = {.lex_state = 75, .external_lex_state = 2}, - [2622] = {.lex_state = 74, .external_lex_state = 3}, - [2623] = {.lex_state = 75, .external_lex_state = 2}, - [2624] = {.lex_state = 75, .external_lex_state = 5}, - [2625] = {.lex_state = 75, .external_lex_state = 5}, + [2621] = {.lex_state = 75, .external_lex_state = 5}, + [2622] = {.lex_state = 75, .external_lex_state = 5}, + [2623] = {.lex_state = 75, .external_lex_state = 5}, + [2624] = {.lex_state = 75, .external_lex_state = 2}, + [2625] = {.lex_state = 74, .external_lex_state = 3}, [2626] = {.lex_state = 75, .external_lex_state = 2}, - [2627] = {.lex_state = 75, .external_lex_state = 2}, - [2628] = {.lex_state = 75, .external_lex_state = 2}, + [2627] = {.lex_state = 74, .external_lex_state = 3}, + [2628] = {.lex_state = 75, .external_lex_state = 5}, [2629] = {.lex_state = 75, .external_lex_state = 2}, [2630] = {.lex_state = 75, .external_lex_state = 2}, [2631] = {.lex_state = 75, .external_lex_state = 5}, [2632] = {.lex_state = 75, .external_lex_state = 5}, - [2633] = {.lex_state = 75, .external_lex_state = 5}, + [2633] = {.lex_state = 75, .external_lex_state = 2}, [2634] = {.lex_state = 75, .external_lex_state = 5}, - [2635] = {.lex_state = 75, .external_lex_state = 5}, - [2636] = {.lex_state = 75, .external_lex_state = 5}, - [2637] = {.lex_state = 75, .external_lex_state = 5}, - [2638] = {.lex_state = 4, .external_lex_state = 3}, - [2639] = {.lex_state = 75, .external_lex_state = 5}, - [2640] = {.lex_state = 75, .external_lex_state = 5}, + [2635] = {.lex_state = 74, .external_lex_state = 3}, + [2636] = {.lex_state = 75, .external_lex_state = 2}, + [2637] = {.lex_state = 75, .external_lex_state = 2}, + [2638] = {.lex_state = 75, .external_lex_state = 5}, + [2639] = {.lex_state = 75, .external_lex_state = 2}, + [2640] = {.lex_state = 75, .external_lex_state = 2}, [2641] = {.lex_state = 75, .external_lex_state = 5}, - [2642] = {.lex_state = 74, .external_lex_state = 3}, - [2643] = {.lex_state = 74, .external_lex_state = 3}, - [2644] = {.lex_state = 74, .external_lex_state = 3}, + [2642] = {.lex_state = 75, .external_lex_state = 5}, + [2643] = {.lex_state = 75, .external_lex_state = 5}, + [2644] = {.lex_state = 75, .external_lex_state = 2}, [2645] = {.lex_state = 75, .external_lex_state = 5}, - [2646] = {.lex_state = 74, .external_lex_state = 3}, + [2646] = {.lex_state = 75, .external_lex_state = 2}, [2647] = {.lex_state = 75, .external_lex_state = 5}, - [2648] = {.lex_state = 9, .external_lex_state = 5}, - [2649] = {.lex_state = 9, .external_lex_state = 5}, - [2650] = {.lex_state = 9, .external_lex_state = 5}, - [2651] = {.lex_state = 9, .external_lex_state = 5}, - [2652] = {.lex_state = 74, .external_lex_state = 3}, - [2653] = {.lex_state = 9, .external_lex_state = 5}, - [2654] = {.lex_state = 9, .external_lex_state = 5}, - [2655] = {.lex_state = 9, .external_lex_state = 5}, - [2656] = {.lex_state = 9, .external_lex_state = 5}, - [2657] = {.lex_state = 9, .external_lex_state = 5}, - [2658] = {.lex_state = 9, .external_lex_state = 5}, - [2659] = {.lex_state = 9, .external_lex_state = 5}, + [2648] = {.lex_state = 75, .external_lex_state = 5}, + [2649] = {.lex_state = 75, .external_lex_state = 2}, + [2650] = {.lex_state = 75, .external_lex_state = 2}, + [2651] = {.lex_state = 4, .external_lex_state = 3}, + [2652] = {.lex_state = 75, .external_lex_state = 2}, + [2653] = {.lex_state = 75, .external_lex_state = 2}, + [2654] = {.lex_state = 75, .external_lex_state = 2}, + [2655] = {.lex_state = 74, .external_lex_state = 3}, + [2656] = {.lex_state = 74, .external_lex_state = 3}, + [2657] = {.lex_state = 74, .external_lex_state = 3}, + [2658] = {.lex_state = 75, .external_lex_state = 5}, + [2659] = {.lex_state = 75, .external_lex_state = 5}, [2660] = {.lex_state = 9, .external_lex_state = 5}, [2661] = {.lex_state = 9, .external_lex_state = 5}, [2662] = {.lex_state = 9, .external_lex_state = 5}, @@ -15590,77 +15630,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2664] = {.lex_state = 9, .external_lex_state = 5}, [2665] = {.lex_state = 9, .external_lex_state = 5}, [2666] = {.lex_state = 9, .external_lex_state = 5}, - [2667] = {.lex_state = 74, .external_lex_state = 3}, + [2667] = {.lex_state = 9, .external_lex_state = 5}, [2668] = {.lex_state = 9, .external_lex_state = 5}, - [2669] = {.lex_state = 9, .external_lex_state = 5}, + [2669] = {.lex_state = 74, .external_lex_state = 3}, [2670] = {.lex_state = 9, .external_lex_state = 5}, [2671] = {.lex_state = 9, .external_lex_state = 5}, [2672] = {.lex_state = 9, .external_lex_state = 5}, [2673] = {.lex_state = 9, .external_lex_state = 5}, [2674] = {.lex_state = 9, .external_lex_state = 5}, - [2675] = {.lex_state = 74, .external_lex_state = 3}, - [2676] = {.lex_state = 74, .external_lex_state = 3}, - [2677] = {.lex_state = 74, .external_lex_state = 3}, + [2675] = {.lex_state = 9, .external_lex_state = 5}, + [2676] = {.lex_state = 9, .external_lex_state = 5}, + [2677] = {.lex_state = 9, .external_lex_state = 5}, [2678] = {.lex_state = 9, .external_lex_state = 5}, [2679] = {.lex_state = 9, .external_lex_state = 5}, [2680] = {.lex_state = 9, .external_lex_state = 5}, [2681] = {.lex_state = 9, .external_lex_state = 5}, - [2682] = {.lex_state = 74, .external_lex_state = 3}, - [2683] = {.lex_state = 75, .external_lex_state = 2}, + [2682] = {.lex_state = 9, .external_lex_state = 5}, + [2683] = {.lex_state = 74, .external_lex_state = 3}, [2684] = {.lex_state = 9, .external_lex_state = 5}, [2685] = {.lex_state = 9, .external_lex_state = 5}, - [2686] = {.lex_state = 74, .external_lex_state = 3}, + [2686] = {.lex_state = 9, .external_lex_state = 5}, [2687] = {.lex_state = 9, .external_lex_state = 5}, [2688] = {.lex_state = 9, .external_lex_state = 5}, - [2689] = {.lex_state = 74, .external_lex_state = 3}, + [2689] = {.lex_state = 9, .external_lex_state = 5}, [2690] = {.lex_state = 9, .external_lex_state = 5}, [2691] = {.lex_state = 9, .external_lex_state = 5}, - [2692] = {.lex_state = 9, .external_lex_state = 5}, + [2692] = {.lex_state = 75, .external_lex_state = 2}, [2693] = {.lex_state = 9, .external_lex_state = 5}, - [2694] = {.lex_state = 74, .external_lex_state = 3}, + [2694] = {.lex_state = 9, .external_lex_state = 5}, [2695] = {.lex_state = 9, .external_lex_state = 5}, [2696] = {.lex_state = 9, .external_lex_state = 5}, [2697] = {.lex_state = 9, .external_lex_state = 5}, [2698] = {.lex_state = 9, .external_lex_state = 5}, - [2699] = {.lex_state = 9, .external_lex_state = 5}, + [2699] = {.lex_state = 74, .external_lex_state = 3}, [2700] = {.lex_state = 9, .external_lex_state = 5}, [2701] = {.lex_state = 9, .external_lex_state = 5}, [2702] = {.lex_state = 9, .external_lex_state = 5}, [2703] = {.lex_state = 9, .external_lex_state = 5}, [2704] = {.lex_state = 9, .external_lex_state = 5}, [2705] = {.lex_state = 9, .external_lex_state = 5}, - [2706] = {.lex_state = 74, .external_lex_state = 3}, - [2707] = {.lex_state = 9, .external_lex_state = 5}, + [2706] = {.lex_state = 9, .external_lex_state = 5}, + [2707] = {.lex_state = 74, .external_lex_state = 3}, [2708] = {.lex_state = 9, .external_lex_state = 5}, [2709] = {.lex_state = 74, .external_lex_state = 3}, - [2710] = {.lex_state = 9, .external_lex_state = 5}, - [2711] = {.lex_state = 75, .external_lex_state = 2}, - [2712] = {.lex_state = 9, .external_lex_state = 5}, - [2713] = {.lex_state = 75, .external_lex_state = 2}, - [2714] = {.lex_state = 75, .external_lex_state = 2}, - [2715] = {.lex_state = 9, .external_lex_state = 2}, - [2716] = {.lex_state = 9, .external_lex_state = 2}, - [2717] = {.lex_state = 9, .external_lex_state = 2}, - [2718] = {.lex_state = 9, .external_lex_state = 2}, - [2719] = {.lex_state = 74, .external_lex_state = 3}, - [2720] = {.lex_state = 9, .external_lex_state = 2}, - [2721] = {.lex_state = 9, .external_lex_state = 2}, - [2722] = {.lex_state = 75, .external_lex_state = 2}, - [2723] = {.lex_state = 9, .external_lex_state = 2}, + [2710] = {.lex_state = 74, .external_lex_state = 3}, + [2711] = {.lex_state = 9, .external_lex_state = 5}, + [2712] = {.lex_state = 74, .external_lex_state = 3}, + [2713] = {.lex_state = 74, .external_lex_state = 3}, + [2714] = {.lex_state = 9, .external_lex_state = 5}, + [2715] = {.lex_state = 74, .external_lex_state = 3}, + [2716] = {.lex_state = 9, .external_lex_state = 5}, + [2717] = {.lex_state = 9, .external_lex_state = 5}, + [2718] = {.lex_state = 74, .external_lex_state = 3}, + [2719] = {.lex_state = 9, .external_lex_state = 5}, + [2720] = {.lex_state = 9, .external_lex_state = 5}, + [2721] = {.lex_state = 9, .external_lex_state = 5}, + [2722] = {.lex_state = 9, .external_lex_state = 5}, + [2723] = {.lex_state = 74, .external_lex_state = 3}, [2724] = {.lex_state = 75, .external_lex_state = 2}, - [2725] = {.lex_state = 75, .external_lex_state = 2}, - [2726] = {.lex_state = 75, .external_lex_state = 2}, + [2725] = {.lex_state = 9, .external_lex_state = 2}, + [2726] = {.lex_state = 74, .external_lex_state = 3}, [2727] = {.lex_state = 75, .external_lex_state = 2}, [2728] = {.lex_state = 75, .external_lex_state = 2}, [2729] = {.lex_state = 75, .external_lex_state = 2}, [2730] = {.lex_state = 75, .external_lex_state = 2}, - [2731] = {.lex_state = 75, .external_lex_state = 2}, - [2732] = {.lex_state = 75, .external_lex_state = 2}, - [2733] = {.lex_state = 75, .external_lex_state = 2}, + [2731] = {.lex_state = 9, .external_lex_state = 2}, + [2732] = {.lex_state = 9, .external_lex_state = 2}, + [2733] = {.lex_state = 9, .external_lex_state = 2}, [2734] = {.lex_state = 75, .external_lex_state = 2}, - [2735] = {.lex_state = 75, .external_lex_state = 2}, - [2736] = {.lex_state = 75, .external_lex_state = 2}, - [2737] = {.lex_state = 75, .external_lex_state = 2}, + [2735] = {.lex_state = 9, .external_lex_state = 2}, + [2736] = {.lex_state = 9, .external_lex_state = 2}, + [2737] = {.lex_state = 9, .external_lex_state = 2}, [2738] = {.lex_state = 75, .external_lex_state = 2}, [2739] = {.lex_state = 75, .external_lex_state = 2}, [2740] = {.lex_state = 75, .external_lex_state = 2}, @@ -15799,18 +15839,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2873] = {.lex_state = 75, .external_lex_state = 2}, [2874] = {.lex_state = 75, .external_lex_state = 2}, [2875] = {.lex_state = 75, .external_lex_state = 2}, - [2876] = {.lex_state = 7, .external_lex_state = 2}, - [2877] = {.lex_state = 7, .external_lex_state = 2}, - [2878] = {.lex_state = 7, .external_lex_state = 2}, - [2879] = {.lex_state = 7, .external_lex_state = 2}, - [2880] = {.lex_state = 7, .external_lex_state = 2}, - [2881] = {.lex_state = 7, .external_lex_state = 2}, - [2882] = {.lex_state = 7, .external_lex_state = 2}, - [2883] = {.lex_state = 7, .external_lex_state = 2}, - [2884] = {.lex_state = 7, .external_lex_state = 2}, - [2885] = {.lex_state = 7, .external_lex_state = 2}, - [2886] = {.lex_state = 7, .external_lex_state = 2}, - [2887] = {.lex_state = 7, .external_lex_state = 2}, + [2876] = {.lex_state = 75, .external_lex_state = 2}, + [2877] = {.lex_state = 75, .external_lex_state = 2}, + [2878] = {.lex_state = 75, .external_lex_state = 2}, + [2879] = {.lex_state = 75, .external_lex_state = 2}, + [2880] = {.lex_state = 75, .external_lex_state = 2}, + [2881] = {.lex_state = 75, .external_lex_state = 2}, + [2882] = {.lex_state = 75, .external_lex_state = 2}, + [2883] = {.lex_state = 75, .external_lex_state = 2}, + [2884] = {.lex_state = 75, .external_lex_state = 2}, + [2885] = {.lex_state = 75, .external_lex_state = 2}, + [2886] = {.lex_state = 75, .external_lex_state = 2}, + [2887] = {.lex_state = 75, .external_lex_state = 2}, [2888] = {.lex_state = 7, .external_lex_state = 2}, [2889] = {.lex_state = 7, .external_lex_state = 2}, [2890] = {.lex_state = 7, .external_lex_state = 2}, @@ -15836,292 +15876,292 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2910] = {.lex_state = 7, .external_lex_state = 2}, [2911] = {.lex_state = 7, .external_lex_state = 2}, [2912] = {.lex_state = 7, .external_lex_state = 2}, - [2913] = {.lex_state = 75, .external_lex_state = 5}, - [2914] = {.lex_state = 75, .external_lex_state = 5}, - [2915] = {.lex_state = 75, .external_lex_state = 2}, + [2913] = {.lex_state = 7, .external_lex_state = 2}, + [2914] = {.lex_state = 7, .external_lex_state = 2}, + [2915] = {.lex_state = 7, .external_lex_state = 2}, [2916] = {.lex_state = 7, .external_lex_state = 2}, [2917] = {.lex_state = 7, .external_lex_state = 2}, [2918] = {.lex_state = 7, .external_lex_state = 2}, - [2919] = {.lex_state = 75, .external_lex_state = 2}, + [2919] = {.lex_state = 7, .external_lex_state = 2}, [2920] = {.lex_state = 7, .external_lex_state = 2}, [2921] = {.lex_state = 7, .external_lex_state = 2}, [2922] = {.lex_state = 7, .external_lex_state = 2}, - [2923] = {.lex_state = 75, .external_lex_state = 2}, - [2924] = {.lex_state = 75, .external_lex_state = 2}, - [2925] = {.lex_state = 7, .external_lex_state = 5}, + [2923] = {.lex_state = 7, .external_lex_state = 2}, + [2924] = {.lex_state = 7, .external_lex_state = 2}, + [2925] = {.lex_state = 75, .external_lex_state = 5}, [2926] = {.lex_state = 75, .external_lex_state = 2}, - [2927] = {.lex_state = 75, .external_lex_state = 2}, + [2927] = {.lex_state = 75, .external_lex_state = 5}, [2928] = {.lex_state = 75, .external_lex_state = 2}, [2929] = {.lex_state = 75, .external_lex_state = 2}, [2930] = {.lex_state = 75, .external_lex_state = 2}, - [2931] = {.lex_state = 7, .external_lex_state = 5}, + [2931] = {.lex_state = 75, .external_lex_state = 2}, [2932] = {.lex_state = 75, .external_lex_state = 2}, - [2933] = {.lex_state = 7, .external_lex_state = 5}, - [2934] = {.lex_state = 75, .external_lex_state = 2}, + [2933] = {.lex_state = 75, .external_lex_state = 2}, + [2934] = {.lex_state = 7, .external_lex_state = 2}, [2935] = {.lex_state = 75, .external_lex_state = 2}, [2936] = {.lex_state = 75, .external_lex_state = 2}, [2937] = {.lex_state = 75, .external_lex_state = 2}, [2938] = {.lex_state = 75, .external_lex_state = 2}, [2939] = {.lex_state = 75, .external_lex_state = 2}, [2940] = {.lex_state = 75, .external_lex_state = 2}, - [2941] = {.lex_state = 7, .external_lex_state = 5}, - [2942] = {.lex_state = 75, .external_lex_state = 2}, - [2943] = {.lex_state = 7, .external_lex_state = 5}, + [2941] = {.lex_state = 75, .external_lex_state = 2}, + [2942] = {.lex_state = 7, .external_lex_state = 5}, + [2943] = {.lex_state = 7, .external_lex_state = 2}, [2944] = {.lex_state = 75, .external_lex_state = 2}, - [2945] = {.lex_state = 75, .external_lex_state = 2}, + [2945] = {.lex_state = 7, .external_lex_state = 5}, [2946] = {.lex_state = 7, .external_lex_state = 5}, - [2947] = {.lex_state = 75, .external_lex_state = 2}, - [2948] = {.lex_state = 75, .external_lex_state = 2}, - [2949] = {.lex_state = 75, .external_lex_state = 2}, - [2950] = {.lex_state = 7, .external_lex_state = 5}, - [2951] = {.lex_state = 7, .external_lex_state = 6}, - [2952] = {.lex_state = 7, .external_lex_state = 5}, - [2953] = {.lex_state = 7, .external_lex_state = 5}, - [2954] = {.lex_state = 7, .external_lex_state = 5}, + [2947] = {.lex_state = 7, .external_lex_state = 2}, + [2948] = {.lex_state = 7, .external_lex_state = 2}, + [2949] = {.lex_state = 7, .external_lex_state = 2}, + [2950] = {.lex_state = 75, .external_lex_state = 2}, + [2951] = {.lex_state = 7, .external_lex_state = 2}, + [2952] = {.lex_state = 75, .external_lex_state = 2}, + [2953] = {.lex_state = 75, .external_lex_state = 2}, + [2954] = {.lex_state = 75, .external_lex_state = 2}, [2955] = {.lex_state = 75, .external_lex_state = 2}, - [2956] = {.lex_state = 7, .external_lex_state = 5}, + [2956] = {.lex_state = 75, .external_lex_state = 2}, [2957] = {.lex_state = 75, .external_lex_state = 2}, - [2958] = {.lex_state = 7, .external_lex_state = 5}, - [2959] = {.lex_state = 7, .external_lex_state = 5}, - [2960] = {.lex_state = 7, .external_lex_state = 5}, + [2958] = {.lex_state = 75, .external_lex_state = 2}, + [2959] = {.lex_state = 75, .external_lex_state = 2}, + [2960] = {.lex_state = 75, .external_lex_state = 2}, [2961] = {.lex_state = 7, .external_lex_state = 5}, [2962] = {.lex_state = 75, .external_lex_state = 2}, - [2963] = {.lex_state = 7, .external_lex_state = 5}, + [2963] = {.lex_state = 75, .external_lex_state = 2}, [2964] = {.lex_state = 75, .external_lex_state = 2}, - [2965] = {.lex_state = 7, .external_lex_state = 5}, - [2966] = {.lex_state = 7, .external_lex_state = 5}, - [2967] = {.lex_state = 7, .external_lex_state = 5}, - [2968] = {.lex_state = 75, .external_lex_state = 2}, - [2969] = {.lex_state = 7, .external_lex_state = 5}, - [2970] = {.lex_state = 75, .external_lex_state = 2}, - [2971] = {.lex_state = 75, .external_lex_state = 2}, - [2972] = {.lex_state = 75, .external_lex_state = 2}, + [2965] = {.lex_state = 75, .external_lex_state = 2}, + [2966] = {.lex_state = 75, .external_lex_state = 2}, + [2967] = {.lex_state = 75, .external_lex_state = 2}, + [2968] = {.lex_state = 2, .external_lex_state = 2}, + [2969] = {.lex_state = 75, .external_lex_state = 2}, + [2970] = {.lex_state = 7, .external_lex_state = 5}, + [2971] = {.lex_state = 7, .external_lex_state = 5}, + [2972] = {.lex_state = 7, .external_lex_state = 5}, [2973] = {.lex_state = 75, .external_lex_state = 2}, [2974] = {.lex_state = 75, .external_lex_state = 2}, [2975] = {.lex_state = 75, .external_lex_state = 2}, [2976] = {.lex_state = 75, .external_lex_state = 2}, [2977] = {.lex_state = 75, .external_lex_state = 2}, [2978] = {.lex_state = 75, .external_lex_state = 2}, - [2979] = {.lex_state = 2, .external_lex_state = 2}, - [2980] = {.lex_state = 2, .external_lex_state = 2}, - [2981] = {.lex_state = 75, .external_lex_state = 2}, - [2982] = {.lex_state = 75, .external_lex_state = 2}, + [2979] = {.lex_state = 75, .external_lex_state = 2}, + [2980] = {.lex_state = 75, .external_lex_state = 2}, + [2981] = {.lex_state = 7, .external_lex_state = 5}, + [2982] = {.lex_state = 7, .external_lex_state = 5}, [2983] = {.lex_state = 7, .external_lex_state = 5}, [2984] = {.lex_state = 75, .external_lex_state = 2}, - [2985] = {.lex_state = 75, .external_lex_state = 2}, - [2986] = {.lex_state = 2, .external_lex_state = 2}, + [2985] = {.lex_state = 2, .external_lex_state = 2}, + [2986] = {.lex_state = 75, .external_lex_state = 2}, [2987] = {.lex_state = 7, .external_lex_state = 5}, - [2988] = {.lex_state = 75, .external_lex_state = 2}, - [2989] = {.lex_state = 7, .external_lex_state = 5}, - [2990] = {.lex_state = 7, .external_lex_state = 5}, + [2988] = {.lex_state = 7, .external_lex_state = 5}, + [2989] = {.lex_state = 75, .external_lex_state = 2}, + [2990] = {.lex_state = 75, .external_lex_state = 2}, [2991] = {.lex_state = 75, .external_lex_state = 2}, [2992] = {.lex_state = 75, .external_lex_state = 2}, - [2993] = {.lex_state = 7, .external_lex_state = 5}, - [2994] = {.lex_state = 75, .external_lex_state = 2}, - [2995] = {.lex_state = 7, .external_lex_state = 5}, + [2993] = {.lex_state = 75, .external_lex_state = 5}, + [2994] = {.lex_state = 7, .external_lex_state = 5}, + [2995] = {.lex_state = 75, .external_lex_state = 2}, [2996] = {.lex_state = 75, .external_lex_state = 2}, - [2997] = {.lex_state = 7, .external_lex_state = 5}, - [2998] = {.lex_state = 75, .external_lex_state = 2}, - [2999] = {.lex_state = 75, .external_lex_state = 2}, + [2997] = {.lex_state = 75, .external_lex_state = 2}, + [2998] = {.lex_state = 2, .external_lex_state = 2}, + [2999] = {.lex_state = 7, .external_lex_state = 5}, [3000] = {.lex_state = 75, .external_lex_state = 2}, [3001] = {.lex_state = 75, .external_lex_state = 2}, [3002] = {.lex_state = 75, .external_lex_state = 2}, - [3003] = {.lex_state = 2, .external_lex_state = 2}, - [3004] = {.lex_state = 2, .external_lex_state = 2}, + [3003] = {.lex_state = 75, .external_lex_state = 2}, + [3004] = {.lex_state = 75, .external_lex_state = 2}, [3005] = {.lex_state = 7, .external_lex_state = 5}, - [3006] = {.lex_state = 75, .external_lex_state = 2}, + [3006] = {.lex_state = 7, .external_lex_state = 5}, [3007] = {.lex_state = 75, .external_lex_state = 2}, - [3008] = {.lex_state = 75, .external_lex_state = 2}, - [3009] = {.lex_state = 2, .external_lex_state = 2}, - [3010] = {.lex_state = 75, .external_lex_state = 2}, - [3011] = {.lex_state = 75, .external_lex_state = 2}, - [3012] = {.lex_state = 7, .external_lex_state = 5}, - [3013] = {.lex_state = 2, .external_lex_state = 2}, + [3008] = {.lex_state = 2, .external_lex_state = 2}, + [3009] = {.lex_state = 7, .external_lex_state = 5}, + [3010] = {.lex_state = 7, .external_lex_state = 5}, + [3011] = {.lex_state = 7, .external_lex_state = 5}, + [3012] = {.lex_state = 75, .external_lex_state = 2}, + [3013] = {.lex_state = 75, .external_lex_state = 2}, [3014] = {.lex_state = 7, .external_lex_state = 5}, [3015] = {.lex_state = 75, .external_lex_state = 2}, - [3016] = {.lex_state = 75, .external_lex_state = 5}, - [3017] = {.lex_state = 7, .external_lex_state = 5}, + [3016] = {.lex_state = 2, .external_lex_state = 2}, + [3017] = {.lex_state = 75, .external_lex_state = 2}, [3018] = {.lex_state = 75, .external_lex_state = 2}, - [3019] = {.lex_state = 75, .external_lex_state = 2}, - [3020] = {.lex_state = 2, .external_lex_state = 2}, - [3021] = {.lex_state = 75, .external_lex_state = 2}, - [3022] = {.lex_state = 7, .external_lex_state = 5}, - [3023] = {.lex_state = 75, .external_lex_state = 2}, - [3024] = {.lex_state = 75, .external_lex_state = 2}, - [3025] = {.lex_state = 2, .external_lex_state = 2}, - [3026] = {.lex_state = 7, .external_lex_state = 6}, - [3027] = {.lex_state = 7, .external_lex_state = 5}, - [3028] = {.lex_state = 7, .external_lex_state = 5}, - [3029] = {.lex_state = 2, .external_lex_state = 2}, - [3030] = {.lex_state = 75, .external_lex_state = 2}, + [3019] = {.lex_state = 7, .external_lex_state = 5}, + [3020] = {.lex_state = 7, .external_lex_state = 5}, + [3021] = {.lex_state = 2, .external_lex_state = 2}, + [3022] = {.lex_state = 75, .external_lex_state = 2}, + [3023] = {.lex_state = 7, .external_lex_state = 5}, + [3024] = {.lex_state = 7, .external_lex_state = 5}, + [3025] = {.lex_state = 75, .external_lex_state = 2}, + [3026] = {.lex_state = 75, .external_lex_state = 2}, + [3027] = {.lex_state = 75, .external_lex_state = 2}, + [3028] = {.lex_state = 75, .external_lex_state = 2}, + [3029] = {.lex_state = 75, .external_lex_state = 2}, + [3030] = {.lex_state = 2, .external_lex_state = 2}, [3031] = {.lex_state = 7, .external_lex_state = 5}, - [3032] = {.lex_state = 75, .external_lex_state = 2}, + [3032] = {.lex_state = 7, .external_lex_state = 5}, [3033] = {.lex_state = 7, .external_lex_state = 5}, [3034] = {.lex_state = 75, .external_lex_state = 2}, - [3035] = {.lex_state = 75, .external_lex_state = 2}, - [3036] = {.lex_state = 75, .external_lex_state = 2}, - [3037] = {.lex_state = 7, .external_lex_state = 6}, - [3038] = {.lex_state = 7, .external_lex_state = 5}, - [3039] = {.lex_state = 75, .external_lex_state = 2}, + [3035] = {.lex_state = 7, .external_lex_state = 5}, + [3036] = {.lex_state = 7, .external_lex_state = 5}, + [3037] = {.lex_state = 2, .external_lex_state = 2}, + [3038] = {.lex_state = 2, .external_lex_state = 2}, + [3039] = {.lex_state = 7, .external_lex_state = 5}, [3040] = {.lex_state = 75, .external_lex_state = 2}, [3041] = {.lex_state = 75, .external_lex_state = 2}, - [3042] = {.lex_state = 75, .external_lex_state = 2}, - [3043] = {.lex_state = 75, .external_lex_state = 5}, - [3044] = {.lex_state = 75, .external_lex_state = 5}, - [3045] = {.lex_state = 75, .external_lex_state = 5}, - [3046] = {.lex_state = 75, .external_lex_state = 2}, - [3047] = {.lex_state = 75, .external_lex_state = 2}, + [3042] = {.lex_state = 7, .external_lex_state = 5}, + [3043] = {.lex_state = 75, .external_lex_state = 2}, + [3044] = {.lex_state = 75, .external_lex_state = 2}, + [3045] = {.lex_state = 7, .external_lex_state = 5}, + [3046] = {.lex_state = 7, .external_lex_state = 5}, + [3047] = {.lex_state = 7, .external_lex_state = 5}, [3048] = {.lex_state = 75, .external_lex_state = 5}, [3049] = {.lex_state = 75, .external_lex_state = 2}, - [3050] = {.lex_state = 75, .external_lex_state = 5}, - [3051] = {.lex_state = 75, .external_lex_state = 5}, + [3050] = {.lex_state = 75, .external_lex_state = 2}, + [3051] = {.lex_state = 7, .external_lex_state = 5}, [3052] = {.lex_state = 75, .external_lex_state = 5}, - [3053] = {.lex_state = 75, .external_lex_state = 2}, + [3053] = {.lex_state = 75, .external_lex_state = 5}, [3054] = {.lex_state = 75, .external_lex_state = 2}, [3055] = {.lex_state = 75, .external_lex_state = 2}, - [3056] = {.lex_state = 75, .external_lex_state = 2}, + [3056] = {.lex_state = 75, .external_lex_state = 5}, [3057] = {.lex_state = 75, .external_lex_state = 5}, - [3058] = {.lex_state = 75, .external_lex_state = 5}, + [3058] = {.lex_state = 75, .external_lex_state = 2}, [3059] = {.lex_state = 75, .external_lex_state = 2}, [3060] = {.lex_state = 75, .external_lex_state = 5}, - [3061] = {.lex_state = 75, .external_lex_state = 2}, - [3062] = {.lex_state = 75, .external_lex_state = 5}, - [3063] = {.lex_state = 75, .external_lex_state = 5}, - [3064] = {.lex_state = 75, .external_lex_state = 5}, - [3065] = {.lex_state = 75, .external_lex_state = 5}, - [3066] = {.lex_state = 75, .external_lex_state = 5}, - [3067] = {.lex_state = 75, .external_lex_state = 5}, + [3061] = {.lex_state = 7, .external_lex_state = 6}, + [3062] = {.lex_state = 7, .external_lex_state = 6}, + [3063] = {.lex_state = 7, .external_lex_state = 6}, + [3064] = {.lex_state = 2, .external_lex_state = 2}, + [3065] = {.lex_state = 7, .external_lex_state = 5}, + [3066] = {.lex_state = 7, .external_lex_state = 5}, + [3067] = {.lex_state = 75, .external_lex_state = 2}, [3068] = {.lex_state = 75, .external_lex_state = 5}, [3069] = {.lex_state = 75, .external_lex_state = 5}, - [3070] = {.lex_state = 75, .external_lex_state = 5}, + [3070] = {.lex_state = 75, .external_lex_state = 2}, [3071] = {.lex_state = 75, .external_lex_state = 5}, [3072] = {.lex_state = 75, .external_lex_state = 5}, [3073] = {.lex_state = 75, .external_lex_state = 5}, [3074] = {.lex_state = 75, .external_lex_state = 5}, [3075] = {.lex_state = 75, .external_lex_state = 2}, - [3076] = {.lex_state = 75, .external_lex_state = 5}, - [3077] = {.lex_state = 75, .external_lex_state = 5}, - [3078] = {.lex_state = 75, .external_lex_state = 2}, - [3079] = {.lex_state = 75, .external_lex_state = 5}, + [3076] = {.lex_state = 75, .external_lex_state = 2}, + [3077] = {.lex_state = 75, .external_lex_state = 2}, + [3078] = {.lex_state = 75, .external_lex_state = 5}, + [3079] = {.lex_state = 75, .external_lex_state = 2}, [3080] = {.lex_state = 75, .external_lex_state = 5}, [3081] = {.lex_state = 75, .external_lex_state = 5}, - [3082] = {.lex_state = 75, .external_lex_state = 5}, + [3082] = {.lex_state = 75, .external_lex_state = 2}, [3083] = {.lex_state = 75, .external_lex_state = 5}, - [3084] = {.lex_state = 7, .external_lex_state = 6}, + [3084] = {.lex_state = 75, .external_lex_state = 5}, [3085] = {.lex_state = 75, .external_lex_state = 5}, - [3086] = {.lex_state = 7, .external_lex_state = 5}, - [3087] = {.lex_state = 75, .external_lex_state = 2}, - [3088] = {.lex_state = 7, .external_lex_state = 5}, - [3089] = {.lex_state = 7, .external_lex_state = 5}, - [3090] = {.lex_state = 7, .external_lex_state = 5}, - [3091] = {.lex_state = 75, .external_lex_state = 5}, + [3086] = {.lex_state = 75, .external_lex_state = 5}, + [3087] = {.lex_state = 75, .external_lex_state = 5}, + [3088] = {.lex_state = 75, .external_lex_state = 2}, + [3089] = {.lex_state = 75, .external_lex_state = 5}, + [3090] = {.lex_state = 75, .external_lex_state = 5}, + [3091] = {.lex_state = 75, .external_lex_state = 2}, [3092] = {.lex_state = 75, .external_lex_state = 5}, [3093] = {.lex_state = 75, .external_lex_state = 5}, - [3094] = {.lex_state = 7, .external_lex_state = 5}, - [3095] = {.lex_state = 75, .external_lex_state = 2}, - [3096] = {.lex_state = 75, .external_lex_state = 2}, - [3097] = {.lex_state = 75, .external_lex_state = 5}, + [3094] = {.lex_state = 75, .external_lex_state = 5}, + [3095] = {.lex_state = 75, .external_lex_state = 5}, + [3096] = {.lex_state = 75, .external_lex_state = 5}, + [3097] = {.lex_state = 75, .external_lex_state = 2}, [3098] = {.lex_state = 75, .external_lex_state = 5}, - [3099] = {.lex_state = 7, .external_lex_state = 5}, + [3099] = {.lex_state = 75, .external_lex_state = 5}, [3100] = {.lex_state = 75, .external_lex_state = 5}, [3101] = {.lex_state = 75, .external_lex_state = 5}, [3102] = {.lex_state = 75, .external_lex_state = 5}, [3103] = {.lex_state = 75, .external_lex_state = 5}, [3104] = {.lex_state = 75, .external_lex_state = 5}, [3105] = {.lex_state = 75, .external_lex_state = 5}, - [3106] = {.lex_state = 75, .external_lex_state = 2}, - [3107] = {.lex_state = 7, .external_lex_state = 6}, + [3106] = {.lex_state = 75, .external_lex_state = 5}, + [3107] = {.lex_state = 75, .external_lex_state = 2}, [3108] = {.lex_state = 7, .external_lex_state = 6}, - [3109] = {.lex_state = 7, .external_lex_state = 6}, + [3109] = {.lex_state = 75, .external_lex_state = 6}, [3110] = {.lex_state = 7, .external_lex_state = 6}, - [3111] = {.lex_state = 75, .external_lex_state = 5}, - [3112] = {.lex_state = 7, .external_lex_state = 6}, - [3113] = {.lex_state = 7, .external_lex_state = 6}, + [3111] = {.lex_state = 75, .external_lex_state = 2}, + [3112] = {.lex_state = 7, .external_lex_state = 5}, + [3113] = {.lex_state = 7, .external_lex_state = 5}, [3114] = {.lex_state = 7, .external_lex_state = 6}, - [3115] = {.lex_state = 7, .external_lex_state = 6}, + [3115] = {.lex_state = 75, .external_lex_state = 2}, [3116] = {.lex_state = 7, .external_lex_state = 6}, [3117] = {.lex_state = 7, .external_lex_state = 6}, - [3118] = {.lex_state = 7, .external_lex_state = 6}, - [3119] = {.lex_state = 7, .external_lex_state = 6}, - [3120] = {.lex_state = 7, .external_lex_state = 6}, - [3121] = {.lex_state = 7, .external_lex_state = 6}, + [3118] = {.lex_state = 75, .external_lex_state = 2}, + [3119] = {.lex_state = 75, .external_lex_state = 6}, + [3120] = {.lex_state = 75, .external_lex_state = 2}, + [3121] = {.lex_state = 75, .external_lex_state = 2}, [3122] = {.lex_state = 7, .external_lex_state = 6}, - [3123] = {.lex_state = 7, .external_lex_state = 6}, - [3124] = {.lex_state = 7, .external_lex_state = 5}, + [3123] = {.lex_state = 75, .external_lex_state = 2}, + [3124] = {.lex_state = 75, .external_lex_state = 2}, [3125] = {.lex_state = 7, .external_lex_state = 6}, - [3126] = {.lex_state = 7, .external_lex_state = 6}, - [3127] = {.lex_state = 7, .external_lex_state = 6}, - [3128] = {.lex_state = 7, .external_lex_state = 6}, - [3129] = {.lex_state = 75, .external_lex_state = 6}, - [3130] = {.lex_state = 7, .external_lex_state = 6}, + [3126] = {.lex_state = 75, .external_lex_state = 6}, + [3127] = {.lex_state = 75, .external_lex_state = 5}, + [3128] = {.lex_state = 75, .external_lex_state = 6}, + [3129] = {.lex_state = 75, .external_lex_state = 5}, + [3130] = {.lex_state = 75, .external_lex_state = 5}, [3131] = {.lex_state = 7, .external_lex_state = 6}, - [3132] = {.lex_state = 7, .external_lex_state = 6}, - [3133] = {.lex_state = 7, .external_lex_state = 6}, - [3134] = {.lex_state = 7, .external_lex_state = 6}, + [3132] = {.lex_state = 7, .external_lex_state = 5}, + [3133] = {.lex_state = 75, .external_lex_state = 5}, + [3134] = {.lex_state = 75, .external_lex_state = 5}, [3135] = {.lex_state = 75, .external_lex_state = 5}, - [3136] = {.lex_state = 7, .external_lex_state = 6}, - [3137] = {.lex_state = 7, .external_lex_state = 6}, + [3136] = {.lex_state = 75, .external_lex_state = 5}, + [3137] = {.lex_state = 75, .external_lex_state = 2}, [3138] = {.lex_state = 7, .external_lex_state = 6}, - [3139] = {.lex_state = 7, .external_lex_state = 6}, + [3139] = {.lex_state = 75, .external_lex_state = 5}, [3140] = {.lex_state = 7, .external_lex_state = 6}, [3141] = {.lex_state = 7, .external_lex_state = 6}, - [3142] = {.lex_state = 7, .external_lex_state = 6}, - [3143] = {.lex_state = 75, .external_lex_state = 5}, - [3144] = {.lex_state = 75, .external_lex_state = 5}, - [3145] = {.lex_state = 75, .external_lex_state = 2}, - [3146] = {.lex_state = 75, .external_lex_state = 2}, - [3147] = {.lex_state = 75, .external_lex_state = 5}, - [3148] = {.lex_state = 75, .external_lex_state = 2}, - [3149] = {.lex_state = 75, .external_lex_state = 2}, - [3150] = {.lex_state = 75, .external_lex_state = 2}, - [3151] = {.lex_state = 75, .external_lex_state = 5}, - [3152] = {.lex_state = 75, .external_lex_state = 5}, - [3153] = {.lex_state = 75, .external_lex_state = 2}, - [3154] = {.lex_state = 75, .external_lex_state = 2}, - [3155] = {.lex_state = 7, .external_lex_state = 5}, + [3142] = {.lex_state = 7, .external_lex_state = 5}, + [3143] = {.lex_state = 7, .external_lex_state = 5}, + [3144] = {.lex_state = 7, .external_lex_state = 5}, + [3145] = {.lex_state = 7, .external_lex_state = 6}, + [3146] = {.lex_state = 7, .external_lex_state = 6}, + [3147] = {.lex_state = 7, .external_lex_state = 6}, + [3148] = {.lex_state = 7, .external_lex_state = 6}, + [3149] = {.lex_state = 7, .external_lex_state = 6}, + [3150] = {.lex_state = 7, .external_lex_state = 6}, + [3151] = {.lex_state = 7, .external_lex_state = 6}, + [3152] = {.lex_state = 7, .external_lex_state = 6}, + [3153] = {.lex_state = 7, .external_lex_state = 6}, + [3154] = {.lex_state = 75, .external_lex_state = 5}, + [3155] = {.lex_state = 7, .external_lex_state = 6}, [3156] = {.lex_state = 7, .external_lex_state = 6}, - [3157] = {.lex_state = 75, .external_lex_state = 5}, - [3158] = {.lex_state = 75, .external_lex_state = 6}, - [3159] = {.lex_state = 75, .external_lex_state = 5}, - [3160] = {.lex_state = 75, .external_lex_state = 5}, - [3161] = {.lex_state = 75, .external_lex_state = 5}, + [3157] = {.lex_state = 7, .external_lex_state = 6}, + [3158] = {.lex_state = 7, .external_lex_state = 6}, + [3159] = {.lex_state = 7, .external_lex_state = 6}, + [3160] = {.lex_state = 7, .external_lex_state = 6}, + [3161] = {.lex_state = 7, .external_lex_state = 6}, [3162] = {.lex_state = 75, .external_lex_state = 5}, [3163] = {.lex_state = 75, .external_lex_state = 5}, - [3164] = {.lex_state = 75, .external_lex_state = 5}, - [3165] = {.lex_state = 75, .external_lex_state = 5}, + [3164] = {.lex_state = 7, .external_lex_state = 5}, + [3165] = {.lex_state = 7, .external_lex_state = 6}, [3166] = {.lex_state = 75, .external_lex_state = 5}, [3167] = {.lex_state = 75, .external_lex_state = 5}, [3168] = {.lex_state = 75, .external_lex_state = 5}, - [3169] = {.lex_state = 75, .external_lex_state = 5}, - [3170] = {.lex_state = 75, .external_lex_state = 5}, + [3169] = {.lex_state = 75, .external_lex_state = 6}, + [3170] = {.lex_state = 75, .external_lex_state = 2}, [3171] = {.lex_state = 75, .external_lex_state = 5}, - [3172] = {.lex_state = 75, .external_lex_state = 5}, - [3173] = {.lex_state = 75, .external_lex_state = 5}, - [3174] = {.lex_state = 75, .external_lex_state = 2}, + [3172] = {.lex_state = 75, .external_lex_state = 2}, + [3173] = {.lex_state = 7, .external_lex_state = 6}, + [3174] = {.lex_state = 7, .external_lex_state = 6}, [3175] = {.lex_state = 75, .external_lex_state = 5}, - [3176] = {.lex_state = 75, .external_lex_state = 5}, - [3177] = {.lex_state = 75, .external_lex_state = 2}, - [3178] = {.lex_state = 75, .external_lex_state = 5}, + [3176] = {.lex_state = 7, .external_lex_state = 6}, + [3177] = {.lex_state = 7, .external_lex_state = 6}, + [3178] = {.lex_state = 75, .external_lex_state = 6}, [3179] = {.lex_state = 75, .external_lex_state = 5}, - [3180] = {.lex_state = 75, .external_lex_state = 5}, - [3181] = {.lex_state = 75, .external_lex_state = 6}, - [3182] = {.lex_state = 75, .external_lex_state = 5}, + [3180] = {.lex_state = 7, .external_lex_state = 5}, + [3181] = {.lex_state = 75, .external_lex_state = 2}, + [3182] = {.lex_state = 7, .external_lex_state = 6}, [3183] = {.lex_state = 75, .external_lex_state = 5}, - [3184] = {.lex_state = 75, .external_lex_state = 5}, + [3184] = {.lex_state = 75, .external_lex_state = 6}, [3185] = {.lex_state = 75, .external_lex_state = 5}, - [3186] = {.lex_state = 75, .external_lex_state = 5}, + [3186] = {.lex_state = 7, .external_lex_state = 6}, [3187] = {.lex_state = 75, .external_lex_state = 5}, [3188] = {.lex_state = 75, .external_lex_state = 5}, - [3189] = {.lex_state = 75, .external_lex_state = 2}, + [3189] = {.lex_state = 75, .external_lex_state = 5}, [3190] = {.lex_state = 75, .external_lex_state = 5}, [3191] = {.lex_state = 75, .external_lex_state = 5}, [3192] = {.lex_state = 75, .external_lex_state = 5}, [3193] = {.lex_state = 75, .external_lex_state = 5}, [3194] = {.lex_state = 75, .external_lex_state = 5}, [3195] = {.lex_state = 75, .external_lex_state = 5}, - [3196] = {.lex_state = 7, .external_lex_state = 2}, - [3197] = {.lex_state = 7, .external_lex_state = 2}, - [3198] = {.lex_state = 7, .external_lex_state = 2}, + [3196] = {.lex_state = 75, .external_lex_state = 2}, + [3197] = {.lex_state = 75, .external_lex_state = 5}, + [3198] = {.lex_state = 75, .external_lex_state = 5}, [3199] = {.lex_state = 75, .external_lex_state = 5}, [3200] = {.lex_state = 75, .external_lex_state = 5}, [3201] = {.lex_state = 75, .external_lex_state = 5}, @@ -16131,10 +16171,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3205] = {.lex_state = 75, .external_lex_state = 5}, [3206] = {.lex_state = 75, .external_lex_state = 5}, [3207] = {.lex_state = 75, .external_lex_state = 5}, - [3208] = {.lex_state = 75, .external_lex_state = 5}, - [3209] = {.lex_state = 75, .external_lex_state = 5}, - [3210] = {.lex_state = 75, .external_lex_state = 5}, - [3211] = {.lex_state = 75, .external_lex_state = 5}, + [3208] = {.lex_state = 75, .external_lex_state = 2}, + [3209] = {.lex_state = 7, .external_lex_state = 2}, + [3210] = {.lex_state = 7, .external_lex_state = 2}, + [3211] = {.lex_state = 7, .external_lex_state = 2}, [3212] = {.lex_state = 75, .external_lex_state = 5}, [3213] = {.lex_state = 75, .external_lex_state = 5}, [3214] = {.lex_state = 75, .external_lex_state = 5}, @@ -16143,55 +16183,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3217] = {.lex_state = 75, .external_lex_state = 5}, [3218] = {.lex_state = 75, .external_lex_state = 5}, [3219] = {.lex_state = 75, .external_lex_state = 5}, - [3220] = {.lex_state = 7, .external_lex_state = 6}, - [3221] = {.lex_state = 7, .external_lex_state = 6}, + [3220] = {.lex_state = 75, .external_lex_state = 5}, + [3221] = {.lex_state = 75, .external_lex_state = 5}, [3222] = {.lex_state = 75, .external_lex_state = 5}, - [3223] = {.lex_state = 7, .external_lex_state = 6}, - [3224] = {.lex_state = 7, .external_lex_state = 6}, - [3225] = {.lex_state = 7, .external_lex_state = 6}, - [3226] = {.lex_state = 7, .external_lex_state = 6}, + [3223] = {.lex_state = 75, .external_lex_state = 5}, + [3224] = {.lex_state = 75, .external_lex_state = 5}, + [3225] = {.lex_state = 75, .external_lex_state = 5}, + [3226] = {.lex_state = 75, .external_lex_state = 5}, [3227] = {.lex_state = 75, .external_lex_state = 5}, - [3228] = {.lex_state = 75, .external_lex_state = 6}, + [3228] = {.lex_state = 75, .external_lex_state = 2}, [3229] = {.lex_state = 75, .external_lex_state = 5}, - [3230] = {.lex_state = 75, .external_lex_state = 6}, - [3231] = {.lex_state = 75, .external_lex_state = 6}, + [3230] = {.lex_state = 75, .external_lex_state = 5}, + [3231] = {.lex_state = 75, .external_lex_state = 5}, [3232] = {.lex_state = 75, .external_lex_state = 5}, - [3233] = {.lex_state = 75, .external_lex_state = 6}, - [3234] = {.lex_state = 75, .external_lex_state = 6}, - [3235] = {.lex_state = 75, .external_lex_state = 6}, - [3236] = {.lex_state = 75, .external_lex_state = 6}, - [3237] = {.lex_state = 75, .external_lex_state = 6}, - [3238] = {.lex_state = 7, .external_lex_state = 6}, - [3239] = {.lex_state = 75, .external_lex_state = 5}, + [3233] = {.lex_state = 75, .external_lex_state = 5}, + [3234] = {.lex_state = 75, .external_lex_state = 5}, + [3235] = {.lex_state = 75, .external_lex_state = 5}, + [3236] = {.lex_state = 75, .external_lex_state = 5}, + [3237] = {.lex_state = 75, .external_lex_state = 5}, + [3238] = {.lex_state = 75, .external_lex_state = 5}, + [3239] = {.lex_state = 75, .external_lex_state = 6}, [3240] = {.lex_state = 75, .external_lex_state = 5}, - [3241] = {.lex_state = 75, .external_lex_state = 5}, + [3241] = {.lex_state = 75, .external_lex_state = 6}, [3242] = {.lex_state = 75, .external_lex_state = 5}, [3243] = {.lex_state = 75, .external_lex_state = 5}, [3244] = {.lex_state = 75, .external_lex_state = 5}, [3245] = {.lex_state = 75, .external_lex_state = 5}, - [3246] = {.lex_state = 75, .external_lex_state = 5}, - [3247] = {.lex_state = 7, .external_lex_state = 6}, - [3248] = {.lex_state = 75, .external_lex_state = 5}, - [3249] = {.lex_state = 75, .external_lex_state = 5}, - [3250] = {.lex_state = 75, .external_lex_state = 5}, - [3251] = {.lex_state = 75, .external_lex_state = 5}, + [3246] = {.lex_state = 75, .external_lex_state = 6}, + [3247] = {.lex_state = 75, .external_lex_state = 5}, + [3248] = {.lex_state = 75, .external_lex_state = 6}, + [3249] = {.lex_state = 75, .external_lex_state = 6}, + [3250] = {.lex_state = 75, .external_lex_state = 6}, + [3251] = {.lex_state = 75, .external_lex_state = 2}, [3252] = {.lex_state = 75, .external_lex_state = 5}, [3253] = {.lex_state = 75, .external_lex_state = 5}, [3254] = {.lex_state = 75, .external_lex_state = 5}, [3255] = {.lex_state = 75, .external_lex_state = 5}, - [3256] = {.lex_state = 75, .external_lex_state = 2}, + [3256] = {.lex_state = 75, .external_lex_state = 5}, [3257] = {.lex_state = 75, .external_lex_state = 5}, [3258] = {.lex_state = 75, .external_lex_state = 5}, [3259] = {.lex_state = 75, .external_lex_state = 5}, [3260] = {.lex_state = 75, .external_lex_state = 5}, - [3261] = {.lex_state = 75, .external_lex_state = 5}, - [3262] = {.lex_state = 75, .external_lex_state = 2}, - [3263] = {.lex_state = 75, .external_lex_state = 5}, + [3261] = {.lex_state = 75, .external_lex_state = 6}, + [3262] = {.lex_state = 75, .external_lex_state = 6}, + [3263] = {.lex_state = 75, .external_lex_state = 6}, [3264] = {.lex_state = 75, .external_lex_state = 5}, [3265] = {.lex_state = 75, .external_lex_state = 5}, [3266] = {.lex_state = 75, .external_lex_state = 5}, - [3267] = {.lex_state = 75, .external_lex_state = 5}, - [3268] = {.lex_state = 75, .external_lex_state = 5}, + [3267] = {.lex_state = 75, .external_lex_state = 6}, + [3268] = {.lex_state = 7, .external_lex_state = 6}, [3269] = {.lex_state = 75, .external_lex_state = 5}, [3270] = {.lex_state = 75, .external_lex_state = 5}, [3271] = {.lex_state = 75, .external_lex_state = 5}, @@ -16200,357 +16240,357 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3274] = {.lex_state = 75, .external_lex_state = 5}, [3275] = {.lex_state = 75, .external_lex_state = 5}, [3276] = {.lex_state = 75, .external_lex_state = 5}, - [3277] = {.lex_state = 75, .external_lex_state = 5}, + [3277] = {.lex_state = 8, .external_lex_state = 2}, [3278] = {.lex_state = 75, .external_lex_state = 6}, [3279] = {.lex_state = 75, .external_lex_state = 5}, [3280] = {.lex_state = 75, .external_lex_state = 5}, [3281] = {.lex_state = 75, .external_lex_state = 5}, - [3282] = {.lex_state = 75, .external_lex_state = 5}, - [3283] = {.lex_state = 75, .external_lex_state = 5}, + [3282] = {.lex_state = 7, .external_lex_state = 6}, + [3283] = {.lex_state = 7, .external_lex_state = 6}, [3284] = {.lex_state = 75, .external_lex_state = 5}, [3285] = {.lex_state = 75, .external_lex_state = 5}, [3286] = {.lex_state = 75, .external_lex_state = 5}, - [3287] = {.lex_state = 75, .external_lex_state = 6}, - [3288] = {.lex_state = 75, .external_lex_state = 6}, - [3289] = {.lex_state = 75, .external_lex_state = 6}, - [3290] = {.lex_state = 75, .external_lex_state = 2}, - [3291] = {.lex_state = 75, .external_lex_state = 2}, - [3292] = {.lex_state = 75, .external_lex_state = 2}, - [3293] = {.lex_state = 75, .external_lex_state = 2}, - [3294] = {.lex_state = 75, .external_lex_state = 2}, - [3295] = {.lex_state = 75, .external_lex_state = 2}, - [3296] = {.lex_state = 75, .external_lex_state = 2}, - [3297] = {.lex_state = 75, .external_lex_state = 2}, - [3298] = {.lex_state = 75, .external_lex_state = 2}, + [3287] = {.lex_state = 75, .external_lex_state = 5}, + [3288] = {.lex_state = 75, .external_lex_state = 5}, + [3289] = {.lex_state = 75, .external_lex_state = 5}, + [3290] = {.lex_state = 7, .external_lex_state = 6}, + [3291] = {.lex_state = 75, .external_lex_state = 5}, + [3292] = {.lex_state = 75, .external_lex_state = 5}, + [3293] = {.lex_state = 75, .external_lex_state = 5}, + [3294] = {.lex_state = 75, .external_lex_state = 5}, + [3295] = {.lex_state = 75, .external_lex_state = 5}, + [3296] = {.lex_state = 75, .external_lex_state = 5}, + [3297] = {.lex_state = 75, .external_lex_state = 5}, + [3298] = {.lex_state = 75, .external_lex_state = 5}, [3299] = {.lex_state = 75, .external_lex_state = 5}, - [3300] = {.lex_state = 75, .external_lex_state = 2}, - [3301] = {.lex_state = 75, .external_lex_state = 6}, - [3302] = {.lex_state = 75, .external_lex_state = 5}, - [3303] = {.lex_state = 75, .external_lex_state = 2}, + [3300] = {.lex_state = 8, .external_lex_state = 2}, + [3301] = {.lex_state = 75, .external_lex_state = 5}, + [3302] = {.lex_state = 75, .external_lex_state = 2}, + [3303] = {.lex_state = 75, .external_lex_state = 6}, [3304] = {.lex_state = 75, .external_lex_state = 5}, - [3305] = {.lex_state = 75, .external_lex_state = 6}, - [3306] = {.lex_state = 75, .external_lex_state = 2}, - [3307] = {.lex_state = 75, .external_lex_state = 2}, - [3308] = {.lex_state = 75, .external_lex_state = 2}, + [3305] = {.lex_state = 75, .external_lex_state = 5}, + [3306] = {.lex_state = 75, .external_lex_state = 5}, + [3307] = {.lex_state = 75, .external_lex_state = 5}, + [3308] = {.lex_state = 75, .external_lex_state = 5}, [3309] = {.lex_state = 75, .external_lex_state = 6}, - [3310] = {.lex_state = 75, .external_lex_state = 2}, - [3311] = {.lex_state = 75, .external_lex_state = 6}, - [3312] = {.lex_state = 75, .external_lex_state = 2}, - [3313] = {.lex_state = 75, .external_lex_state = 5}, + [3310] = {.lex_state = 75, .external_lex_state = 5}, + [3311] = {.lex_state = 75, .external_lex_state = 5}, + [3312] = {.lex_state = 75, .external_lex_state = 5}, + [3313] = {.lex_state = 75, .external_lex_state = 6}, [3314] = {.lex_state = 75, .external_lex_state = 5}, [3315] = {.lex_state = 75, .external_lex_state = 5}, - [3316] = {.lex_state = 75, .external_lex_state = 2}, - [3317] = {.lex_state = 75, .external_lex_state = 6}, - [3318] = {.lex_state = 75, .external_lex_state = 2}, - [3319] = {.lex_state = 75, .external_lex_state = 6}, - [3320] = {.lex_state = 75, .external_lex_state = 5}, - [3321] = {.lex_state = 75, .external_lex_state = 5}, - [3322] = {.lex_state = 75, .external_lex_state = 6}, - [3323] = {.lex_state = 75, .external_lex_state = 5}, - [3324] = {.lex_state = 75, .external_lex_state = 5}, - [3325] = {.lex_state = 75, .external_lex_state = 6}, - [3326] = {.lex_state = 75, .external_lex_state = 5}, - [3327] = {.lex_state = 75, .external_lex_state = 6}, - [3328] = {.lex_state = 75, .external_lex_state = 6}, - [3329] = {.lex_state = 75, .external_lex_state = 6}, - [3330] = {.lex_state = 75, .external_lex_state = 6}, - [3331] = {.lex_state = 75, .external_lex_state = 6}, - [3332] = {.lex_state = 75, .external_lex_state = 6}, - [3333] = {.lex_state = 75, .external_lex_state = 5}, - [3334] = {.lex_state = 75, .external_lex_state = 5}, + [3316] = {.lex_state = 75, .external_lex_state = 5}, + [3317] = {.lex_state = 7, .external_lex_state = 6}, + [3318] = {.lex_state = 7, .external_lex_state = 6}, + [3319] = {.lex_state = 7, .external_lex_state = 6}, + [3320] = {.lex_state = 8, .external_lex_state = 2}, + [3321] = {.lex_state = 7, .external_lex_state = 6}, + [3322] = {.lex_state = 75, .external_lex_state = 5}, + [3323] = {.lex_state = 75, .external_lex_state = 2}, + [3324] = {.lex_state = 75, .external_lex_state = 2}, + [3325] = {.lex_state = 75, .external_lex_state = 2}, + [3326] = {.lex_state = 75, .external_lex_state = 2}, + [3327] = {.lex_state = 75, .external_lex_state = 2}, + [3328] = {.lex_state = 75, .external_lex_state = 2}, + [3329] = {.lex_state = 75, .external_lex_state = 2}, + [3330] = {.lex_state = 75, .external_lex_state = 2}, + [3331] = {.lex_state = 75, .external_lex_state = 2}, + [3332] = {.lex_state = 75, .external_lex_state = 5}, + [3333] = {.lex_state = 75, .external_lex_state = 2}, + [3334] = {.lex_state = 75, .external_lex_state = 2}, [3335] = {.lex_state = 75, .external_lex_state = 6}, - [3336] = {.lex_state = 75, .external_lex_state = 6}, - [3337] = {.lex_state = 75, .external_lex_state = 6}, - [3338] = {.lex_state = 75, .external_lex_state = 6}, - [3339] = {.lex_state = 75, .external_lex_state = 6}, - [3340] = {.lex_state = 75, .external_lex_state = 2}, - [3341] = {.lex_state = 75, .external_lex_state = 2}, - [3342] = {.lex_state = 75, .external_lex_state = 5}, - [3343] = {.lex_state = 75, .external_lex_state = 5}, - [3344] = {.lex_state = 75, .external_lex_state = 6}, + [3336] = {.lex_state = 75, .external_lex_state = 2}, + [3337] = {.lex_state = 75, .external_lex_state = 5}, + [3338] = {.lex_state = 75, .external_lex_state = 2}, + [3339] = {.lex_state = 75, .external_lex_state = 2}, + [3340] = {.lex_state = 75, .external_lex_state = 6}, + [3341] = {.lex_state = 75, .external_lex_state = 5}, + [3342] = {.lex_state = 75, .external_lex_state = 6}, + [3343] = {.lex_state = 75, .external_lex_state = 6}, + [3344] = {.lex_state = 75, .external_lex_state = 2}, [3345] = {.lex_state = 75, .external_lex_state = 6}, - [3346] = {.lex_state = 75, .external_lex_state = 6}, - [3347] = {.lex_state = 75, .external_lex_state = 6}, + [3346] = {.lex_state = 75, .external_lex_state = 5}, + [3347] = {.lex_state = 75, .external_lex_state = 2}, [3348] = {.lex_state = 75, .external_lex_state = 5}, [3349] = {.lex_state = 75, .external_lex_state = 2}, [3350] = {.lex_state = 75, .external_lex_state = 5}, - [3351] = {.lex_state = 75, .external_lex_state = 6}, - [3352] = {.lex_state = 75, .external_lex_state = 6}, + [3351] = {.lex_state = 75, .external_lex_state = 2}, + [3352] = {.lex_state = 75, .external_lex_state = 2}, [3353] = {.lex_state = 75, .external_lex_state = 2}, [3354] = {.lex_state = 75, .external_lex_state = 6}, [3355] = {.lex_state = 75, .external_lex_state = 6}, [3356] = {.lex_state = 75, .external_lex_state = 6}, - [3357] = {.lex_state = 75, .external_lex_state = 6}, - [3358] = {.lex_state = 75, .external_lex_state = 5}, - [3359] = {.lex_state = 75, .external_lex_state = 6}, - [3360] = {.lex_state = 75, .external_lex_state = 5}, - [3361] = {.lex_state = 75, .external_lex_state = 6}, - [3362] = {.lex_state = 75, .external_lex_state = 2}, + [3357] = {.lex_state = 75, .external_lex_state = 2}, + [3358] = {.lex_state = 75, .external_lex_state = 2}, + [3359] = {.lex_state = 75, .external_lex_state = 2}, + [3360] = {.lex_state = 75, .external_lex_state = 2}, + [3361] = {.lex_state = 75, .external_lex_state = 5}, + [3362] = {.lex_state = 75, .external_lex_state = 5}, [3363] = {.lex_state = 75, .external_lex_state = 6}, - [3364] = {.lex_state = 75, .external_lex_state = 2}, - [3365] = {.lex_state = 75, .external_lex_state = 2}, - [3366] = {.lex_state = 75, .external_lex_state = 2}, + [3364] = {.lex_state = 75, .external_lex_state = 5}, + [3365] = {.lex_state = 75, .external_lex_state = 5}, + [3366] = {.lex_state = 75, .external_lex_state = 5}, [3367] = {.lex_state = 75, .external_lex_state = 5}, - [3368] = {.lex_state = 75, .external_lex_state = 5}, - [3369] = {.lex_state = 75, .external_lex_state = 5}, + [3368] = {.lex_state = 75, .external_lex_state = 2}, + [3369] = {.lex_state = 75, .external_lex_state = 2}, [3370] = {.lex_state = 75, .external_lex_state = 2}, [3371] = {.lex_state = 75, .external_lex_state = 2}, - [3372] = {.lex_state = 8, .external_lex_state = 2}, - [3373] = {.lex_state = 75, .external_lex_state = 6}, + [3372] = {.lex_state = 75, .external_lex_state = 6}, + [3373] = {.lex_state = 75, .external_lex_state = 2}, [3374] = {.lex_state = 75, .external_lex_state = 2}, - [3375] = {.lex_state = 75, .external_lex_state = 6}, - [3376] = {.lex_state = 75, .external_lex_state = 5}, - [3377] = {.lex_state = 75, .external_lex_state = 2}, - [3378] = {.lex_state = 75, .external_lex_state = 6}, - [3379] = {.lex_state = 75, .external_lex_state = 5}, + [3375] = {.lex_state = 75, .external_lex_state = 2}, + [3376] = {.lex_state = 75, .external_lex_state = 2}, + [3377] = {.lex_state = 75, .external_lex_state = 6}, + [3378] = {.lex_state = 75, .external_lex_state = 5}, + [3379] = {.lex_state = 75, .external_lex_state = 2}, [3380] = {.lex_state = 75, .external_lex_state = 2}, [3381] = {.lex_state = 75, .external_lex_state = 2}, - [3382] = {.lex_state = 8, .external_lex_state = 2}, + [3382] = {.lex_state = 75, .external_lex_state = 2}, [3383] = {.lex_state = 75, .external_lex_state = 6}, - [3384] = {.lex_state = 75, .external_lex_state = 6}, + [3384] = {.lex_state = 75, .external_lex_state = 2}, [3385] = {.lex_state = 75, .external_lex_state = 5}, [3386] = {.lex_state = 75, .external_lex_state = 6}, [3387] = {.lex_state = 75, .external_lex_state = 5}, - [3388] = {.lex_state = 75, .external_lex_state = 2}, + [3388] = {.lex_state = 75, .external_lex_state = 5}, [3389] = {.lex_state = 75, .external_lex_state = 2}, - [3390] = {.lex_state = 75, .external_lex_state = 6}, - [3391] = {.lex_state = 75, .external_lex_state = 5}, - [3392] = {.lex_state = 75, .external_lex_state = 5}, - [3393] = {.lex_state = 75, .external_lex_state = 5}, - [3394] = {.lex_state = 75, .external_lex_state = 5}, + [3390] = {.lex_state = 75, .external_lex_state = 2}, + [3391] = {.lex_state = 75, .external_lex_state = 6}, + [3392] = {.lex_state = 75, .external_lex_state = 6}, + [3393] = {.lex_state = 75, .external_lex_state = 6}, + [3394] = {.lex_state = 75, .external_lex_state = 6}, [3395] = {.lex_state = 75, .external_lex_state = 2}, - [3396] = {.lex_state = 75, .external_lex_state = 2}, + [3396] = {.lex_state = 75, .external_lex_state = 6}, [3397] = {.lex_state = 75, .external_lex_state = 5}, - [3398] = {.lex_state = 75, .external_lex_state = 6}, - [3399] = {.lex_state = 75, .external_lex_state = 5}, - [3400] = {.lex_state = 75, .external_lex_state = 5}, - [3401] = {.lex_state = 75, .external_lex_state = 6}, - [3402] = {.lex_state = 75, .external_lex_state = 5}, - [3403] = {.lex_state = 75, .external_lex_state = 5}, + [3398] = {.lex_state = 75, .external_lex_state = 5}, + [3399] = {.lex_state = 75, .external_lex_state = 2}, + [3400] = {.lex_state = 75, .external_lex_state = 6}, + [3401] = {.lex_state = 75, .external_lex_state = 5}, + [3402] = {.lex_state = 75, .external_lex_state = 2}, + [3403] = {.lex_state = 75, .external_lex_state = 6}, [3404] = {.lex_state = 75, .external_lex_state = 2}, [3405] = {.lex_state = 75, .external_lex_state = 5}, - [3406] = {.lex_state = 75, .external_lex_state = 6}, + [3406] = {.lex_state = 75, .external_lex_state = 5}, [3407] = {.lex_state = 75, .external_lex_state = 2}, - [3408] = {.lex_state = 75, .external_lex_state = 5}, - [3409] = {.lex_state = 75, .external_lex_state = 2}, - [3410] = {.lex_state = 75, .external_lex_state = 2}, - [3411] = {.lex_state = 75, .external_lex_state = 2}, + [3408] = {.lex_state = 75, .external_lex_state = 2}, + [3409] = {.lex_state = 75, .external_lex_state = 6}, + [3410] = {.lex_state = 75, .external_lex_state = 6}, + [3411] = {.lex_state = 75, .external_lex_state = 6}, [3412] = {.lex_state = 75, .external_lex_state = 2}, - [3413] = {.lex_state = 75, .external_lex_state = 2}, - [3414] = {.lex_state = 75, .external_lex_state = 5}, + [3413] = {.lex_state = 75, .external_lex_state = 5}, + [3414] = {.lex_state = 75, .external_lex_state = 6}, [3415] = {.lex_state = 75, .external_lex_state = 5}, - [3416] = {.lex_state = 75, .external_lex_state = 2}, - [3417] = {.lex_state = 75, .external_lex_state = 2}, - [3418] = {.lex_state = 75, .external_lex_state = 5}, + [3416] = {.lex_state = 75, .external_lex_state = 5}, + [3417] = {.lex_state = 75, .external_lex_state = 5}, + [3418] = {.lex_state = 75, .external_lex_state = 6}, [3419] = {.lex_state = 75, .external_lex_state = 5}, - [3420] = {.lex_state = 75, .external_lex_state = 6}, - [3421] = {.lex_state = 75, .external_lex_state = 2}, + [3420] = {.lex_state = 75, .external_lex_state = 5}, + [3421] = {.lex_state = 75, .external_lex_state = 5}, [3422] = {.lex_state = 75, .external_lex_state = 5}, - [3423] = {.lex_state = 75, .external_lex_state = 5}, - [3424] = {.lex_state = 75, .external_lex_state = 2}, + [3423] = {.lex_state = 75, .external_lex_state = 6}, + [3424] = {.lex_state = 75, .external_lex_state = 5}, [3425] = {.lex_state = 75, .external_lex_state = 5}, - [3426] = {.lex_state = 75, .external_lex_state = 5}, - [3427] = {.lex_state = 75, .external_lex_state = 2}, + [3426] = {.lex_state = 75, .external_lex_state = 6}, + [3427] = {.lex_state = 75, .external_lex_state = 6}, [3428] = {.lex_state = 75, .external_lex_state = 5}, [3429] = {.lex_state = 75, .external_lex_state = 5}, - [3430] = {.lex_state = 75, .external_lex_state = 6}, + [3430] = {.lex_state = 75, .external_lex_state = 2}, [3431] = {.lex_state = 75, .external_lex_state = 6}, - [3432] = {.lex_state = 75, .external_lex_state = 6}, - [3433] = {.lex_state = 75, .external_lex_state = 6}, - [3434] = {.lex_state = 75, .external_lex_state = 2}, + [3432] = {.lex_state = 75, .external_lex_state = 5}, + [3433] = {.lex_state = 75, .external_lex_state = 5}, + [3434] = {.lex_state = 75, .external_lex_state = 5}, [3435] = {.lex_state = 75, .external_lex_state = 2}, [3436] = {.lex_state = 75, .external_lex_state = 6}, - [3437] = {.lex_state = 75, .external_lex_state = 6}, - [3438] = {.lex_state = 75, .external_lex_state = 2}, + [3437] = {.lex_state = 75, .external_lex_state = 5}, + [3438] = {.lex_state = 75, .external_lex_state = 6}, [3439] = {.lex_state = 75, .external_lex_state = 6}, - [3440] = {.lex_state = 75, .external_lex_state = 2}, + [3440] = {.lex_state = 75, .external_lex_state = 5}, [3441] = {.lex_state = 75, .external_lex_state = 2}, [3442] = {.lex_state = 75, .external_lex_state = 5}, - [3443] = {.lex_state = 8, .external_lex_state = 2}, - [3444] = {.lex_state = 75, .external_lex_state = 6}, + [3443] = {.lex_state = 75, .external_lex_state = 2}, + [3444] = {.lex_state = 75, .external_lex_state = 2}, [3445] = {.lex_state = 75, .external_lex_state = 6}, [3446] = {.lex_state = 75, .external_lex_state = 5}, [3447] = {.lex_state = 75, .external_lex_state = 6}, [3448] = {.lex_state = 75, .external_lex_state = 6}, - [3449] = {.lex_state = 75, .external_lex_state = 5}, + [3449] = {.lex_state = 75, .external_lex_state = 6}, [3450] = {.lex_state = 75, .external_lex_state = 6}, - [3451] = {.lex_state = 75, .external_lex_state = 5}, + [3451] = {.lex_state = 75, .external_lex_state = 6}, [3452] = {.lex_state = 75, .external_lex_state = 5}, - [3453] = {.lex_state = 75, .external_lex_state = 6}, - [3454] = {.lex_state = 75, .external_lex_state = 6}, - [3455] = {.lex_state = 75, .external_lex_state = 6}, - [3456] = {.lex_state = 75, .external_lex_state = 6}, + [3453] = {.lex_state = 75, .external_lex_state = 2}, + [3454] = {.lex_state = 75, .external_lex_state = 2}, + [3455] = {.lex_state = 75, .external_lex_state = 5}, + [3456] = {.lex_state = 75, .external_lex_state = 5}, [3457] = {.lex_state = 75, .external_lex_state = 6}, - [3458] = {.lex_state = 75, .external_lex_state = 5}, - [3459] = {.lex_state = 75, .external_lex_state = 5}, + [3458] = {.lex_state = 75, .external_lex_state = 6}, + [3459] = {.lex_state = 75, .external_lex_state = 2}, [3460] = {.lex_state = 75, .external_lex_state = 5}, [3461] = {.lex_state = 75, .external_lex_state = 5}, [3462] = {.lex_state = 75, .external_lex_state = 5}, [3463] = {.lex_state = 75, .external_lex_state = 6}, - [3464] = {.lex_state = 75, .external_lex_state = 5}, - [3465] = {.lex_state = 13, .external_lex_state = 2}, - [3466] = {.lex_state = 75, .external_lex_state = 5}, - [3467] = {.lex_state = 75, .external_lex_state = 5}, - [3468] = {.lex_state = 13, .external_lex_state = 2}, + [3464] = {.lex_state = 75, .external_lex_state = 6}, + [3465] = {.lex_state = 75, .external_lex_state = 5}, + [3466] = {.lex_state = 75, .external_lex_state = 2}, + [3467] = {.lex_state = 75, .external_lex_state = 6}, + [3468] = {.lex_state = 75, .external_lex_state = 2}, [3469] = {.lex_state = 75, .external_lex_state = 2}, - [3470] = {.lex_state = 13, .external_lex_state = 2}, - [3471] = {.lex_state = 75, .external_lex_state = 2}, - [3472] = {.lex_state = 75, .external_lex_state = 2}, - [3473] = {.lex_state = 13, .external_lex_state = 7}, - [3474] = {.lex_state = 75, .external_lex_state = 2}, - [3475] = {.lex_state = 13, .external_lex_state = 7}, - [3476] = {.lex_state = 13, .external_lex_state = 7}, - [3477] = {.lex_state = 13, .external_lex_state = 7}, - [3478] = {.lex_state = 13, .external_lex_state = 7}, - [3479] = {.lex_state = 13, .external_lex_state = 7}, - [3480] = {.lex_state = 75, .external_lex_state = 2}, - [3481] = {.lex_state = 75, .external_lex_state = 2}, - [3482] = {.lex_state = 75, .external_lex_state = 2}, - [3483] = {.lex_state = 75, .external_lex_state = 2}, - [3484] = {.lex_state = 13, .external_lex_state = 7}, - [3485] = {.lex_state = 13, .external_lex_state = 2}, - [3486] = {.lex_state = 75, .external_lex_state = 2}, - [3487] = {.lex_state = 75, .external_lex_state = 2}, - [3488] = {.lex_state = 13, .external_lex_state = 2}, - [3489] = {.lex_state = 7, .external_lex_state = 2}, - [3490] = {.lex_state = 7, .external_lex_state = 2}, + [3470] = {.lex_state = 75, .external_lex_state = 6}, + [3471] = {.lex_state = 75, .external_lex_state = 6}, + [3472] = {.lex_state = 75, .external_lex_state = 6}, + [3473] = {.lex_state = 75, .external_lex_state = 6}, + [3474] = {.lex_state = 75, .external_lex_state = 6}, + [3475] = {.lex_state = 75, .external_lex_state = 6}, + [3476] = {.lex_state = 75, .external_lex_state = 6}, + [3477] = {.lex_state = 75, .external_lex_state = 6}, + [3478] = {.lex_state = 75, .external_lex_state = 6}, + [3479] = {.lex_state = 75, .external_lex_state = 6}, + [3480] = {.lex_state = 75, .external_lex_state = 6}, + [3481] = {.lex_state = 75, .external_lex_state = 6}, + [3482] = {.lex_state = 75, .external_lex_state = 6}, + [3483] = {.lex_state = 75, .external_lex_state = 6}, + [3484] = {.lex_state = 75, .external_lex_state = 2}, + [3485] = {.lex_state = 75, .external_lex_state = 5}, + [3486] = {.lex_state = 75, .external_lex_state = 5}, + [3487] = {.lex_state = 75, .external_lex_state = 6}, + [3488] = {.lex_state = 75, .external_lex_state = 6}, + [3489] = {.lex_state = 75, .external_lex_state = 6}, + [3490] = {.lex_state = 75, .external_lex_state = 2}, [3491] = {.lex_state = 75, .external_lex_state = 5}, - [3492] = {.lex_state = 75, .external_lex_state = 2}, - [3493] = {.lex_state = 75, .external_lex_state = 2}, - [3494] = {.lex_state = 75, .external_lex_state = 2}, - [3495] = {.lex_state = 13, .external_lex_state = 2}, - [3496] = {.lex_state = 75, .external_lex_state = 2}, - [3497] = {.lex_state = 13, .external_lex_state = 2}, - [3498] = {.lex_state = 13, .external_lex_state = 2}, + [3492] = {.lex_state = 75, .external_lex_state = 5}, + [3493] = {.lex_state = 75, .external_lex_state = 5}, + [3494] = {.lex_state = 75, .external_lex_state = 6}, + [3495] = {.lex_state = 75, .external_lex_state = 5}, + [3496] = {.lex_state = 75, .external_lex_state = 5}, + [3497] = {.lex_state = 75, .external_lex_state = 5}, + [3498] = {.lex_state = 75, .external_lex_state = 5}, [3499] = {.lex_state = 75, .external_lex_state = 5}, - [3500] = {.lex_state = 75, .external_lex_state = 5}, - [3501] = {.lex_state = 13, .external_lex_state = 7}, - [3502] = {.lex_state = 75, .external_lex_state = 6}, - [3503] = {.lex_state = 75, .external_lex_state = 2}, - [3504] = {.lex_state = 75, .external_lex_state = 2}, - [3505] = {.lex_state = 13, .external_lex_state = 2}, - [3506] = {.lex_state = 7, .external_lex_state = 2}, - [3507] = {.lex_state = 75, .external_lex_state = 2}, - [3508] = {.lex_state = 7, .external_lex_state = 2}, + [3500] = {.lex_state = 75, .external_lex_state = 2}, + [3501] = {.lex_state = 13, .external_lex_state = 2}, + [3502] = {.lex_state = 75, .external_lex_state = 2}, + [3503] = {.lex_state = 13, .external_lex_state = 2}, + [3504] = {.lex_state = 75, .external_lex_state = 5}, + [3505] = {.lex_state = 75, .external_lex_state = 5}, + [3506] = {.lex_state = 13, .external_lex_state = 7}, + [3507] = {.lex_state = 13, .external_lex_state = 7}, + [3508] = {.lex_state = 13, .external_lex_state = 2}, [3509] = {.lex_state = 75, .external_lex_state = 5}, - [3510] = {.lex_state = 75, .external_lex_state = 5}, + [3510] = {.lex_state = 13, .external_lex_state = 2}, [3511] = {.lex_state = 75, .external_lex_state = 5}, - [3512] = {.lex_state = 75, .external_lex_state = 5}, + [3512] = {.lex_state = 13, .external_lex_state = 2}, [3513] = {.lex_state = 75, .external_lex_state = 2}, [3514] = {.lex_state = 75, .external_lex_state = 5}, [3515] = {.lex_state = 75, .external_lex_state = 5}, - [3516] = {.lex_state = 75, .external_lex_state = 5}, - [3517] = {.lex_state = 75, .external_lex_state = 5}, - [3518] = {.lex_state = 75, .external_lex_state = 5}, - [3519] = {.lex_state = 75, .external_lex_state = 5}, - [3520] = {.lex_state = 75, .external_lex_state = 5}, - [3521] = {.lex_state = 75, .external_lex_state = 5}, - [3522] = {.lex_state = 75, .external_lex_state = 5}, - [3523] = {.lex_state = 75, .external_lex_state = 5}, - [3524] = {.lex_state = 75, .external_lex_state = 5}, - [3525] = {.lex_state = 75, .external_lex_state = 2}, + [3516] = {.lex_state = 13, .external_lex_state = 2}, + [3517] = {.lex_state = 75, .external_lex_state = 2}, + [3518] = {.lex_state = 13, .external_lex_state = 7}, + [3519] = {.lex_state = 75, .external_lex_state = 2}, + [3520] = {.lex_state = 75, .external_lex_state = 2}, + [3521] = {.lex_state = 75, .external_lex_state = 2}, + [3522] = {.lex_state = 75, .external_lex_state = 2}, + [3523] = {.lex_state = 75, .external_lex_state = 2}, + [3524] = {.lex_state = 13, .external_lex_state = 2}, + [3525] = {.lex_state = 13, .external_lex_state = 7}, [3526] = {.lex_state = 75, .external_lex_state = 2}, - [3527] = {.lex_state = 75, .external_lex_state = 5}, - [3528] = {.lex_state = 75, .external_lex_state = 5}, - [3529] = {.lex_state = 75, .external_lex_state = 5}, - [3530] = {.lex_state = 75, .external_lex_state = 5}, - [3531] = {.lex_state = 75, .external_lex_state = 5}, - [3532] = {.lex_state = 75, .external_lex_state = 2}, - [3533] = {.lex_state = 75, .external_lex_state = 5}, - [3534] = {.lex_state = 75, .external_lex_state = 5}, - [3535] = {.lex_state = 75, .external_lex_state = 2}, - [3536] = {.lex_state = 75, .external_lex_state = 5}, - [3537] = {.lex_state = 75, .external_lex_state = 5}, - [3538] = {.lex_state = 75, .external_lex_state = 5}, - [3539] = {.lex_state = 75, .external_lex_state = 5}, + [3527] = {.lex_state = 75, .external_lex_state = 2}, + [3528] = {.lex_state = 75, .external_lex_state = 2}, + [3529] = {.lex_state = 75, .external_lex_state = 2}, + [3530] = {.lex_state = 13, .external_lex_state = 7}, + [3531] = {.lex_state = 75, .external_lex_state = 2}, + [3532] = {.lex_state = 7, .external_lex_state = 2}, + [3533] = {.lex_state = 13, .external_lex_state = 2}, + [3534] = {.lex_state = 13, .external_lex_state = 2}, + [3535] = {.lex_state = 7, .external_lex_state = 2}, + [3536] = {.lex_state = 75, .external_lex_state = 6}, + [3537] = {.lex_state = 13, .external_lex_state = 7}, + [3538] = {.lex_state = 75, .external_lex_state = 2}, + [3539] = {.lex_state = 75, .external_lex_state = 2}, [3540] = {.lex_state = 7, .external_lex_state = 2}, - [3541] = {.lex_state = 75, .external_lex_state = 5}, - [3542] = {.lex_state = 75, .external_lex_state = 2}, - [3543] = {.lex_state = 7, .external_lex_state = 2}, + [3541] = {.lex_state = 13, .external_lex_state = 7}, + [3542] = {.lex_state = 13, .external_lex_state = 7}, + [3543] = {.lex_state = 8, .external_lex_state = 2}, [3544] = {.lex_state = 75, .external_lex_state = 5}, [3545] = {.lex_state = 75, .external_lex_state = 2}, - [3546] = {.lex_state = 7, .external_lex_state = 2}, - [3547] = {.lex_state = 75, .external_lex_state = 5}, + [3546] = {.lex_state = 75, .external_lex_state = 5}, + [3547] = {.lex_state = 75, .external_lex_state = 2}, [3548] = {.lex_state = 75, .external_lex_state = 5}, - [3549] = {.lex_state = 75, .external_lex_state = 2}, + [3549] = {.lex_state = 75, .external_lex_state = 5}, [3550] = {.lex_state = 75, .external_lex_state = 5}, [3551] = {.lex_state = 75, .external_lex_state = 5}, [3552] = {.lex_state = 75, .external_lex_state = 5}, [3553] = {.lex_state = 75, .external_lex_state = 5}, [3554] = {.lex_state = 75, .external_lex_state = 5}, - [3555] = {.lex_state = 75, .external_lex_state = 2}, + [3555] = {.lex_state = 75, .external_lex_state = 5}, [3556] = {.lex_state = 75, .external_lex_state = 5}, [3557] = {.lex_state = 75, .external_lex_state = 5}, - [3558] = {.lex_state = 75, .external_lex_state = 2}, + [3558] = {.lex_state = 75, .external_lex_state = 5}, [3559] = {.lex_state = 75, .external_lex_state = 5}, [3560] = {.lex_state = 75, .external_lex_state = 5}, [3561] = {.lex_state = 75, .external_lex_state = 5}, [3562] = {.lex_state = 75, .external_lex_state = 5}, - [3563] = {.lex_state = 7, .external_lex_state = 2}, - [3564] = {.lex_state = 75, .external_lex_state = 5}, + [3563] = {.lex_state = 75, .external_lex_state = 2}, + [3564] = {.lex_state = 75, .external_lex_state = 2}, [3565] = {.lex_state = 75, .external_lex_state = 5}, - [3566] = {.lex_state = 75, .external_lex_state = 5}, + [3566] = {.lex_state = 75, .external_lex_state = 2}, [3567] = {.lex_state = 75, .external_lex_state = 5}, - [3568] = {.lex_state = 75, .external_lex_state = 2}, + [3568] = {.lex_state = 75, .external_lex_state = 5}, [3569] = {.lex_state = 75, .external_lex_state = 5}, - [3570] = {.lex_state = 7, .external_lex_state = 2}, - [3571] = {.lex_state = 75, .external_lex_state = 5}, - [3572] = {.lex_state = 7, .external_lex_state = 2}, - [3573] = {.lex_state = 75, .external_lex_state = 5}, - [3574] = {.lex_state = 7, .external_lex_state = 2}, - [3575] = {.lex_state = 7, .external_lex_state = 2}, - [3576] = {.lex_state = 75, .external_lex_state = 5}, - [3577] = {.lex_state = 75, .external_lex_state = 2}, - [3578] = {.lex_state = 75, .external_lex_state = 2}, + [3570] = {.lex_state = 75, .external_lex_state = 5}, + [3571] = {.lex_state = 75, .external_lex_state = 2}, + [3572] = {.lex_state = 75, .external_lex_state = 5}, + [3573] = {.lex_state = 75, .external_lex_state = 2}, + [3574] = {.lex_state = 75, .external_lex_state = 5}, + [3575] = {.lex_state = 75, .external_lex_state = 5}, + [3576] = {.lex_state = 7, .external_lex_state = 2}, + [3577] = {.lex_state = 7, .external_lex_state = 2}, + [3578] = {.lex_state = 75, .external_lex_state = 5}, [3579] = {.lex_state = 75, .external_lex_state = 2}, [3580] = {.lex_state = 75, .external_lex_state = 5}, - [3581] = {.lex_state = 75, .external_lex_state = 2}, - [3582] = {.lex_state = 75, .external_lex_state = 5}, - [3583] = {.lex_state = 75, .external_lex_state = 5}, - [3584] = {.lex_state = 75, .external_lex_state = 5}, - [3585] = {.lex_state = 75, .external_lex_state = 5}, + [3581] = {.lex_state = 7, .external_lex_state = 2}, + [3582] = {.lex_state = 75, .external_lex_state = 2}, + [3583] = {.lex_state = 75, .external_lex_state = 2}, + [3584] = {.lex_state = 8, .external_lex_state = 2}, + [3585] = {.lex_state = 75, .external_lex_state = 2}, [3586] = {.lex_state = 75, .external_lex_state = 5}, - [3587] = {.lex_state = 75, .external_lex_state = 5}, - [3588] = {.lex_state = 75, .external_lex_state = 5}, + [3587] = {.lex_state = 75, .external_lex_state = 2}, + [3588] = {.lex_state = 7, .external_lex_state = 2}, [3589] = {.lex_state = 75, .external_lex_state = 5}, - [3590] = {.lex_state = 75, .external_lex_state = 2}, + [3590] = {.lex_state = 75, .external_lex_state = 5}, [3591] = {.lex_state = 75, .external_lex_state = 5}, [3592] = {.lex_state = 75, .external_lex_state = 5}, - [3593] = {.lex_state = 7, .external_lex_state = 2}, - [3594] = {.lex_state = 75, .external_lex_state = 2}, + [3593] = {.lex_state = 75, .external_lex_state = 5}, + [3594] = {.lex_state = 75, .external_lex_state = 5}, [3595] = {.lex_state = 75, .external_lex_state = 2}, [3596] = {.lex_state = 75, .external_lex_state = 2}, - [3597] = {.lex_state = 75, .external_lex_state = 5}, + [3597] = {.lex_state = 75, .external_lex_state = 2}, [3598] = {.lex_state = 75, .external_lex_state = 5}, - [3599] = {.lex_state = 7, .external_lex_state = 2}, + [3599] = {.lex_state = 75, .external_lex_state = 5}, [3600] = {.lex_state = 75, .external_lex_state = 2}, - [3601] = {.lex_state = 75, .external_lex_state = 5}, - [3602] = {.lex_state = 75, .external_lex_state = 5}, - [3603] = {.lex_state = 75, .external_lex_state = 5}, - [3604] = {.lex_state = 75, .external_lex_state = 5}, + [3601] = {.lex_state = 7, .external_lex_state = 2}, + [3602] = {.lex_state = 75, .external_lex_state = 2}, + [3603] = {.lex_state = 75, .external_lex_state = 2}, + [3604] = {.lex_state = 75, .external_lex_state = 2}, [3605] = {.lex_state = 75, .external_lex_state = 2}, - [3606] = {.lex_state = 75, .external_lex_state = 5}, - [3607] = {.lex_state = 75, .external_lex_state = 5}, - [3608] = {.lex_state = 75, .external_lex_state = 5}, - [3609] = {.lex_state = 7, .external_lex_state = 2}, - [3610] = {.lex_state = 75, .external_lex_state = 2}, - [3611] = {.lex_state = 75, .external_lex_state = 5}, + [3606] = {.lex_state = 75, .external_lex_state = 2}, + [3607] = {.lex_state = 75, .external_lex_state = 2}, + [3608] = {.lex_state = 75, .external_lex_state = 2}, + [3609] = {.lex_state = 75, .external_lex_state = 5}, + [3610] = {.lex_state = 75, .external_lex_state = 5}, + [3611] = {.lex_state = 75, .external_lex_state = 2}, [3612] = {.lex_state = 75, .external_lex_state = 5}, [3613] = {.lex_state = 75, .external_lex_state = 5}, - [3614] = {.lex_state = 75, .external_lex_state = 5}, + [3614] = {.lex_state = 75, .external_lex_state = 2}, [3615] = {.lex_state = 75, .external_lex_state = 5}, - [3616] = {.lex_state = 75, .external_lex_state = 2}, - [3617] = {.lex_state = 75, .external_lex_state = 5}, + [3616] = {.lex_state = 75, .external_lex_state = 5}, + [3617] = {.lex_state = 75, .external_lex_state = 2}, [3618] = {.lex_state = 75, .external_lex_state = 2}, [3619] = {.lex_state = 75, .external_lex_state = 2}, - [3620] = {.lex_state = 8, .external_lex_state = 2}, - [3621] = {.lex_state = 75, .external_lex_state = 2}, + [3620] = {.lex_state = 7, .external_lex_state = 2}, + [3621] = {.lex_state = 75, .external_lex_state = 5}, [3622] = {.lex_state = 75, .external_lex_state = 5}, [3623] = {.lex_state = 75, .external_lex_state = 5}, - [3624] = {.lex_state = 75, .external_lex_state = 2}, - [3625] = {.lex_state = 75, .external_lex_state = 5}, - [3626] = {.lex_state = 75, .external_lex_state = 5}, - [3627] = {.lex_state = 75, .external_lex_state = 5}, + [3624] = {.lex_state = 75, .external_lex_state = 5}, + [3625] = {.lex_state = 75, .external_lex_state = 2}, + [3626] = {.lex_state = 7, .external_lex_state = 2}, + [3627] = {.lex_state = 75, .external_lex_state = 2}, [3628] = {.lex_state = 75, .external_lex_state = 5}, [3629] = {.lex_state = 75, .external_lex_state = 5}, [3630] = {.lex_state = 75, .external_lex_state = 5}, @@ -16558,72 +16598,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3632] = {.lex_state = 75, .external_lex_state = 5}, [3633] = {.lex_state = 75, .external_lex_state = 5}, [3634] = {.lex_state = 75, .external_lex_state = 2}, - [3635] = {.lex_state = 75, .external_lex_state = 5}, - [3636] = {.lex_state = 7, .external_lex_state = 2}, - [3637] = {.lex_state = 75, .external_lex_state = 5}, - [3638] = {.lex_state = 75, .external_lex_state = 2}, - [3639] = {.lex_state = 7, .external_lex_state = 2}, + [3635] = {.lex_state = 7, .external_lex_state = 2}, + [3636] = {.lex_state = 75, .external_lex_state = 5}, + [3637] = {.lex_state = 75, .external_lex_state = 2}, + [3638] = {.lex_state = 7, .external_lex_state = 2}, + [3639] = {.lex_state = 75, .external_lex_state = 5}, [3640] = {.lex_state = 75, .external_lex_state = 5}, - [3641] = {.lex_state = 75, .external_lex_state = 5}, - [3642] = {.lex_state = 75, .external_lex_state = 2}, - [3643] = {.lex_state = 75, .external_lex_state = 2}, - [3644] = {.lex_state = 75, .external_lex_state = 5}, - [3645] = {.lex_state = 75, .external_lex_state = 2}, - [3646] = {.lex_state = 75, .external_lex_state = 5}, - [3647] = {.lex_state = 75, .external_lex_state = 2}, - [3648] = {.lex_state = 75, .external_lex_state = 2}, + [3641] = {.lex_state = 75, .external_lex_state = 2}, + [3642] = {.lex_state = 75, .external_lex_state = 5}, + [3643] = {.lex_state = 75, .external_lex_state = 5}, + [3644] = {.lex_state = 75, .external_lex_state = 2}, + [3645] = {.lex_state = 7, .external_lex_state = 2}, + [3646] = {.lex_state = 7, .external_lex_state = 2}, + [3647] = {.lex_state = 75, .external_lex_state = 5}, + [3648] = {.lex_state = 75, .external_lex_state = 5}, [3649] = {.lex_state = 75, .external_lex_state = 5}, [3650] = {.lex_state = 75, .external_lex_state = 2}, [3651] = {.lex_state = 75, .external_lex_state = 5}, - [3652] = {.lex_state = 8, .external_lex_state = 2}, + [3652] = {.lex_state = 75, .external_lex_state = 5}, [3653] = {.lex_state = 75, .external_lex_state = 5}, - [3654] = {.lex_state = 75, .external_lex_state = 2}, + [3654] = {.lex_state = 75, .external_lex_state = 5}, [3655] = {.lex_state = 75, .external_lex_state = 5}, - [3656] = {.lex_state = 75, .external_lex_state = 5}, + [3656] = {.lex_state = 7, .external_lex_state = 2}, [3657] = {.lex_state = 75, .external_lex_state = 5}, - [3658] = {.lex_state = 75, .external_lex_state = 5}, + [3658] = {.lex_state = 7, .external_lex_state = 2}, [3659] = {.lex_state = 75, .external_lex_state = 5}, - [3660] = {.lex_state = 75, .external_lex_state = 2}, - [3661] = {.lex_state = 75, .external_lex_state = 2}, - [3662] = {.lex_state = 75, .external_lex_state = 2}, - [3663] = {.lex_state = 7, .external_lex_state = 2}, + [3660] = {.lex_state = 75, .external_lex_state = 5}, + [3661] = {.lex_state = 7, .external_lex_state = 2}, + [3662] = {.lex_state = 7, .external_lex_state = 2}, + [3663] = {.lex_state = 75, .external_lex_state = 5}, [3664] = {.lex_state = 75, .external_lex_state = 5}, - [3665] = {.lex_state = 75, .external_lex_state = 5}, - [3666] = {.lex_state = 75, .external_lex_state = 2}, + [3665] = {.lex_state = 75, .external_lex_state = 2}, + [3666] = {.lex_state = 75, .external_lex_state = 5}, [3667] = {.lex_state = 75, .external_lex_state = 5}, [3668] = {.lex_state = 75, .external_lex_state = 5}, [3669] = {.lex_state = 75, .external_lex_state = 5}, [3670] = {.lex_state = 75, .external_lex_state = 2}, - [3671] = {.lex_state = 75, .external_lex_state = 5}, - [3672] = {.lex_state = 75, .external_lex_state = 5}, + [3671] = {.lex_state = 75, .external_lex_state = 2}, + [3672] = {.lex_state = 75, .external_lex_state = 2}, [3673] = {.lex_state = 75, .external_lex_state = 5}, [3674] = {.lex_state = 75, .external_lex_state = 5}, [3675] = {.lex_state = 75, .external_lex_state = 2}, [3676] = {.lex_state = 75, .external_lex_state = 2}, - [3677] = {.lex_state = 8, .external_lex_state = 2}, + [3677] = {.lex_state = 7, .external_lex_state = 2}, [3678] = {.lex_state = 75, .external_lex_state = 5}, [3679] = {.lex_state = 75, .external_lex_state = 5}, - [3680] = {.lex_state = 75, .external_lex_state = 2}, + [3680] = {.lex_state = 75, .external_lex_state = 5}, [3681] = {.lex_state = 75, .external_lex_state = 5}, [3682] = {.lex_state = 75, .external_lex_state = 5}, [3683] = {.lex_state = 75, .external_lex_state = 5}, [3684] = {.lex_state = 75, .external_lex_state = 2}, [3685] = {.lex_state = 75, .external_lex_state = 2}, - [3686] = {.lex_state = 75, .external_lex_state = 5}, - [3687] = {.lex_state = 75, .external_lex_state = 5}, - [3688] = {.lex_state = 75, .external_lex_state = 2}, + [3686] = {.lex_state = 75, .external_lex_state = 2}, + [3687] = {.lex_state = 75, .external_lex_state = 2}, + [3688] = {.lex_state = 7, .external_lex_state = 2}, [3689] = {.lex_state = 75, .external_lex_state = 2}, - [3690] = {.lex_state = 75, .external_lex_state = 5}, - [3691] = {.lex_state = 75, .external_lex_state = 5}, + [3690] = {.lex_state = 75, .external_lex_state = 2}, + [3691] = {.lex_state = 75, .external_lex_state = 2}, [3692] = {.lex_state = 75, .external_lex_state = 2}, [3693] = {.lex_state = 75, .external_lex_state = 2}, - [3694] = {.lex_state = 75, .external_lex_state = 2}, - [3695] = {.lex_state = 7, .external_lex_state = 2}, - [3696] = {.lex_state = 75, .external_lex_state = 2}, - [3697] = {.lex_state = 75, .external_lex_state = 2}, - [3698] = {.lex_state = 75, .external_lex_state = 5}, + [3694] = {.lex_state = 75, .external_lex_state = 5}, + [3695] = {.lex_state = 75, .external_lex_state = 5}, + [3696] = {.lex_state = 75, .external_lex_state = 5}, + [3697] = {.lex_state = 75, .external_lex_state = 5}, + [3698] = {.lex_state = 75, .external_lex_state = 2}, [3699] = {.lex_state = 75, .external_lex_state = 2}, - [3700] = {.lex_state = 75, .external_lex_state = 5}, + [3700] = {.lex_state = 75, .external_lex_state = 2}, [3701] = {.lex_state = 75, .external_lex_state = 5}, [3702] = {.lex_state = 75, .external_lex_state = 5}, [3703] = {.lex_state = 75, .external_lex_state = 5}, @@ -16632,311 +16672,311 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3706] = {.lex_state = 75, .external_lex_state = 5}, [3707] = {.lex_state = 75, .external_lex_state = 5}, [3708] = {.lex_state = 75, .external_lex_state = 5}, - [3709] = {.lex_state = 75, .external_lex_state = 2}, + [3709] = {.lex_state = 75, .external_lex_state = 5}, [3710] = {.lex_state = 75, .external_lex_state = 5}, - [3711] = {.lex_state = 75, .external_lex_state = 2}, + [3711] = {.lex_state = 75, .external_lex_state = 5}, [3712] = {.lex_state = 75, .external_lex_state = 5}, [3713] = {.lex_state = 75, .external_lex_state = 2}, - [3714] = {.lex_state = 75, .external_lex_state = 5}, - [3715] = {.lex_state = 75, .external_lex_state = 2}, - [3716] = {.lex_state = 75, .external_lex_state = 2}, - [3717] = {.lex_state = 75, .external_lex_state = 2}, - [3718] = {.lex_state = 75, .external_lex_state = 5}, + [3714] = {.lex_state = 75, .external_lex_state = 2}, + [3715] = {.lex_state = 75, .external_lex_state = 5}, + [3716] = {.lex_state = 8, .external_lex_state = 2}, + [3717] = {.lex_state = 75, .external_lex_state = 5}, + [3718] = {.lex_state = 75, .external_lex_state = 2}, [3719] = {.lex_state = 75, .external_lex_state = 2}, [3720] = {.lex_state = 75, .external_lex_state = 2}, [3721] = {.lex_state = 75, .external_lex_state = 5}, - [3722] = {.lex_state = 75, .external_lex_state = 2}, - [3723] = {.lex_state = 75, .external_lex_state = 2}, + [3722] = {.lex_state = 75, .external_lex_state = 5}, + [3723] = {.lex_state = 75, .external_lex_state = 5}, [3724] = {.lex_state = 75, .external_lex_state = 5}, [3725] = {.lex_state = 75, .external_lex_state = 5}, [3726] = {.lex_state = 75, .external_lex_state = 5}, [3727] = {.lex_state = 75, .external_lex_state = 5}, [3728] = {.lex_state = 75, .external_lex_state = 5}, [3729] = {.lex_state = 75, .external_lex_state = 5}, - [3730] = {.lex_state = 75, .external_lex_state = 2}, + [3730] = {.lex_state = 75, .external_lex_state = 5}, [3731] = {.lex_state = 75, .external_lex_state = 2}, - [3732] = {.lex_state = 75, .external_lex_state = 2}, - [3733] = {.lex_state = 75, .external_lex_state = 2}, + [3732] = {.lex_state = 75, .external_lex_state = 5}, + [3733] = {.lex_state = 75, .external_lex_state = 5}, [3734] = {.lex_state = 75, .external_lex_state = 5}, [3735] = {.lex_state = 75, .external_lex_state = 5}, [3736] = {.lex_state = 75, .external_lex_state = 5}, [3737] = {.lex_state = 75, .external_lex_state = 5}, [3738] = {.lex_state = 75, .external_lex_state = 5}, - [3739] = {.lex_state = 7, .external_lex_state = 2}, + [3739] = {.lex_state = 75, .external_lex_state = 5}, [3740] = {.lex_state = 75, .external_lex_state = 5}, [3741] = {.lex_state = 75, .external_lex_state = 5}, - [3742] = {.lex_state = 75, .external_lex_state = 2}, + [3742] = {.lex_state = 75, .external_lex_state = 5}, [3743] = {.lex_state = 75, .external_lex_state = 5}, - [3744] = {.lex_state = 75, .external_lex_state = 2}, + [3744] = {.lex_state = 75, .external_lex_state = 5}, [3745] = {.lex_state = 75, .external_lex_state = 5}, [3746] = {.lex_state = 75, .external_lex_state = 5}, [3747] = {.lex_state = 75, .external_lex_state = 5}, - [3748] = {.lex_state = 75, .external_lex_state = 5}, + [3748] = {.lex_state = 75, .external_lex_state = 2}, [3749] = {.lex_state = 75, .external_lex_state = 5}, - [3750] = {.lex_state = 75, .external_lex_state = 5}, - [3751] = {.lex_state = 75, .external_lex_state = 6}, + [3750] = {.lex_state = 75, .external_lex_state = 2}, + [3751] = {.lex_state = 75, .external_lex_state = 5}, [3752] = {.lex_state = 75, .external_lex_state = 2}, [3753] = {.lex_state = 75, .external_lex_state = 2}, - [3754] = {.lex_state = 75, .external_lex_state = 6}, + [3754] = {.lex_state = 75, .external_lex_state = 5}, [3755] = {.lex_state = 75, .external_lex_state = 2}, - [3756] = {.lex_state = 75, .external_lex_state = 6}, - [3757] = {.lex_state = 75, .external_lex_state = 6}, + [3756] = {.lex_state = 75, .external_lex_state = 2}, + [3757] = {.lex_state = 75, .external_lex_state = 5}, [3758] = {.lex_state = 75, .external_lex_state = 2}, - [3759] = {.lex_state = 75, .external_lex_state = 6}, + [3759] = {.lex_state = 75, .external_lex_state = 2}, [3760] = {.lex_state = 75, .external_lex_state = 2}, - [3761] = {.lex_state = 75, .external_lex_state = 2}, - [3762] = {.lex_state = 75, .external_lex_state = 6}, - [3763] = {.lex_state = 75, .external_lex_state = 2}, - [3764] = {.lex_state = 13, .external_lex_state = 7}, - [3765] = {.lex_state = 75, .external_lex_state = 2}, - [3766] = {.lex_state = 75, .external_lex_state = 2}, - [3767] = {.lex_state = 75, .external_lex_state = 2}, - [3768] = {.lex_state = 75, .external_lex_state = 2}, - [3769] = {.lex_state = 75, .external_lex_state = 2}, - [3770] = {.lex_state = 75, .external_lex_state = 6}, + [3761] = {.lex_state = 75, .external_lex_state = 5}, + [3762] = {.lex_state = 75, .external_lex_state = 5}, + [3763] = {.lex_state = 75, .external_lex_state = 5}, + [3764] = {.lex_state = 75, .external_lex_state = 5}, + [3765] = {.lex_state = 75, .external_lex_state = 5}, + [3766] = {.lex_state = 75, .external_lex_state = 5}, + [3767] = {.lex_state = 75, .external_lex_state = 5}, + [3768] = {.lex_state = 75, .external_lex_state = 5}, + [3769] = {.lex_state = 75, .external_lex_state = 5}, + [3770] = {.lex_state = 75, .external_lex_state = 5}, [3771] = {.lex_state = 75, .external_lex_state = 2}, - [3772] = {.lex_state = 75, .external_lex_state = 2}, + [3772] = {.lex_state = 75, .external_lex_state = 5}, [3773] = {.lex_state = 75, .external_lex_state = 2}, [3774] = {.lex_state = 75, .external_lex_state = 2}, [3775] = {.lex_state = 75, .external_lex_state = 2}, - [3776] = {.lex_state = 75, .external_lex_state = 2}, + [3776] = {.lex_state = 75, .external_lex_state = 5}, [3777] = {.lex_state = 75, .external_lex_state = 5}, - [3778] = {.lex_state = 75, .external_lex_state = 2}, - [3779] = {.lex_state = 75, .external_lex_state = 2}, - [3780] = {.lex_state = 75, .external_lex_state = 2}, - [3781] = {.lex_state = 75, .external_lex_state = 2}, - [3782] = {.lex_state = 75, .external_lex_state = 2}, - [3783] = {.lex_state = 75, .external_lex_state = 6}, - [3784] = {.lex_state = 75, .external_lex_state = 2}, - [3785] = {.lex_state = 13, .external_lex_state = 7}, + [3778] = {.lex_state = 75, .external_lex_state = 5}, + [3779] = {.lex_state = 75, .external_lex_state = 5}, + [3780] = {.lex_state = 75, .external_lex_state = 5}, + [3781] = {.lex_state = 75, .external_lex_state = 5}, + [3782] = {.lex_state = 75, .external_lex_state = 5}, + [3783] = {.lex_state = 75, .external_lex_state = 5}, + [3784] = {.lex_state = 75, .external_lex_state = 5}, + [3785] = {.lex_state = 75, .external_lex_state = 5}, [3786] = {.lex_state = 75, .external_lex_state = 5}, - [3787] = {.lex_state = 75, .external_lex_state = 2}, + [3787] = {.lex_state = 75, .external_lex_state = 6}, [3788] = {.lex_state = 75, .external_lex_state = 2}, - [3789] = {.lex_state = 75, .external_lex_state = 6}, - [3790] = {.lex_state = 75, .external_lex_state = 5}, - [3791] = {.lex_state = 75, .external_lex_state = 2}, + [3789] = {.lex_state = 75, .external_lex_state = 5}, + [3790] = {.lex_state = 75, .external_lex_state = 2}, + [3791] = {.lex_state = 75, .external_lex_state = 5}, [3792] = {.lex_state = 75, .external_lex_state = 2}, - [3793] = {.lex_state = 75, .external_lex_state = 5}, - [3794] = {.lex_state = 75, .external_lex_state = 5}, - [3795] = {.lex_state = 75, .external_lex_state = 2}, - [3796] = {.lex_state = 75, .external_lex_state = 6}, - [3797] = {.lex_state = 75, .external_lex_state = 5}, - [3798] = {.lex_state = 75, .external_lex_state = 2}, - [3799] = {.lex_state = 75, .external_lex_state = 6}, - [3800] = {.lex_state = 75, .external_lex_state = 6}, + [3793] = {.lex_state = 75, .external_lex_state = 2}, + [3794] = {.lex_state = 75, .external_lex_state = 2}, + [3795] = {.lex_state = 75, .external_lex_state = 6}, + [3796] = {.lex_state = 75, .external_lex_state = 2}, + [3797] = {.lex_state = 75, .external_lex_state = 2}, + [3798] = {.lex_state = 75, .external_lex_state = 5}, + [3799] = {.lex_state = 75, .external_lex_state = 2}, + [3800] = {.lex_state = 75, .external_lex_state = 2}, [3801] = {.lex_state = 75, .external_lex_state = 5}, - [3802] = {.lex_state = 75, .external_lex_state = 2}, - [3803] = {.lex_state = 75, .external_lex_state = 5}, + [3802] = {.lex_state = 75, .external_lex_state = 5}, + [3803] = {.lex_state = 75, .external_lex_state = 2}, [3804] = {.lex_state = 75, .external_lex_state = 2}, - [3805] = {.lex_state = 75, .external_lex_state = 6}, + [3805] = {.lex_state = 75, .external_lex_state = 5}, [3806] = {.lex_state = 75, .external_lex_state = 2}, [3807] = {.lex_state = 75, .external_lex_state = 2}, [3808] = {.lex_state = 75, .external_lex_state = 5}, - [3809] = {.lex_state = 75, .external_lex_state = 5}, - [3810] = {.lex_state = 75, .external_lex_state = 5}, - [3811] = {.lex_state = 75, .external_lex_state = 5}, + [3809] = {.lex_state = 75, .external_lex_state = 2}, + [3810] = {.lex_state = 75, .external_lex_state = 6}, + [3811] = {.lex_state = 75, .external_lex_state = 2}, [3812] = {.lex_state = 75, .external_lex_state = 2}, [3813] = {.lex_state = 75, .external_lex_state = 6}, - [3814] = {.lex_state = 75, .external_lex_state = 5}, - [3815] = {.lex_state = 75, .external_lex_state = 5}, + [3814] = {.lex_state = 75, .external_lex_state = 2}, + [3815] = {.lex_state = 75, .external_lex_state = 6}, [3816] = {.lex_state = 75, .external_lex_state = 2}, [3817] = {.lex_state = 75, .external_lex_state = 2}, - [3818] = {.lex_state = 8, .external_lex_state = 2}, - [3819] = {.lex_state = 75, .external_lex_state = 6}, + [3818] = {.lex_state = 75, .external_lex_state = 6}, + [3819] = {.lex_state = 75, .external_lex_state = 2}, [3820] = {.lex_state = 75, .external_lex_state = 6}, [3821] = {.lex_state = 75, .external_lex_state = 2}, - [3822] = {.lex_state = 75, .external_lex_state = 2}, + [3822] = {.lex_state = 75, .external_lex_state = 5}, [3823] = {.lex_state = 75, .external_lex_state = 2}, [3824] = {.lex_state = 75, .external_lex_state = 2}, [3825] = {.lex_state = 75, .external_lex_state = 5}, [3826] = {.lex_state = 75, .external_lex_state = 2}, - [3827] = {.lex_state = 75, .external_lex_state = 2}, + [3827] = {.lex_state = 75, .external_lex_state = 5}, [3828] = {.lex_state = 75, .external_lex_state = 2}, - [3829] = {.lex_state = 75, .external_lex_state = 2}, + [3829] = {.lex_state = 75, .external_lex_state = 5}, [3830] = {.lex_state = 75, .external_lex_state = 2}, [3831] = {.lex_state = 75, .external_lex_state = 2}, - [3832] = {.lex_state = 13, .external_lex_state = 7}, + [3832] = {.lex_state = 75, .external_lex_state = 2}, [3833] = {.lex_state = 75, .external_lex_state = 2}, - [3834] = {.lex_state = 75, .external_lex_state = 5}, + [3834] = {.lex_state = 75, .external_lex_state = 6}, [3835] = {.lex_state = 75, .external_lex_state = 2}, - [3836] = {.lex_state = 75, .external_lex_state = 2}, - [3837] = {.lex_state = 75, .external_lex_state = 2}, + [3836] = {.lex_state = 75, .external_lex_state = 6}, + [3837] = {.lex_state = 75, .external_lex_state = 5}, [3838] = {.lex_state = 75, .external_lex_state = 2}, - [3839] = {.lex_state = 75, .external_lex_state = 6}, - [3840] = {.lex_state = 75, .external_lex_state = 2}, - [3841] = {.lex_state = 75, .external_lex_state = 2}, - [3842] = {.lex_state = 75, .external_lex_state = 2}, - [3843] = {.lex_state = 75, .external_lex_state = 2}, - [3844] = {.lex_state = 75, .external_lex_state = 5}, + [3839] = {.lex_state = 75, .external_lex_state = 2}, + [3840] = {.lex_state = 75, .external_lex_state = 6}, + [3841] = {.lex_state = 75, .external_lex_state = 6}, + [3842] = {.lex_state = 13, .external_lex_state = 7}, + [3843] = {.lex_state = 75, .external_lex_state = 6}, + [3844] = {.lex_state = 75, .external_lex_state = 6}, [3845] = {.lex_state = 75, .external_lex_state = 2}, - [3846] = {.lex_state = 75, .external_lex_state = 2}, - [3847] = {.lex_state = 75, .external_lex_state = 6}, + [3846] = {.lex_state = 75, .external_lex_state = 5}, + [3847] = {.lex_state = 75, .external_lex_state = 5}, [3848] = {.lex_state = 75, .external_lex_state = 6}, - [3849] = {.lex_state = 75, .external_lex_state = 2}, - [3850] = {.lex_state = 75, .external_lex_state = 2}, + [3849] = {.lex_state = 75, .external_lex_state = 6}, + [3850] = {.lex_state = 13, .external_lex_state = 7}, [3851] = {.lex_state = 75, .external_lex_state = 2}, - [3852] = {.lex_state = 13, .external_lex_state = 7}, - [3853] = {.lex_state = 75, .external_lex_state = 2}, - [3854] = {.lex_state = 75, .external_lex_state = 2}, - [3855] = {.lex_state = 75, .external_lex_state = 6}, - [3856] = {.lex_state = 75, .external_lex_state = 2}, - [3857] = {.lex_state = 75, .external_lex_state = 2}, - [3858] = {.lex_state = 75, .external_lex_state = 2}, - [3859] = {.lex_state = 75, .external_lex_state = 2}, + [3852] = {.lex_state = 75, .external_lex_state = 2}, + [3853] = {.lex_state = 75, .external_lex_state = 5}, + [3854] = {.lex_state = 75, .external_lex_state = 5}, + [3855] = {.lex_state = 75, .external_lex_state = 2}, + [3856] = {.lex_state = 75, .external_lex_state = 5}, + [3857] = {.lex_state = 75, .external_lex_state = 5}, + [3858] = {.lex_state = 75, .external_lex_state = 5}, + [3859] = {.lex_state = 75, .external_lex_state = 5}, [3860] = {.lex_state = 75, .external_lex_state = 2}, - [3861] = {.lex_state = 13, .external_lex_state = 7}, - [3862] = {.lex_state = 75, .external_lex_state = 5}, + [3861] = {.lex_state = 75, .external_lex_state = 2}, + [3862] = {.lex_state = 75, .external_lex_state = 2}, [3863] = {.lex_state = 75, .external_lex_state = 2}, - [3864] = {.lex_state = 75, .external_lex_state = 5}, + [3864] = {.lex_state = 75, .external_lex_state = 2}, [3865] = {.lex_state = 75, .external_lex_state = 2}, [3866] = {.lex_state = 75, .external_lex_state = 2}, [3867] = {.lex_state = 75, .external_lex_state = 2}, - [3868] = {.lex_state = 75, .external_lex_state = 5}, - [3869] = {.lex_state = 8, .external_lex_state = 2}, + [3868] = {.lex_state = 75, .external_lex_state = 6}, + [3869] = {.lex_state = 75, .external_lex_state = 5}, [3870] = {.lex_state = 75, .external_lex_state = 6}, - [3871] = {.lex_state = 75, .external_lex_state = 2}, - [3872] = {.lex_state = 75, .external_lex_state = 2}, + [3871] = {.lex_state = 75, .external_lex_state = 5}, + [3872] = {.lex_state = 75, .external_lex_state = 5}, [3873] = {.lex_state = 75, .external_lex_state = 2}, [3874] = {.lex_state = 75, .external_lex_state = 2}, - [3875] = {.lex_state = 75, .external_lex_state = 5}, - [3876] = {.lex_state = 75, .external_lex_state = 2}, + [3875] = {.lex_state = 75, .external_lex_state = 6}, + [3876] = {.lex_state = 75, .external_lex_state = 5}, [3877] = {.lex_state = 75, .external_lex_state = 2}, [3878] = {.lex_state = 75, .external_lex_state = 2}, - [3879] = {.lex_state = 75, .external_lex_state = 5}, - [3880] = {.lex_state = 75, .external_lex_state = 2}, - [3881] = {.lex_state = 75, .external_lex_state = 6}, + [3879] = {.lex_state = 75, .external_lex_state = 2}, + [3880] = {.lex_state = 13, .external_lex_state = 7}, + [3881] = {.lex_state = 75, .external_lex_state = 2}, [3882] = {.lex_state = 75, .external_lex_state = 2}, - [3883] = {.lex_state = 75, .external_lex_state = 2}, - [3884] = {.lex_state = 75, .external_lex_state = 5}, - [3885] = {.lex_state = 75, .external_lex_state = 6}, - [3886] = {.lex_state = 75, .external_lex_state = 5}, + [3883] = {.lex_state = 75, .external_lex_state = 5}, + [3884] = {.lex_state = 75, .external_lex_state = 2}, + [3885] = {.lex_state = 8, .external_lex_state = 2}, + [3886] = {.lex_state = 75, .external_lex_state = 2}, [3887] = {.lex_state = 75, .external_lex_state = 5}, - [3888] = {.lex_state = 75, .external_lex_state = 2}, - [3889] = {.lex_state = 75, .external_lex_state = 5}, - [3890] = {.lex_state = 75, .external_lex_state = 2}, - [3891] = {.lex_state = 75, .external_lex_state = 5}, + [3888] = {.lex_state = 75, .external_lex_state = 5}, + [3889] = {.lex_state = 75, .external_lex_state = 2}, + [3890] = {.lex_state = 75, .external_lex_state = 5}, + [3891] = {.lex_state = 75, .external_lex_state = 2}, [3892] = {.lex_state = 75, .external_lex_state = 2}, - [3893] = {.lex_state = 75, .external_lex_state = 6}, - [3894] = {.lex_state = 75, .external_lex_state = 2}, + [3893] = {.lex_state = 75, .external_lex_state = 2}, + [3894] = {.lex_state = 75, .external_lex_state = 6}, [3895] = {.lex_state = 75, .external_lex_state = 6}, - [3896] = {.lex_state = 75, .external_lex_state = 5}, - [3897] = {.lex_state = 75, .external_lex_state = 2}, + [3896] = {.lex_state = 75, .external_lex_state = 2}, + [3897] = {.lex_state = 75, .external_lex_state = 6}, [3898] = {.lex_state = 75, .external_lex_state = 2}, - [3899] = {.lex_state = 75, .external_lex_state = 2}, - [3900] = {.lex_state = 75, .external_lex_state = 6}, - [3901] = {.lex_state = 13, .external_lex_state = 8}, - [3902] = {.lex_state = 75, .external_lex_state = 5}, + [3899] = {.lex_state = 75, .external_lex_state = 6}, + [3900] = {.lex_state = 75, .external_lex_state = 2}, + [3901] = {.lex_state = 75, .external_lex_state = 2}, + [3902] = {.lex_state = 75, .external_lex_state = 2}, [3903] = {.lex_state = 75, .external_lex_state = 2}, - [3904] = {.lex_state = 75, .external_lex_state = 5}, - [3905] = {.lex_state = 75, .external_lex_state = 5}, + [3904] = {.lex_state = 75, .external_lex_state = 2}, + [3905] = {.lex_state = 75, .external_lex_state = 6}, [3906] = {.lex_state = 75, .external_lex_state = 2}, - [3907] = {.lex_state = 75, .external_lex_state = 5}, - [3908] = {.lex_state = 75, .external_lex_state = 5}, - [3909] = {.lex_state = 75, .external_lex_state = 5}, - [3910] = {.lex_state = 75, .external_lex_state = 5}, - [3911] = {.lex_state = 75, .external_lex_state = 5}, - [3912] = {.lex_state = 75, .external_lex_state = 5}, - [3913] = {.lex_state = 75, .external_lex_state = 5}, + [3907] = {.lex_state = 75, .external_lex_state = 2}, + [3908] = {.lex_state = 75, .external_lex_state = 6}, + [3909] = {.lex_state = 8, .external_lex_state = 2}, + [3910] = {.lex_state = 75, .external_lex_state = 2}, + [3911] = {.lex_state = 75, .external_lex_state = 2}, + [3912] = {.lex_state = 75, .external_lex_state = 2}, + [3913] = {.lex_state = 75, .external_lex_state = 6}, [3914] = {.lex_state = 75, .external_lex_state = 2}, - [3915] = {.lex_state = 75, .external_lex_state = 5}, - [3916] = {.lex_state = 75, .external_lex_state = 5}, - [3917] = {.lex_state = 75, .external_lex_state = 5}, - [3918] = {.lex_state = 75, .external_lex_state = 6}, - [3919] = {.lex_state = 75, .external_lex_state = 6}, - [3920] = {.lex_state = 75, .external_lex_state = 5}, - [3921] = {.lex_state = 75, .external_lex_state = 6}, + [3915] = {.lex_state = 13, .external_lex_state = 7}, + [3916] = {.lex_state = 75, .external_lex_state = 2}, + [3917] = {.lex_state = 75, .external_lex_state = 2}, + [3918] = {.lex_state = 75, .external_lex_state = 2}, + [3919] = {.lex_state = 75, .external_lex_state = 2}, + [3920] = {.lex_state = 75, .external_lex_state = 2}, + [3921] = {.lex_state = 75, .external_lex_state = 2}, [3922] = {.lex_state = 75, .external_lex_state = 2}, - [3923] = {.lex_state = 13, .external_lex_state = 8}, + [3923] = {.lex_state = 75, .external_lex_state = 2}, [3924] = {.lex_state = 75, .external_lex_state = 2}, - [3925] = {.lex_state = 75, .external_lex_state = 5}, - [3926] = {.lex_state = 75, .external_lex_state = 5}, - [3927] = {.lex_state = 75, .external_lex_state = 5}, - [3928] = {.lex_state = 75, .external_lex_state = 5}, - [3929] = {.lex_state = 75, .external_lex_state = 5}, + [3925] = {.lex_state = 75, .external_lex_state = 2}, + [3926] = {.lex_state = 75, .external_lex_state = 2}, + [3927] = {.lex_state = 75, .external_lex_state = 2}, + [3928] = {.lex_state = 75, .external_lex_state = 2}, + [3929] = {.lex_state = 75, .external_lex_state = 2}, [3930] = {.lex_state = 75, .external_lex_state = 2}, [3931] = {.lex_state = 75, .external_lex_state = 5}, - [3932] = {.lex_state = 75, .external_lex_state = 5}, - [3933] = {.lex_state = 75, .external_lex_state = 5}, - [3934] = {.lex_state = 75, .external_lex_state = 5}, - [3935] = {.lex_state = 75, .external_lex_state = 5}, - [3936] = {.lex_state = 75, .external_lex_state = 5}, - [3937] = {.lex_state = 75, .external_lex_state = 5}, + [3932] = {.lex_state = 75, .external_lex_state = 2}, + [3933] = {.lex_state = 75, .external_lex_state = 6}, + [3934] = {.lex_state = 75, .external_lex_state = 2}, + [3935] = {.lex_state = 75, .external_lex_state = 2}, + [3936] = {.lex_state = 13, .external_lex_state = 7}, + [3937] = {.lex_state = 75, .external_lex_state = 2}, [3938] = {.lex_state = 75, .external_lex_state = 5}, - [3939] = {.lex_state = 75, .external_lex_state = 2}, - [3940] = {.lex_state = 75, .external_lex_state = 5}, + [3939] = {.lex_state = 75, .external_lex_state = 5}, + [3940] = {.lex_state = 75, .external_lex_state = 2}, [3941] = {.lex_state = 75, .external_lex_state = 2}, [3942] = {.lex_state = 75, .external_lex_state = 5}, - [3943] = {.lex_state = 75, .external_lex_state = 5}, - [3944] = {.lex_state = 75, .external_lex_state = 6}, - [3945] = {.lex_state = 75, .external_lex_state = 5}, + [3943] = {.lex_state = 75, .external_lex_state = 2}, + [3944] = {.lex_state = 75, .external_lex_state = 5}, + [3945] = {.lex_state = 75, .external_lex_state = 2}, [3946] = {.lex_state = 75, .external_lex_state = 5}, [3947] = {.lex_state = 75, .external_lex_state = 5}, - [3948] = {.lex_state = 75, .external_lex_state = 2}, - [3949] = {.lex_state = 75, .external_lex_state = 5}, + [3948] = {.lex_state = 75, .external_lex_state = 5}, + [3949] = {.lex_state = 75, .external_lex_state = 2}, [3950] = {.lex_state = 75, .external_lex_state = 5}, - [3951] = {.lex_state = 2, .external_lex_state = 2}, - [3952] = {.lex_state = 75, .external_lex_state = 5}, + [3951] = {.lex_state = 75, .external_lex_state = 5}, + [3952] = {.lex_state = 2, .external_lex_state = 2}, [3953] = {.lex_state = 75, .external_lex_state = 5}, [3954] = {.lex_state = 75, .external_lex_state = 5}, [3955] = {.lex_state = 75, .external_lex_state = 5}, [3956] = {.lex_state = 75, .external_lex_state = 5}, [3957] = {.lex_state = 75, .external_lex_state = 5}, - [3958] = {.lex_state = 75, .external_lex_state = 5}, + [3958] = {.lex_state = 75, .external_lex_state = 6}, [3959] = {.lex_state = 75, .external_lex_state = 5}, [3960] = {.lex_state = 75, .external_lex_state = 5}, - [3961] = {.lex_state = 75, .external_lex_state = 6}, + [3961] = {.lex_state = 75, .external_lex_state = 5}, [3962] = {.lex_state = 75, .external_lex_state = 5}, [3963] = {.lex_state = 75, .external_lex_state = 5}, - [3964] = {.lex_state = 75, .external_lex_state = 6}, + [3964] = {.lex_state = 75, .external_lex_state = 5}, [3965] = {.lex_state = 75, .external_lex_state = 5}, - [3966] = {.lex_state = 75, .external_lex_state = 5}, - [3967] = {.lex_state = 75, .external_lex_state = 5}, + [3966] = {.lex_state = 13, .external_lex_state = 8}, + [3967] = {.lex_state = 75, .external_lex_state = 6}, [3968] = {.lex_state = 75, .external_lex_state = 5}, [3969] = {.lex_state = 75, .external_lex_state = 5}, [3970] = {.lex_state = 75, .external_lex_state = 5}, - [3971] = {.lex_state = 75, .external_lex_state = 2}, + [3971] = {.lex_state = 75, .external_lex_state = 5}, [3972] = {.lex_state = 75, .external_lex_state = 2}, - [3973] = {.lex_state = 75, .external_lex_state = 5}, + [3973] = {.lex_state = 13, .external_lex_state = 8}, [3974] = {.lex_state = 75, .external_lex_state = 5}, - [3975] = {.lex_state = 75, .external_lex_state = 5}, - [3976] = {.lex_state = 75, .external_lex_state = 2}, + [3975] = {.lex_state = 75, .external_lex_state = 2}, + [3976] = {.lex_state = 75, .external_lex_state = 5}, [3977] = {.lex_state = 75, .external_lex_state = 5}, [3978] = {.lex_state = 75, .external_lex_state = 5}, [3979] = {.lex_state = 75, .external_lex_state = 5}, - [3980] = {.lex_state = 75, .external_lex_state = 6}, - [3981] = {.lex_state = 75, .external_lex_state = 5}, + [3980] = {.lex_state = 75, .external_lex_state = 5}, + [3981] = {.lex_state = 75, .external_lex_state = 2}, [3982] = {.lex_state = 75, .external_lex_state = 5}, [3983] = {.lex_state = 75, .external_lex_state = 5}, [3984] = {.lex_state = 75, .external_lex_state = 5}, [3985] = {.lex_state = 75, .external_lex_state = 5}, - [3986] = {.lex_state = 75, .external_lex_state = 2}, - [3987] = {.lex_state = 75, .external_lex_state = 2}, - [3988] = {.lex_state = 75, .external_lex_state = 5}, - [3989] = {.lex_state = 75, .external_lex_state = 2}, - [3990] = {.lex_state = 75, .external_lex_state = 5}, + [3986] = {.lex_state = 75, .external_lex_state = 5}, + [3987] = {.lex_state = 75, .external_lex_state = 5}, + [3988] = {.lex_state = 75, .external_lex_state = 2}, + [3989] = {.lex_state = 75, .external_lex_state = 5}, + [3990] = {.lex_state = 75, .external_lex_state = 2}, [3991] = {.lex_state = 75, .external_lex_state = 5}, [3992] = {.lex_state = 75, .external_lex_state = 5}, - [3993] = {.lex_state = 75, .external_lex_state = 5}, + [3993] = {.lex_state = 13, .external_lex_state = 8}, [3994] = {.lex_state = 75, .external_lex_state = 5}, - [3995] = {.lex_state = 75, .external_lex_state = 5}, + [3995] = {.lex_state = 75, .external_lex_state = 2}, [3996] = {.lex_state = 75, .external_lex_state = 5}, [3997] = {.lex_state = 75, .external_lex_state = 5}, - [3998] = {.lex_state = 75, .external_lex_state = 5}, - [3999] = {.lex_state = 75, .external_lex_state = 5}, + [3998] = {.lex_state = 75, .external_lex_state = 2}, + [3999] = {.lex_state = 13, .external_lex_state = 8}, [4000] = {.lex_state = 75, .external_lex_state = 5}, - [4001] = {.lex_state = 75, .external_lex_state = 2}, + [4001] = {.lex_state = 75, .external_lex_state = 5}, [4002] = {.lex_state = 75, .external_lex_state = 5}, [4003] = {.lex_state = 75, .external_lex_state = 5}, [4004] = {.lex_state = 75, .external_lex_state = 5}, [4005] = {.lex_state = 75, .external_lex_state = 5}, - [4006] = {.lex_state = 75, .external_lex_state = 5}, - [4007] = {.lex_state = 75, .external_lex_state = 5}, - [4008] = {.lex_state = 75, .external_lex_state = 5}, - [4009] = {.lex_state = 75, .external_lex_state = 2}, + [4006] = {.lex_state = 75, .external_lex_state = 2}, + [4007] = {.lex_state = 75, .external_lex_state = 2}, + [4008] = {.lex_state = 75, .external_lex_state = 2}, + [4009] = {.lex_state = 75, .external_lex_state = 5}, [4010] = {.lex_state = 75, .external_lex_state = 2}, [4011] = {.lex_state = 75, .external_lex_state = 5}, [4012] = {.lex_state = 75, .external_lex_state = 2}, - [4013] = {.lex_state = 75, .external_lex_state = 2}, + [4013] = {.lex_state = 75, .external_lex_state = 5}, [4014] = {.lex_state = 75, .external_lex_state = 5}, [4015] = {.lex_state = 75, .external_lex_state = 5}, [4016] = {.lex_state = 75, .external_lex_state = 5}, @@ -16949,346 +16989,346 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4023] = {.lex_state = 75, .external_lex_state = 5}, [4024] = {.lex_state = 75, .external_lex_state = 2}, [4025] = {.lex_state = 75, .external_lex_state = 5}, - [4026] = {.lex_state = 75, .external_lex_state = 5}, - [4027] = {.lex_state = 75, .external_lex_state = 5}, + [4026] = {.lex_state = 75, .external_lex_state = 2}, + [4027] = {.lex_state = 75, .external_lex_state = 2}, [4028] = {.lex_state = 75, .external_lex_state = 5}, [4029] = {.lex_state = 75, .external_lex_state = 5}, [4030] = {.lex_state = 75, .external_lex_state = 5}, [4031] = {.lex_state = 75, .external_lex_state = 2}, - [4032] = {.lex_state = 75, .external_lex_state = 5}, + [4032] = {.lex_state = 75, .external_lex_state = 2}, [4033] = {.lex_state = 75, .external_lex_state = 5}, [4034] = {.lex_state = 75, .external_lex_state = 5}, - [4035] = {.lex_state = 75, .external_lex_state = 5}, - [4036] = {.lex_state = 75, .external_lex_state = 5}, + [4035] = {.lex_state = 75, .external_lex_state = 2}, + [4036] = {.lex_state = 13, .external_lex_state = 8}, [4037] = {.lex_state = 75, .external_lex_state = 5}, - [4038] = {.lex_state = 75, .external_lex_state = 2}, - [4039] = {.lex_state = 75, .external_lex_state = 6}, + [4038] = {.lex_state = 75, .external_lex_state = 5}, + [4039] = {.lex_state = 75, .external_lex_state = 5}, [4040] = {.lex_state = 75, .external_lex_state = 5}, [4041] = {.lex_state = 75, .external_lex_state = 5}, - [4042] = {.lex_state = 75, .external_lex_state = 2}, + [4042] = {.lex_state = 75, .external_lex_state = 5}, [4043] = {.lex_state = 75, .external_lex_state = 5}, [4044] = {.lex_state = 75, .external_lex_state = 5}, [4045] = {.lex_state = 75, .external_lex_state = 5}, - [4046] = {.lex_state = 13, .external_lex_state = 8}, + [4046] = {.lex_state = 75, .external_lex_state = 5}, [4047] = {.lex_state = 75, .external_lex_state = 5}, [4048] = {.lex_state = 75, .external_lex_state = 5}, - [4049] = {.lex_state = 75, .external_lex_state = 5}, - [4050] = {.lex_state = 75, .external_lex_state = 5}, + [4049] = {.lex_state = 75, .external_lex_state = 2}, + [4050] = {.lex_state = 75, .external_lex_state = 2}, [4051] = {.lex_state = 75, .external_lex_state = 5}, [4052] = {.lex_state = 75, .external_lex_state = 5}, - [4053] = {.lex_state = 75, .external_lex_state = 6}, + [4053] = {.lex_state = 75, .external_lex_state = 5}, [4054] = {.lex_state = 75, .external_lex_state = 5}, [4055] = {.lex_state = 75, .external_lex_state = 5}, [4056] = {.lex_state = 75, .external_lex_state = 5}, - [4057] = {.lex_state = 13, .external_lex_state = 8}, + [4057] = {.lex_state = 75, .external_lex_state = 5}, [4058] = {.lex_state = 75, .external_lex_state = 5}, - [4059] = {.lex_state = 75, .external_lex_state = 5}, - [4060] = {.lex_state = 75, .external_lex_state = 5}, + [4059] = {.lex_state = 13, .external_lex_state = 8}, + [4060] = {.lex_state = 75, .external_lex_state = 2}, [4061] = {.lex_state = 75, .external_lex_state = 5}, - [4062] = {.lex_state = 75, .external_lex_state = 6}, + [4062] = {.lex_state = 75, .external_lex_state = 2}, [4063] = {.lex_state = 75, .external_lex_state = 5}, [4064] = {.lex_state = 75, .external_lex_state = 5}, [4065] = {.lex_state = 75, .external_lex_state = 5}, - [4066] = {.lex_state = 75, .external_lex_state = 5}, + [4066] = {.lex_state = 75, .external_lex_state = 2}, [4067] = {.lex_state = 75, .external_lex_state = 5}, [4068] = {.lex_state = 75, .external_lex_state = 5}, [4069] = {.lex_state = 75, .external_lex_state = 5}, - [4070] = {.lex_state = 75, .external_lex_state = 5}, + [4070] = {.lex_state = 75, .external_lex_state = 2}, [4071] = {.lex_state = 75, .external_lex_state = 5}, [4072] = {.lex_state = 75, .external_lex_state = 5}, [4073] = {.lex_state = 75, .external_lex_state = 5}, [4074] = {.lex_state = 75, .external_lex_state = 5}, [4075] = {.lex_state = 75, .external_lex_state = 5}, - [4076] = {.lex_state = 75, .external_lex_state = 5}, + [4076] = {.lex_state = 75, .external_lex_state = 6}, [4077] = {.lex_state = 75, .external_lex_state = 5}, [4078] = {.lex_state = 75, .external_lex_state = 5}, [4079] = {.lex_state = 75, .external_lex_state = 5}, [4080] = {.lex_state = 75, .external_lex_state = 5}, - [4081] = {.lex_state = 75, .external_lex_state = 5}, - [4082] = {.lex_state = 75, .external_lex_state = 5}, + [4081] = {.lex_state = 75, .external_lex_state = 2}, + [4082] = {.lex_state = 75, .external_lex_state = 2}, [4083] = {.lex_state = 75, .external_lex_state = 5}, [4084] = {.lex_state = 75, .external_lex_state = 5}, - [4085] = {.lex_state = 13, .external_lex_state = 8}, + [4085] = {.lex_state = 75, .external_lex_state = 5}, [4086] = {.lex_state = 75, .external_lex_state = 5}, [4087] = {.lex_state = 75, .external_lex_state = 2}, [4088] = {.lex_state = 75, .external_lex_state = 5}, [4089] = {.lex_state = 75, .external_lex_state = 5}, [4090] = {.lex_state = 75, .external_lex_state = 5}, [4091] = {.lex_state = 75, .external_lex_state = 5}, - [4092] = {.lex_state = 13, .external_lex_state = 8}, - [4093] = {.lex_state = 75, .external_lex_state = 5}, - [4094] = {.lex_state = 75, .external_lex_state = 2}, - [4095] = {.lex_state = 75, .external_lex_state = 5}, - [4096] = {.lex_state = 75, .external_lex_state = 5}, + [4092] = {.lex_state = 75, .external_lex_state = 2}, + [4093] = {.lex_state = 75, .external_lex_state = 2}, + [4094] = {.lex_state = 13, .external_lex_state = 8}, + [4095] = {.lex_state = 75, .external_lex_state = 2}, + [4096] = {.lex_state = 75, .external_lex_state = 2}, [4097] = {.lex_state = 75, .external_lex_state = 5}, - [4098] = {.lex_state = 75, .external_lex_state = 5}, - [4099] = {.lex_state = 75, .external_lex_state = 5}, + [4098] = {.lex_state = 75, .external_lex_state = 2}, + [4099] = {.lex_state = 75, .external_lex_state = 2}, [4100] = {.lex_state = 75, .external_lex_state = 5}, - [4101] = {.lex_state = 75, .external_lex_state = 5}, + [4101] = {.lex_state = 75, .external_lex_state = 2}, [4102] = {.lex_state = 75, .external_lex_state = 5}, - [4103] = {.lex_state = 75, .external_lex_state = 5}, + [4103] = {.lex_state = 13, .external_lex_state = 8}, [4104] = {.lex_state = 75, .external_lex_state = 5}, [4105] = {.lex_state = 75, .external_lex_state = 5}, [4106] = {.lex_state = 75, .external_lex_state = 5}, - [4107] = {.lex_state = 13, .external_lex_state = 8}, - [4108] = {.lex_state = 13, .external_lex_state = 8}, + [4107] = {.lex_state = 75, .external_lex_state = 5}, + [4108] = {.lex_state = 75, .external_lex_state = 2}, [4109] = {.lex_state = 75, .external_lex_state = 5}, [4110] = {.lex_state = 75, .external_lex_state = 5}, [4111] = {.lex_state = 75, .external_lex_state = 5}, - [4112] = {.lex_state = 13, .external_lex_state = 8}, + [4112] = {.lex_state = 2, .external_lex_state = 2}, [4113] = {.lex_state = 75, .external_lex_state = 5}, [4114] = {.lex_state = 75, .external_lex_state = 5}, - [4115] = {.lex_state = 75, .external_lex_state = 2}, - [4116] = {.lex_state = 75, .external_lex_state = 2}, + [4115] = {.lex_state = 75, .external_lex_state = 5}, + [4116] = {.lex_state = 75, .external_lex_state = 5}, [4117] = {.lex_state = 75, .external_lex_state = 5}, [4118] = {.lex_state = 75, .external_lex_state = 5}, - [4119] = {.lex_state = 75, .external_lex_state = 5}, + [4119] = {.lex_state = 75, .external_lex_state = 2}, [4120] = {.lex_state = 75, .external_lex_state = 5}, - [4121] = {.lex_state = 75, .external_lex_state = 5}, + [4121] = {.lex_state = 75, .external_lex_state = 2}, [4122] = {.lex_state = 75, .external_lex_state = 5}, [4123] = {.lex_state = 75, .external_lex_state = 5}, - [4124] = {.lex_state = 75, .external_lex_state = 5}, + [4124] = {.lex_state = 75, .external_lex_state = 2}, [4125] = {.lex_state = 75, .external_lex_state = 2}, [4126] = {.lex_state = 75, .external_lex_state = 5}, [4127] = {.lex_state = 75, .external_lex_state = 5}, - [4128] = {.lex_state = 75, .external_lex_state = 5}, - [4129] = {.lex_state = 75, .external_lex_state = 2}, + [4128] = {.lex_state = 75, .external_lex_state = 2}, + [4129] = {.lex_state = 75, .external_lex_state = 5}, [4130] = {.lex_state = 75, .external_lex_state = 5}, - [4131] = {.lex_state = 75, .external_lex_state = 5}, + [4131] = {.lex_state = 75, .external_lex_state = 2}, [4132] = {.lex_state = 75, .external_lex_state = 2}, - [4133] = {.lex_state = 75, .external_lex_state = 2}, + [4133] = {.lex_state = 75, .external_lex_state = 5}, [4134] = {.lex_state = 75, .external_lex_state = 5}, [4135] = {.lex_state = 75, .external_lex_state = 5}, - [4136] = {.lex_state = 13, .external_lex_state = 8}, - [4137] = {.lex_state = 75, .external_lex_state = 2}, - [4138] = {.lex_state = 75, .external_lex_state = 5}, + [4136] = {.lex_state = 75, .external_lex_state = 5}, + [4137] = {.lex_state = 75, .external_lex_state = 5}, + [4138] = {.lex_state = 75, .external_lex_state = 2}, [4139] = {.lex_state = 75, .external_lex_state = 5}, - [4140] = {.lex_state = 75, .external_lex_state = 5}, + [4140] = {.lex_state = 75, .external_lex_state = 2}, [4141] = {.lex_state = 75, .external_lex_state = 5}, [4142] = {.lex_state = 75, .external_lex_state = 5}, - [4143] = {.lex_state = 8, .external_lex_state = 2}, + [4143] = {.lex_state = 75, .external_lex_state = 5}, [4144] = {.lex_state = 75, .external_lex_state = 5}, - [4145] = {.lex_state = 7, .external_lex_state = 2}, + [4145] = {.lex_state = 75, .external_lex_state = 5}, [4146] = {.lex_state = 75, .external_lex_state = 5}, - [4147] = {.lex_state = 75, .external_lex_state = 2}, - [4148] = {.lex_state = 75, .external_lex_state = 2}, + [4147] = {.lex_state = 75, .external_lex_state = 5}, + [4148] = {.lex_state = 75, .external_lex_state = 5}, [4149] = {.lex_state = 75, .external_lex_state = 5}, - [4150] = {.lex_state = 75, .external_lex_state = 2}, - [4151] = {.lex_state = 75, .external_lex_state = 2}, - [4152] = {.lex_state = 75, .external_lex_state = 5}, - [4153] = {.lex_state = 75, .external_lex_state = 2}, + [4150] = {.lex_state = 75, .external_lex_state = 5}, + [4151] = {.lex_state = 75, .external_lex_state = 5}, + [4152] = {.lex_state = 75, .external_lex_state = 6}, + [4153] = {.lex_state = 75, .external_lex_state = 5}, [4154] = {.lex_state = 75, .external_lex_state = 2}, [4155] = {.lex_state = 75, .external_lex_state = 5}, [4156] = {.lex_state = 75, .external_lex_state = 5}, - [4157] = {.lex_state = 75, .external_lex_state = 2}, - [4158] = {.lex_state = 75, .external_lex_state = 5}, + [4157] = {.lex_state = 75, .external_lex_state = 5}, + [4158] = {.lex_state = 75, .external_lex_state = 2}, [4159] = {.lex_state = 75, .external_lex_state = 5}, - [4160] = {.lex_state = 75, .external_lex_state = 2}, - [4161] = {.lex_state = 75, .external_lex_state = 2}, - [4162] = {.lex_state = 75, .external_lex_state = 5}, - [4163] = {.lex_state = 75, .external_lex_state = 2}, - [4164] = {.lex_state = 75, .external_lex_state = 2}, + [4160] = {.lex_state = 75, .external_lex_state = 5}, + [4161] = {.lex_state = 75, .external_lex_state = 5}, + [4162] = {.lex_state = 75, .external_lex_state = 2}, + [4163] = {.lex_state = 13, .external_lex_state = 8}, + [4164] = {.lex_state = 75, .external_lex_state = 5}, [4165] = {.lex_state = 75, .external_lex_state = 5}, - [4166] = {.lex_state = 75, .external_lex_state = 5}, - [4167] = {.lex_state = 75, .external_lex_state = 5}, + [4166] = {.lex_state = 75, .external_lex_state = 2}, + [4167] = {.lex_state = 75, .external_lex_state = 6}, [4168] = {.lex_state = 75, .external_lex_state = 5}, [4169] = {.lex_state = 75, .external_lex_state = 5}, - [4170] = {.lex_state = 75, .external_lex_state = 5}, - [4171] = {.lex_state = 75, .external_lex_state = 2}, + [4170] = {.lex_state = 75, .external_lex_state = 2}, + [4171] = {.lex_state = 75, .external_lex_state = 5}, [4172] = {.lex_state = 75, .external_lex_state = 2}, - [4173] = {.lex_state = 75, .external_lex_state = 2}, - [4174] = {.lex_state = 75, .external_lex_state = 2}, - [4175] = {.lex_state = 75, .external_lex_state = 2}, - [4176] = {.lex_state = 75, .external_lex_state = 2}, + [4173] = {.lex_state = 75, .external_lex_state = 5}, + [4174] = {.lex_state = 75, .external_lex_state = 5}, + [4175] = {.lex_state = 75, .external_lex_state = 5}, + [4176] = {.lex_state = 75, .external_lex_state = 5}, [4177] = {.lex_state = 75, .external_lex_state = 5}, [4178] = {.lex_state = 75, .external_lex_state = 2}, [4179] = {.lex_state = 75, .external_lex_state = 5}, - [4180] = {.lex_state = 75, .external_lex_state = 2}, + [4180] = {.lex_state = 75, .external_lex_state = 5}, [4181] = {.lex_state = 75, .external_lex_state = 5}, - [4182] = {.lex_state = 75, .external_lex_state = 5}, + [4182] = {.lex_state = 75, .external_lex_state = 2}, [4183] = {.lex_state = 75, .external_lex_state = 5}, - [4184] = {.lex_state = 75, .external_lex_state = 2}, - [4185] = {.lex_state = 75, .external_lex_state = 2}, + [4184] = {.lex_state = 75, .external_lex_state = 5}, + [4185] = {.lex_state = 75, .external_lex_state = 5}, [4186] = {.lex_state = 75, .external_lex_state = 5}, [4187] = {.lex_state = 75, .external_lex_state = 5}, [4188] = {.lex_state = 75, .external_lex_state = 5}, - [4189] = {.lex_state = 75, .external_lex_state = 2}, + [4189] = {.lex_state = 75, .external_lex_state = 5}, [4190] = {.lex_state = 75, .external_lex_state = 2}, - [4191] = {.lex_state = 75, .external_lex_state = 6}, + [4191] = {.lex_state = 75, .external_lex_state = 2}, [4192] = {.lex_state = 75, .external_lex_state = 5}, - [4193] = {.lex_state = 75, .external_lex_state = 2}, - [4194] = {.lex_state = 75, .external_lex_state = 5}, + [4193] = {.lex_state = 75, .external_lex_state = 5}, + [4194] = {.lex_state = 75, .external_lex_state = 2}, [4195] = {.lex_state = 75, .external_lex_state = 5}, [4196] = {.lex_state = 75, .external_lex_state = 2}, - [4197] = {.lex_state = 75, .external_lex_state = 2}, - [4198] = {.lex_state = 75, .external_lex_state = 5}, + [4197] = {.lex_state = 75, .external_lex_state = 5}, + [4198] = {.lex_state = 75, .external_lex_state = 2}, [4199] = {.lex_state = 75, .external_lex_state = 5}, [4200] = {.lex_state = 75, .external_lex_state = 2}, [4201] = {.lex_state = 75, .external_lex_state = 2}, - [4202] = {.lex_state = 75, .external_lex_state = 5}, - [4203] = {.lex_state = 75, .external_lex_state = 2}, + [4202] = {.lex_state = 75, .external_lex_state = 2}, + [4203] = {.lex_state = 75, .external_lex_state = 5}, [4204] = {.lex_state = 75, .external_lex_state = 5}, [4205] = {.lex_state = 75, .external_lex_state = 5}, [4206] = {.lex_state = 75, .external_lex_state = 5}, [4207] = {.lex_state = 75, .external_lex_state = 2}, - [4208] = {.lex_state = 2, .external_lex_state = 2}, - [4209] = {.lex_state = 75, .external_lex_state = 5}, + [4208] = {.lex_state = 75, .external_lex_state = 2}, + [4209] = {.lex_state = 75, .external_lex_state = 2}, [4210] = {.lex_state = 75, .external_lex_state = 2}, - [4211] = {.lex_state = 75, .external_lex_state = 5}, - [4212] = {.lex_state = 75, .external_lex_state = 5}, - [4213] = {.lex_state = 75, .external_lex_state = 5}, + [4211] = {.lex_state = 75, .external_lex_state = 2}, + [4212] = {.lex_state = 75, .external_lex_state = 2}, + [4213] = {.lex_state = 75, .external_lex_state = 2}, [4214] = {.lex_state = 75, .external_lex_state = 5}, [4215] = {.lex_state = 75, .external_lex_state = 5}, - [4216] = {.lex_state = 75, .external_lex_state = 5}, - [4217] = {.lex_state = 75, .external_lex_state = 2}, - [4218] = {.lex_state = 13, .external_lex_state = 8}, + [4216] = {.lex_state = 75, .external_lex_state = 2}, + [4217] = {.lex_state = 75, .external_lex_state = 6}, + [4218] = {.lex_state = 75, .external_lex_state = 5}, [4219] = {.lex_state = 75, .external_lex_state = 5}, - [4220] = {.lex_state = 75, .external_lex_state = 2}, - [4221] = {.lex_state = 75, .external_lex_state = 5}, + [4220] = {.lex_state = 75, .external_lex_state = 5}, + [4221] = {.lex_state = 75, .external_lex_state = 2}, [4222] = {.lex_state = 75, .external_lex_state = 2}, - [4223] = {.lex_state = 75, .external_lex_state = 2}, + [4223] = {.lex_state = 75, .external_lex_state = 6}, [4224] = {.lex_state = 75, .external_lex_state = 2}, - [4225] = {.lex_state = 75, .external_lex_state = 2}, + [4225] = {.lex_state = 75, .external_lex_state = 5}, [4226] = {.lex_state = 75, .external_lex_state = 2}, - [4227] = {.lex_state = 75, .external_lex_state = 2}, - [4228] = {.lex_state = 75, .external_lex_state = 2}, + [4227] = {.lex_state = 75, .external_lex_state = 5}, + [4228] = {.lex_state = 75, .external_lex_state = 5}, [4229] = {.lex_state = 75, .external_lex_state = 2}, - [4230] = {.lex_state = 75, .external_lex_state = 5}, - [4231] = {.lex_state = 75, .external_lex_state = 5}, - [4232] = {.lex_state = 75, .external_lex_state = 5}, - [4233] = {.lex_state = 75, .external_lex_state = 5}, + [4230] = {.lex_state = 75, .external_lex_state = 2}, + [4231] = {.lex_state = 75, .external_lex_state = 2}, + [4232] = {.lex_state = 75, .external_lex_state = 2}, + [4233] = {.lex_state = 75, .external_lex_state = 2}, [4234] = {.lex_state = 75, .external_lex_state = 5}, [4235] = {.lex_state = 75, .external_lex_state = 5}, [4236] = {.lex_state = 75, .external_lex_state = 5}, - [4237] = {.lex_state = 75, .external_lex_state = 5}, + [4237] = {.lex_state = 75, .external_lex_state = 2}, [4238] = {.lex_state = 75, .external_lex_state = 5}, - [4239] = {.lex_state = 75, .external_lex_state = 5}, + [4239] = {.lex_state = 75, .external_lex_state = 2}, [4240] = {.lex_state = 75, .external_lex_state = 5}, - [4241] = {.lex_state = 75, .external_lex_state = 5}, - [4242] = {.lex_state = 75, .external_lex_state = 5}, + [4241] = {.lex_state = 75, .external_lex_state = 2}, + [4242] = {.lex_state = 75, .external_lex_state = 6}, [4243] = {.lex_state = 75, .external_lex_state = 5}, [4244] = {.lex_state = 75, .external_lex_state = 5}, [4245] = {.lex_state = 75, .external_lex_state = 5}, [4246] = {.lex_state = 75, .external_lex_state = 5}, - [4247] = {.lex_state = 75, .external_lex_state = 2}, - [4248] = {.lex_state = 75, .external_lex_state = 2}, - [4249] = {.lex_state = 75, .external_lex_state = 2}, - [4250] = {.lex_state = 75, .external_lex_state = 6}, + [4247] = {.lex_state = 75, .external_lex_state = 5}, + [4248] = {.lex_state = 75, .external_lex_state = 5}, + [4249] = {.lex_state = 75, .external_lex_state = 5}, + [4250] = {.lex_state = 75, .external_lex_state = 5}, [4251] = {.lex_state = 75, .external_lex_state = 5}, [4252] = {.lex_state = 75, .external_lex_state = 5}, - [4253] = {.lex_state = 75, .external_lex_state = 2}, + [4253] = {.lex_state = 75, .external_lex_state = 5}, [4254] = {.lex_state = 75, .external_lex_state = 5}, [4255] = {.lex_state = 75, .external_lex_state = 5}, - [4256] = {.lex_state = 75, .external_lex_state = 2}, + [4256] = {.lex_state = 75, .external_lex_state = 5}, [4257] = {.lex_state = 75, .external_lex_state = 5}, - [4258] = {.lex_state = 75, .external_lex_state = 2}, + [4258] = {.lex_state = 75, .external_lex_state = 5}, [4259] = {.lex_state = 75, .external_lex_state = 5}, - [4260] = {.lex_state = 75, .external_lex_state = 2}, - [4261] = {.lex_state = 75, .external_lex_state = 5}, + [4260] = {.lex_state = 75, .external_lex_state = 5}, + [4261] = {.lex_state = 75, .external_lex_state = 2}, [4262] = {.lex_state = 75, .external_lex_state = 5}, [4263] = {.lex_state = 75, .external_lex_state = 5}, - [4264] = {.lex_state = 75, .external_lex_state = 5}, + [4264] = {.lex_state = 75, .external_lex_state = 2}, [4265] = {.lex_state = 75, .external_lex_state = 5}, - [4266] = {.lex_state = 75, .external_lex_state = 5}, + [4266] = {.lex_state = 75, .external_lex_state = 2}, [4267] = {.lex_state = 75, .external_lex_state = 5}, [4268] = {.lex_state = 75, .external_lex_state = 5}, [4269] = {.lex_state = 75, .external_lex_state = 5}, [4270] = {.lex_state = 75, .external_lex_state = 5}, [4271] = {.lex_state = 75, .external_lex_state = 5}, - [4272] = {.lex_state = 75, .external_lex_state = 5}, - [4273] = {.lex_state = 75, .external_lex_state = 2}, + [4272] = {.lex_state = 75, .external_lex_state = 2}, + [4273] = {.lex_state = 75, .external_lex_state = 5}, [4274] = {.lex_state = 75, .external_lex_state = 5}, [4275] = {.lex_state = 75, .external_lex_state = 5}, - [4276] = {.lex_state = 75, .external_lex_state = 2}, + [4276] = {.lex_state = 75, .external_lex_state = 5}, [4277] = {.lex_state = 75, .external_lex_state = 2}, [4278] = {.lex_state = 75, .external_lex_state = 5}, - [4279] = {.lex_state = 75, .external_lex_state = 2}, + [4279] = {.lex_state = 75, .external_lex_state = 5}, [4280] = {.lex_state = 75, .external_lex_state = 5}, [4281] = {.lex_state = 75, .external_lex_state = 5}, - [4282] = {.lex_state = 75, .external_lex_state = 5}, + [4282] = {.lex_state = 75, .external_lex_state = 2}, [4283] = {.lex_state = 75, .external_lex_state = 5}, [4284] = {.lex_state = 75, .external_lex_state = 5}, - [4285] = {.lex_state = 75, .external_lex_state = 2}, + [4285] = {.lex_state = 75, .external_lex_state = 5}, [4286] = {.lex_state = 75, .external_lex_state = 5}, - [4287] = {.lex_state = 75, .external_lex_state = 5}, - [4288] = {.lex_state = 75, .external_lex_state = 2}, - [4289] = {.lex_state = 75, .external_lex_state = 5}, - [4290] = {.lex_state = 75, .external_lex_state = 2}, + [4287] = {.lex_state = 75, .external_lex_state = 2}, + [4288] = {.lex_state = 75, .external_lex_state = 5}, + [4289] = {.lex_state = 75, .external_lex_state = 2}, + [4290] = {.lex_state = 75, .external_lex_state = 5}, [4291] = {.lex_state = 75, .external_lex_state = 2}, - [4292] = {.lex_state = 75, .external_lex_state = 2}, - [4293] = {.lex_state = 75, .external_lex_state = 2}, - [4294] = {.lex_state = 75, .external_lex_state = 5}, + [4292] = {.lex_state = 75, .external_lex_state = 5}, + [4293] = {.lex_state = 75, .external_lex_state = 5}, + [4294] = {.lex_state = 75, .external_lex_state = 2}, [4295] = {.lex_state = 75, .external_lex_state = 5}, [4296] = {.lex_state = 75, .external_lex_state = 5}, [4297] = {.lex_state = 75, .external_lex_state = 5}, - [4298] = {.lex_state = 75, .external_lex_state = 2}, + [4298] = {.lex_state = 75, .external_lex_state = 5}, [4299] = {.lex_state = 75, .external_lex_state = 5}, [4300] = {.lex_state = 75, .external_lex_state = 5}, - [4301] = {.lex_state = 75, .external_lex_state = 2}, + [4301] = {.lex_state = 75, .external_lex_state = 5}, [4302] = {.lex_state = 75, .external_lex_state = 5}, - [4303] = {.lex_state = 75, .external_lex_state = 2}, - [4304] = {.lex_state = 75, .external_lex_state = 2}, - [4305] = {.lex_state = 75, .external_lex_state = 2}, - [4306] = {.lex_state = 75, .external_lex_state = 2}, - [4307] = {.lex_state = 75, .external_lex_state = 5}, - [4308] = {.lex_state = 75, .external_lex_state = 2}, - [4309] = {.lex_state = 75, .external_lex_state = 2}, + [4303] = {.lex_state = 75, .external_lex_state = 5}, + [4304] = {.lex_state = 75, .external_lex_state = 5}, + [4305] = {.lex_state = 75, .external_lex_state = 5}, + [4306] = {.lex_state = 75, .external_lex_state = 5}, + [4307] = {.lex_state = 75, .external_lex_state = 2}, + [4308] = {.lex_state = 75, .external_lex_state = 5}, + [4309] = {.lex_state = 75, .external_lex_state = 5}, [4310] = {.lex_state = 75, .external_lex_state = 5}, [4311] = {.lex_state = 75, .external_lex_state = 5}, - [4312] = {.lex_state = 75, .external_lex_state = 2}, - [4313] = {.lex_state = 75, .external_lex_state = 5}, + [4312] = {.lex_state = 75, .external_lex_state = 5}, + [4313] = {.lex_state = 8, .external_lex_state = 2}, [4314] = {.lex_state = 75, .external_lex_state = 5}, - [4315] = {.lex_state = 75, .external_lex_state = 5}, - [4316] = {.lex_state = 75, .external_lex_state = 5}, - [4317] = {.lex_state = 75, .external_lex_state = 2}, + [4315] = {.lex_state = 75, .external_lex_state = 2}, + [4316] = {.lex_state = 75, .external_lex_state = 2}, + [4317] = {.lex_state = 75, .external_lex_state = 5}, [4318] = {.lex_state = 75, .external_lex_state = 5}, - [4319] = {.lex_state = 75, .external_lex_state = 2}, - [4320] = {.lex_state = 75, .external_lex_state = 2}, - [4321] = {.lex_state = 75, .external_lex_state = 2}, - [4322] = {.lex_state = 75, .external_lex_state = 2}, - [4323] = {.lex_state = 75, .external_lex_state = 2}, - [4324] = {.lex_state = 75, .external_lex_state = 6}, + [4319] = {.lex_state = 75, .external_lex_state = 5}, + [4320] = {.lex_state = 75, .external_lex_state = 5}, + [4321] = {.lex_state = 75, .external_lex_state = 5}, + [4322] = {.lex_state = 75, .external_lex_state = 5}, + [4323] = {.lex_state = 75, .external_lex_state = 5}, + [4324] = {.lex_state = 75, .external_lex_state = 2}, [4325] = {.lex_state = 75, .external_lex_state = 5}, - [4326] = {.lex_state = 75, .external_lex_state = 2}, + [4326] = {.lex_state = 75, .external_lex_state = 5}, [4327] = {.lex_state = 75, .external_lex_state = 5}, [4328] = {.lex_state = 75, .external_lex_state = 5}, - [4329] = {.lex_state = 75, .external_lex_state = 2}, + [4329] = {.lex_state = 75, .external_lex_state = 6}, [4330] = {.lex_state = 75, .external_lex_state = 5}, [4331] = {.lex_state = 75, .external_lex_state = 5}, - [4332] = {.lex_state = 75, .external_lex_state = 5}, - [4333] = {.lex_state = 75, .external_lex_state = 5}, - [4334] = {.lex_state = 75, .external_lex_state = 5}, - [4335] = {.lex_state = 75, .external_lex_state = 2}, + [4332] = {.lex_state = 75, .external_lex_state = 2}, + [4333] = {.lex_state = 75, .external_lex_state = 2}, + [4334] = {.lex_state = 75, .external_lex_state = 2}, + [4335] = {.lex_state = 75, .external_lex_state = 6}, [4336] = {.lex_state = 75, .external_lex_state = 5}, - [4337] = {.lex_state = 75, .external_lex_state = 5}, + [4337] = {.lex_state = 75, .external_lex_state = 6}, [4338] = {.lex_state = 75, .external_lex_state = 5}, - [4339] = {.lex_state = 75, .external_lex_state = 2}, - [4340] = {.lex_state = 75, .external_lex_state = 2}, + [4339] = {.lex_state = 75, .external_lex_state = 5}, + [4340] = {.lex_state = 75, .external_lex_state = 5}, [4341] = {.lex_state = 75, .external_lex_state = 2}, - [4342] = {.lex_state = 75, .external_lex_state = 5}, - [4343] = {.lex_state = 75, .external_lex_state = 5}, - [4344] = {.lex_state = 75, .external_lex_state = 5}, + [4342] = {.lex_state = 75, .external_lex_state = 2}, + [4343] = {.lex_state = 75, .external_lex_state = 6}, + [4344] = {.lex_state = 75, .external_lex_state = 2}, [4345] = {.lex_state = 75, .external_lex_state = 5}, [4346] = {.lex_state = 75, .external_lex_state = 5}, [4347] = {.lex_state = 75, .external_lex_state = 5}, - [4348] = {.lex_state = 75, .external_lex_state = 2}, - [4349] = {.lex_state = 75, .external_lex_state = 5}, - [4350] = {.lex_state = 8, .external_lex_state = 2}, + [4348] = {.lex_state = 75, .external_lex_state = 5}, + [4349] = {.lex_state = 75, .external_lex_state = 2}, + [4350] = {.lex_state = 75, .external_lex_state = 5}, [4351] = {.lex_state = 8, .external_lex_state = 2}, - [4352] = {.lex_state = 75, .external_lex_state = 5}, - [4353] = {.lex_state = 75, .external_lex_state = 5}, - [4354] = {.lex_state = 75, .external_lex_state = 2}, - [4355] = {.lex_state = 75, .external_lex_state = 6}, + [4352] = {.lex_state = 75, .external_lex_state = 2}, + [4353] = {.lex_state = 75, .external_lex_state = 2}, + [4354] = {.lex_state = 75, .external_lex_state = 5}, + [4355] = {.lex_state = 75, .external_lex_state = 2}, [4356] = {.lex_state = 75, .external_lex_state = 5}, [4357] = {.lex_state = 75, .external_lex_state = 5}, - [4358] = {.lex_state = 75, .external_lex_state = 5}, - [4359] = {.lex_state = 75, .external_lex_state = 2}, + [4358] = {.lex_state = 75, .external_lex_state = 2}, + [4359] = {.lex_state = 75, .external_lex_state = 5}, [4360] = {.lex_state = 75, .external_lex_state = 5}, [4361] = {.lex_state = 75, .external_lex_state = 5}, [4362] = {.lex_state = 75, .external_lex_state = 5}, - [4363] = {.lex_state = 75, .external_lex_state = 5}, - [4364] = {.lex_state = 75, .external_lex_state = 5}, - [4365] = {.lex_state = 75, .external_lex_state = 5}, + [4363] = {.lex_state = 75, .external_lex_state = 2}, + [4364] = {.lex_state = 75, .external_lex_state = 2}, + [4365] = {.lex_state = 8, .external_lex_state = 2}, [4366] = {.lex_state = 75, .external_lex_state = 5}, [4367] = {.lex_state = 75, .external_lex_state = 5}, [4368] = {.lex_state = 75, .external_lex_state = 5}, @@ -17296,172 +17336,172 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4370] = {.lex_state = 75, .external_lex_state = 5}, [4371] = {.lex_state = 75, .external_lex_state = 5}, [4372] = {.lex_state = 75, .external_lex_state = 5}, - [4373] = {.lex_state = 7, .external_lex_state = 2}, + [4373] = {.lex_state = 75, .external_lex_state = 5}, [4374] = {.lex_state = 75, .external_lex_state = 5}, [4375] = {.lex_state = 75, .external_lex_state = 5}, [4376] = {.lex_state = 75, .external_lex_state = 5}, [4377] = {.lex_state = 75, .external_lex_state = 5}, [4378] = {.lex_state = 75, .external_lex_state = 5}, - [4379] = {.lex_state = 75, .external_lex_state = 5}, - [4380] = {.lex_state = 16, .external_lex_state = 9}, - [4381] = {.lex_state = 16, .external_lex_state = 9}, - [4382] = {.lex_state = 75, .external_lex_state = 2}, - [4383] = {.lex_state = 75, .external_lex_state = 2}, - [4384] = {.lex_state = 75, .external_lex_state = 2}, + [4379] = {.lex_state = 13, .external_lex_state = 8}, + [4380] = {.lex_state = 75, .external_lex_state = 2}, + [4381] = {.lex_state = 75, .external_lex_state = 2}, + [4382] = {.lex_state = 75, .external_lex_state = 5}, + [4383] = {.lex_state = 75, .external_lex_state = 5}, + [4384] = {.lex_state = 7, .external_lex_state = 2}, [4385] = {.lex_state = 75, .external_lex_state = 5}, - [4386] = {.lex_state = 75, .external_lex_state = 2}, - [4387] = {.lex_state = 75, .external_lex_state = 2}, - [4388] = {.lex_state = 75, .external_lex_state = 2}, - [4389] = {.lex_state = 7, .external_lex_state = 2}, - [4390] = {.lex_state = 12, .external_lex_state = 9}, - [4391] = {.lex_state = 75, .external_lex_state = 2}, - [4392] = {.lex_state = 16, .external_lex_state = 9}, - [4393] = {.lex_state = 12, .external_lex_state = 9}, - [4394] = {.lex_state = 12, .external_lex_state = 9}, - [4395] = {.lex_state = 16, .external_lex_state = 9}, - [4396] = {.lex_state = 16, .external_lex_state = 9}, - [4397] = {.lex_state = 75, .external_lex_state = 2}, + [4386] = {.lex_state = 75, .external_lex_state = 5}, + [4387] = {.lex_state = 75, .external_lex_state = 5}, + [4388] = {.lex_state = 75, .external_lex_state = 5}, + [4389] = {.lex_state = 75, .external_lex_state = 5}, + [4390] = {.lex_state = 75, .external_lex_state = 5}, + [4391] = {.lex_state = 75, .external_lex_state = 5}, + [4392] = {.lex_state = 75, .external_lex_state = 5}, + [4393] = {.lex_state = 75, .external_lex_state = 5}, + [4394] = {.lex_state = 75, .external_lex_state = 5}, + [4395] = {.lex_state = 75, .external_lex_state = 6}, + [4396] = {.lex_state = 75, .external_lex_state = 5}, + [4397] = {.lex_state = 75, .external_lex_state = 5}, [4398] = {.lex_state = 75, .external_lex_state = 2}, - [4399] = {.lex_state = 2, .external_lex_state = 2}, - [4400] = {.lex_state = 2, .external_lex_state = 2}, - [4401] = {.lex_state = 2, .external_lex_state = 2}, - [4402] = {.lex_state = 12, .external_lex_state = 9}, - [4403] = {.lex_state = 75, .external_lex_state = 2}, - [4404] = {.lex_state = 12, .external_lex_state = 9}, - [4405] = {.lex_state = 75, .external_lex_state = 2}, - [4406] = {.lex_state = 75, .external_lex_state = 2}, - [4407] = {.lex_state = 75, .external_lex_state = 2}, - [4408] = {.lex_state = 75, .external_lex_state = 2}, - [4409] = {.lex_state = 75, .external_lex_state = 2}, - [4410] = {.lex_state = 75, .external_lex_state = 2}, - [4411] = {.lex_state = 16, .external_lex_state = 9}, - [4412] = {.lex_state = 12, .external_lex_state = 9}, - [4413] = {.lex_state = 75, .external_lex_state = 2}, - [4414] = {.lex_state = 75, .external_lex_state = 2}, - [4415] = {.lex_state = 75, .external_lex_state = 2}, + [4399] = {.lex_state = 75, .external_lex_state = 5}, + [4400] = {.lex_state = 75, .external_lex_state = 5}, + [4401] = {.lex_state = 75, .external_lex_state = 5}, + [4402] = {.lex_state = 75, .external_lex_state = 5}, + [4403] = {.lex_state = 13, .external_lex_state = 8}, + [4404] = {.lex_state = 75, .external_lex_state = 5}, + [4405] = {.lex_state = 75, .external_lex_state = 5}, + [4406] = {.lex_state = 75, .external_lex_state = 5}, + [4407] = {.lex_state = 75, .external_lex_state = 5}, + [4408] = {.lex_state = 75, .external_lex_state = 5}, + [4409] = {.lex_state = 75, .external_lex_state = 5}, + [4410] = {.lex_state = 75, .external_lex_state = 5}, + [4411] = {.lex_state = 7, .external_lex_state = 2}, + [4412] = {.lex_state = 75, .external_lex_state = 5}, + [4413] = {.lex_state = 75, .external_lex_state = 6}, + [4414] = {.lex_state = 75, .external_lex_state = 5}, + [4415] = {.lex_state = 75, .external_lex_state = 5}, [4416] = {.lex_state = 75, .external_lex_state = 5}, - [4417] = {.lex_state = 75, .external_lex_state = 5}, + [4417] = {.lex_state = 2, .external_lex_state = 2}, [4418] = {.lex_state = 75, .external_lex_state = 2}, [4419] = {.lex_state = 75, .external_lex_state = 2}, - [4420] = {.lex_state = 75, .external_lex_state = 2}, - [4421] = {.lex_state = 7, .external_lex_state = 2}, + [4420] = {.lex_state = 2, .external_lex_state = 2}, + [4421] = {.lex_state = 75, .external_lex_state = 2}, [4422] = {.lex_state = 75, .external_lex_state = 2}, [4423] = {.lex_state = 75, .external_lex_state = 2}, [4424] = {.lex_state = 75, .external_lex_state = 2}, - [4425] = {.lex_state = 75, .external_lex_state = 2}, - [4426] = {.lex_state = 75, .external_lex_state = 5}, - [4427] = {.lex_state = 75, .external_lex_state = 5}, + [4425] = {.lex_state = 16, .external_lex_state = 9}, + [4426] = {.lex_state = 75, .external_lex_state = 2}, + [4427] = {.lex_state = 75, .external_lex_state = 2}, [4428] = {.lex_state = 75, .external_lex_state = 2}, - [4429] = {.lex_state = 75, .external_lex_state = 2}, - [4430] = {.lex_state = 75, .external_lex_state = 2}, + [4429] = {.lex_state = 75, .external_lex_state = 5}, + [4430] = {.lex_state = 75, .external_lex_state = 5}, [4431] = {.lex_state = 75, .external_lex_state = 2}, [4432] = {.lex_state = 75, .external_lex_state = 2}, - [4433] = {.lex_state = 75, .external_lex_state = 2}, + [4433] = {.lex_state = 16, .external_lex_state = 9}, [4434] = {.lex_state = 75, .external_lex_state = 2}, - [4435] = {.lex_state = 75, .external_lex_state = 2}, + [4435] = {.lex_state = 75, .external_lex_state = 5}, [4436] = {.lex_state = 75, .external_lex_state = 2}, [4437] = {.lex_state = 75, .external_lex_state = 2}, - [4438] = {.lex_state = 75, .external_lex_state = 2}, + [4438] = {.lex_state = 75, .external_lex_state = 5}, [4439] = {.lex_state = 75, .external_lex_state = 2}, - [4440] = {.lex_state = 75, .external_lex_state = 6}, - [4441] = {.lex_state = 75, .external_lex_state = 2}, - [4442] = {.lex_state = 75, .external_lex_state = 2}, - [4443] = {.lex_state = 16, .external_lex_state = 9}, - [4444] = {.lex_state = 75, .external_lex_state = 2}, - [4445] = {.lex_state = 13, .external_lex_state = 7}, + [4440] = {.lex_state = 75, .external_lex_state = 2}, + [4441] = {.lex_state = 75, .external_lex_state = 5}, + [4442] = {.lex_state = 12, .external_lex_state = 9}, + [4443] = {.lex_state = 75, .external_lex_state = 2}, + [4444] = {.lex_state = 16, .external_lex_state = 9}, + [4445] = {.lex_state = 75, .external_lex_state = 2}, [4446] = {.lex_state = 75, .external_lex_state = 2}, - [4447] = {.lex_state = 2, .external_lex_state = 2}, - [4448] = {.lex_state = 75, .external_lex_state = 2}, + [4447] = {.lex_state = 75, .external_lex_state = 5}, + [4448] = {.lex_state = 12, .external_lex_state = 9}, [4449] = {.lex_state = 75, .external_lex_state = 2}, [4450] = {.lex_state = 75, .external_lex_state = 5}, - [4451] = {.lex_state = 75, .external_lex_state = 5}, + [4451] = {.lex_state = 7, .external_lex_state = 2}, [4452] = {.lex_state = 16, .external_lex_state = 9}, - [4453] = {.lex_state = 12, .external_lex_state = 9}, - [4454] = {.lex_state = 75, .external_lex_state = 2}, - [4455] = {.lex_state = 75, .external_lex_state = 5}, - [4456] = {.lex_state = 16, .external_lex_state = 9}, + [4453] = {.lex_state = 75, .external_lex_state = 5}, + [4454] = {.lex_state = 12, .external_lex_state = 9}, + [4455] = {.lex_state = 16, .external_lex_state = 9}, + [4456] = {.lex_state = 75, .external_lex_state = 2}, [4457] = {.lex_state = 75, .external_lex_state = 5}, - [4458] = {.lex_state = 75, .external_lex_state = 5}, - [4459] = {.lex_state = 75, .external_lex_state = 5}, - [4460] = {.lex_state = 75, .external_lex_state = 5}, + [4458] = {.lex_state = 75, .external_lex_state = 2}, + [4459] = {.lex_state = 75, .external_lex_state = 2}, + [4460] = {.lex_state = 75, .external_lex_state = 2}, [4461] = {.lex_state = 75, .external_lex_state = 2}, [4462] = {.lex_state = 75, .external_lex_state = 2}, [4463] = {.lex_state = 75, .external_lex_state = 2}, - [4464] = {.lex_state = 75, .external_lex_state = 5}, - [4465] = {.lex_state = 12, .external_lex_state = 9}, - [4466] = {.lex_state = 16, .external_lex_state = 9}, - [4467] = {.lex_state = 75, .external_lex_state = 5}, - [4468] = {.lex_state = 75, .external_lex_state = 2}, + [4464] = {.lex_state = 75, .external_lex_state = 2}, + [4465] = {.lex_state = 75, .external_lex_state = 2}, + [4466] = {.lex_state = 12, .external_lex_state = 9}, + [4467] = {.lex_state = 75, .external_lex_state = 2}, + [4468] = {.lex_state = 16, .external_lex_state = 9}, [4469] = {.lex_state = 75, .external_lex_state = 5}, [4470] = {.lex_state = 75, .external_lex_state = 2}, - [4471] = {.lex_state = 12, .external_lex_state = 9}, + [4471] = {.lex_state = 13, .external_lex_state = 7}, [4472] = {.lex_state = 75, .external_lex_state = 2}, [4473] = {.lex_state = 75, .external_lex_state = 2}, [4474] = {.lex_state = 75, .external_lex_state = 2}, [4475] = {.lex_state = 75, .external_lex_state = 2}, - [4476] = {.lex_state = 12, .external_lex_state = 9}, + [4476] = {.lex_state = 16, .external_lex_state = 9}, [4477] = {.lex_state = 75, .external_lex_state = 2}, - [4478] = {.lex_state = 16, .external_lex_state = 9}, + [4478] = {.lex_state = 75, .external_lex_state = 2}, [4479] = {.lex_state = 75, .external_lex_state = 2}, - [4480] = {.lex_state = 75, .external_lex_state = 2}, + [4480] = {.lex_state = 75, .external_lex_state = 5}, [4481] = {.lex_state = 75, .external_lex_state = 2}, - [4482] = {.lex_state = 16, .external_lex_state = 9}, - [4483] = {.lex_state = 75, .external_lex_state = 2}, + [4482] = {.lex_state = 12, .external_lex_state = 9}, + [4483] = {.lex_state = 13, .external_lex_state = 7}, [4484] = {.lex_state = 75, .external_lex_state = 2}, - [4485] = {.lex_state = 2, .external_lex_state = 2}, + [4485] = {.lex_state = 16, .external_lex_state = 9}, [4486] = {.lex_state = 75, .external_lex_state = 2}, - [4487] = {.lex_state = 13, .external_lex_state = 7}, - [4488] = {.lex_state = 75, .external_lex_state = 2}, - [4489] = {.lex_state = 75, .external_lex_state = 2}, - [4490] = {.lex_state = 75, .external_lex_state = 2}, + [4487] = {.lex_state = 75, .external_lex_state = 2}, + [4488] = {.lex_state = 2, .external_lex_state = 2}, + [4489] = {.lex_state = 12, .external_lex_state = 9}, + [4490] = {.lex_state = 12, .external_lex_state = 9}, [4491] = {.lex_state = 75, .external_lex_state = 2}, [4492] = {.lex_state = 75, .external_lex_state = 2}, - [4493] = {.lex_state = 12, .external_lex_state = 9}, - [4494] = {.lex_state = 12, .external_lex_state = 9}, - [4495] = {.lex_state = 16, .external_lex_state = 9}, - [4496] = {.lex_state = 16, .external_lex_state = 9}, - [4497] = {.lex_state = 75, .external_lex_state = 2}, - [4498] = {.lex_state = 75, .external_lex_state = 2}, + [4493] = {.lex_state = 75, .external_lex_state = 2}, + [4494] = {.lex_state = 16, .external_lex_state = 9}, + [4495] = {.lex_state = 12, .external_lex_state = 9}, + [4496] = {.lex_state = 75, .external_lex_state = 2}, + [4497] = {.lex_state = 16, .external_lex_state = 9}, + [4498] = {.lex_state = 12, .external_lex_state = 9}, [4499] = {.lex_state = 75, .external_lex_state = 2}, [4500] = {.lex_state = 75, .external_lex_state = 2}, - [4501] = {.lex_state = 75, .external_lex_state = 2}, - [4502] = {.lex_state = 75, .external_lex_state = 2}, + [4501] = {.lex_state = 12, .external_lex_state = 9}, + [4502] = {.lex_state = 16, .external_lex_state = 9}, [4503] = {.lex_state = 75, .external_lex_state = 2}, [4504] = {.lex_state = 75, .external_lex_state = 2}, [4505] = {.lex_state = 75, .external_lex_state = 2}, - [4506] = {.lex_state = 75, .external_lex_state = 5}, + [4506] = {.lex_state = 75, .external_lex_state = 2}, [4507] = {.lex_state = 75, .external_lex_state = 2}, - [4508] = {.lex_state = 75, .external_lex_state = 2}, - [4509] = {.lex_state = 12, .external_lex_state = 9}, + [4508] = {.lex_state = 75, .external_lex_state = 5}, + [4509] = {.lex_state = 75, .external_lex_state = 2}, [4510] = {.lex_state = 75, .external_lex_state = 2}, - [4511] = {.lex_state = 16, .external_lex_state = 9}, + [4511] = {.lex_state = 12, .external_lex_state = 9}, [4512] = {.lex_state = 12, .external_lex_state = 9}, - [4513] = {.lex_state = 12, .external_lex_state = 9}, + [4513] = {.lex_state = 16, .external_lex_state = 9}, [4514] = {.lex_state = 75, .external_lex_state = 2}, - [4515] = {.lex_state = 75, .external_lex_state = 5}, - [4516] = {.lex_state = 75, .external_lex_state = 5}, + [4515] = {.lex_state = 16, .external_lex_state = 9}, + [4516] = {.lex_state = 16, .external_lex_state = 9}, [4517] = {.lex_state = 75, .external_lex_state = 5}, - [4518] = {.lex_state = 75, .external_lex_state = 5}, - [4519] = {.lex_state = 75, .external_lex_state = 5}, - [4520] = {.lex_state = 75, .external_lex_state = 5}, - [4521] = {.lex_state = 75, .external_lex_state = 5}, - [4522] = {.lex_state = 75, .external_lex_state = 5}, + [4518] = {.lex_state = 12, .external_lex_state = 9}, + [4519] = {.lex_state = 75, .external_lex_state = 2}, + [4520] = {.lex_state = 16, .external_lex_state = 9}, + [4521] = {.lex_state = 75, .external_lex_state = 6}, + [4522] = {.lex_state = 75, .external_lex_state = 2}, [4523] = {.lex_state = 75, .external_lex_state = 2}, [4524] = {.lex_state = 75, .external_lex_state = 2}, [4525] = {.lex_state = 75, .external_lex_state = 5}, - [4526] = {.lex_state = 75, .external_lex_state = 5}, - [4527] = {.lex_state = 75, .external_lex_state = 5}, - [4528] = {.lex_state = 75, .external_lex_state = 5}, - [4529] = {.lex_state = 75, .external_lex_state = 5}, - [4530] = {.lex_state = 75, .external_lex_state = 5}, - [4531] = {.lex_state = 75, .external_lex_state = 2}, + [4526] = {.lex_state = 75, .external_lex_state = 2}, + [4527] = {.lex_state = 75, .external_lex_state = 2}, + [4528] = {.lex_state = 12, .external_lex_state = 9}, + [4529] = {.lex_state = 12, .external_lex_state = 9}, + [4530] = {.lex_state = 75, .external_lex_state = 2}, + [4531] = {.lex_state = 2, .external_lex_state = 2}, [4532] = {.lex_state = 75, .external_lex_state = 5}, [4533] = {.lex_state = 75, .external_lex_state = 2}, - [4534] = {.lex_state = 75, .external_lex_state = 5}, - [4535] = {.lex_state = 75, .external_lex_state = 5}, - [4536] = {.lex_state = 75, .external_lex_state = 5}, - [4537] = {.lex_state = 75, .external_lex_state = 2}, - [4538] = {.lex_state = 75, .external_lex_state = 5}, + [4534] = {.lex_state = 75, .external_lex_state = 2}, + [4535] = {.lex_state = 75, .external_lex_state = 2}, + [4536] = {.lex_state = 75, .external_lex_state = 2}, + [4537] = {.lex_state = 75, .external_lex_state = 5}, + [4538] = {.lex_state = 7, .external_lex_state = 2}, [4539] = {.lex_state = 75, .external_lex_state = 5}, [4540] = {.lex_state = 75, .external_lex_state = 2}, [4541] = {.lex_state = 75, .external_lex_state = 2}, @@ -17469,316 +17509,316 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4543] = {.lex_state = 75, .external_lex_state = 2}, [4544] = {.lex_state = 75, .external_lex_state = 2}, [4545] = {.lex_state = 75, .external_lex_state = 2}, - [4546] = {.lex_state = 75, .external_lex_state = 5}, - [4547] = {.lex_state = 75, .external_lex_state = 5}, - [4548] = {.lex_state = 75, .external_lex_state = 5}, - [4549] = {.lex_state = 75, .external_lex_state = 5}, - [4550] = {.lex_state = 75, .external_lex_state = 5}, - [4551] = {.lex_state = 75, .external_lex_state = 5}, - [4552] = {.lex_state = 75, .external_lex_state = 2}, - [4553] = {.lex_state = 75, .external_lex_state = 2}, - [4554] = {.lex_state = 75, .external_lex_state = 2}, - [4555] = {.lex_state = 75, .external_lex_state = 2}, - [4556] = {.lex_state = 75, .external_lex_state = 5}, + [4546] = {.lex_state = 75, .external_lex_state = 2}, + [4547] = {.lex_state = 75, .external_lex_state = 2}, + [4548] = {.lex_state = 75, .external_lex_state = 2}, + [4549] = {.lex_state = 75, .external_lex_state = 2}, + [4550] = {.lex_state = 75, .external_lex_state = 2}, + [4551] = {.lex_state = 75, .external_lex_state = 2}, + [4552] = {.lex_state = 2, .external_lex_state = 2}, + [4553] = {.lex_state = 75, .external_lex_state = 5}, + [4554] = {.lex_state = 75, .external_lex_state = 5}, + [4555] = {.lex_state = 75, .external_lex_state = 5}, + [4556] = {.lex_state = 75, .external_lex_state = 2}, [4557] = {.lex_state = 75, .external_lex_state = 5}, [4558] = {.lex_state = 75, .external_lex_state = 5}, [4559] = {.lex_state = 75, .external_lex_state = 5}, - [4560] = {.lex_state = 75, .external_lex_state = 5}, - [4561] = {.lex_state = 75, .external_lex_state = 5}, - [4562] = {.lex_state = 75, .external_lex_state = 5}, - [4563] = {.lex_state = 75, .external_lex_state = 5}, + [4560] = {.lex_state = 75, .external_lex_state = 2}, + [4561] = {.lex_state = 75, .external_lex_state = 2}, + [4562] = {.lex_state = 75, .external_lex_state = 2}, + [4563] = {.lex_state = 75, .external_lex_state = 2}, [4564] = {.lex_state = 75, .external_lex_state = 5}, - [4565] = {.lex_state = 75, .external_lex_state = 5}, - [4566] = {.lex_state = 75, .external_lex_state = 5}, + [4565] = {.lex_state = 75, .external_lex_state = 2}, + [4566] = {.lex_state = 75, .external_lex_state = 2}, [4567] = {.lex_state = 75, .external_lex_state = 5}, - [4568] = {.lex_state = 75, .external_lex_state = 2}, - [4569] = {.lex_state = 75, .external_lex_state = 5}, - [4570] = {.lex_state = 75, .external_lex_state = 5}, - [4571] = {.lex_state = 75, .external_lex_state = 5}, + [4568] = {.lex_state = 75, .external_lex_state = 5}, + [4569] = {.lex_state = 75, .external_lex_state = 2}, + [4570] = {.lex_state = 75, .external_lex_state = 2}, + [4571] = {.lex_state = 75, .external_lex_state = 2}, [4572] = {.lex_state = 75, .external_lex_state = 5}, [4573] = {.lex_state = 75, .external_lex_state = 5}, [4574] = {.lex_state = 75, .external_lex_state = 5}, [4575] = {.lex_state = 75, .external_lex_state = 5}, - [4576] = {.lex_state = 75, .external_lex_state = 2}, + [4576] = {.lex_state = 75, .external_lex_state = 5}, [4577] = {.lex_state = 75, .external_lex_state = 5}, - [4578] = {.lex_state = 75, .external_lex_state = 2}, + [4578] = {.lex_state = 75, .external_lex_state = 5}, [4579] = {.lex_state = 75, .external_lex_state = 5}, [4580] = {.lex_state = 75, .external_lex_state = 5}, [4581] = {.lex_state = 75, .external_lex_state = 5}, - [4582] = {.lex_state = 75, .external_lex_state = 5}, - [4583] = {.lex_state = 75, .external_lex_state = 5}, - [4584] = {.lex_state = 75, .external_lex_state = 5}, - [4585] = {.lex_state = 75, .external_lex_state = 5}, - [4586] = {.lex_state = 75, .external_lex_state = 2}, + [4582] = {.lex_state = 75, .external_lex_state = 2}, + [4583] = {.lex_state = 75, .external_lex_state = 2}, + [4584] = {.lex_state = 75, .external_lex_state = 2}, + [4585] = {.lex_state = 75, .external_lex_state = 2}, + [4586] = {.lex_state = 75, .external_lex_state = 5}, [4587] = {.lex_state = 75, .external_lex_state = 2}, [4588] = {.lex_state = 75, .external_lex_state = 2}, [4589] = {.lex_state = 75, .external_lex_state = 5}, - [4590] = {.lex_state = 75, .external_lex_state = 2}, - [4591] = {.lex_state = 75, .external_lex_state = 2}, - [4592] = {.lex_state = 75, .external_lex_state = 5}, - [4593] = {.lex_state = 75, .external_lex_state = 5}, + [4590] = {.lex_state = 75, .external_lex_state = 5}, + [4591] = {.lex_state = 75, .external_lex_state = 5}, + [4592] = {.lex_state = 75, .external_lex_state = 2}, + [4593] = {.lex_state = 75, .external_lex_state = 2}, [4594] = {.lex_state = 75, .external_lex_state = 2}, [4595] = {.lex_state = 75, .external_lex_state = 2}, [4596] = {.lex_state = 75, .external_lex_state = 2}, - [4597] = {.lex_state = 75, .external_lex_state = 2}, + [4597] = {.lex_state = 75, .external_lex_state = 5}, [4598] = {.lex_state = 75, .external_lex_state = 5}, [4599] = {.lex_state = 75, .external_lex_state = 2}, - [4600] = {.lex_state = 75, .external_lex_state = 5}, + [4600] = {.lex_state = 75, .external_lex_state = 2}, [4601] = {.lex_state = 75, .external_lex_state = 5}, - [4602] = {.lex_state = 75, .external_lex_state = 2}, + [4602] = {.lex_state = 75, .external_lex_state = 5}, [4603] = {.lex_state = 75, .external_lex_state = 5}, [4604] = {.lex_state = 75, .external_lex_state = 5}, [4605] = {.lex_state = 75, .external_lex_state = 5}, - [4606] = {.lex_state = 75, .external_lex_state = 5}, + [4606] = {.lex_state = 75, .external_lex_state = 2}, [4607] = {.lex_state = 75, .external_lex_state = 5}, - [4608] = {.lex_state = 75, .external_lex_state = 5}, + [4608] = {.lex_state = 75, .external_lex_state = 2}, [4609] = {.lex_state = 75, .external_lex_state = 5}, [4610] = {.lex_state = 75, .external_lex_state = 5}, [4611] = {.lex_state = 75, .external_lex_state = 5}, [4612] = {.lex_state = 75, .external_lex_state = 5}, - [4613] = {.lex_state = 75, .external_lex_state = 5}, + [4613] = {.lex_state = 75, .external_lex_state = 2}, [4614] = {.lex_state = 75, .external_lex_state = 5}, - [4615] = {.lex_state = 75, .external_lex_state = 5}, - [4616] = {.lex_state = 75, .external_lex_state = 5}, + [4615] = {.lex_state = 75, .external_lex_state = 2}, + [4616] = {.lex_state = 75, .external_lex_state = 2}, [4617] = {.lex_state = 75, .external_lex_state = 5}, - [4618] = {.lex_state = 75, .external_lex_state = 5}, + [4618] = {.lex_state = 75, .external_lex_state = 2}, [4619] = {.lex_state = 75, .external_lex_state = 5}, [4620] = {.lex_state = 75, .external_lex_state = 2}, - [4621] = {.lex_state = 75, .external_lex_state = 2}, + [4621] = {.lex_state = 2, .external_lex_state = 2}, [4622] = {.lex_state = 75, .external_lex_state = 2}, [4623] = {.lex_state = 75, .external_lex_state = 5}, [4624] = {.lex_state = 75, .external_lex_state = 5}, [4625] = {.lex_state = 75, .external_lex_state = 5}, [4626] = {.lex_state = 75, .external_lex_state = 5}, - [4627] = {.lex_state = 75, .external_lex_state = 5}, + [4627] = {.lex_state = 75, .external_lex_state = 2}, [4628] = {.lex_state = 75, .external_lex_state = 5}, [4629] = {.lex_state = 75, .external_lex_state = 2}, - [4630] = {.lex_state = 75, .external_lex_state = 5}, - [4631] = {.lex_state = 75, .external_lex_state = 5}, - [4632] = {.lex_state = 75, .external_lex_state = 5}, - [4633] = {.lex_state = 75, .external_lex_state = 5}, + [4630] = {.lex_state = 75, .external_lex_state = 2}, + [4631] = {.lex_state = 75, .external_lex_state = 2}, + [4632] = {.lex_state = 75, .external_lex_state = 2}, + [4633] = {.lex_state = 75, .external_lex_state = 2}, [4634] = {.lex_state = 75, .external_lex_state = 5}, - [4635] = {.lex_state = 75, .external_lex_state = 5}, - [4636] = {.lex_state = 75, .external_lex_state = 2}, - [4637] = {.lex_state = 75, .external_lex_state = 5}, + [4635] = {.lex_state = 75, .external_lex_state = 2}, + [4636] = {.lex_state = 75, .external_lex_state = 5}, + [4637] = {.lex_state = 75, .external_lex_state = 2}, [4638] = {.lex_state = 75, .external_lex_state = 2}, [4639] = {.lex_state = 75, .external_lex_state = 2}, - [4640] = {.lex_state = 75, .external_lex_state = 5}, + [4640] = {.lex_state = 75, .external_lex_state = 2}, [4641] = {.lex_state = 75, .external_lex_state = 5}, - [4642] = {.lex_state = 75, .external_lex_state = 5}, - [4643] = {.lex_state = 2, .external_lex_state = 2}, - [4644] = {.lex_state = 75, .external_lex_state = 2}, - [4645] = {.lex_state = 75, .external_lex_state = 5}, - [4646] = {.lex_state = 75, .external_lex_state = 2}, + [4642] = {.lex_state = 75, .external_lex_state = 2}, + [4643] = {.lex_state = 75, .external_lex_state = 5}, + [4644] = {.lex_state = 75, .external_lex_state = 5}, + [4645] = {.lex_state = 75, .external_lex_state = 2}, + [4646] = {.lex_state = 75, .external_lex_state = 5}, [4647] = {.lex_state = 75, .external_lex_state = 2}, - [4648] = {.lex_state = 75, .external_lex_state = 5}, + [4648] = {.lex_state = 75, .external_lex_state = 2}, [4649] = {.lex_state = 75, .external_lex_state = 2}, [4650] = {.lex_state = 75, .external_lex_state = 2}, - [4651] = {.lex_state = 2, .external_lex_state = 2}, + [4651] = {.lex_state = 75, .external_lex_state = 2}, [4652] = {.lex_state = 75, .external_lex_state = 5}, [4653] = {.lex_state = 75, .external_lex_state = 2}, - [4654] = {.lex_state = 75, .external_lex_state = 2}, + [4654] = {.lex_state = 75, .external_lex_state = 5}, [4655] = {.lex_state = 75, .external_lex_state = 5}, - [4656] = {.lex_state = 75, .external_lex_state = 2}, + [4656] = {.lex_state = 75, .external_lex_state = 5}, [4657] = {.lex_state = 75, .external_lex_state = 5}, [4658] = {.lex_state = 75, .external_lex_state = 5}, [4659] = {.lex_state = 75, .external_lex_state = 5}, [4660] = {.lex_state = 75, .external_lex_state = 5}, - [4661] = {.lex_state = 75, .external_lex_state = 2}, + [4661] = {.lex_state = 75, .external_lex_state = 5}, [4662] = {.lex_state = 75, .external_lex_state = 5}, [4663] = {.lex_state = 75, .external_lex_state = 2}, [4664] = {.lex_state = 75, .external_lex_state = 5}, - [4665] = {.lex_state = 75, .external_lex_state = 5}, - [4666] = {.lex_state = 75, .external_lex_state = 5}, - [4667] = {.lex_state = 75, .external_lex_state = 5}, + [4665] = {.lex_state = 75, .external_lex_state = 2}, + [4666] = {.lex_state = 75, .external_lex_state = 2}, + [4667] = {.lex_state = 75, .external_lex_state = 2}, [4668] = {.lex_state = 75, .external_lex_state = 2}, - [4669] = {.lex_state = 75, .external_lex_state = 5}, - [4670] = {.lex_state = 75, .external_lex_state = 5}, - [4671] = {.lex_state = 75, .external_lex_state = 2}, - [4672] = {.lex_state = 75, .external_lex_state = 2}, + [4669] = {.lex_state = 75, .external_lex_state = 2}, + [4670] = {.lex_state = 75, .external_lex_state = 2}, + [4671] = {.lex_state = 75, .external_lex_state = 5}, + [4672] = {.lex_state = 75, .external_lex_state = 5}, [4673] = {.lex_state = 75, .external_lex_state = 5}, [4674] = {.lex_state = 75, .external_lex_state = 5}, - [4675] = {.lex_state = 75, .external_lex_state = 5}, - [4676] = {.lex_state = 75, .external_lex_state = 5}, - [4677] = {.lex_state = 75, .external_lex_state = 5}, - [4678] = {.lex_state = 75, .external_lex_state = 2}, - [4679] = {.lex_state = 75, .external_lex_state = 5}, - [4680] = {.lex_state = 75, .external_lex_state = 5}, + [4675] = {.lex_state = 75, .external_lex_state = 2}, + [4676] = {.lex_state = 75, .external_lex_state = 2}, + [4677] = {.lex_state = 75, .external_lex_state = 2}, + [4678] = {.lex_state = 75, .external_lex_state = 5}, + [4679] = {.lex_state = 75, .external_lex_state = 2}, + [4680] = {.lex_state = 75, .external_lex_state = 2}, [4681] = {.lex_state = 75, .external_lex_state = 2}, - [4682] = {.lex_state = 75, .external_lex_state = 5}, - [4683] = {.lex_state = 2, .external_lex_state = 2}, - [4684] = {.lex_state = 75, .external_lex_state = 2}, - [4685] = {.lex_state = 75, .external_lex_state = 2}, - [4686] = {.lex_state = 75, .external_lex_state = 2}, - [4687] = {.lex_state = 75, .external_lex_state = 2}, - [4688] = {.lex_state = 2, .external_lex_state = 2}, + [4682] = {.lex_state = 75, .external_lex_state = 2}, + [4683] = {.lex_state = 75, .external_lex_state = 5}, + [4684] = {.lex_state = 75, .external_lex_state = 5}, + [4685] = {.lex_state = 75, .external_lex_state = 5}, + [4686] = {.lex_state = 75, .external_lex_state = 5}, + [4687] = {.lex_state = 75, .external_lex_state = 5}, + [4688] = {.lex_state = 75, .external_lex_state = 5}, [4689] = {.lex_state = 75, .external_lex_state = 5}, [4690] = {.lex_state = 75, .external_lex_state = 5}, - [4691] = {.lex_state = 75, .external_lex_state = 5}, + [4691] = {.lex_state = 75, .external_lex_state = 2}, [4692] = {.lex_state = 75, .external_lex_state = 2}, [4693] = {.lex_state = 75, .external_lex_state = 2}, - [4694] = {.lex_state = 75, .external_lex_state = 5}, - [4695] = {.lex_state = 75, .external_lex_state = 2}, + [4694] = {.lex_state = 75, .external_lex_state = 2}, + [4695] = {.lex_state = 75, .external_lex_state = 5}, [4696] = {.lex_state = 75, .external_lex_state = 5}, - [4697] = {.lex_state = 75, .external_lex_state = 2}, - [4698] = {.lex_state = 75, .external_lex_state = 2}, + [4697] = {.lex_state = 75, .external_lex_state = 5}, + [4698] = {.lex_state = 75, .external_lex_state = 5}, [4699] = {.lex_state = 75, .external_lex_state = 5}, - [4700] = {.lex_state = 75, .external_lex_state = 2}, + [4700] = {.lex_state = 75, .external_lex_state = 5}, [4701] = {.lex_state = 75, .external_lex_state = 5}, [4702] = {.lex_state = 75, .external_lex_state = 5}, - [4703] = {.lex_state = 75, .external_lex_state = 5}, + [4703] = {.lex_state = 75, .external_lex_state = 2}, [4704] = {.lex_state = 75, .external_lex_state = 5}, [4705] = {.lex_state = 75, .external_lex_state = 5}, - [4706] = {.lex_state = 75, .external_lex_state = 5}, + [4706] = {.lex_state = 75, .external_lex_state = 2}, [4707] = {.lex_state = 75, .external_lex_state = 5}, - [4708] = {.lex_state = 75, .external_lex_state = 2}, + [4708] = {.lex_state = 75, .external_lex_state = 5}, [4709] = {.lex_state = 75, .external_lex_state = 5}, [4710] = {.lex_state = 75, .external_lex_state = 5}, [4711] = {.lex_state = 75, .external_lex_state = 5}, - [4712] = {.lex_state = 75, .external_lex_state = 2}, - [4713] = {.lex_state = 75, .external_lex_state = 2}, - [4714] = {.lex_state = 75, .external_lex_state = 2}, - [4715] = {.lex_state = 75, .external_lex_state = 5}, - [4716] = {.lex_state = 75, .external_lex_state = 2}, - [4717] = {.lex_state = 75, .external_lex_state = 5}, - [4718] = {.lex_state = 75, .external_lex_state = 5}, + [4712] = {.lex_state = 75, .external_lex_state = 5}, + [4713] = {.lex_state = 75, .external_lex_state = 5}, + [4714] = {.lex_state = 75, .external_lex_state = 5}, + [4715] = {.lex_state = 75, .external_lex_state = 2}, + [4716] = {.lex_state = 75, .external_lex_state = 5}, + [4717] = {.lex_state = 75, .external_lex_state = 2}, + [4718] = {.lex_state = 75, .external_lex_state = 2}, [4719] = {.lex_state = 75, .external_lex_state = 5}, - [4720] = {.lex_state = 75, .external_lex_state = 5}, - [4721] = {.lex_state = 75, .external_lex_state = 2}, + [4720] = {.lex_state = 75, .external_lex_state = 2}, + [4721] = {.lex_state = 75, .external_lex_state = 5}, [4722] = {.lex_state = 75, .external_lex_state = 5}, [4723] = {.lex_state = 75, .external_lex_state = 5}, [4724] = {.lex_state = 75, .external_lex_state = 5}, [4725] = {.lex_state = 75, .external_lex_state = 5}, [4726] = {.lex_state = 75, .external_lex_state = 5}, - [4727] = {.lex_state = 75, .external_lex_state = 5}, + [4727] = {.lex_state = 75, .external_lex_state = 2}, [4728] = {.lex_state = 75, .external_lex_state = 5}, [4729] = {.lex_state = 75, .external_lex_state = 5}, [4730] = {.lex_state = 75, .external_lex_state = 2}, [4731] = {.lex_state = 75, .external_lex_state = 5}, - [4732] = {.lex_state = 75, .external_lex_state = 5}, - [4733] = {.lex_state = 75, .external_lex_state = 2}, - [4734] = {.lex_state = 75, .external_lex_state = 2}, - [4735] = {.lex_state = 75, .external_lex_state = 2}, - [4736] = {.lex_state = 75, .external_lex_state = 2}, + [4732] = {.lex_state = 75, .external_lex_state = 2}, + [4733] = {.lex_state = 75, .external_lex_state = 5}, + [4734] = {.lex_state = 75, .external_lex_state = 5}, + [4735] = {.lex_state = 75, .external_lex_state = 5}, + [4736] = {.lex_state = 75, .external_lex_state = 5}, [4737] = {.lex_state = 75, .external_lex_state = 5}, - [4738] = {.lex_state = 75, .external_lex_state = 5}, - [4739] = {.lex_state = 75, .external_lex_state = 5}, - [4740] = {.lex_state = 75, .external_lex_state = 2}, + [4738] = {.lex_state = 75, .external_lex_state = 2}, + [4739] = {.lex_state = 75, .external_lex_state = 2}, + [4740] = {.lex_state = 2, .external_lex_state = 2}, [4741] = {.lex_state = 75, .external_lex_state = 5}, [4742] = {.lex_state = 75, .external_lex_state = 5}, [4743] = {.lex_state = 75, .external_lex_state = 5}, [4744] = {.lex_state = 75, .external_lex_state = 2}, - [4745] = {.lex_state = 75, .external_lex_state = 2}, - [4746] = {.lex_state = 75, .external_lex_state = 2}, + [4745] = {.lex_state = 75, .external_lex_state = 5}, + [4746] = {.lex_state = 75, .external_lex_state = 5}, [4747] = {.lex_state = 75, .external_lex_state = 5}, [4748] = {.lex_state = 75, .external_lex_state = 5}, - [4749] = {.lex_state = 75, .external_lex_state = 5}, + [4749] = {.lex_state = 2, .external_lex_state = 2}, [4750] = {.lex_state = 75, .external_lex_state = 5}, [4751] = {.lex_state = 75, .external_lex_state = 5}, [4752] = {.lex_state = 75, .external_lex_state = 5}, - [4753] = {.lex_state = 75, .external_lex_state = 5}, - [4754] = {.lex_state = 75, .external_lex_state = 5}, + [4753] = {.lex_state = 75, .external_lex_state = 2}, + [4754] = {.lex_state = 75, .external_lex_state = 2}, [4755] = {.lex_state = 75, .external_lex_state = 5}, [4756] = {.lex_state = 75, .external_lex_state = 5}, - [4757] = {.lex_state = 75, .external_lex_state = 5}, + [4757] = {.lex_state = 75, .external_lex_state = 2}, [4758] = {.lex_state = 75, .external_lex_state = 5}, [4759] = {.lex_state = 75, .external_lex_state = 5}, [4760] = {.lex_state = 75, .external_lex_state = 5}, [4761] = {.lex_state = 75, .external_lex_state = 5}, - [4762] = {.lex_state = 75, .external_lex_state = 5}, + [4762] = {.lex_state = 75, .external_lex_state = 2}, [4763] = {.lex_state = 75, .external_lex_state = 5}, [4764] = {.lex_state = 75, .external_lex_state = 5}, [4765] = {.lex_state = 75, .external_lex_state = 5}, [4766] = {.lex_state = 75, .external_lex_state = 5}, [4767] = {.lex_state = 75, .external_lex_state = 5}, - [4768] = {.lex_state = 75, .external_lex_state = 5}, + [4768] = {.lex_state = 75, .external_lex_state = 2}, [4769] = {.lex_state = 75, .external_lex_state = 5}, [4770] = {.lex_state = 75, .external_lex_state = 5}, [4771] = {.lex_state = 75, .external_lex_state = 5}, [4772] = {.lex_state = 75, .external_lex_state = 5}, - [4773] = {.lex_state = 75, .external_lex_state = 5}, + [4773] = {.lex_state = 75, .external_lex_state = 2}, [4774] = {.lex_state = 75, .external_lex_state = 5}, [4775] = {.lex_state = 75, .external_lex_state = 5}, [4776] = {.lex_state = 75, .external_lex_state = 5}, - [4777] = {.lex_state = 75, .external_lex_state = 5}, - [4778] = {.lex_state = 75, .external_lex_state = 5}, - [4779] = {.lex_state = 75, .external_lex_state = 5}, - [4780] = {.lex_state = 2, .external_lex_state = 2}, + [4777] = {.lex_state = 75, .external_lex_state = 2}, + [4778] = {.lex_state = 75, .external_lex_state = 2}, + [4779] = {.lex_state = 75, .external_lex_state = 2}, + [4780] = {.lex_state = 75, .external_lex_state = 5}, [4781] = {.lex_state = 75, .external_lex_state = 5}, [4782] = {.lex_state = 75, .external_lex_state = 5}, - [4783] = {.lex_state = 75, .external_lex_state = 2}, - [4784] = {.lex_state = 75, .external_lex_state = 2}, - [4785] = {.lex_state = 75, .external_lex_state = 2}, + [4783] = {.lex_state = 75, .external_lex_state = 5}, + [4784] = {.lex_state = 75, .external_lex_state = 5}, + [4785] = {.lex_state = 75, .external_lex_state = 5}, [4786] = {.lex_state = 75, .external_lex_state = 5}, - [4787] = {.lex_state = 75, .external_lex_state = 2}, + [4787] = {.lex_state = 75, .external_lex_state = 5}, [4788] = {.lex_state = 75, .external_lex_state = 5}, - [4789] = {.lex_state = 75, .external_lex_state = 2}, - [4790] = {.lex_state = 75, .external_lex_state = 2}, + [4789] = {.lex_state = 75, .external_lex_state = 5}, + [4790] = {.lex_state = 75, .external_lex_state = 5}, [4791] = {.lex_state = 75, .external_lex_state = 5}, - [4792] = {.lex_state = 75, .external_lex_state = 2}, + [4792] = {.lex_state = 75, .external_lex_state = 5}, [4793] = {.lex_state = 75, .external_lex_state = 5}, [4794] = {.lex_state = 75, .external_lex_state = 5}, [4795] = {.lex_state = 75, .external_lex_state = 5}, [4796] = {.lex_state = 75, .external_lex_state = 5}, - [4797] = {.lex_state = 75, .external_lex_state = 2}, + [4797] = {.lex_state = 75, .external_lex_state = 5}, [4798] = {.lex_state = 75, .external_lex_state = 5}, [4799] = {.lex_state = 75, .external_lex_state = 5}, [4800] = {.lex_state = 75, .external_lex_state = 5}, [4801] = {.lex_state = 75, .external_lex_state = 5}, - [4802] = {.lex_state = 75, .external_lex_state = 2}, - [4803] = {.lex_state = 75, .external_lex_state = 5}, + [4802] = {.lex_state = 2, .external_lex_state = 2}, + [4803] = {.lex_state = 75, .external_lex_state = 2}, [4804] = {.lex_state = 75, .external_lex_state = 5}, - [4805] = {.lex_state = 75, .external_lex_state = 5}, + [4805] = {.lex_state = 75, .external_lex_state = 2}, [4806] = {.lex_state = 75, .external_lex_state = 2}, - [4807] = {.lex_state = 75, .external_lex_state = 5}, - [4808] = {.lex_state = 75, .external_lex_state = 2}, + [4807] = {.lex_state = 75, .external_lex_state = 2}, + [4808] = {.lex_state = 75, .external_lex_state = 5}, [4809] = {.lex_state = 75, .external_lex_state = 5}, - [4810] = {.lex_state = 75, .external_lex_state = 2}, + [4810] = {.lex_state = 75, .external_lex_state = 5}, [4811] = {.lex_state = 75, .external_lex_state = 5}, [4812] = {.lex_state = 75, .external_lex_state = 2}, [4813] = {.lex_state = 75, .external_lex_state = 5}, - [4814] = {.lex_state = 75, .external_lex_state = 2}, - [4815] = {.lex_state = 75, .external_lex_state = 2}, + [4814] = {.lex_state = 75, .external_lex_state = 5}, + [4815] = {.lex_state = 75, .external_lex_state = 5}, [4816] = {.lex_state = 75, .external_lex_state = 5}, - [4817] = {.lex_state = 75, .external_lex_state = 5}, + [4817] = {.lex_state = 75, .external_lex_state = 2}, [4818] = {.lex_state = 75, .external_lex_state = 5}, - [4819] = {.lex_state = 75, .external_lex_state = 5}, - [4820] = {.lex_state = 75, .external_lex_state = 5}, + [4819] = {.lex_state = 75, .external_lex_state = 2}, + [4820] = {.lex_state = 2, .external_lex_state = 2}, [4821] = {.lex_state = 75, .external_lex_state = 5}, - [4822] = {.lex_state = 75, .external_lex_state = 5}, - [4823] = {.lex_state = 75, .external_lex_state = 5}, - [4824] = {.lex_state = 75, .external_lex_state = 5}, + [4822] = {.lex_state = 75, .external_lex_state = 2}, + [4823] = {.lex_state = 75, .external_lex_state = 2}, + [4824] = {.lex_state = 75, .external_lex_state = 2}, [4825] = {.lex_state = 75, .external_lex_state = 5}, - [4826] = {.lex_state = 75, .external_lex_state = 5}, - [4827] = {.lex_state = 75, .external_lex_state = 5}, + [4826] = {.lex_state = 75, .external_lex_state = 2}, + [4827] = {.lex_state = 75, .external_lex_state = 2}, [4828] = {.lex_state = 75, .external_lex_state = 5}, [4829] = {.lex_state = 75, .external_lex_state = 2}, [4830] = {.lex_state = 75, .external_lex_state = 5}, [4831] = {.lex_state = 75, .external_lex_state = 5}, [4832] = {.lex_state = 75, .external_lex_state = 5}, - [4833] = {.lex_state = 75, .external_lex_state = 5}, - [4834] = {.lex_state = 75, .external_lex_state = 5}, - [4835] = {.lex_state = 75, .external_lex_state = 5}, - [4836] = {.lex_state = 75, .external_lex_state = 5}, + [4833] = {.lex_state = 75, .external_lex_state = 2}, + [4834] = {.lex_state = 75, .external_lex_state = 2}, + [4835] = {.lex_state = 75, .external_lex_state = 2}, + [4836] = {.lex_state = 13, .external_lex_state = 8}, [4837] = {.lex_state = 75, .external_lex_state = 5}, [4838] = {.lex_state = 75, .external_lex_state = 5}, - [4839] = {.lex_state = 75, .external_lex_state = 5}, + [4839] = {.lex_state = 75, .external_lex_state = 2}, [4840] = {.lex_state = 75, .external_lex_state = 5}, [4841] = {.lex_state = 75, .external_lex_state = 5}, - [4842] = {.lex_state = 75, .external_lex_state = 5}, + [4842] = {.lex_state = 75, .external_lex_state = 2}, [4843] = {.lex_state = 75, .external_lex_state = 5}, - [4844] = {.lex_state = 75, .external_lex_state = 5}, - [4845] = {.lex_state = 75, .external_lex_state = 5}, - [4846] = {.lex_state = 75, .external_lex_state = 5}, + [4844] = {.lex_state = 75, .external_lex_state = 2}, + [4845] = {.lex_state = 75, .external_lex_state = 2}, + [4846] = {.lex_state = 75, .external_lex_state = 2}, [4847] = {.lex_state = 75, .external_lex_state = 5}, - [4848] = {.lex_state = 75, .external_lex_state = 5}, - [4849] = {.lex_state = 75, .external_lex_state = 5}, + [4848] = {.lex_state = 75, .external_lex_state = 2}, + [4849] = {.lex_state = 75, .external_lex_state = 2}, [4850] = {.lex_state = 75, .external_lex_state = 5}, - [4851] = {.lex_state = 75, .external_lex_state = 5}, + [4851] = {.lex_state = 75, .external_lex_state = 2}, [4852] = {.lex_state = 75, .external_lex_state = 5}, - [4853] = {.lex_state = 75, .external_lex_state = 5}, + [4853] = {.lex_state = 75, .external_lex_state = 2}, [4854] = {.lex_state = 75, .external_lex_state = 5}, - [4855] = {.lex_state = 75, .external_lex_state = 5}, + [4855] = {.lex_state = 75, .external_lex_state = 2}, [4856] = {.lex_state = 75, .external_lex_state = 5}, [4857] = {.lex_state = 75, .external_lex_state = 5}, [4858] = {.lex_state = 75, .external_lex_state = 5}, @@ -17787,7 +17827,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4861] = {.lex_state = 75, .external_lex_state = 5}, [4862] = {.lex_state = 75, .external_lex_state = 5}, [4863] = {.lex_state = 75, .external_lex_state = 5}, - [4864] = {.lex_state = 75, .external_lex_state = 5}, + [4864] = {.lex_state = 75, .external_lex_state = 2}, [4865] = {.lex_state = 75, .external_lex_state = 5}, [4866] = {.lex_state = 75, .external_lex_state = 5}, [4867] = {.lex_state = 75, .external_lex_state = 5}, @@ -17796,44 +17836,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4870] = {.lex_state = 75, .external_lex_state = 5}, [4871] = {.lex_state = 75, .external_lex_state = 5}, [4872] = {.lex_state = 75, .external_lex_state = 5}, - [4873] = {.lex_state = 75, .external_lex_state = 5}, + [4873] = {.lex_state = 75, .external_lex_state = 2}, [4874] = {.lex_state = 75, .external_lex_state = 5}, [4875] = {.lex_state = 75, .external_lex_state = 5}, - [4876] = {.lex_state = 75, .external_lex_state = 5}, + [4876] = {.lex_state = 75, .external_lex_state = 2}, [4877] = {.lex_state = 75, .external_lex_state = 5}, - [4878] = {.lex_state = 75, .external_lex_state = 2}, - [4879] = {.lex_state = 75, .external_lex_state = 2}, - [4880] = {.lex_state = 75, .external_lex_state = 5}, - [4881] = {.lex_state = 75, .external_lex_state = 2}, + [4878] = {.lex_state = 75, .external_lex_state = 5}, + [4879] = {.lex_state = 75, .external_lex_state = 5}, + [4880] = {.lex_state = 2, .external_lex_state = 2}, + [4881] = {.lex_state = 75, .external_lex_state = 5}, [4882] = {.lex_state = 75, .external_lex_state = 5}, [4883] = {.lex_state = 75, .external_lex_state = 5}, [4884] = {.lex_state = 75, .external_lex_state = 5}, - [4885] = {.lex_state = 75, .external_lex_state = 5}, + [4885] = {.lex_state = 2, .external_lex_state = 2}, [4886] = {.lex_state = 75, .external_lex_state = 5}, - [4887] = {.lex_state = 75, .external_lex_state = 2}, + [4887] = {.lex_state = 75, .external_lex_state = 5}, [4888] = {.lex_state = 75, .external_lex_state = 5}, [4889] = {.lex_state = 75, .external_lex_state = 5}, - [4890] = {.lex_state = 75, .external_lex_state = 2}, - [4891] = {.lex_state = 2, .external_lex_state = 2}, + [4890] = {.lex_state = 75, .external_lex_state = 5}, + [4891] = {.lex_state = 75, .external_lex_state = 2}, [4892] = {.lex_state = 75, .external_lex_state = 5}, [4893] = {.lex_state = 75, .external_lex_state = 5}, - [4894] = {.lex_state = 75, .external_lex_state = 2}, + [4894] = {.lex_state = 75, .external_lex_state = 5}, [4895] = {.lex_state = 75, .external_lex_state = 5}, - [4896] = {.lex_state = 75, .external_lex_state = 2}, - [4897] = {.lex_state = 75, .external_lex_state = 2}, + [4896] = {.lex_state = 75, .external_lex_state = 5}, + [4897] = {.lex_state = 75, .external_lex_state = 5}, [4898] = {.lex_state = 75, .external_lex_state = 5}, - [4899] = {.lex_state = 75, .external_lex_state = 2}, + [4899] = {.lex_state = 75, .external_lex_state = 5}, [4900] = {.lex_state = 75, .external_lex_state = 5}, [4901] = {.lex_state = 75, .external_lex_state = 5}, [4902] = {.lex_state = 75, .external_lex_state = 5}, [4903] = {.lex_state = 75, .external_lex_state = 5}, [4904] = {.lex_state = 75, .external_lex_state = 5}, - [4905] = {.lex_state = 75, .external_lex_state = 2}, + [4905] = {.lex_state = 75, .external_lex_state = 5}, [4906] = {.lex_state = 75, .external_lex_state = 5}, [4907] = {.lex_state = 75, .external_lex_state = 5}, - [4908] = {.lex_state = 75, .external_lex_state = 2}, + [4908] = {.lex_state = 75, .external_lex_state = 5}, [4909] = {.lex_state = 75, .external_lex_state = 5}, - [4910] = {.lex_state = 75, .external_lex_state = 2}, + [4910] = {.lex_state = 75, .external_lex_state = 5}, [4911] = {.lex_state = 75, .external_lex_state = 5}, [4912] = {.lex_state = 75, .external_lex_state = 5}, [4913] = {.lex_state = 75, .external_lex_state = 5}, @@ -17848,123 +17888,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4922] = {.lex_state = 75, .external_lex_state = 5}, [4923] = {.lex_state = 75, .external_lex_state = 5}, [4924] = {.lex_state = 75, .external_lex_state = 5}, - [4925] = {.lex_state = 75, .external_lex_state = 2}, - [4926] = {.lex_state = 75, .external_lex_state = 5}, - [4927] = {.lex_state = 75, .external_lex_state = 2}, + [4925] = {.lex_state = 75, .external_lex_state = 5}, + [4926] = {.lex_state = 2, .external_lex_state = 2}, + [4927] = {.lex_state = 75, .external_lex_state = 5}, [4928] = {.lex_state = 75, .external_lex_state = 5}, [4929] = {.lex_state = 75, .external_lex_state = 5}, - [4930] = {.lex_state = 75, .external_lex_state = 2}, + [4930] = {.lex_state = 75, .external_lex_state = 5}, [4931] = {.lex_state = 75, .external_lex_state = 5}, [4932] = {.lex_state = 75, .external_lex_state = 5}, [4933] = {.lex_state = 75, .external_lex_state = 5}, [4934] = {.lex_state = 75, .external_lex_state = 5}, - [4935] = {.lex_state = 75, .external_lex_state = 2}, + [4935] = {.lex_state = 75, .external_lex_state = 5}, [4936] = {.lex_state = 75, .external_lex_state = 5}, [4937] = {.lex_state = 75, .external_lex_state = 5}, - [4938] = {.lex_state = 75, .external_lex_state = 5}, - [4939] = {.lex_state = 75, .external_lex_state = 2}, - [4940] = {.lex_state = 75, .external_lex_state = 5}, + [4938] = {.lex_state = 75, .external_lex_state = 2}, + [4939] = {.lex_state = 75, .external_lex_state = 5}, + [4940] = {.lex_state = 75, .external_lex_state = 2}, [4941] = {.lex_state = 75, .external_lex_state = 5}, [4942] = {.lex_state = 75, .external_lex_state = 5}, [4943] = {.lex_state = 75, .external_lex_state = 5}, [4944] = {.lex_state = 75, .external_lex_state = 5}, [4945] = {.lex_state = 75, .external_lex_state = 5}, - [4946] = {.lex_state = 75, .external_lex_state = 2}, + [4946] = {.lex_state = 75, .external_lex_state = 5}, [4947] = {.lex_state = 75, .external_lex_state = 5}, [4948] = {.lex_state = 75, .external_lex_state = 5}, - [4949] = {.lex_state = 75, .external_lex_state = 2}, - [4950] = {.lex_state = 75, .external_lex_state = 2}, - [4951] = {.lex_state = 75, .external_lex_state = 5}, - [4952] = {.lex_state = 13, .external_lex_state = 8}, + [4949] = {.lex_state = 75, .external_lex_state = 5}, + [4950] = {.lex_state = 75, .external_lex_state = 5}, + [4951] = {.lex_state = 75, .external_lex_state = 2}, + [4952] = {.lex_state = 75, .external_lex_state = 5}, [4953] = {.lex_state = 75, .external_lex_state = 5}, [4954] = {.lex_state = 75, .external_lex_state = 5}, - [4955] = {.lex_state = 75, .external_lex_state = 2}, - [4956] = {.lex_state = 75, .external_lex_state = 2}, + [4955] = {.lex_state = 75, .external_lex_state = 5}, + [4956] = {.lex_state = 75, .external_lex_state = 5}, [4957] = {.lex_state = 75, .external_lex_state = 5}, - [4958] = {.lex_state = 75, .external_lex_state = 2}, - [4959] = {.lex_state = 75, .external_lex_state = 2}, - [4960] = {.lex_state = 75, .external_lex_state = 2}, - [4961] = {.lex_state = 75, .external_lex_state = 2}, - [4962] = {.lex_state = 75, .external_lex_state = 2}, + [4958] = {.lex_state = 75, .external_lex_state = 5}, + [4959] = {.lex_state = 75, .external_lex_state = 5}, + [4960] = {.lex_state = 75, .external_lex_state = 5}, + [4961] = {.lex_state = 75, .external_lex_state = 5}, + [4962] = {.lex_state = 75, .external_lex_state = 5}, [4963] = {.lex_state = 75, .external_lex_state = 5}, - [4964] = {.lex_state = 75, .external_lex_state = 2}, - [4965] = {.lex_state = 75, .external_lex_state = 2}, - [4966] = {.lex_state = 75, .external_lex_state = 2}, - [4967] = {.lex_state = 75, .external_lex_state = 2}, + [4964] = {.lex_state = 75, .external_lex_state = 5}, + [4965] = {.lex_state = 75, .external_lex_state = 5}, + [4966] = {.lex_state = 75, .external_lex_state = 5}, + [4967] = {.lex_state = 75, .external_lex_state = 5}, [4968] = {.lex_state = 75, .external_lex_state = 5}, - [4969] = {.lex_state = 75, .external_lex_state = 2}, + [4969] = {.lex_state = 75, .external_lex_state = 5}, [4970] = {.lex_state = 75, .external_lex_state = 5}, - [4971] = {.lex_state = 75, .external_lex_state = 2}, - [4972] = {.lex_state = 75, .external_lex_state = 2}, - [4973] = {.lex_state = 75, .external_lex_state = 2}, + [4971] = {.lex_state = 75, .external_lex_state = 5}, + [4972] = {.lex_state = 75, .external_lex_state = 5}, + [4973] = {.lex_state = 75, .external_lex_state = 5}, [4974] = {.lex_state = 75, .external_lex_state = 2}, - [4975] = {.lex_state = 75, .external_lex_state = 2}, + [4975] = {.lex_state = 75, .external_lex_state = 5}, [4976] = {.lex_state = 75, .external_lex_state = 5}, - [4977] = {.lex_state = 75, .external_lex_state = 2}, - [4978] = {.lex_state = 75, .external_lex_state = 5}, - [4979] = {.lex_state = 75, .external_lex_state = 5}, + [4977] = {.lex_state = 75, .external_lex_state = 5}, + [4978] = {.lex_state = 75, .external_lex_state = 2}, + [4979] = {.lex_state = 75, .external_lex_state = 2}, [4980] = {.lex_state = 75, .external_lex_state = 2}, [4981] = {.lex_state = 75, .external_lex_state = 2}, - [4982] = {.lex_state = 75, .external_lex_state = 2}, + [4982] = {.lex_state = 75, .external_lex_state = 5}, [4983] = {.lex_state = 75, .external_lex_state = 5}, [4984] = {.lex_state = 75, .external_lex_state = 5}, [4985] = {.lex_state = 75, .external_lex_state = 5}, [4986] = {.lex_state = 75, .external_lex_state = 5}, - [4987] = {.lex_state = 75, .external_lex_state = 2}, + [4987] = {.lex_state = 75, .external_lex_state = 5}, [4988] = {.lex_state = 75, .external_lex_state = 5}, - [4989] = {.lex_state = 75, .external_lex_state = 2}, + [4989] = {.lex_state = 75, .external_lex_state = 5}, [4990] = {.lex_state = 75, .external_lex_state = 2}, [4991] = {.lex_state = 75, .external_lex_state = 5}, - [4992] = {.lex_state = 75, .external_lex_state = 2}, - [4993] = {.lex_state = 75, .external_lex_state = 2}, + [4992] = {.lex_state = 75, .external_lex_state = 5}, + [4993] = {.lex_state = 75, .external_lex_state = 5}, [4994] = {.lex_state = 75, .external_lex_state = 2}, [4995] = {.lex_state = 75, .external_lex_state = 5}, - [4996] = {.lex_state = 75, .external_lex_state = 2}, - [4997] = {.lex_state = 75, .external_lex_state = 2}, + [4996] = {.lex_state = 75, .external_lex_state = 5}, + [4997] = {.lex_state = 75, .external_lex_state = 5}, [4998] = {.lex_state = 75, .external_lex_state = 2}, [4999] = {.lex_state = 75, .external_lex_state = 2}, - [5000] = {.lex_state = 75, .external_lex_state = 2}, + [5000] = {.lex_state = 75, .external_lex_state = 5}, [5001] = {.lex_state = 75, .external_lex_state = 2}, [5002] = {.lex_state = 75, .external_lex_state = 5}, - [5003] = {.lex_state = 75, .external_lex_state = 2}, + [5003] = {.lex_state = 75, .external_lex_state = 5}, [5004] = {.lex_state = 75, .external_lex_state = 2}, - [5005] = {.lex_state = 75, .external_lex_state = 2}, - [5006] = {.lex_state = 75, .external_lex_state = 2}, - [5007] = {.lex_state = 75, .external_lex_state = 5}, - [5008] = {.lex_state = 75, .external_lex_state = 2}, + [5005] = {.lex_state = 75, .external_lex_state = 5}, + [5006] = {.lex_state = 75, .external_lex_state = 5}, + [5007] = {.lex_state = 75, .external_lex_state = 2}, + [5008] = {.lex_state = 75, .external_lex_state = 5}, [5009] = {.lex_state = 75, .external_lex_state = 5}, - [5010] = {.lex_state = 75, .external_lex_state = 5}, - [5011] = {.lex_state = 75, .external_lex_state = 2}, - [5012] = {.lex_state = 75, .external_lex_state = 5}, - [5013] = {.lex_state = 75, .external_lex_state = 2}, - [5014] = {.lex_state = 75, .external_lex_state = 2}, + [5010] = {.lex_state = 75, .external_lex_state = 2}, + [5011] = {.lex_state = 75, .external_lex_state = 5}, + [5012] = {.lex_state = 2, .external_lex_state = 2}, + [5013] = {.lex_state = 75, .external_lex_state = 5}, + [5014] = {.lex_state = 75, .external_lex_state = 5}, [5015] = {.lex_state = 75, .external_lex_state = 5}, [5016] = {.lex_state = 75, .external_lex_state = 2}, [5017] = {.lex_state = 75, .external_lex_state = 5}, - [5018] = {.lex_state = 75, .external_lex_state = 2}, + [5018] = {.lex_state = 75, .external_lex_state = 5}, [5019] = {.lex_state = 75, .external_lex_state = 2}, - [5020] = {.lex_state = 75, .external_lex_state = 2}, + [5020] = {.lex_state = 75, .external_lex_state = 5}, [5021] = {.lex_state = 75, .external_lex_state = 5}, [5022] = {.lex_state = 75, .external_lex_state = 2}, [5023] = {.lex_state = 75, .external_lex_state = 2}, [5024] = {.lex_state = 75, .external_lex_state = 5}, - [5025] = {.lex_state = 75, .external_lex_state = 5}, - [5026] = {.lex_state = 75, .external_lex_state = 2}, - [5027] = {.lex_state = 75, .external_lex_state = 2}, + [5025] = {.lex_state = 75, .external_lex_state = 2}, + [5026] = {.lex_state = 75, .external_lex_state = 5}, + [5027] = {.lex_state = 75, .external_lex_state = 5}, [5028] = {.lex_state = 75, .external_lex_state = 5}, [5029] = {.lex_state = 75, .external_lex_state = 2}, - [5030] = {.lex_state = 75, .external_lex_state = 2}, + [5030] = {.lex_state = 75, .external_lex_state = 5}, [5031] = {.lex_state = 75, .external_lex_state = 5}, [5032] = {.lex_state = 75, .external_lex_state = 2}, - [5033] = {.lex_state = 75, .external_lex_state = 2}, - [5034] = {.lex_state = 75, .external_lex_state = 5}, - [5035] = {.lex_state = 75, .external_lex_state = 5}, + [5033] = {.lex_state = 75, .external_lex_state = 5}, + [5034] = {.lex_state = 75, .external_lex_state = 2}, + [5035] = {.lex_state = 75, .external_lex_state = 2}, [5036] = {.lex_state = 75, .external_lex_state = 5}, - [5037] = {.lex_state = 75, .external_lex_state = 5}, - [5038] = {.lex_state = 75, .external_lex_state = 2}, + [5037] = {.lex_state = 75, .external_lex_state = 2}, + [5038] = {.lex_state = 75, .external_lex_state = 5}, [5039] = {.lex_state = 75, .external_lex_state = 5}, - [5040] = {.lex_state = 75, .external_lex_state = 5}, - [5041] = {.lex_state = 75, .external_lex_state = 5}, + [5040] = {.lex_state = 75, .external_lex_state = 2}, + [5041] = {.lex_state = 75, .external_lex_state = 2}, [5042] = {.lex_state = 75, .external_lex_state = 5}, [5043] = {.lex_state = 75, .external_lex_state = 5}, [5044] = {.lex_state = 75, .external_lex_state = 5}, @@ -17972,42 +18012,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5046] = {.lex_state = 75, .external_lex_state = 5}, [5047] = {.lex_state = 75, .external_lex_state = 5}, [5048] = {.lex_state = 75, .external_lex_state = 5}, - [5049] = {.lex_state = 75, .external_lex_state = 5}, + [5049] = {.lex_state = 75, .external_lex_state = 2}, [5050] = {.lex_state = 75, .external_lex_state = 5}, [5051] = {.lex_state = 75, .external_lex_state = 5}, - [5052] = {.lex_state = 75, .external_lex_state = 2}, - [5053] = {.lex_state = 75, .external_lex_state = 5}, + [5052] = {.lex_state = 75, .external_lex_state = 5}, + [5053] = {.lex_state = 75, .external_lex_state = 2}, [5054] = {.lex_state = 75, .external_lex_state = 5}, [5055] = {.lex_state = 75, .external_lex_state = 5}, [5056] = {.lex_state = 75, .external_lex_state = 5}, [5057] = {.lex_state = 75, .external_lex_state = 5}, - [5058] = {.lex_state = 75, .external_lex_state = 5}, + [5058] = {.lex_state = 75, .external_lex_state = 2}, [5059] = {.lex_state = 75, .external_lex_state = 5}, [5060] = {.lex_state = 75, .external_lex_state = 5}, - [5061] = {.lex_state = 75, .external_lex_state = 5}, + [5061] = {.lex_state = 75, .external_lex_state = 2}, [5062] = {.lex_state = 75, .external_lex_state = 2}, - [5063] = {.lex_state = 75, .external_lex_state = 5}, + [5063] = {.lex_state = 75, .external_lex_state = 2}, [5064] = {.lex_state = 75, .external_lex_state = 5}, - [5065] = {.lex_state = 75, .external_lex_state = 5}, + [5065] = {.lex_state = 75, .external_lex_state = 2}, [5066] = {.lex_state = 75, .external_lex_state = 5}, [5067] = {.lex_state = 75, .external_lex_state = 5}, [5068] = {.lex_state = 75, .external_lex_state = 5}, - [5069] = {.lex_state = 75, .external_lex_state = 5}, + [5069] = {.lex_state = 75, .external_lex_state = 2}, [5070] = {.lex_state = 75, .external_lex_state = 5}, - [5071] = {.lex_state = 75, .external_lex_state = 5}, + [5071] = {.lex_state = 75, .external_lex_state = 2}, [5072] = {.lex_state = 75, .external_lex_state = 5}, - [5073] = {.lex_state = 75, .external_lex_state = 5}, + [5073] = {.lex_state = 75, .external_lex_state = 2}, [5074] = {.lex_state = 75, .external_lex_state = 5}, - [5075] = {.lex_state = 2, .external_lex_state = 2}, - [5076] = {.lex_state = 2, .external_lex_state = 2}, - [5077] = {.lex_state = 75, .external_lex_state = 5}, - [5078] = {.lex_state = 75, .external_lex_state = 5}, + [5075] = {.lex_state = 75, .external_lex_state = 5}, + [5076] = {.lex_state = 75, .external_lex_state = 5}, + [5077] = {.lex_state = 75, .external_lex_state = 2}, + [5078] = {.lex_state = 75, .external_lex_state = 2}, [5079] = {.lex_state = 75, .external_lex_state = 5}, - [5080] = {.lex_state = 75, .external_lex_state = 2}, + [5080] = {.lex_state = 75, .external_lex_state = 5}, [5081] = {.lex_state = 75, .external_lex_state = 5}, - [5082] = {.lex_state = 75, .external_lex_state = 5}, + [5082] = {.lex_state = 75, .external_lex_state = 2}, [5083] = {.lex_state = 75, .external_lex_state = 5}, - [5084] = {.lex_state = 75, .external_lex_state = 5}, + [5084] = {.lex_state = 75, .external_lex_state = 2}, [5085] = {.lex_state = 75, .external_lex_state = 5}, [5086] = {.lex_state = 75, .external_lex_state = 5}, [5087] = {.lex_state = 75, .external_lex_state = 5}, @@ -18019,92 +18059,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5093] = {.lex_state = 75, .external_lex_state = 5}, [5094] = {.lex_state = 75, .external_lex_state = 5}, [5095] = {.lex_state = 75, .external_lex_state = 5}, - [5096] = {.lex_state = 75, .external_lex_state = 2}, + [5096] = {.lex_state = 75, .external_lex_state = 5}, [5097] = {.lex_state = 75, .external_lex_state = 5}, [5098] = {.lex_state = 75, .external_lex_state = 5}, - [5099] = {.lex_state = 75, .external_lex_state = 5}, + [5099] = {.lex_state = 75, .external_lex_state = 2}, [5100] = {.lex_state = 75, .external_lex_state = 5}, [5101] = {.lex_state = 75, .external_lex_state = 5}, [5102] = {.lex_state = 75, .external_lex_state = 5}, [5103] = {.lex_state = 75, .external_lex_state = 5}, - [5104] = {.lex_state = 75, .external_lex_state = 5}, + [5104] = {.lex_state = 75, .external_lex_state = 2}, [5105] = {.lex_state = 75, .external_lex_state = 5}, - [5106] = {.lex_state = 2, .external_lex_state = 2}, + [5106] = {.lex_state = 75, .external_lex_state = 5}, [5107] = {.lex_state = 75, .external_lex_state = 5}, - [5108] = {.lex_state = 2, .external_lex_state = 2}, - [5109] = {.lex_state = 75, .external_lex_state = 5}, - [5110] = {.lex_state = 75, .external_lex_state = 5}, - [5111] = {.lex_state = 75, .external_lex_state = 5}, - [5112] = {.lex_state = 75, .external_lex_state = 5}, - [5113] = {.lex_state = 75, .external_lex_state = 5}, + [5108] = {.lex_state = 75, .external_lex_state = 2}, + [5109] = {.lex_state = 75, .external_lex_state = 2}, + [5110] = {.lex_state = 75, .external_lex_state = 2}, + [5111] = {.lex_state = 75, .external_lex_state = 2}, + [5112] = {.lex_state = 75, .external_lex_state = 2}, + [5113] = {.lex_state = 75, .external_lex_state = 2}, [5114] = {.lex_state = 75, .external_lex_state = 5}, [5115] = {.lex_state = 75, .external_lex_state = 2}, - [5116] = {.lex_state = 75, .external_lex_state = 2}, + [5116] = {.lex_state = 75, .external_lex_state = 5}, [5117] = {.lex_state = 75, .external_lex_state = 5}, [5118] = {.lex_state = 75, .external_lex_state = 5}, [5119] = {.lex_state = 75, .external_lex_state = 5}, [5120] = {.lex_state = 75, .external_lex_state = 5}, - [5121] = {.lex_state = 75, .external_lex_state = 2}, + [5121] = {.lex_state = 75, .external_lex_state = 5}, [5122] = {.lex_state = 75, .external_lex_state = 5}, [5123] = {.lex_state = 75, .external_lex_state = 5}, [5124] = {.lex_state = 75, .external_lex_state = 5}, - [5125] = {.lex_state = 75, .external_lex_state = 2}, + [5125] = {.lex_state = 75, .external_lex_state = 5}, [5126] = {.lex_state = 75, .external_lex_state = 2}, - [5127] = {.lex_state = 75, .external_lex_state = 2}, - [5128] = {.lex_state = 75, .external_lex_state = 2}, + [5127] = {.lex_state = 75, .external_lex_state = 5}, + [5128] = {.lex_state = 75, .external_lex_state = 5}, [5129] = {.lex_state = 75, .external_lex_state = 5}, - [5130] = {.lex_state = 75, .external_lex_state = 2}, - [5131] = {.lex_state = 75, .external_lex_state = 2}, - [5132] = {.lex_state = 75, .external_lex_state = 2}, + [5130] = {.lex_state = 75, .external_lex_state = 5}, + [5131] = {.lex_state = 75, .external_lex_state = 5}, + [5132] = {.lex_state = 75, .external_lex_state = 5}, [5133] = {.lex_state = 75, .external_lex_state = 2}, - [5134] = {.lex_state = 75, .external_lex_state = 2}, - [5135] = {.lex_state = 75, .external_lex_state = 2}, - [5136] = {.lex_state = 75, .external_lex_state = 2}, - [5137] = {.lex_state = 75, .external_lex_state = 2}, - [5138] = {.lex_state = 75, .external_lex_state = 2}, - [5139] = {.lex_state = 75, .external_lex_state = 2}, - [5140] = {.lex_state = 75, .external_lex_state = 2}, - [5141] = {.lex_state = 75, .external_lex_state = 2}, - [5142] = {.lex_state = 75, .external_lex_state = 2}, - [5143] = {.lex_state = 75, .external_lex_state = 2}, - [5144] = {.lex_state = 75, .external_lex_state = 2}, + [5134] = {.lex_state = 75, .external_lex_state = 5}, + [5135] = {.lex_state = 75, .external_lex_state = 5}, + [5136] = {.lex_state = 75, .external_lex_state = 5}, + [5137] = {.lex_state = 75, .external_lex_state = 5}, + [5138] = {.lex_state = 75, .external_lex_state = 5}, + [5139] = {.lex_state = 75, .external_lex_state = 5}, + [5140] = {.lex_state = 75, .external_lex_state = 5}, + [5141] = {.lex_state = 75, .external_lex_state = 5}, + [5142] = {.lex_state = 75, .external_lex_state = 5}, + [5143] = {.lex_state = 75, .external_lex_state = 5}, + [5144] = {.lex_state = 75, .external_lex_state = 5}, [5145] = {.lex_state = 75, .external_lex_state = 2}, - [5146] = {.lex_state = 75, .external_lex_state = 2}, - [5147] = {.lex_state = 75, .external_lex_state = 2}, - [5148] = {.lex_state = 75, .external_lex_state = 2}, - [5149] = {.lex_state = 75, .external_lex_state = 2}, - [5150] = {.lex_state = 75, .external_lex_state = 2}, - [5151] = {.lex_state = 75, .external_lex_state = 2}, - [5152] = {.lex_state = 75, .external_lex_state = 2}, + [5146] = {.lex_state = 75, .external_lex_state = 5}, + [5147] = {.lex_state = 75, .external_lex_state = 5}, + [5148] = {.lex_state = 75, .external_lex_state = 5}, + [5149] = {.lex_state = 2, .external_lex_state = 2}, + [5150] = {.lex_state = 75, .external_lex_state = 5}, + [5151] = {.lex_state = 75, .external_lex_state = 5}, + [5152] = {.lex_state = 75, .external_lex_state = 5}, [5153] = {.lex_state = 75, .external_lex_state = 2}, - [5154] = {.lex_state = 75, .external_lex_state = 2}, - [5155] = {.lex_state = 75, .external_lex_state = 2}, - [5156] = {.lex_state = 75, .external_lex_state = 2}, - [5157] = {.lex_state = 75, .external_lex_state = 2}, - [5158] = {.lex_state = 75, .external_lex_state = 2}, - [5159] = {.lex_state = 75, .external_lex_state = 2}, - [5160] = {.lex_state = 75, .external_lex_state = 2}, + [5154] = {.lex_state = 75, .external_lex_state = 5}, + [5155] = {.lex_state = 75, .external_lex_state = 5}, + [5156] = {.lex_state = 75, .external_lex_state = 5}, + [5157] = {.lex_state = 75, .external_lex_state = 5}, + [5158] = {.lex_state = 75, .external_lex_state = 5}, + [5159] = {.lex_state = 75, .external_lex_state = 5}, + [5160] = {.lex_state = 75, .external_lex_state = 5}, [5161] = {.lex_state = 75, .external_lex_state = 5}, - [5162] = {.lex_state = 75, .external_lex_state = 2}, + [5162] = {.lex_state = 75, .external_lex_state = 5}, [5163] = {.lex_state = 75, .external_lex_state = 2}, [5164] = {.lex_state = 75, .external_lex_state = 2}, - [5165] = {.lex_state = 75, .external_lex_state = 2}, - [5166] = {.lex_state = 75, .external_lex_state = 2}, + [5165] = {.lex_state = 75, .external_lex_state = 5}, + [5166] = {.lex_state = 75, .external_lex_state = 5}, [5167] = {.lex_state = 75, .external_lex_state = 2}, [5168] = {.lex_state = 75, .external_lex_state = 2}, [5169] = {.lex_state = 75, .external_lex_state = 2}, [5170] = {.lex_state = 75, .external_lex_state = 2}, - [5171] = {.lex_state = 75, .external_lex_state = 2}, - [5172] = {.lex_state = 75, .external_lex_state = 5}, + [5171] = {.lex_state = 75, .external_lex_state = 5}, + [5172] = {.lex_state = 75, .external_lex_state = 2}, [5173] = {.lex_state = 75, .external_lex_state = 2}, [5174] = {.lex_state = 75, .external_lex_state = 2}, - [5175] = {.lex_state = 75, .external_lex_state = 2}, + [5175] = {.lex_state = 75, .external_lex_state = 5}, [5176] = {.lex_state = 75, .external_lex_state = 2}, [5177] = {.lex_state = 75, .external_lex_state = 2}, [5178] = {.lex_state = 75, .external_lex_state = 2}, [5179] = {.lex_state = 75, .external_lex_state = 2}, [5180] = {.lex_state = 75, .external_lex_state = 2}, - [5181] = {.lex_state = 75, .external_lex_state = 2}, + [5181] = {.lex_state = 75, .external_lex_state = 5}, [5182] = {.lex_state = 75, .external_lex_state = 2}, [5183] = {.lex_state = 75, .external_lex_state = 2}, [5184] = {.lex_state = 75, .external_lex_state = 2}, @@ -18117,20 +18157,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5191] = {.lex_state = 75, .external_lex_state = 2}, [5192] = {.lex_state = 75, .external_lex_state = 2}, [5193] = {.lex_state = 75, .external_lex_state = 2}, - [5194] = {.lex_state = 75, .external_lex_state = 5}, - [5195] = {.lex_state = 75, .external_lex_state = 5}, + [5194] = {.lex_state = 75, .external_lex_state = 2}, + [5195] = {.lex_state = 75, .external_lex_state = 2}, [5196] = {.lex_state = 75, .external_lex_state = 2}, - [5197] = {.lex_state = 75, .external_lex_state = 5}, + [5197] = {.lex_state = 75, .external_lex_state = 2}, [5198] = {.lex_state = 75, .external_lex_state = 2}, [5199] = {.lex_state = 75, .external_lex_state = 2}, [5200] = {.lex_state = 75, .external_lex_state = 2}, [5201] = {.lex_state = 75, .external_lex_state = 2}, [5202] = {.lex_state = 75, .external_lex_state = 2}, - [5203] = {.lex_state = 75, .external_lex_state = 5}, + [5203] = {.lex_state = 75, .external_lex_state = 2}, [5204] = {.lex_state = 75, .external_lex_state = 2}, [5205] = {.lex_state = 75, .external_lex_state = 2}, [5206] = {.lex_state = 75, .external_lex_state = 2}, - [5207] = {.lex_state = 75, .external_lex_state = 5}, + [5207] = {.lex_state = 75, .external_lex_state = 2}, [5208] = {.lex_state = 75, .external_lex_state = 2}, [5209] = {.lex_state = 75, .external_lex_state = 2}, [5210] = {.lex_state = 75, .external_lex_state = 2}, @@ -18145,30 +18185,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5219] = {.lex_state = 75, .external_lex_state = 2}, [5220] = {.lex_state = 75, .external_lex_state = 2}, [5221] = {.lex_state = 75, .external_lex_state = 2}, - [5222] = {.lex_state = 75, .external_lex_state = 2}, - [5223] = {.lex_state = 75, .external_lex_state = 2}, + [5222] = {.lex_state = 75, .external_lex_state = 5}, + [5223] = {.lex_state = 75, .external_lex_state = 5}, [5224] = {.lex_state = 75, .external_lex_state = 2}, [5225] = {.lex_state = 75, .external_lex_state = 2}, - [5226] = {.lex_state = 75, .external_lex_state = 2}, + [5226] = {.lex_state = 75, .external_lex_state = 5}, [5227] = {.lex_state = 75, .external_lex_state = 2}, [5228] = {.lex_state = 75, .external_lex_state = 2}, [5229] = {.lex_state = 75, .external_lex_state = 2}, [5230] = {.lex_state = 75, .external_lex_state = 2}, - [5231] = {.lex_state = 75, .external_lex_state = 2}, + [5231] = {.lex_state = 75, .external_lex_state = 5}, [5232] = {.lex_state = 75, .external_lex_state = 2}, - [5233] = {.lex_state = 75, .external_lex_state = 2}, - [5234] = {.lex_state = 75, .external_lex_state = 2}, + [5233] = {.lex_state = 75, .external_lex_state = 5}, + [5234] = {.lex_state = 75, .external_lex_state = 5}, [5235] = {.lex_state = 75, .external_lex_state = 2}, [5236] = {.lex_state = 75, .external_lex_state = 2}, [5237] = {.lex_state = 75, .external_lex_state = 2}, [5238] = {.lex_state = 75, .external_lex_state = 2}, - [5239] = {.lex_state = 75, .external_lex_state = 2}, + [5239] = {.lex_state = 75, .external_lex_state = 5}, [5240] = {.lex_state = 75, .external_lex_state = 2}, - [5241] = {.lex_state = 75, .external_lex_state = 2}, + [5241] = {.lex_state = 75, .external_lex_state = 5}, [5242] = {.lex_state = 75, .external_lex_state = 2}, - [5243] = {.lex_state = 75, .external_lex_state = 2}, + [5243] = {.lex_state = 75, .external_lex_state = 5}, [5244] = {.lex_state = 75, .external_lex_state = 2}, - [5245] = {.lex_state = 75, .external_lex_state = 5}, + [5245] = {.lex_state = 75, .external_lex_state = 2}, [5246] = {.lex_state = 75, .external_lex_state = 2}, [5247] = {.lex_state = 75, .external_lex_state = 2}, [5248] = {.lex_state = 75, .external_lex_state = 2}, @@ -18186,7 +18226,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5260] = {.lex_state = 75, .external_lex_state = 2}, [5261] = {.lex_state = 75, .external_lex_state = 2}, [5262] = {.lex_state = 75, .external_lex_state = 2}, - [5263] = {.lex_state = 75, .external_lex_state = 2}, + [5263] = {.lex_state = 75, .external_lex_state = 5}, [5264] = {.lex_state = 75, .external_lex_state = 2}, [5265] = {.lex_state = 75, .external_lex_state = 2}, [5266] = {.lex_state = 75, .external_lex_state = 2}, @@ -18207,7 +18247,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5281] = {.lex_state = 75, .external_lex_state = 2}, [5282] = {.lex_state = 75, .external_lex_state = 2}, [5283] = {.lex_state = 75, .external_lex_state = 2}, - [5284] = {.lex_state = 75, .external_lex_state = 5}, + [5284] = {.lex_state = 75, .external_lex_state = 2}, [5285] = {.lex_state = 75, .external_lex_state = 2}, [5286] = {.lex_state = 75, .external_lex_state = 2}, [5287] = {.lex_state = 75, .external_lex_state = 2}, @@ -18228,11 +18268,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5302] = {.lex_state = 75, .external_lex_state = 2}, [5303] = {.lex_state = 75, .external_lex_state = 2}, [5304] = {.lex_state = 75, .external_lex_state = 2}, - [5305] = {.lex_state = 75, .external_lex_state = 5}, + [5305] = {.lex_state = 75, .external_lex_state = 2}, [5306] = {.lex_state = 75, .external_lex_state = 2}, [5307] = {.lex_state = 75, .external_lex_state = 2}, [5308] = {.lex_state = 75, .external_lex_state = 2}, - [5309] = {.lex_state = 75, .external_lex_state = 5}, + [5309] = {.lex_state = 75, .external_lex_state = 2}, [5310] = {.lex_state = 75, .external_lex_state = 2}, [5311] = {.lex_state = 75, .external_lex_state = 2}, [5312] = {.lex_state = 75, .external_lex_state = 2}, @@ -18241,11 +18281,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5315] = {.lex_state = 75, .external_lex_state = 2}, [5316] = {.lex_state = 75, .external_lex_state = 2}, [5317] = {.lex_state = 75, .external_lex_state = 2}, - [5318] = {.lex_state = 75, .external_lex_state = 2}, - [5319] = {.lex_state = 75, .external_lex_state = 2}, + [5318] = {.lex_state = 75, .external_lex_state = 5}, + [5319] = {.lex_state = 75, .external_lex_state = 5}, [5320] = {.lex_state = 75, .external_lex_state = 2}, [5321] = {.lex_state = 75, .external_lex_state = 2}, - [5322] = {.lex_state = 75, .external_lex_state = 2}, + [5322] = {.lex_state = 75, .external_lex_state = 5}, [5323] = {.lex_state = 75, .external_lex_state = 2}, [5324] = {.lex_state = 75, .external_lex_state = 2}, [5325] = {.lex_state = 75, .external_lex_state = 2}, @@ -18254,10 +18294,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5328] = {.lex_state = 75, .external_lex_state = 2}, [5329] = {.lex_state = 75, .external_lex_state = 2}, [5330] = {.lex_state = 75, .external_lex_state = 2}, - [5331] = {.lex_state = 75, .external_lex_state = 5}, + [5331] = {.lex_state = 75, .external_lex_state = 2}, [5332] = {.lex_state = 75, .external_lex_state = 2}, - [5333] = {.lex_state = 75, .external_lex_state = 5}, - [5334] = {.lex_state = 75, .external_lex_state = 5}, + [5333] = {.lex_state = 75, .external_lex_state = 2}, + [5334] = {.lex_state = 75, .external_lex_state = 2}, [5335] = {.lex_state = 75, .external_lex_state = 2}, [5336] = {.lex_state = 75, .external_lex_state = 2}, [5337] = {.lex_state = 75, .external_lex_state = 2}, @@ -18279,9 +18319,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5353] = {.lex_state = 75, .external_lex_state = 2}, [5354] = {.lex_state = 75, .external_lex_state = 2}, [5355] = {.lex_state = 75, .external_lex_state = 2}, - [5356] = {.lex_state = 75, .external_lex_state = 5}, + [5356] = {.lex_state = 75, .external_lex_state = 2}, [5357] = {.lex_state = 75, .external_lex_state = 2}, - [5358] = {.lex_state = 75, .external_lex_state = 2}, + [5358] = {.lex_state = 75, .external_lex_state = 5}, [5359] = {.lex_state = 75, .external_lex_state = 5}, [5360] = {.lex_state = 75, .external_lex_state = 2}, [5361] = {.lex_state = 75, .external_lex_state = 2}, @@ -18294,7 +18334,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5368] = {.lex_state = 75, .external_lex_state = 2}, [5369] = {.lex_state = 75, .external_lex_state = 2}, [5370] = {.lex_state = 75, .external_lex_state = 2}, - [5371] = {.lex_state = 75, .external_lex_state = 5}, + [5371] = {.lex_state = 75, .external_lex_state = 2}, [5372] = {.lex_state = 75, .external_lex_state = 2}, [5373] = {.lex_state = 75, .external_lex_state = 2}, [5374] = {.lex_state = 75, .external_lex_state = 2}, @@ -18306,7 +18346,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5380] = {.lex_state = 75, .external_lex_state = 2}, [5381] = {.lex_state = 75, .external_lex_state = 2}, [5382] = {.lex_state = 75, .external_lex_state = 2}, - [5383] = {.lex_state = 75, .external_lex_state = 5}, + [5383] = {.lex_state = 75, .external_lex_state = 2}, [5384] = {.lex_state = 75, .external_lex_state = 2}, [5385] = {.lex_state = 75, .external_lex_state = 2}, [5386] = {.lex_state = 75, .external_lex_state = 2}, @@ -18321,9 +18361,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5395] = {.lex_state = 75, .external_lex_state = 2}, [5396] = {.lex_state = 75, .external_lex_state = 2}, [5397] = {.lex_state = 75, .external_lex_state = 2}, - [5398] = {.lex_state = 75, .external_lex_state = 5}, + [5398] = {.lex_state = 75, .external_lex_state = 2}, [5399] = {.lex_state = 75, .external_lex_state = 2}, - [5400] = {.lex_state = 75, .external_lex_state = 5}, + [5400] = {.lex_state = 75, .external_lex_state = 2}, [5401] = {.lex_state = 75, .external_lex_state = 2}, [5402] = {.lex_state = 75, .external_lex_state = 2}, [5403] = {.lex_state = 75, .external_lex_state = 2}, @@ -18336,7 +18376,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5410] = {.lex_state = 75, .external_lex_state = 2}, [5411] = {.lex_state = 75, .external_lex_state = 2}, [5412] = {.lex_state = 75, .external_lex_state = 2}, - [5413] = {.lex_state = 75, .external_lex_state = 5}, + [5413] = {.lex_state = 75, .external_lex_state = 2}, [5414] = {.lex_state = 75, .external_lex_state = 2}, [5415] = {.lex_state = 75, .external_lex_state = 2}, [5416] = {.lex_state = 75, .external_lex_state = 2}, @@ -18346,24 +18386,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5420] = {.lex_state = 75, .external_lex_state = 2}, [5421] = {.lex_state = 75, .external_lex_state = 2}, [5422] = {.lex_state = 75, .external_lex_state = 2}, - [5423] = {.lex_state = 75, .external_lex_state = 5}, + [5423] = {.lex_state = 75, .external_lex_state = 2}, [5424] = {.lex_state = 75, .external_lex_state = 2}, [5425] = {.lex_state = 75, .external_lex_state = 2}, [5426] = {.lex_state = 75, .external_lex_state = 2}, [5427] = {.lex_state = 75, .external_lex_state = 2}, - [5428] = {.lex_state = 75, .external_lex_state = 5}, + [5428] = {.lex_state = 75, .external_lex_state = 2}, [5429] = {.lex_state = 75, .external_lex_state = 2}, [5430] = {.lex_state = 75, .external_lex_state = 2}, [5431] = {.lex_state = 75, .external_lex_state = 2}, - [5432] = {.lex_state = 75, .external_lex_state = 2}, + [5432] = {.lex_state = 75, .external_lex_state = 5}, [5433] = {.lex_state = 75, .external_lex_state = 2}, [5434] = {.lex_state = 75, .external_lex_state = 2}, [5435] = {.lex_state = 75, .external_lex_state = 2}, [5436] = {.lex_state = 75, .external_lex_state = 2}, - [5437] = {.lex_state = 75, .external_lex_state = 5}, + [5437] = {.lex_state = 75, .external_lex_state = 2}, [5438] = {.lex_state = 75, .external_lex_state = 2}, [5439] = {.lex_state = 75, .external_lex_state = 2}, - [5440] = {.lex_state = 75, .external_lex_state = 2}, + [5440] = {.lex_state = 75, .external_lex_state = 5}, [5441] = {.lex_state = 75, .external_lex_state = 2}, [5442] = {.lex_state = 75, .external_lex_state = 2}, [5443] = {.lex_state = 75, .external_lex_state = 2}, @@ -18377,24 +18417,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5451] = {.lex_state = 75, .external_lex_state = 2}, [5452] = {.lex_state = 75, .external_lex_state = 2}, [5453] = {.lex_state = 75, .external_lex_state = 2}, - [5454] = {.lex_state = 75, .external_lex_state = 2}, + [5454] = {.lex_state = 75, .external_lex_state = 5}, [5455] = {.lex_state = 75, .external_lex_state = 2}, - [5456] = {.lex_state = 75, .external_lex_state = 2}, - [5457] = {.lex_state = 75, .external_lex_state = 5}, + [5456] = {.lex_state = 75, .external_lex_state = 5}, + [5457] = {.lex_state = 75, .external_lex_state = 2}, [5458] = {.lex_state = 75, .external_lex_state = 2}, [5459] = {.lex_state = 75, .external_lex_state = 2}, - [5460] = {.lex_state = 75, .external_lex_state = 5}, - [5461] = {.lex_state = 75, .external_lex_state = 5}, - [5462] = {.lex_state = 75, .external_lex_state = 2}, + [5460] = {.lex_state = 75, .external_lex_state = 2}, + [5461] = {.lex_state = 75, .external_lex_state = 2}, + [5462] = {.lex_state = 75, .external_lex_state = 5}, [5463] = {.lex_state = 75, .external_lex_state = 2}, - [5464] = {.lex_state = 75, .external_lex_state = 2}, + [5464] = {.lex_state = 75, .external_lex_state = 5}, [5465] = {.lex_state = 75, .external_lex_state = 2}, - [5466] = {.lex_state = 75, .external_lex_state = 2}, + [5466] = {.lex_state = 75, .external_lex_state = 5}, [5467] = {.lex_state = 75, .external_lex_state = 2}, [5468] = {.lex_state = 75, .external_lex_state = 2}, [5469] = {.lex_state = 75, .external_lex_state = 2}, [5470] = {.lex_state = 75, .external_lex_state = 2}, - [5471] = {.lex_state = 75, .external_lex_state = 2}, + [5471] = {.lex_state = 75, .external_lex_state = 5}, [5472] = {.lex_state = 75, .external_lex_state = 2}, [5473] = {.lex_state = 75, .external_lex_state = 2}, [5474] = {.lex_state = 75, .external_lex_state = 2}, @@ -18405,7 +18445,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5479] = {.lex_state = 75, .external_lex_state = 2}, [5480] = {.lex_state = 75, .external_lex_state = 2}, [5481] = {.lex_state = 75, .external_lex_state = 2}, - [5482] = {.lex_state = 1, .external_lex_state = 10}, + [5482] = {.lex_state = 75, .external_lex_state = 2}, [5483] = {.lex_state = 75, .external_lex_state = 2}, [5484] = {.lex_state = 75, .external_lex_state = 2}, [5485] = {.lex_state = 75, .external_lex_state = 2}, @@ -18417,7 +18457,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5491] = {.lex_state = 75, .external_lex_state = 2}, [5492] = {.lex_state = 75, .external_lex_state = 2}, [5493] = {.lex_state = 75, .external_lex_state = 2}, - [5494] = {.lex_state = 1, .external_lex_state = 10}, + [5494] = {.lex_state = 75, .external_lex_state = 2}, [5495] = {.lex_state = 75, .external_lex_state = 2}, [5496] = {.lex_state = 75, .external_lex_state = 2}, [5497] = {.lex_state = 75, .external_lex_state = 2}, @@ -18433,14 +18473,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5507] = {.lex_state = 75, .external_lex_state = 2}, [5508] = {.lex_state = 75, .external_lex_state = 2}, [5509] = {.lex_state = 75, .external_lex_state = 2}, - [5510] = {.lex_state = 75, .external_lex_state = 2}, + [5510] = {.lex_state = 23, .external_lex_state = 2}, [5511] = {.lex_state = 75, .external_lex_state = 2}, [5512] = {.lex_state = 75, .external_lex_state = 2}, [5513] = {.lex_state = 75, .external_lex_state = 2}, [5514] = {.lex_state = 75, .external_lex_state = 2}, [5515] = {.lex_state = 75, .external_lex_state = 2}, [5516] = {.lex_state = 75, .external_lex_state = 2}, - [5517] = {.lex_state = 75, .external_lex_state = 2}, + [5517] = {.lex_state = 23, .external_lex_state = 2}, [5518] = {.lex_state = 75, .external_lex_state = 2}, [5519] = {.lex_state = 75, .external_lex_state = 2}, [5520] = {.lex_state = 75, .external_lex_state = 2}, @@ -18476,11 +18516,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5550] = {.lex_state = 75, .external_lex_state = 2}, [5551] = {.lex_state = 75, .external_lex_state = 2}, [5552] = {.lex_state = 75, .external_lex_state = 2}, - [5553] = {.lex_state = 23, .external_lex_state = 2}, + [5553] = {.lex_state = 75, .external_lex_state = 2}, [5554] = {.lex_state = 75, .external_lex_state = 2}, [5555] = {.lex_state = 75, .external_lex_state = 2}, [5556] = {.lex_state = 75, .external_lex_state = 2}, - [5557] = {.lex_state = 75, .external_lex_state = 2}, + [5557] = {.lex_state = 23, .external_lex_state = 2}, [5558] = {.lex_state = 75, .external_lex_state = 2}, [5559] = {.lex_state = 75, .external_lex_state = 2}, [5560] = {.lex_state = 75, .external_lex_state = 2}, @@ -18500,12 +18540,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5574] = {.lex_state = 75, .external_lex_state = 2}, [5575] = {.lex_state = 75, .external_lex_state = 2}, [5576] = {.lex_state = 75, .external_lex_state = 2}, - [5577] = {.lex_state = 75, .external_lex_state = 2}, + [5577] = {.lex_state = 1, .external_lex_state = 10}, [5578] = {.lex_state = 75, .external_lex_state = 2}, [5579] = {.lex_state = 75, .external_lex_state = 2}, [5580] = {.lex_state = 75, .external_lex_state = 2}, [5581] = {.lex_state = 75, .external_lex_state = 2}, - [5582] = {.lex_state = 75, .external_lex_state = 2}, + [5582] = {.lex_state = 23, .external_lex_state = 2}, [5583] = {.lex_state = 75, .external_lex_state = 2}, [5584] = {.lex_state = 75, .external_lex_state = 2}, [5585] = {.lex_state = 75, .external_lex_state = 2}, @@ -18550,7 +18590,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5624] = {.lex_state = 75, .external_lex_state = 2}, [5625] = {.lex_state = 75, .external_lex_state = 2}, [5626] = {.lex_state = 75, .external_lex_state = 2}, - [5627] = {.lex_state = 1, .external_lex_state = 10}, + [5627] = {.lex_state = 75, .external_lex_state = 2}, [5628] = {.lex_state = 75, .external_lex_state = 2}, [5629] = {.lex_state = 75, .external_lex_state = 2}, [5630] = {.lex_state = 75, .external_lex_state = 2}, @@ -18572,26 +18612,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5646] = {.lex_state = 75, .external_lex_state = 2}, [5647] = {.lex_state = 75, .external_lex_state = 2}, [5648] = {.lex_state = 75, .external_lex_state = 2}, - [5649] = {.lex_state = 23, .external_lex_state = 2}, + [5649] = {.lex_state = 75, .external_lex_state = 2}, [5650] = {.lex_state = 75, .external_lex_state = 2}, [5651] = {.lex_state = 75, .external_lex_state = 2}, [5652] = {.lex_state = 75, .external_lex_state = 2}, [5653] = {.lex_state = 75, .external_lex_state = 2}, - [5654] = {.lex_state = 75, .external_lex_state = 2}, - [5655] = {.lex_state = 1, .external_lex_state = 10}, + [5654] = {.lex_state = 23, .external_lex_state = 2}, + [5655] = {.lex_state = 75, .external_lex_state = 2}, [5656] = {.lex_state = 75, .external_lex_state = 2}, [5657] = {.lex_state = 75, .external_lex_state = 2}, [5658] = {.lex_state = 75, .external_lex_state = 2}, [5659] = {.lex_state = 75, .external_lex_state = 2}, [5660] = {.lex_state = 75, .external_lex_state = 2}, [5661] = {.lex_state = 75, .external_lex_state = 2}, - [5662] = {.lex_state = 23, .external_lex_state = 2}, + [5662] = {.lex_state = 75, .external_lex_state = 2}, [5663] = {.lex_state = 75, .external_lex_state = 2}, [5664] = {.lex_state = 75, .external_lex_state = 2}, [5665] = {.lex_state = 75, .external_lex_state = 2}, [5666] = {.lex_state = 75, .external_lex_state = 2}, [5667] = {.lex_state = 75, .external_lex_state = 2}, - [5668] = {.lex_state = 1, .external_lex_state = 10}, + [5668] = {.lex_state = 75, .external_lex_state = 2}, [5669] = {.lex_state = 75, .external_lex_state = 2}, [5670] = {.lex_state = 75, .external_lex_state = 2}, [5671] = {.lex_state = 75, .external_lex_state = 2}, @@ -18604,9 +18644,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5678] = {.lex_state = 75, .external_lex_state = 2}, [5679] = {.lex_state = 75, .external_lex_state = 2}, [5680] = {.lex_state = 75, .external_lex_state = 2}, - [5681] = {.lex_state = 75, .external_lex_state = 2}, + [5681] = {.lex_state = 1, .external_lex_state = 10}, [5682] = {.lex_state = 75, .external_lex_state = 2}, - [5683] = {.lex_state = 23, .external_lex_state = 2}, + [5683] = {.lex_state = 75, .external_lex_state = 2}, [5684] = {.lex_state = 75, .external_lex_state = 2}, [5685] = {.lex_state = 75, .external_lex_state = 2}, [5686] = {.lex_state = 75, .external_lex_state = 2}, @@ -18618,7 +18658,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5692] = {.lex_state = 75, .external_lex_state = 2}, [5693] = {.lex_state = 75, .external_lex_state = 2}, [5694] = {.lex_state = 75, .external_lex_state = 2}, - [5695] = {.lex_state = 75, .external_lex_state = 2}, + [5695] = {.lex_state = 1, .external_lex_state = 10}, [5696] = {.lex_state = 75, .external_lex_state = 2}, [5697] = {.lex_state = 75, .external_lex_state = 2}, [5698] = {.lex_state = 75, .external_lex_state = 2}, @@ -18647,7 +18687,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5721] = {.lex_state = 75, .external_lex_state = 2}, [5722] = {.lex_state = 75, .external_lex_state = 2}, [5723] = {.lex_state = 75, .external_lex_state = 2}, - [5724] = {.lex_state = 75, .external_lex_state = 2}, + [5724] = {.lex_state = 1, .external_lex_state = 10}, [5725] = {.lex_state = 75, .external_lex_state = 2}, [5726] = {.lex_state = 75, .external_lex_state = 2}, [5727] = {.lex_state = 75, .external_lex_state = 2}, @@ -18724,7 +18764,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5798] = {.lex_state = 75, .external_lex_state = 2}, [5799] = {.lex_state = 75, .external_lex_state = 2}, [5800] = {.lex_state = 75, .external_lex_state = 2}, - [5801] = {.lex_state = 23, .external_lex_state = 2}, + [5801] = {.lex_state = 75, .external_lex_state = 2}, [5802] = {.lex_state = 75, .external_lex_state = 2}, [5803] = {.lex_state = 75, .external_lex_state = 2}, [5804] = {.lex_state = 75, .external_lex_state = 2}, @@ -18793,6 +18833,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5867] = {.lex_state = 75, .external_lex_state = 2}, [5868] = {.lex_state = 75, .external_lex_state = 2}, [5869] = {.lex_state = 75, .external_lex_state = 2}, + [5870] = {.lex_state = 75, .external_lex_state = 2}, + [5871] = {.lex_state = 75, .external_lex_state = 2}, + [5872] = {.lex_state = 75, .external_lex_state = 2}, + [5873] = {.lex_state = 75, .external_lex_state = 2}, + [5874] = {.lex_state = 75, .external_lex_state = 2}, + [5875] = {.lex_state = 75, .external_lex_state = 2}, + [5876] = {.lex_state = 75, .external_lex_state = 2}, + [5877] = {.lex_state = 75, .external_lex_state = 2}, + [5878] = {.lex_state = 75, .external_lex_state = 2}, + [5879] = {.lex_state = 75, .external_lex_state = 2}, + [5880] = {.lex_state = 75, .external_lex_state = 2}, + [5881] = {.lex_state = 75, .external_lex_state = 2}, + [5882] = {.lex_state = 75, .external_lex_state = 2}, + [5883] = {.lex_state = 75, .external_lex_state = 2}, + [5884] = {.lex_state = 75, .external_lex_state = 2}, + [5885] = {.lex_state = 75, .external_lex_state = 2}, + [5886] = {.lex_state = 75, .external_lex_state = 2}, + [5887] = {.lex_state = 75, .external_lex_state = 2}, + [5888] = {.lex_state = 75, .external_lex_state = 2}, + [5889] = {.lex_state = 75, .external_lex_state = 2}, + [5890] = {.lex_state = 75, .external_lex_state = 2}, + [5891] = {.lex_state = 75, .external_lex_state = 2}, + [5892] = {.lex_state = 75, .external_lex_state = 2}, + [5893] = {.lex_state = 75, .external_lex_state = 2}, + [5894] = {.lex_state = 75, .external_lex_state = 2}, + [5895] = {.lex_state = 75, .external_lex_state = 2}, + [5896] = {.lex_state = 1, .external_lex_state = 10}, + [5897] = {.lex_state = 75, .external_lex_state = 2}, + [5898] = {.lex_state = 75, .external_lex_state = 2}, + [5899] = {.lex_state = 75, .external_lex_state = 2}, + [5900] = {.lex_state = 75, .external_lex_state = 2}, + [5901] = {.lex_state = 75, .external_lex_state = 2}, + [5902] = {.lex_state = 75, .external_lex_state = 2}, + [5903] = {.lex_state = 75, .external_lex_state = 2}, + [5904] = {.lex_state = 75, .external_lex_state = 2}, + [5905] = {.lex_state = 75, .external_lex_state = 2}, + [5906] = {.lex_state = 75, .external_lex_state = 2}, + [5907] = {.lex_state = 75, .external_lex_state = 2}, + [5908] = {.lex_state = 75, .external_lex_state = 2}, + [5909] = {.lex_state = 75, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18960,85 +19040,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5657), - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3774), + [sym_program] = STATE(5588), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3865), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -19118,77 +19198,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4312), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(4289), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), @@ -19198,388 +19278,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [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_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [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(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(194), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(193), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(202), + [anon_sym_readonly] = ACTIONS(201), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_QMARK] = ACTIONS(203), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), [anon_sym_override] = ACTIONS(113), [anon_sym_module] = ACTIONS(113), - [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(208), + [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(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4312), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(4289), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [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_QMARK_DOT] = ACTIONS(153), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [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(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(194), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(193), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(202), + [anon_sym_readonly] = ACTIONS(201), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_QMARK] = ACTIONS(203), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), [anon_sym_override] = ACTIONS(113), [anon_sym_module] = ACTIONS(113), - [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(208), + [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(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5637), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5637), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5637), - [sym_spread_element] = STATE(4576), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2202), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4576), - [sym_pair] = STATE(4576), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3648), - [sym_computed_property_name] = STATE(3648), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_accessibility_modifier] = STATE(2786), - [sym_override_modifier] = STATE(2808), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3774), - [aux_sym_object_repeat1] = STATE(4744), - [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5752), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5752), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5752), + [sym_spread_element] = STATE(4608), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2352), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4608), + [sym_pair] = STATE(4608), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3641), + [sym_computed_property_name] = STATE(3641), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2781), + [sym_override_modifier] = STATE(2814), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3865), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4650), [sym_identifier] = ACTIONS(227), [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), @@ -19661,96 +19741,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5637), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5637), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5637), - [sym_spread_element] = STATE(4576), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2202), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4576), - [sym_pair] = STATE(4576), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3648), - [sym_computed_property_name] = STATE(3648), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_accessibility_modifier] = STATE(2786), - [sym_override_modifier] = STATE(2808), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3774), - [aux_sym_object_repeat1] = STATE(4744), - [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5752), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5752), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5752), + [sym_spread_element] = STATE(4608), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2352), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4608), + [sym_pair] = STATE(4608), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3641), + [sym_computed_property_name] = STATE(3641), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2781), + [sym_override_modifier] = STATE(2814), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3865), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4650), [sym_identifier] = ACTIONS(227), [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), @@ -19832,96 +19912,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5637), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5637), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5637), - [sym_spread_element] = STATE(4721), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2202), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3648), - [sym_computed_property_name] = STATE(3648), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_accessibility_modifier] = STATE(2786), - [sym_override_modifier] = STATE(2808), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3774), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5752), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5752), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5752), + [sym_spread_element] = STATE(4566), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2352), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3641), + [sym_computed_property_name] = STATE(3641), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2781), + [sym_override_modifier] = STATE(2814), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(3865), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), [sym_identifier] = ACTIONS(273), [anon_sym_export] = ACTIONS(275), [anon_sym_STAR] = ACTIONS(231), @@ -20003,109 +20083,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5637), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5637), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5637), - [sym_spread_element] = STATE(4576), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2202), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4576), - [sym_pair] = STATE(4576), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3648), - [sym_computed_property_name] = STATE(3648), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_accessibility_modifier] = STATE(2786), - [sym_override_modifier] = STATE(2808), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3774), - [aux_sym_object_repeat1] = STATE(4744), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(227), - [anon_sym_export] = ACTIONS(229), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5752), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5752), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5752), + [sym_spread_element] = STATE(4566), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2352), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3641), + [sym_computed_property_name] = STATE(3641), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2781), + [sym_override_modifier] = STATE(2814), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(3865), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(305), + [anon_sym_export] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_type] = ACTIONS(233), - [anon_sym_namespace] = ACTIONS(235), + [anon_sym_type] = ACTIONS(309), + [anon_sym_namespace] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(241), + [anon_sym_let] = ACTIONS(313), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20125,9 +20205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(243), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(245), + [anon_sym_async] = ACTIONS(315), [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(247), + [anon_sym_new] = ACTIONS(317), [anon_sym_using] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), @@ -20152,131 +20232,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(255), - [anon_sym_readonly] = ACTIONS(257), - [anon_sym_get] = ACTIONS(259), - [anon_sym_set] = ACTIONS(259), - [anon_sym_declare] = ACTIONS(261), - [anon_sym_public] = ACTIONS(263), - [anon_sym_private] = ACTIONS(263), - [anon_sym_protected] = ACTIONS(263), - [anon_sym_override] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_any] = ACTIONS(269), - [anon_sym_number] = ACTIONS(269), - [anon_sym_boolean] = ACTIONS(269), - [anon_sym_string] = ACTIONS(269), - [anon_sym_symbol] = ACTIONS(269), - [anon_sym_object] = ACTIONS(269), + [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(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5637), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5637), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5637), - [sym_spread_element] = STATE(4721), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2202), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3648), - [sym_computed_property_name] = STATE(3648), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_accessibility_modifier] = STATE(2786), - [sym_override_modifier] = STATE(2808), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3774), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(307), - [anon_sym_export] = ACTIONS(309), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5752), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5752), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5752), + [sym_spread_element] = STATE(4608), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2352), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4608), + [sym_pair] = STATE(4608), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3641), + [sym_computed_property_name] = STATE(3641), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_accessibility_modifier] = STATE(2781), + [sym_override_modifier] = STATE(2814), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(3865), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_type] = ACTIONS(311), - [anon_sym_namespace] = ACTIONS(313), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(281), + [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(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20296,9 +20376,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(243), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(317), + [anon_sym_async] = ACTIONS(245), [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(319), + [anon_sym_new] = ACTIONS(247), [anon_sym_using] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), @@ -20323,106 +20403,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [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(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [ts_builtin_sym_end] = ACTIONS(337), [sym_identifier] = ACTIONS(339), [anon_sym_export] = ACTIONS(342), @@ -20504,84 +20584,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(491), @@ -20662,84 +20742,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(10), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(495), @@ -20820,84 +20900,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(499), @@ -20978,84 +21058,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(503), @@ -21136,90 +21216,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), + [ts_builtin_sym_end] = ACTIONS(507), [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(507), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21292,90 +21372,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), + [ts_builtin_sym_end] = ACTIONS(509), [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(509), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21448,90 +21528,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), - [ts_builtin_sym_end] = ACTIONS(511), + [aux_sym_export_statement_repeat1] = STATE(3865), [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(511), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21604,90 +21684,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), - [ts_builtin_sym_end] = ACTIONS(513), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3865), [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(513), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21760,84 +21840,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -21916,84 +21996,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22072,84 +22152,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22228,84 +22308,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22384,84 +22464,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22540,84 +22620,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3774), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22696,84 +22776,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22852,84 +22932,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23008,84 +23088,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3774), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23164,90 +23244,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(29), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(3865), + [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(533), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [28] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(3865), + [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(535), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [29] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_export_statement_repeat1] = STATE(3865), [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(533), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23319,91 +23711,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [28] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3774), + [30] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3865), + [ts_builtin_sym_end] = ACTIONS(509), [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(535), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23475,91 +23867,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [29] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(27), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(3774), + [31] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(784), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), [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(537), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23631,86 +24021,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [30] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3774), - [ts_builtin_sym_end] = ACTIONS(511), + [32] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [33] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(849), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23787,238 +24329,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [31] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(541), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(561), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(565), - [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(579), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(541), - [anon_sym_readonly] = ACTIONS(591), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(541), - [anon_sym_private] = ACTIONS(541), - [anon_sym_protected] = ACTIONS(541), - [anon_sym_override] = ACTIONS(541), - [anon_sym_module] = ACTIONS(541), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [32] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(940), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [34] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(5554), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -24095,84 +24483,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [33] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(928), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), + [35] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(931), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24249,103 +24637,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [34] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(832), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_type] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(611), + [36] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(927), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [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(613), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(615), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(617), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(619), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(621), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24355,10 +24743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(623), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(627), - [anon_sym_new] = ACTIONS(629), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -24382,124 +24770,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(631), - [anon_sym_readonly] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(633), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_override] = ACTIONS(631), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [anon_sym_object] = ACTIONS(631), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [35] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(4697), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_type] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(611), + [37] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(909), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [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(613), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(615), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(617), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(619), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(621), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24509,10 +24897,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(623), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(627), - [anon_sym_new] = ACTIONS(629), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -24536,124 +24924,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(631), - [anon_sym_readonly] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(633), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_override] = ACTIONS(631), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [anon_sym_object] = ACTIONS(631), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [36] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(931), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_type] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(611), + [38] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(914), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [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(613), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(615), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(617), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(619), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(621), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24663,10 +25051,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(623), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(627), - [anon_sym_new] = ACTIONS(629), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -24690,124 +25078,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(631), - [anon_sym_readonly] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(633), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_override] = ACTIONS(631), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [anon_sym_object] = ACTIONS(631), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [37] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(943), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_type] = ACTIONS(607), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(611), + [39] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(919), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [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(613), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(615), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(617), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(619), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(621), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24817,10 +25205,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(623), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(627), - [anon_sym_new] = ACTIONS(629), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -24844,259 +25232,721 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(631), - [anon_sym_readonly] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(633), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_override] = ACTIONS(631), - [anon_sym_module] = ACTIONS(635), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [anon_sym_object] = ACTIONS(631), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [38] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(541), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(637), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(565), - [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_SLASH] = ACTIONS(577), + [40] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(813), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(579), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(589), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(541), - [anon_sym_readonly] = ACTIONS(591), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(541), - [anon_sym_private] = ACTIONS(541), - [anon_sym_protected] = ACTIONS(541), - [anon_sym_override] = ACTIONS(541), - [anon_sym_module] = ACTIONS(541), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [41] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(814), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [42] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(836), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [43] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(855), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [44] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(927), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -25173,238 +26023,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2301), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4971), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4975), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(541), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(639), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(565), - [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(579), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(541), - [anon_sym_readonly] = ACTIONS(591), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(541), - [anon_sym_private] = ACTIONS(541), - [anon_sym_protected] = ACTIONS(541), - [anon_sym_override] = ACTIONS(541), - [anon_sym_module] = ACTIONS(541), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [41] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(928), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [45] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -25481,84 +26177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(874), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [46] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(4757), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -25635,84 +26331,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(815), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [47] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(913), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -25789,84 +26485,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(819), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [48] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(815), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -25943,84 +26639,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(823), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [49] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(850), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [50] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2123), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4990), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(5019), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [51] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(849), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -26097,84 +27101,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(830), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [52] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(931), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -26251,84 +27255,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(841), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [53] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(909), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -26405,84 +27409,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(843), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [54] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(914), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -26559,84 +27563,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(853), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [55] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(919), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -26713,103 +27717,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [56] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(813), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26819,10 +27823,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -26846,124 +27850,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(874), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [57] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(814), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26973,10 +27977,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27000,124 +28004,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(940), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [58] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(836), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27127,10 +28131,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27154,259 +28158,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(541), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(641), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(565), - [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(579), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(541), - [anon_sym_readonly] = ACTIONS(591), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(541), - [anon_sym_private] = ACTIONS(541), - [anon_sym_protected] = ACTIONS(541), - [anon_sym_override] = ACTIONS(541), - [anon_sym_module] = ACTIONS(541), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [54] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(5539), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3830), + [59] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(855), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), [sym_identifier] = ACTIONS(603), [anon_sym_export] = ACTIONS(605), [anon_sym_type] = ACTIONS(607), @@ -27483,84 +28333,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(815), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), + [60] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27637,87 +28487,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), + [61] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_STAR] = ACTIONS(543), @@ -27726,18 +28576,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_COMMA] = ACTIONS(549), [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(643), - [anon_sym_class] = ACTIONS(146), + [anon_sym_RBRACK] = ACTIONS(639), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(569), @@ -27752,17 +28602,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(589), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), @@ -27785,90 +28635,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(943), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), + [62] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(913), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27945,84 +28795,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(819), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), + [63] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [64] = { + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(815), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3865), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28099,703 +29103,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(823), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [60] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(830), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [61] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(841), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [62] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(843), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [65] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(643), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(589), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [63] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), + [66] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_STAR] = ACTIONS(543), @@ -28804,18 +29346,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_COMMA] = ACTIONS(549), [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_RBRACK] = ACTIONS(645), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(569), @@ -28830,17 +29372,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(589), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), @@ -28863,401 +29405,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [64] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(853), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [65] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(832), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), + [67] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_STAR] = ACTIONS(543), @@ -29266,18 +29500,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_COMMA] = ACTIONS(549), [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_RBRACK] = ACTIONS(647), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(569), @@ -29292,17 +29526,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(589), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), @@ -29325,93 +29559,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2301), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4971), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4975), - [aux_sym_array_pattern_repeat1] = STATE(4977), + [68] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2123), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4990), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(5019), + [aux_sym_array_pattern_repeat1] = STATE(5022), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_STAR] = ACTIONS(543), @@ -29420,18 +29654,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_COMMA] = ACTIONS(549), [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(569), @@ -29446,17 +29680,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(589), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), @@ -29479,93 +29713,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), + [69] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_STAR] = ACTIONS(543), @@ -29574,18 +29808,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_COMMA] = ACTIONS(549), [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_RBRACK] = ACTIONS(651), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(569), @@ -29600,17 +29834,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(589), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), @@ -29633,93 +29867,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [69] = { - [sym_import] = STATE(3663), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4317), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(4115), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4999), - [sym_optional_tuple_parameter] = STATE(4999), - [sym_optional_type] = STATE(4999), - [sym_rest_type] = STATE(4999), - [sym__tuple_type_member] = STATE(4999), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5455), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), + [70] = { + [sym_import] = STATE(3677), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4342), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(4024), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5053), + [sym_optional_tuple_parameter] = STATE(5053), + [sym_optional_type] = STATE(5053), + [sym_rest_type] = STATE(5053), + [sym__tuple_type_member] = STATE(5053), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5492), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), [anon_sym_STAR] = ACTIONS(543), @@ -29728,18 +29962,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_COMMA] = ACTIONS(653), [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_RBRACK] = ACTIONS(655), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(565), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(569), @@ -29754,17 +29988,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), [sym_undefined] = ACTIONS(589), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), @@ -29787,263 +30021,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [70] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(790), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3636), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(931), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5305), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(3774), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_export_statement] = STATE(835), + [sym_declaration] = STATE(835), + [sym_import] = STATE(3688), + [sym_import_statement] = STATE(835), + [sym_statement] = STATE(850), + [sym_expression_statement] = STATE(835), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_statement_block] = STATE(835), + [sym_if_statement] = STATE(835), + [sym_switch_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym_for_in_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_try_statement] = STATE(835), + [sym_with_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_debugger_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_throw_statement] = STATE(835), + [sym_empty_statement] = STATE(835), + [sym_labeled_statement] = STATE(835), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5166), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3911), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -30053,10 +30133,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30080,72 +30160,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [anon_sym_any] = ACTIONS(631), + [anon_sym_number] = ACTIONS(631), + [anon_sym_boolean] = ACTIONS(631), + [anon_sym_string] = ACTIONS(631), + [anon_sym_symbol] = ACTIONS(631), + [anon_sym_object] = ACTIONS(631), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(657), [anon_sym_export] = ACTIONS(659), [anon_sym_STAR] = ACTIONS(120), @@ -30154,42 +30234,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(663), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(684), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -30198,24 +30278,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -30223,7 +30303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -30249,55 +30329,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(659), [anon_sym_object] = ACTIONS(659), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(657), [anon_sym_export] = ACTIONS(659), [anon_sym_STAR] = ACTIONS(120), @@ -30306,42 +30386,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(663), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(684), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -30350,24 +30430,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -30375,7 +30455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -30401,55 +30481,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(659), [anon_sym_object] = ACTIONS(659), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(657), [anon_sym_export] = ACTIONS(659), [anon_sym_STAR] = ACTIONS(120), @@ -30458,42 +30538,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(663), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(684), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -30502,24 +30582,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -30527,7 +30607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -30553,55 +30633,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(659), [anon_sym_object] = ACTIONS(659), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4312), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3995), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), @@ -30611,41 +30691,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(700), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(703), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(706), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -30654,37 +30734,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(711), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(716), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -30705,400 +30785,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [76] = { - [sym_import] = STATE(3563), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4309), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4309), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4309), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5780), - [sym_string] = STATE(2338), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4387), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(638), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(722), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(724), - [anon_sym_namespace] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(730), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(724), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(744), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(752), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(754), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(760), - [sym_number] = ACTIONS(762), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_undefined] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(724), - [anon_sym_readonly] = ACTIONS(772), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(724), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(724), - [anon_sym_any] = ACTIONS(780), - [anon_sym_number] = ACTIONS(780), - [anon_sym_boolean] = ACTIONS(780), - [anon_sym_string] = ACTIONS(780), - [anon_sym_symbol] = ACTIONS(780), - [anon_sym_object] = ACTIONS(780), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [77] = { - [sym_import] = STATE(3563), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4309), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4309), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4309), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5679), - [sym_string] = STATE(2338), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4434), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(638), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(722), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(724), - [anon_sym_namespace] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(730), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(724), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(744), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(752), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(754), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(760), - [sym_number] = ACTIONS(762), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_undefined] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(724), - [anon_sym_readonly] = ACTIONS(772), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(724), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(724), - [anon_sym_any] = ACTIONS(780), - [anon_sym_number] = ACTIONS(780), - [anon_sym_boolean] = ACTIONS(780), - [anon_sym_string] = ACTIONS(780), - [anon_sym_symbol] = ACTIONS(780), - [anon_sym_object] = ACTIONS(780), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [78] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4303), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4012), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(703), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(706), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -31107,37 +30885,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(711), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(782), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(722), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -31158,98 +30936,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [77] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(3914), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4132), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(703), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(706), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -31258,37 +31036,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(711), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(724), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -31309,98 +31087,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [78] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(3922), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4224), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(703), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(706), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -31409,37 +31187,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(711), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(786), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(726), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -31460,249 +31238,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [81] = { - [sym_import] = STATE(3563), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4309), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4309), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4309), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5780), - [sym_string] = STATE(2338), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4434), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(638), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(722), - [anon_sym_export] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(724), - [anon_sym_namespace] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(730), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(724), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(744), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_DASH] = ACTIONS(752), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(754), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(760), - [sym_number] = ACTIONS(762), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_undefined] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(724), - [anon_sym_readonly] = ACTIONS(772), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(724), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(724), - [anon_sym_any] = ACTIONS(780), - [anon_sym_number] = ACTIONS(780), - [anon_sym_boolean] = ACTIONS(780), - [anon_sym_string] = ACTIONS(780), - [anon_sym_symbol] = ACTIONS(780), - [anon_sym_object] = ACTIONS(780), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [79] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4312), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4289), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(703), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(706), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -31711,37 +31338,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(711), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(716), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(728), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -31762,98 +31389,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [80] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4220), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3972), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(703), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(706), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -31862,37 +31489,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(711), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(788), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(730), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -31913,98 +31540,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [81] = { + [sym_import] = STATE(3620), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4344), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4344), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1371), + [sym_subscript_expression] = STATE(1371), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4344), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5552), + [sym_string] = STATE(2184), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1371), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4549), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(401), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(732), + [anon_sym_export] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(734), + [anon_sym_namespace] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(734), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(752), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(754), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(764), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(770), + [sym_number] = ACTIONS(772), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), + [sym_undefined] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(734), + [anon_sym_readonly] = ACTIONS(782), + [anon_sym_get] = ACTIONS(734), + [anon_sym_set] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(734), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), + [anon_sym_module] = ACTIONS(734), + [anon_sym_any] = ACTIONS(790), + [anon_sym_number] = ACTIONS(790), + [anon_sym_boolean] = ACTIONS(790), + [anon_sym_string] = ACTIONS(790), + [anon_sym_symbol] = ACTIONS(790), + [anon_sym_object] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [82] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4223), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4289), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(703), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(706), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -32013,37 +31791,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(711), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(790), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(728), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -32064,98 +31842,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [83] = { + [sym_import] = STATE(3620), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4344), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4344), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1371), + [sym_subscript_expression] = STATE(1371), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4344), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5602), + [sym_string] = STATE(2184), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1371), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4549), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(401), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(732), + [anon_sym_export] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(734), + [anon_sym_namespace] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(734), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(752), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(754), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(764), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(770), + [sym_number] = ACTIONS(772), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), + [sym_undefined] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(734), + [anon_sym_readonly] = ACTIONS(782), + [anon_sym_get] = ACTIONS(734), + [anon_sym_set] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(734), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), + [anon_sym_module] = ACTIONS(734), + [anon_sym_any] = ACTIONS(790), + [anon_sym_number] = ACTIONS(790), + [anon_sym_boolean] = ACTIONS(790), + [anon_sym_string] = ACTIONS(790), + [anon_sym_symbol] = ACTIONS(790), + [anon_sym_object] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [84] = { + [sym_import] = STATE(3620), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4344), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4344), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1371), + [sym_subscript_expression] = STATE(1371), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4344), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5552), + [sym_string] = STATE(2184), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1371), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4533), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(401), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(732), + [anon_sym_export] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(734), + [anon_sym_namespace] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(734), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(752), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(754), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(764), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(770), + [sym_number] = ACTIONS(772), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), + [sym_undefined] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(734), + [anon_sym_readonly] = ACTIONS(782), + [anon_sym_get] = ACTIONS(734), + [anon_sym_set] = ACTIONS(734), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(734), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), + [anon_sym_module] = ACTIONS(734), + [anon_sym_any] = ACTIONS(790), + [anon_sym_number] = ACTIONS(790), + [anon_sym_boolean] = ACTIONS(790), + [anon_sym_string] = ACTIONS(790), + [anon_sym_symbol] = ACTIONS(790), + [anon_sym_object] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4227), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4007), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(703), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(706), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -32164,37 +32244,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(169), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(181), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(180), + [anon_sym_DASH_DASH] = ACTIONS(180), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(711), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(792), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -32215,247 +32295,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [86] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4477), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(111), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(796), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), - [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [87] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -32464,148 +32394,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [87] = { + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4549), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(816), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(818), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), + [anon_sym_module] = ACTIONS(113), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4547), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(816), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(818), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), + [anon_sym_module] = ACTIONS(113), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [89] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), [anon_sym_COMMA] = ACTIONS(826), [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(826), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -32614,703 +32844,553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [89] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4397), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(111), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(796), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), - [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4405), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4533), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(816), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(818), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4434), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4470), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(816), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(818), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4387), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4461), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(816), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(818), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(830), [anon_sym_export] = ACTIONS(832), [anon_sym_STAR] = ACTIONS(120), @@ -33319,43 +33399,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(836), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(846), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33364,38 +33444,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(832), [anon_sym_readonly] = ACTIONS(832), @@ -33414,97 +33494,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(832), [anon_sym_object] = ACTIONS(832), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(846), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33513,147 +33593,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(830), - [anon_sym_export] = ACTIONS(832), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(846), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33662,145 +33742,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(832), - [anon_sym_readonly] = ACTIONS(832), - [anon_sym_get] = ACTIONS(832), - [anon_sym_set] = ACTIONS(832), - [anon_sym_declare] = ACTIONS(832), - [anon_sym_public] = ACTIONS(832), - [anon_sym_private] = ACTIONS(832), - [anon_sym_protected] = ACTIONS(832), - [anon_sym_override] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_any] = ACTIONS(832), - [anon_sym_number] = ACTIONS(832), - [anon_sym_boolean] = ACTIONS(832), - [anon_sym_string] = ACTIONS(832), - [anon_sym_symbol] = ACTIONS(832), - [anon_sym_object] = ACTIONS(832), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(848), - [anon_sym_export] = ACTIONS(850), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(850), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(854), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(856), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33809,146 +33889,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(850), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(684), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -33957,146 +34037,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(850), + [anon_sym_export] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_type] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(858), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -34105,146 +34185,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), + [anon_sym_static] = ACTIONS(852), + [anon_sym_readonly] = ACTIONS(852), + [anon_sym_get] = ACTIONS(852), + [anon_sym_set] = ACTIONS(852), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(852), + [anon_sym_public] = ACTIONS(852), + [anon_sym_private] = ACTIONS(852), + [anon_sym_protected] = ACTIONS(852), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(852), + [anon_sym_any] = ACTIONS(852), + [anon_sym_number] = ACTIONS(852), + [anon_sym_boolean] = ACTIONS(852), + [anon_sym_string] = ACTIONS(852), + [anon_sym_symbol] = ACTIONS(852), + [anon_sym_object] = ACTIONS(852), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(657), [anon_sym_export] = ACTIONS(659), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(663), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(684), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -34253,24 +34333,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -34278,7 +34358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -34303,96 +34383,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(659), [anon_sym_object] = ACTIONS(659), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(657), [anon_sym_export] = ACTIONS(659), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(663), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(684), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -34401,24 +34481,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -34426,7 +34506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -34451,244 +34531,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(659), [anon_sym_object] = ACTIONS(659), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(848), - [anon_sym_export] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(117), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(854), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(856), - [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(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(850), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [102] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(657), [anon_sym_export] = ACTIONS(659), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(663), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(684), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -34697,24 +34629,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -34722,7 +34654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -34747,96 +34679,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(659), [anon_sym_object] = ACTIONS(659), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(862), - [anon_sym_export] = ACTIONS(864), + [102] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(864), + [anon_sym_export] = ACTIONS(866), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(866), + [anon_sym_type] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(868), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(868), + [anon_sym_namespace] = ACTIONS(870), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_let] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), [anon_sym_function] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(874), - [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_EQ_GT] = ACTIONS(874), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(876), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -34845,24 +34777,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -34870,7 +34802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -34878,113 +34810,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(688), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(864), - [anon_sym_readonly] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [anon_sym_declare] = ACTIONS(864), - [anon_sym_public] = ACTIONS(864), - [anon_sym_private] = ACTIONS(864), - [anon_sym_protected] = ACTIONS(864), - [anon_sym_override] = ACTIONS(864), - [anon_sym_module] = ACTIONS(864), - [anon_sym_any] = ACTIONS(864), - [anon_sym_number] = ACTIONS(864), - [anon_sym_boolean] = ACTIONS(864), - [anon_sym_string] = ACTIONS(864), - [anon_sym_symbol] = ACTIONS(864), - [anon_sym_object] = ACTIONS(864), + [anon_sym_static] = ACTIONS(866), + [anon_sym_readonly] = ACTIONS(866), + [anon_sym_get] = ACTIONS(866), + [anon_sym_set] = ACTIONS(866), + [anon_sym_declare] = ACTIONS(866), + [anon_sym_public] = ACTIONS(866), + [anon_sym_private] = ACTIONS(866), + [anon_sym_protected] = ACTIONS(866), + [anon_sym_override] = ACTIONS(866), + [anon_sym_module] = ACTIONS(866), + [anon_sym_any] = ACTIONS(866), + [anon_sym_number] = ACTIONS(866), + [anon_sym_boolean] = ACTIONS(866), + [anon_sym_string] = ACTIONS(866), + [anon_sym_symbol] = ACTIONS(866), + [anon_sym_object] = ACTIONS(866), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [103] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(864), + [anon_sym_export] = ACTIONS(866), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(868), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(874), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(876), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -34993,146 +34925,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(866), + [anon_sym_readonly] = ACTIONS(866), + [anon_sym_get] = ACTIONS(866), + [anon_sym_set] = ACTIONS(866), + [anon_sym_declare] = ACTIONS(866), + [anon_sym_public] = ACTIONS(866), + [anon_sym_private] = ACTIONS(866), + [anon_sym_protected] = ACTIONS(866), + [anon_sym_override] = ACTIONS(866), + [anon_sym_module] = ACTIONS(866), + [anon_sym_any] = ACTIONS(866), + [anon_sym_number] = ACTIONS(866), + [anon_sym_boolean] = ACTIONS(866), + [anon_sym_string] = ACTIONS(866), + [anon_sym_symbol] = ACTIONS(866), + [anon_sym_object] = ACTIONS(866), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(862), - [anon_sym_export] = ACTIONS(864), + [104] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(866), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), [anon_sym_DOT] = ACTIONS(674), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(870), - [anon_sym_function] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(874), - [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_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(874), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35141,146 +35073,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(864), - [anon_sym_readonly] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [anon_sym_declare] = ACTIONS(864), - [anon_sym_public] = ACTIONS(864), - [anon_sym_private] = ACTIONS(864), - [anon_sym_protected] = ACTIONS(864), - [anon_sym_override] = ACTIONS(864), - [anon_sym_module] = ACTIONS(864), - [anon_sym_any] = ACTIONS(864), - [anon_sym_number] = ACTIONS(864), - [anon_sym_boolean] = ACTIONS(864), - [anon_sym_string] = ACTIONS(864), - [anon_sym_symbol] = ACTIONS(864), - [anon_sym_object] = ACTIONS(864), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(657), - [anon_sym_export] = ACTIONS(659), + [105] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(850), + [anon_sym_export] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_type] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(878), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(858), + [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(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(852), + [anon_sym_readonly] = ACTIONS(852), + [anon_sym_get] = ACTIONS(852), + [anon_sym_set] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(852), + [anon_sym_public] = ACTIONS(852), + [anon_sym_private] = ACTIONS(852), + [anon_sym_protected] = ACTIONS(852), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(852), + [anon_sym_any] = ACTIONS(852), + [anon_sym_number] = ACTIONS(852), + [anon_sym_boolean] = ACTIONS(852), + [anon_sym_string] = ACTIONS(852), + [anon_sym_symbol] = ACTIONS(852), + [anon_sym_object] = ACTIONS(852), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [106] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), [anon_sym_DOT] = ACTIONS(674), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(678), - [anon_sym_function] = ACTIONS(680), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(684), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35289,146 +35369,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(659), - [anon_sym_readonly] = ACTIONS(659), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(659), - [anon_sym_declare] = ACTIONS(659), - [anon_sym_public] = ACTIONS(659), - [anon_sym_private] = ACTIONS(659), - [anon_sym_protected] = ACTIONS(659), - [anon_sym_override] = ACTIONS(659), - [anon_sym_module] = ACTIONS(659), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(848), - [anon_sym_export] = ACTIONS(850), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(880), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(852), + [anon_sym_namespace] = ACTIONS(836), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(880), + [anon_sym_of] = ACTIONS(883), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(854), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(856), - [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] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(846), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35437,145 +35517,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(850), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(848), - [anon_sym_export] = ACTIONS(850), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(850), + [anon_sym_export] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(880), + [anon_sym_type] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(885), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(852), + [anon_sym_namespace] = ACTIONS(854), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(854), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(856), - [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] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(858), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35584,145 +35664,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(850), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(850), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), + [anon_sym_static] = ACTIONS(852), + [anon_sym_readonly] = ACTIONS(852), + [anon_sym_get] = ACTIONS(852), + [anon_sym_set] = ACTIONS(852), + [anon_sym_declare] = ACTIONS(852), + [anon_sym_public] = ACTIONS(852), + [anon_sym_private] = ACTIONS(852), + [anon_sym_protected] = ACTIONS(852), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(852), + [anon_sym_any] = ACTIONS(852), + [anon_sym_number] = ACTIONS(852), + [anon_sym_boolean] = ACTIONS(852), + [anon_sym_string] = ACTIONS(852), + [anon_sym_symbol] = ACTIONS(852), + [anon_sym_object] = ACTIONS(852), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(884), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(886), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(893), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(897), - [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_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35731,102 +35811,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(884), - [anon_sym_readonly] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [anon_sym_declare] = ACTIONS(884), - [anon_sym_public] = ACTIONS(884), - [anon_sym_private] = ACTIONS(884), - [anon_sym_protected] = ACTIONS(884), - [anon_sym_override] = ACTIONS(884), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(884), - [anon_sym_number] = ACTIONS(884), - [anon_sym_boolean] = ACTIONS(884), - [anon_sym_string] = ACTIONS(884), - [anon_sym_symbol] = ACTIONS(884), - [anon_sym_object] = ACTIONS(884), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(830), [anon_sym_export] = ACTIONS(832), [anon_sym_STAR] = ACTIONS(120), @@ -35835,41 +35915,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(836), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(846), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -35878,38 +35958,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(832), [anon_sym_readonly] = ACTIONS(832), @@ -35928,95 +36008,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(832), [anon_sym_object] = ACTIONS(832), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(830), - [anon_sym_export] = ACTIONS(832), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_type] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(894), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(836), + [anon_sym_namespace] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(902), - [anon_sym_of] = ACTIONS(905), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(846), - [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_RBRACK] = ACTIONS(222), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(905), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36025,145 +36105,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(832), - [anon_sym_readonly] = ACTIONS(832), - [anon_sym_get] = ACTIONS(832), - [anon_sym_set] = ACTIONS(832), - [anon_sym_declare] = ACTIONS(832), - [anon_sym_public] = ACTIONS(832), - [anon_sym_private] = ACTIONS(832), - [anon_sym_protected] = ACTIONS(832), - [anon_sym_override] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_any] = ACTIONS(832), - [anon_sym_number] = ACTIONS(832), - [anon_sym_boolean] = ACTIONS(832), - [anon_sym_string] = ACTIONS(832), - [anon_sym_symbol] = ACTIONS(832), - [anon_sym_object] = ACTIONS(832), + [anon_sym_static] = ACTIONS(892), + [anon_sym_readonly] = ACTIONS(892), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(892), + [anon_sym_private] = ACTIONS(892), + [anon_sym_protected] = ACTIONS(892), + [anon_sym_override] = ACTIONS(892), + [anon_sym_module] = ACTIONS(892), + [anon_sym_any] = ACTIONS(892), + [anon_sym_number] = ACTIONS(892), + [anon_sym_boolean] = ACTIONS(892), + [anon_sym_string] = ACTIONS(892), + [anon_sym_symbol] = ACTIONS(892), + [anon_sym_object] = ACTIONS(892), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(830), - [anon_sym_export] = ACTIONS(832), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(850), + [anon_sym_export] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_type] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(885), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(836), + [anon_sym_namespace] = ACTIONS(854), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(846), - [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] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(858), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36172,145 +36252,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(832), - [anon_sym_readonly] = ACTIONS(832), - [anon_sym_get] = ACTIONS(832), - [anon_sym_set] = ACTIONS(832), - [anon_sym_declare] = ACTIONS(832), - [anon_sym_public] = ACTIONS(832), - [anon_sym_private] = ACTIONS(832), - [anon_sym_protected] = ACTIONS(832), - [anon_sym_override] = ACTIONS(832), - [anon_sym_module] = ACTIONS(832), - [anon_sym_any] = ACTIONS(832), - [anon_sym_number] = ACTIONS(832), - [anon_sym_boolean] = ACTIONS(832), - [anon_sym_string] = ACTIONS(832), - [anon_sym_symbol] = ACTIONS(832), - [anon_sym_object] = ACTIONS(832), + [anon_sym_static] = ACTIONS(852), + [anon_sym_readonly] = ACTIONS(852), + [anon_sym_get] = ACTIONS(852), + [anon_sym_set] = ACTIONS(852), + [anon_sym_declare] = ACTIONS(852), + [anon_sym_public] = ACTIONS(852), + [anon_sym_private] = ACTIONS(852), + [anon_sym_protected] = ACTIONS(852), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(852), + [anon_sym_any] = ACTIONS(852), + [anon_sym_number] = ACTIONS(852), + [anon_sym_boolean] = ACTIONS(852), + [anon_sym_string] = ACTIONS(852), + [anon_sym_symbol] = ACTIONS(852), + [anon_sym_object] = ACTIONS(852), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(846), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36319,102 +36399,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(830), [anon_sym_export] = ACTIONS(832), [anon_sym_STAR] = ACTIONS(120), @@ -36423,41 +36503,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(836), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(846), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36466,38 +36546,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(832), [anon_sym_readonly] = ACTIONS(832), @@ -36516,94 +36596,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(832), [anon_sym_object] = ACTIONS(832), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(884), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(912), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(893), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(897), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36612,143 +36691,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(884), - [anon_sym_readonly] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [anon_sym_declare] = ACTIONS(884), - [anon_sym_public] = ACTIONS(884), - [anon_sym_private] = ACTIONS(884), - [anon_sym_protected] = ACTIONS(884), - [anon_sym_override] = ACTIONS(884), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(884), - [anon_sym_number] = ACTIONS(884), - [anon_sym_boolean] = ACTIONS(884), - [anon_sym_string] = ACTIONS(884), - [anon_sym_symbol] = ACTIONS(884), - [anon_sym_object] = ACTIONS(884), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(914), - [anon_sym_export] = ACTIONS(916), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(912), + [anon_sym_export] = ACTIONS(914), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(916), - [anon_sym_EQ] = ACTIONS(918), + [anon_sym_type] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(920), + [anon_sym_namespace] = ACTIONS(918), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_let] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(920), [anon_sym_function] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(926), - [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_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(922), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36757,24 +36837,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -36782,7 +36862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -36790,112 +36870,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(688), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_object] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(914), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(914), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(884), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(894), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(889), + [anon_sym_namespace] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(893), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(897), - [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_RBRACK] = ACTIONS(222), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(905), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -36904,143 +36984,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(884), - [anon_sym_readonly] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [anon_sym_declare] = ACTIONS(884), - [anon_sym_public] = ACTIONS(884), - [anon_sym_private] = ACTIONS(884), - [anon_sym_protected] = ACTIONS(884), - [anon_sym_override] = ACTIONS(884), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(884), - [anon_sym_number] = ACTIONS(884), - [anon_sym_boolean] = ACTIONS(884), - [anon_sym_string] = ACTIONS(884), - [anon_sym_symbol] = ACTIONS(884), - [anon_sym_object] = ACTIONS(884), + [anon_sym_static] = ACTIONS(892), + [anon_sym_readonly] = ACTIONS(892), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(892), + [anon_sym_private] = ACTIONS(892), + [anon_sym_protected] = ACTIONS(892), + [anon_sym_override] = ACTIONS(892), + [anon_sym_module] = ACTIONS(892), + [anon_sym_any] = ACTIONS(892), + [anon_sym_number] = ACTIONS(892), + [anon_sym_boolean] = ACTIONS(892), + [anon_sym_string] = ACTIONS(892), + [anon_sym_symbol] = ACTIONS(892), + [anon_sym_object] = ACTIONS(892), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(924), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(674), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_COLON] = ACTIONS(926), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(905), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37049,103 +37130,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(892), + [anon_sym_readonly] = ACTIONS(892), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(892), + [anon_sym_private] = ACTIONS(892), + [anon_sym_protected] = ACTIONS(892), + [anon_sym_override] = ACTIONS(892), + [anon_sym_module] = ACTIONS(892), + [anon_sym_any] = ACTIONS(892), + [anon_sym_number] = ACTIONS(892), + [anon_sym_boolean] = ACTIONS(892), + [anon_sym_string] = ACTIONS(892), + [anon_sym_symbol] = ACTIONS(892), + [anon_sym_object] = ACTIONS(892), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4321), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5458), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4190), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5402), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(830), [anon_sym_export] = ACTIONS(832), [anon_sym_STAR] = ACTIONS(120), @@ -37154,40 +37234,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(836), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(846), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37196,38 +37276,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(832), [anon_sym_readonly] = ACTIONS(832), @@ -37246,93 +37326,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(832), [anon_sym_object] = ACTIONS(832), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1334), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(1696), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(2694), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1334), - [sym_subscript_expression] = STATE(1334), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1334), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(914), - [anon_sym_export] = ACTIONS(916), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1348), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(1718), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(2683), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1348), + [sym_subscript_expression] = STATE(1348), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1348), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(912), + [anon_sym_export] = ACTIONS(914), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(916), - [anon_sym_EQ] = ACTIONS(918), + [anon_sym_type] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(920), + [anon_sym_namespace] = ACTIONS(918), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(179), + [anon_sym_typeof] = ACTIONS(178), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_let] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(178), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(674), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(920), [anon_sym_function] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(926), - [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_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(922), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37341,24 +37421,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), [anon_sym_DQUOTE] = ACTIONS(83), @@ -37366,7 +37446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -37374,216 +37454,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(688), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_object] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(914), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(914), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(928), - [anon_sym_export] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(938), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(940), - [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(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(930), - [anon_sym_readonly] = ACTIONS(930), - [anon_sym_get] = ACTIONS(930), - [anon_sym_set] = ACTIONS(930), - [anon_sym_declare] = ACTIONS(930), - [anon_sym_public] = ACTIONS(930), - [anon_sym_private] = ACTIONS(930), - [anon_sym_protected] = ACTIONS(930), - [anon_sym_override] = ACTIONS(930), - [anon_sym_module] = ACTIONS(930), - [anon_sym_any] = ACTIONS(930), - [anon_sym_number] = ACTIONS(930), - [anon_sym_boolean] = ACTIONS(930), - [anon_sym_string] = ACTIONS(930), - [anon_sym_symbol] = ACTIONS(930), - [anon_sym_object] = ACTIONS(930), - [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [122] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3971), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5372), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4352), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5496), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(830), [anon_sym_export] = ACTIONS(832), [anon_sym_STAR] = ACTIONS(120), @@ -37592,40 +37526,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(836), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(832), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(846), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37634,38 +37568,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(832), [anon_sym_readonly] = ACTIONS(832), @@ -37684,94 +37618,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(832), [anon_sym_object] = ACTIONS(832), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(884), + [122] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(886), + [anon_sym_type] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(924), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(889), + [anon_sym_namespace] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(893), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(897), - [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_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(905), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37780,102 +37714,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(884), - [anon_sym_readonly] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [anon_sym_declare] = ACTIONS(884), - [anon_sym_public] = ACTIONS(884), - [anon_sym_private] = ACTIONS(884), - [anon_sym_protected] = ACTIONS(884), - [anon_sym_override] = ACTIONS(884), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(884), - [anon_sym_number] = ACTIONS(884), - [anon_sym_boolean] = ACTIONS(884), - [anon_sym_string] = ACTIONS(884), - [anon_sym_symbol] = ACTIONS(884), - [anon_sym_object] = ACTIONS(884), + [anon_sym_static] = ACTIONS(892), + [anon_sym_readonly] = ACTIONS(892), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(892), + [anon_sym_private] = ACTIONS(892), + [anon_sym_protected] = ACTIONS(892), + [anon_sym_override] = ACTIONS(892), + [anon_sym_module] = ACTIONS(892), + [anon_sym_any] = ACTIONS(892), + [anon_sym_number] = ACTIONS(892), + [anon_sym_boolean] = ACTIONS(892), + [anon_sym_string] = ACTIONS(892), + [anon_sym_symbol] = ACTIONS(892), + [anon_sym_object] = ACTIONS(892), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [123] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(928), [anon_sym_export] = ACTIONS(930), [anon_sym_STAR] = ACTIONS(120), @@ -37884,39 +37818,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(934), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(938), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(940), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -37925,38 +37859,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(930), [anon_sym_readonly] = ACTIONS(930), @@ -37976,93 +37910,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(930), [anon_sym_satisfies] = ACTIONS(120), [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [124] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(938), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38071,144 +38005,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(944), - [anon_sym_export] = ACTIONS(946), + [125] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(948), + [anon_sym_type] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(952), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(956), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(940), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38217,143 +38151,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(946), - [anon_sym_readonly] = ACTIONS(946), - [anon_sym_get] = ACTIONS(946), - [anon_sym_set] = ACTIONS(946), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(946), - [anon_sym_private] = ACTIONS(946), - [anon_sym_protected] = ACTIONS(946), - [anon_sym_override] = ACTIONS(946), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(946), - [anon_sym_number] = ACTIONS(946), - [anon_sym_boolean] = ACTIONS(946), - [anon_sym_string] = ACTIONS(946), - [anon_sym_symbol] = ACTIONS(946), - [anon_sym_object] = ACTIONS(946), + [anon_sym_static] = ACTIONS(930), + [anon_sym_readonly] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [anon_sym_declare] = ACTIONS(930), + [anon_sym_public] = ACTIONS(930), + [anon_sym_private] = ACTIONS(930), + [anon_sym_protected] = ACTIONS(930), + [anon_sym_override] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_any] = ACTIONS(930), + [anon_sym_number] = ACTIONS(930), + [anon_sym_boolean] = ACTIONS(930), + [anon_sym_string] = ACTIONS(930), + [anon_sym_symbol] = ACTIONS(930), + [anon_sym_object] = ACTIONS(930), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [126] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(880), + [anon_sym_of] = ACTIONS(883), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(902), - [anon_sym_of] = ACTIONS(905), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38362,143 +38442,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(884), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(924), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(889), + [anon_sym_namespace] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(893), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(897), - [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_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(905), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38507,143 +38587,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(884), - [anon_sym_readonly] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [anon_sym_declare] = ACTIONS(884), - [anon_sym_public] = ACTIONS(884), - [anon_sym_private] = ACTIONS(884), - [anon_sym_protected] = ACTIONS(884), - [anon_sym_override] = ACTIONS(884), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(884), - [anon_sym_number] = ACTIONS(884), - [anon_sym_boolean] = ACTIONS(884), - [anon_sym_string] = ACTIONS(884), - [anon_sym_symbol] = ACTIONS(884), - [anon_sym_object] = ACTIONS(884), + [anon_sym_static] = ACTIONS(892), + [anon_sym_readonly] = ACTIONS(892), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(892), + [anon_sym_private] = ACTIONS(892), + [anon_sym_protected] = ACTIONS(892), + [anon_sym_override] = ACTIONS(892), + [anon_sym_module] = ACTIONS(892), + [anon_sym_any] = ACTIONS(892), + [anon_sym_number] = ACTIONS(892), + [anon_sym_boolean] = ACTIONS(892), + [anon_sym_string] = ACTIONS(892), + [anon_sym_symbol] = ACTIONS(892), + [anon_sym_object] = ACTIONS(892), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(944), + [anon_sym_export] = ACTIONS(946), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(948), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(952), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(956), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38652,102 +38732,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(946), + [anon_sym_readonly] = ACTIONS(946), + [anon_sym_get] = ACTIONS(946), + [anon_sym_set] = ACTIONS(946), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_protected] = ACTIONS(946), + [anon_sym_override] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(946), + [anon_sym_number] = ACTIONS(946), + [anon_sym_boolean] = ACTIONS(946), + [anon_sym_string] = ACTIONS(946), + [anon_sym_symbol] = ACTIONS(946), + [anon_sym_object] = ACTIONS(946), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(960), [anon_sym_export] = ACTIONS(962), [anon_sym_STAR] = ACTIONS(120), @@ -38756,39 +38836,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(966), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(968), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(970), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(972), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38797,38 +38877,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(962), [anon_sym_readonly] = ACTIONS(962), @@ -38847,93 +38927,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(962), [anon_sym_object] = ACTIONS(962), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(884), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(924), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(889), + [anon_sym_namespace] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(893), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(897), - [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_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(905), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -38942,102 +39022,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(884), - [anon_sym_readonly] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [anon_sym_declare] = ACTIONS(884), - [anon_sym_public] = ACTIONS(884), - [anon_sym_private] = ACTIONS(884), - [anon_sym_protected] = ACTIONS(884), - [anon_sym_override] = ACTIONS(884), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(884), - [anon_sym_number] = ACTIONS(884), - [anon_sym_boolean] = ACTIONS(884), - [anon_sym_string] = ACTIONS(884), - [anon_sym_symbol] = ACTIONS(884), - [anon_sym_object] = ACTIONS(884), + [anon_sym_static] = ACTIONS(892), + [anon_sym_readonly] = ACTIONS(892), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(892), + [anon_sym_private] = ACTIONS(892), + [anon_sym_protected] = ACTIONS(892), + [anon_sym_override] = ACTIONS(892), + [anon_sym_module] = ACTIONS(892), + [anon_sym_any] = ACTIONS(892), + [anon_sym_number] = ACTIONS(892), + [anon_sym_boolean] = ACTIONS(892), + [anon_sym_string] = ACTIONS(892), + [anon_sym_symbol] = ACTIONS(892), + [anon_sym_object] = ACTIONS(892), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(960), [anon_sym_export] = ACTIONS(962), [anon_sym_STAR] = ACTIONS(120), @@ -39046,39 +39126,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(966), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(968), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(970), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(972), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39087,38 +39167,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(962), [anon_sym_readonly] = ACTIONS(962), @@ -39137,93 +39217,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(962), [anon_sym_object] = ACTIONS(962), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(970), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39232,143 +39312,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39377,102 +39457,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(944), [anon_sym_export] = ACTIONS(946), [anon_sym_STAR] = ACTIONS(120), @@ -39480,40 +39560,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(948), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(952), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(956), - [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39522,38 +39602,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(946), [anon_sym_readonly] = ACTIONS(946), @@ -39572,93 +39652,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(946), [anon_sym_object] = ACTIONS(946), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39667,142 +39747,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(974), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39811,142 +39891,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(976), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -39955,142 +40035,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4116), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5344), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(978), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40099,142 +40179,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4027), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5232), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(978), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40243,142 +40323,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(980), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40387,142 +40467,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_EQ] = ACTIONS(982), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40531,286 +40611,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3574), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(5260), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_nested_identifier] = STATE(5535), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1956), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4930), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3302), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5291), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(984), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_type] = ACTIONS(541), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_typeof] = ACTIONS(990), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(998), - [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(1006), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1008), - [sym_number] = ACTIONS(1010), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(1012), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1014), - [sym_false] = ACTIONS(1014), - [sym_null] = ACTIONS(1014), - [sym_undefined] = ACTIONS(1016), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(541), - [anon_sym_readonly] = ACTIONS(1018), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(541), - [anon_sym_private] = ACTIONS(541), - [anon_sym_protected] = ACTIONS(541), - [anon_sym_override] = ACTIONS(541), - [anon_sym_module] = ACTIONS(541), - [anon_sym_any] = ACTIONS(1022), - [anon_sym_number] = ACTIONS(1022), - [anon_sym_boolean] = ACTIONS(1022), - [anon_sym_string] = ACTIONS(1022), - [anon_sym_symbol] = ACTIONS(1022), - [anon_sym_object] = ACTIONS(1022), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [144] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(984), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40819,142 +40755,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [145] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [144] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(986), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -40963,142 +40899,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [145] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41107,142 +41043,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [146] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(988), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41251,286 +41187,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [147] = { + [sym_import] = STATE(3661), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(5401), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_nested_identifier] = STATE(5526), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2071), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(4098), + [sym_pattern] = STATE(5058), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3341), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5348), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(990), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_typeof] = ACTIONS(996), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1004), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1010), [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(1012), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(1014), + [sym_number] = ACTIONS(1016), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(1018), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), + [sym_undefined] = ACTIONS(1022), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(1024), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(1028), + [anon_sym_number] = ACTIONS(1028), + [anon_sym_boolean] = ACTIONS(1028), + [anon_sym_string] = ACTIONS(1028), + [anon_sym_symbol] = ACTIONS(1028), + [anon_sym_object] = ACTIONS(1028), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1501), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [148] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(1042), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(818), - [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_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -41539,130 +41475,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [149] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1500), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_DOT] = ACTIONS(806), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(810), + [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(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2188), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5640), - [sym_string] = STATE(2338), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4622), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(4133), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(4403), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2129), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5685), + [sym_string] = STATE(2184), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4703), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(4062), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(4456), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1046), [anon_sym_export] = ACTIONS(1048), [anon_sym_STAR] = ACTIONS(543), @@ -41670,21 +41750,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(1052), [anon_sym_typeof] = ACTIONS(1054), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1060), [anon_sym_using] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), [anon_sym_PLUS] = ACTIONS(1062), [anon_sym_DASH] = ACTIONS(1062), [anon_sym_SLASH] = ACTIONS(577), @@ -41694,24 +41774,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(760), - [sym_number] = ACTIONS(762), + [anon_sym_BQUOTE] = ACTIONS(770), + [sym_number] = ACTIONS(772), [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(1064), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(778), + [sym_false] = ACTIONS(778), + [sym_null] = ACTIONS(778), [sym_undefined] = ACTIONS(1066), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), [anon_sym_readonly] = ACTIONS(1068), [anon_sym_get] = ACTIONS(1048), [anon_sym_set] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1048), [anon_sym_public] = ACTIONS(1048), [anon_sym_private] = ACTIONS(1048), @@ -41724,389 +41804,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1070), [anon_sym_symbol] = ACTIONS(1070), [anon_sym_object] = ACTIONS(1070), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(3508), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2226), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(647), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3940), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3940), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3940), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2369), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1365), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4050), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1072), [anon_sym_export] = ACTIONS(1074), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1074), [anon_sym_namespace] = ACTIONS(1076), [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_typeof] = ACTIONS(1080), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1080), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1098), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1104), - [sym_number] = ACTIONS(1106), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(1110), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), - [sym_undefined] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1084), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1116), + [anon_sym_readonly] = ACTIONS(1086), [anon_sym_get] = ACTIONS(1074), [anon_sym_set] = ACTIONS(1074), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1074), [anon_sym_public] = ACTIONS(1074), [anon_sym_private] = ACTIONS(1074), [anon_sym_protected] = ACTIONS(1074), [anon_sym_override] = ACTIONS(1074), [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1118), - [anon_sym_number] = ACTIONS(1118), - [anon_sym_boolean] = ACTIONS(1118), - [anon_sym_string] = ACTIONS(1118), - [anon_sym_symbol] = ACTIONS(1118), - [anon_sym_object] = ACTIONS(1118), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(1088), + [anon_sym_number] = ACTIONS(1088), + [anon_sym_boolean] = ACTIONS(1088), + [anon_sym_string] = ACTIONS(1088), + [anon_sym_symbol] = ACTIONS(1088), + [anon_sym_object] = ACTIONS(1088), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [152] = { - [sym_import] = STATE(3508), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2532), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3635), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2618), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2226), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2155), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1120), - [anon_sym_export] = ACTIONS(804), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1090), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1124), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1104), - [sym_number] = ACTIONS(1106), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1110), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), - [sym_undefined] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1102), + [sym_number] = ACTIONS(1104), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1106), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_undefined] = ACTIONS(1110), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(1130), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(1132), - [anon_sym_number] = ACTIONS(1132), - [anon_sym_boolean] = ACTIONS(1132), - [anon_sym_string] = ACTIONS(1132), - [anon_sym_symbol] = ACTIONS(1132), - [anon_sym_object] = ACTIONS(1132), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(1112), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(1114), + [anon_sym_number] = ACTIONS(1114), + [anon_sym_boolean] = ACTIONS(1114), + [anon_sym_string] = ACTIONS(1114), + [anon_sym_symbol] = ACTIONS(1114), + [anon_sym_object] = ACTIONS(1114), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [153] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), [sym_string] = STATE(1707), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1134), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(487), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1116), [anon_sym_export] = ACTIONS(1048), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_typeof] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_typeof] = ACTIONS(1120), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1060), [anon_sym_using] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(553), @@ -42114,584 +42194,584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1144), - [sym_number] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(1148), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), - [sym_undefined] = ACTIONS(1152), + [sym_this] = ACTIONS(1130), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [sym_undefined] = ACTIONS(1134), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), [anon_sym_readonly] = ACTIONS(1068), [anon_sym_get] = ACTIONS(1048), [anon_sym_set] = ACTIONS(1048), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1048), [anon_sym_public] = ACTIONS(1048), [anon_sym_private] = ACTIONS(1048), [anon_sym_protected] = ACTIONS(1048), [anon_sym_override] = ACTIONS(1048), [anon_sym_module] = ACTIONS(1048), - [anon_sym_any] = ACTIONS(1154), - [anon_sym_number] = ACTIONS(1154), - [anon_sym_boolean] = ACTIONS(1154), - [anon_sym_string] = ACTIONS(1154), - [anon_sym_symbol] = ACTIONS(1154), - [anon_sym_object] = ACTIONS(1154), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(1136), + [anon_sym_number] = ACTIONS(1136), + [anon_sym_boolean] = ACTIONS(1136), + [anon_sym_string] = ACTIONS(1136), + [anon_sym_symbol] = ACTIONS(1136), + [anon_sym_object] = ACTIONS(1136), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(3563), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1891), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1707), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_import] = STATE(3635), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2384), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2155), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(638), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1156), - [anon_sym_export] = ACTIONS(1158), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(601), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1138), + [anon_sym_export] = ACTIONS(1140), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_typeof] = ACTIONS(1162), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1166), - [anon_sym_using] = ACTIONS(746), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_typeof] = ACTIONS(1146), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(754), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1144), - [sym_number] = ACTIONS(1146), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(1148), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1162), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1102), + [sym_number] = ACTIONS(1104), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(1106), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_undefined] = ACTIONS(1170), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1140), [anon_sym_readonly] = ACTIONS(1172), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), [anon_sym_any] = ACTIONS(1174), [anon_sym_number] = ACTIONS(1174), [anon_sym_boolean] = ACTIONS(1174), [anon_sym_string] = ACTIONS(1174), [anon_sym_symbol] = ACTIONS(1174), [anon_sym_object] = ACTIONS(1174), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(3570), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2393), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2226), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_import] = STATE(3620), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1939), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1707), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(620), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(401), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1176), [anon_sym_export] = ACTIONS(1178), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_typeof] = ACTIONS(1184), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_typeof] = ACTIONS(1182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1194), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1186), + [anon_sym_using] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1200), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1104), - [sym_number] = ACTIONS(1106), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(1110), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), - [sym_undefined] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(764), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(1130), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [sym_undefined] = ACTIONS(1190), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_readonly] = ACTIONS(1192), [anon_sym_get] = ACTIONS(1178), [anon_sym_set] = ACTIONS(1178), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1178), [anon_sym_public] = ACTIONS(1178), [anon_sym_private] = ACTIONS(1178), [anon_sym_protected] = ACTIONS(1178), [anon_sym_override] = ACTIONS(1178), [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1212), - [anon_sym_number] = ACTIONS(1212), - [anon_sym_boolean] = ACTIONS(1212), - [anon_sym_string] = ACTIONS(1212), - [anon_sym_symbol] = ACTIONS(1212), - [anon_sym_object] = ACTIONS(1212), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(1194), + [anon_sym_number] = ACTIONS(1194), + [anon_sym_boolean] = ACTIONS(1194), + [anon_sym_string] = ACTIONS(1194), + [anon_sym_symbol] = ACTIONS(1194), + [anon_sym_object] = ACTIONS(1194), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2312), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4276), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4276), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1363), - [sym_subscript_expression] = STATE(1363), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4276), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2213), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1363), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4129), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(484), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(1216), + [sym_import] = STATE(3656), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2155), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(626), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1196), + [anon_sym_export] = ACTIONS(1198), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(1216), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(551), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1224), - [anon_sym_using] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1212), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(579), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1218), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1102), + [sym_number] = ACTIONS(1104), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(1106), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_undefined] = ACTIONS(1226), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1198), [anon_sym_readonly] = ACTIONS(1228), - [anon_sym_get] = ACTIONS(1216), - [anon_sym_set] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(774), - [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_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), [anon_sym_any] = ACTIONS(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_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(3508), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2226), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(594), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3588), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(1920), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3935), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(423), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1232), [anon_sym_export] = ACTIONS(1234), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1234), [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_typeof] = ACTIONS(1238), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1240), + [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_class] = ACTIONS(146), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1248), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_using] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1254), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1104), - [sym_number] = ACTIONS(1106), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(1110), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1254), + [sym_number] = ACTIONS(1256), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1258), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [sym_null] = ACTIONS(1260), [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1234), [anon_sym_readonly] = ACTIONS(1264), [anon_sym_get] = ACTIONS(1234), [anon_sym_set] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1234), [anon_sym_public] = ACTIONS(1234), [anon_sym_private] = ACTIONS(1234), @@ -42704,554 +42784,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1266), [anon_sym_symbol] = ACTIONS(1266), [anon_sym_object] = ACTIONS(1266), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(3543), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2141), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2476), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(452), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3588), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1879), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(1920), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3935), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(516), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1268), [anon_sym_export] = ACTIONS(1270), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1270), [anon_sym_namespace] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_typeof] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1274), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1244), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_new] = ACTIONS(1284), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1296), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1290), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1302), - [sym_number] = ACTIONS(1304), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1254), + [sym_number] = ACTIONS(1256), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(1258), [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [sym_null] = ACTIONS(1310), - [sym_undefined] = ACTIONS(1312), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [sym_null] = ACTIONS(1260), + [sym_undefined] = ACTIONS(1298), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1314), + [anon_sym_readonly] = ACTIONS(1300), [anon_sym_get] = ACTIONS(1270), [anon_sym_set] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1270), [anon_sym_public] = ACTIONS(1270), [anon_sym_private] = ACTIONS(1270), [anon_sym_protected] = ACTIONS(1270), [anon_sym_override] = ACTIONS(1270), [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), - [anon_sym_object] = ACTIONS(1316), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_any] = ACTIONS(1302), + [anon_sym_number] = ACTIONS(1302), + [anon_sym_boolean] = ACTIONS(1302), + [anon_sym_string] = ACTIONS(1302), + [anon_sym_symbol] = ACTIONS(1302), + [anon_sym_object] = ACTIONS(1302), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(3508), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3654), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3654), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1446), - [sym_subscript_expression] = STATE(1446), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3654), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2567), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1446), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4129), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1318), - [anon_sym_export] = ACTIONS(1320), + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2232), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2478), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3935), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(455), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1304), + [anon_sym_export] = ACTIONS(1306), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(1320), - [anon_sym_namespace] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_typeof] = ACTIONS(1326), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1332), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_typeof] = ACTIONS(1312), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1324), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(177), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1330), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1336), [sym_number] = ACTIONS(1338), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1340), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [sym_null] = ACTIONS(1342), - [sym_undefined] = ACTIONS(1344), + [sym_private_property_identifier] = ACTIONS(1340), + [sym_this] = ACTIONS(1342), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [sym_null] = ACTIONS(1344), + [sym_undefined] = ACTIONS(1346), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_readonly] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1320), - [anon_sym_set] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(1320), - [anon_sym_public] = ACTIONS(1320), - [anon_sym_private] = ACTIONS(1320), - [anon_sym_protected] = ACTIONS(1320), - [anon_sym_override] = ACTIONS(1320), - [anon_sym_module] = ACTIONS(1320), - [anon_sym_any] = ACTIONS(1348), - [anon_sym_number] = ACTIONS(1348), - [anon_sym_boolean] = ACTIONS(1348), - [anon_sym_string] = ACTIONS(1348), - [anon_sym_symbol] = ACTIONS(1348), - [anon_sym_object] = ACTIONS(1348), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1348), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(3695), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(1980), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(428), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1350), - [anon_sym_export] = ACTIONS(1352), + [sym_import] = STATE(3635), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3756), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3756), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1432), + [sym_subscript_expression] = STATE(1432), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3756), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2540), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1432), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4050), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(540), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1354), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1364), - [anon_sym_using] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_namespace] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_typeof] = ACTIONS(1360), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1364), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1366), + [anon_sym_using] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1368), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1370), [sym_number] = ACTIONS(1372), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1374), - [sym_super] = ACTIONS(93), + [sym_super] = ACTIONS(195), [sym_true] = ACTIONS(1376), [sym_false] = ACTIONS(1376), [sym_null] = ACTIONS(1376), [sym_undefined] = ACTIONS(1378), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1354), [anon_sym_readonly] = ACTIONS(1380), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1354), + [anon_sym_set] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_declare] = ACTIONS(1354), + [anon_sym_public] = ACTIONS(1354), + [anon_sym_private] = ACTIONS(1354), + [anon_sym_protected] = ACTIONS(1354), + [anon_sym_override] = ACTIONS(1354), + [anon_sym_module] = ACTIONS(1354), [anon_sym_any] = ACTIONS(1382), [anon_sym_number] = ACTIONS(1382), [anon_sym_boolean] = ACTIONS(1382), [anon_sym_string] = ACTIONS(1382), [anon_sym_symbol] = ACTIONS(1382), [anon_sym_object] = ACTIONS(1382), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(3695), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(1980), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(513), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3576), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1707), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(573), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1384), [anon_sym_export] = ACTIONS(1386), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1386), [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1118), [anon_sym_typeof] = ACTIONS(1390), - [anon_sym_import] = ACTIONS(669), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(1394), [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_class] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1400), [anon_sym_using] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), [anon_sym_PLUS] = ACTIONS(1404), [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1392), [anon_sym_void] = ACTIONS(1406), [anon_sym_delete] = ACTIONS(1408), [anon_sym_PLUS_PLUS] = ACTIONS(1410), [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1370), - [sym_number] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_number] = ACTIONS(1128), [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(1374), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [sym_null] = ACTIONS(1376), + [sym_this] = ACTIONS(1130), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), [sym_undefined] = ACTIONS(1414), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1386), [anon_sym_readonly] = ACTIONS(1416), [anon_sym_get] = ACTIONS(1386), [anon_sym_set] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1386), [anon_sym_public] = ACTIONS(1386), [anon_sym_private] = ACTIONS(1386), @@ -43264,134 +43344,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1418), [anon_sym_symbol] = ACTIONS(1418), [anon_sym_object] = ACTIONS(1418), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(3593), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2086), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_nested_identifier] = STATE(5474), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1707), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(4087), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_import] = STATE(3635), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_nested_identifier] = STATE(5721), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(2155), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3981), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_type_arguments] = STATE(566), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5158), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_type_arguments] = STATE(650), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5441), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1420), [anon_sym_export] = ACTIONS(1422), [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1422), [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1092), [anon_sym_typeof] = ACTIONS(1426), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(1430), [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1436), [anon_sym_using] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), [anon_sym_PLUS] = ACTIONS(1440), [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1428), [anon_sym_void] = ACTIONS(1442), [anon_sym_delete] = ACTIONS(1444), [anon_sym_PLUS_PLUS] = ACTIONS(1446), [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1144), - [sym_number] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1102), + [sym_number] = ACTIONS(1104), [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(1148), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1150), - [sym_false] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), + [sym_this] = ACTIONS(1106), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1452), [anon_sym_get] = ACTIONS(1422), [anon_sym_set] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_QMARK] = ACTIONS(784), [anon_sym_declare] = ACTIONS(1422), [anon_sym_public] = ACTIONS(1422), [anon_sym_private] = ACTIONS(1422), @@ -43404,58 +43484,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1454), [anon_sym_symbol] = ACTIONS(1454), [anon_sym_object] = ACTIONS(1454), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1733), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_STAR] = ACTIONS(1458), @@ -43466,10 +43546,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1462), [anon_sym_RBRACE] = ACTIONS(1462), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(1462), [anon_sym_await] = ACTIONS(555), [anon_sym_in] = ACTIONS(1460), @@ -43478,9 +43558,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(840), [anon_sym_RBRACK] = ACTIONS(1462), [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), @@ -43497,7 +43577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -43512,17 +43592,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -43546,60 +43626,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1823), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1234), [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1234), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_COMMA] = ACTIONS(1462), [anon_sym_RBRACE] = ACTIONS(1462), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(1462), @@ -43609,7 +43689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(1460), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1472), @@ -43627,7 +43707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -43655,96 +43735,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [anon_sym_satisfies] = ACTIONS(1460), [sym__automatic_semicolon] = ACTIONS(1462), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), + [anon_sym_export] = ACTIONS(1270), [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_type] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1270), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1292), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_await] = ACTIONS(1394), + [anon_sym_await] = ACTIONS(1278), [anon_sym_in] = ACTIONS(1460), [anon_sym_of] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(1460), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), + [anon_sym_using] = ACTIONS(1286), [anon_sym_AMP_AMP] = ACTIONS(1462), [anon_sym_PIPE_PIPE] = ACTIONS(1462), [anon_sym_GT_GT] = ACTIONS(1460), @@ -43753,12 +43833,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1460), [anon_sym_CARET] = ACTIONS(1462), [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -43768,17 +43848,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1460), [anon_sym_QMARK_QMARK] = ACTIONS(1462), [anon_sym_instanceof] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -43786,96 +43866,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [anon_sym_satisfies] = ACTIONS(1460), [sym__automatic_semicolon] = ACTIONS(1462), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1895), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1178), [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_type] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1178), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_await] = ACTIONS(736), + [anon_sym_await] = ACTIONS(746), [anon_sym_in] = ACTIONS(1460), [anon_sym_COLON] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), + [anon_sym_using] = ACTIONS(756), [anon_sym_AMP_AMP] = ACTIONS(1462), [anon_sym_PIPE_PIPE] = ACTIONS(1462), [anon_sym_GT_GT] = ACTIONS(1460), @@ -43884,12 +43964,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1460), [anon_sym_CARET] = ACTIONS(1462), [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -43899,111 +43979,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1460), [anon_sym_QMARK_QMARK] = ACTIONS(1462), [anon_sym_instanceof] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [anon_sym_satisfies] = ACTIONS(1460), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2120), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), + [anon_sym_export] = ACTIONS(1386), [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_type] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1386), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), [anon_sym_in] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), + [anon_sym_using] = ACTIONS(1402), [anon_sym_AMP_AMP] = ACTIONS(1462), [anon_sym_PIPE_PIPE] = ACTIONS(1462), [anon_sym_GT_GT] = ACTIONS(1460), @@ -44012,12 +44092,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1460), [anon_sym_CARET] = ACTIONS(1462), [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -44027,112 +44107,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1460), [anon_sym_QMARK_QMARK] = ACTIONS(1462), [anon_sym_instanceof] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [anon_sym_satisfies] = ACTIONS(1460), [anon_sym_implements] = ACTIONS(1460), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), + [anon_sym_export] = ACTIONS(1306), [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_type] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1306), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1332), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_await] = ACTIONS(1282), + [anon_sym_await] = ACTIONS(1316), [anon_sym_in] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DOT] = ACTIONS(1460), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), + [anon_sym_using] = ACTIONS(1326), [anon_sym_AMP_AMP] = ACTIONS(1462), [anon_sym_PIPE_PIPE] = ACTIONS(1462), [anon_sym_GT_GT] = ACTIONS(1460), @@ -44141,12 +44221,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1460), [anon_sym_CARET] = ACTIONS(1462), [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -44156,17 +44236,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1460), [anon_sym_QMARK_QMARK] = ACTIONS(1462), [anon_sym_instanceof] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -44174,94 +44254,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [anon_sym_satisfies] = ACTIONS(1460), [sym__automatic_semicolon] = ACTIONS(1462), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), + [anon_sym_export] = ACTIONS(1422), [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_type] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1422), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), [anon_sym_in] = ACTIONS(1460), - [anon_sym_COLON] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_of] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), + [anon_sym_using] = ACTIONS(1438), [anon_sym_AMP_AMP] = ACTIONS(1462), [anon_sym_PIPE_PIPE] = ACTIONS(1462), [anon_sym_GT_GT] = ACTIONS(1460), @@ -44270,12 +44350,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1460), [anon_sym_CARET] = ACTIONS(1462), [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -44285,111 +44365,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1460), [anon_sym_QMARK_QMARK] = ACTIONS(1462), [anon_sym_instanceof] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [anon_sym_satisfies] = ACTIONS(1460), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), + [anon_sym_export] = ACTIONS(1140), [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1140), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), [anon_sym_in] = ACTIONS(1460), - [anon_sym_of] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), + [anon_sym_using] = ACTIONS(1158), [anon_sym_AMP_AMP] = ACTIONS(1462), [anon_sym_PIPE_PIPE] = ACTIONS(1462), [anon_sym_GT_GT] = ACTIONS(1460), @@ -44398,12 +44478,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1460), [anon_sym_CARET] = ACTIONS(1462), [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -44413,111 +44493,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1460), [anon_sym_QMARK_QMARK] = ACTIONS(1462), [anon_sym_instanceof] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [anon_sym_satisfies] = ACTIONS(1460), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), + [anon_sym_export] = ACTIONS(1198), [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_type] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1198), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), [anon_sym_in] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), [anon_sym_RBRACK] = ACTIONS(1462), [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_QMARK_DOT] = ACTIONS(1462), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), + [anon_sym_using] = ACTIONS(1214), [anon_sym_AMP_AMP] = ACTIONS(1462), [anon_sym_PIPE_PIPE] = ACTIONS(1462), [anon_sym_GT_GT] = ACTIONS(1460), @@ -44526,12 +44606,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1460), [anon_sym_CARET] = ACTIONS(1462), [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -44541,110 +44621,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1460), [anon_sym_QMARK_QMARK] = ACTIONS(1462), [anon_sym_instanceof] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [anon_sym_satisfies] = ACTIONS(1460), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2579), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(804), + [anon_sym_type] = ACTIONS(796), [anon_sym_as] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), [anon_sym_QMARK_DOT] = ACTIONS(1462), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(1462), [anon_sym_PIPE_PIPE] = ACTIONS(1462), [anon_sym_GT_GT] = ACTIONS(1460), @@ -44653,12 +44733,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1460), [anon_sym_CARET] = ACTIONS(1462), [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1462), [anon_sym_STAR_STAR] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1462), [anon_sym_EQ_EQ] = ACTIONS(1460), [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), @@ -44668,138 +44748,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1460), [anon_sym_QMARK_QMARK] = ACTIONS(1462), [anon_sym_instanceof] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [anon_sym_satisfies] = ACTIONS(1460), [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(153), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(153), [anon_sym_DOT] = ACTIONS(120), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -44811,116 +44891,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -44932,117 +45012,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(868), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(874), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -45054,117 +45134,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(885), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(153), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_DOT] = ACTIONS(120), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -45176,116 +45256,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(887), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(154), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(887), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -45297,116 +45377,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(126), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(126), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(899), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -45418,356 +45498,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_declaration] = STATE(3992), - [sym_import] = STATE(3636), - [sym_variable_declaration] = STATE(4275), - [sym_lexical_declaration] = STATE(4275), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(4275), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(4275), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(4275), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_function_signature] = STATE(4275), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(4275), - [sym_abstract_class_declaration] = STATE(4275), - [sym_module] = STATE(4275), - [sym_internal_module] = STATE(2453), - [sym_import_alias] = STATE(4275), - [sym_interface_declaration] = STATE(4275), - [sym_enum_declaration] = STATE(4275), - [sym_type_alias_declaration] = STATE(4275), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4222), + [sym_declaration] = STATE(925), + [sym_import] = STATE(3688), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2436), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4081), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), + [anon_sym_export] = ACTIONS(1306), [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(1566), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1578), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [anon_sym_abstract] = ACTIONS(1584), - [anon_sym_interface] = ACTIONS(1586), - [anon_sym_enum] = ACTIONS(1588), - [sym_html_comment] = ACTIONS(5), - }, - [180] = { - [sym_declaration] = STATE(937), - [sym_import] = STATE(3636), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4150), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_namespace] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1594), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1568), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(1598), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1600), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [181] = { - [sym_declaration] = STATE(937), - [sym_import] = STATE(3636), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4153), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_namespace] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1594), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(623), - [anon_sym_async] = ACTIONS(1604), + [anon_sym_async] = ACTIONS(1570), [anon_sym_function] = ACTIONS(627), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -45775,237 +45615,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1600), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1572), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [182] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3222), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1608), + [180] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3291), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1578), [anon_sym_EQ] = ACTIONS(907), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), + [anon_sym_const] = ACTIONS(998), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1584), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1586), [anon_sym_DOT] = ACTIONS(120), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1590), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1640), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [183] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [181] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(918), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(154), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -46017,117 +45857,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_implements] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [184] = { - [sym_declaration] = STATE(873), - [sym_import] = STATE(3636), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(2513), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4153), + [182] = { + [sym_declaration] = STATE(4014), + [sym_import] = STATE(3688), + [sym_variable_declaration] = STATE(4164), + [sym_lexical_declaration] = STATE(4164), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(4164), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(4164), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(4164), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_function_signature] = STATE(4164), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(4164), + [sym_abstract_class_declaration] = STATE(4164), + [sym_module] = STATE(4164), + [sym_internal_module] = STATE(2438), + [sym_import_alias] = STATE(4164), + [sym_interface_declaration] = STATE(4164), + [sym_enum_declaration] = STATE(4164), + [sym_type_alias_declaration] = STATE(4164), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4207), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1612), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1594), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_typeof] = ACTIONS(1332), + [anon_sym_import] = ACTIONS(1614), + [anon_sym_var] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(623), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_function] = ACTIONS(627), + [anon_sym_class] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1624), + [anon_sym_function] = ACTIONS(1626), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -46135,118 +45975,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1600), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1628), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), + [anon_sym_abstract] = ACTIONS(1632), + [anon_sym_interface] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1636), [sym_html_comment] = ACTIONS(5), }, - [185] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3661), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [183] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3759), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(907), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(222), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_DOT] = ACTIONS(120), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1640), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1642), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -46257,117 +46097,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(1650), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_satisfies] = ACTIONS(120), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [184] = { + [sym_declaration] = STATE(823), + [sym_import] = STATE(3688), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3943), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1332), + [anon_sym_import] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1650), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1340), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1572), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [185] = { + [sym_declaration] = STATE(823), + [sym_import] = STATE(3688), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(2529), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4081), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1332), + [anon_sym_import] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1340), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1572), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_declaration] = STATE(4327), - [sym_import] = STATE(3636), - [sym_variable_declaration] = STATE(4275), - [sym_lexical_declaration] = STATE(4275), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2377), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(4275), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(4275), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(4275), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_function_signature] = STATE(4275), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(4275), - [sym_abstract_class_declaration] = STATE(4275), - [sym_module] = STATE(4275), - [sym_internal_module] = STATE(2453), - [sym_import_alias] = STATE(4275), - [sym_interface_declaration] = STATE(4275), - [sym_enum_declaration] = STATE(4275), - [sym_type_alias_declaration] = STATE(4275), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4222), + [sym_declaration] = STATE(925), + [sym_import] = STATE(3688), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2436), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(851), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(851), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(851), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_function_signature] = STATE(851), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(213), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(3943), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), + [anon_sym_export] = ACTIONS(1306), [anon_sym_type] = ACTIONS(1564), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(1566), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_function] = ACTIONS(1578), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1650), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -46375,117 +46455,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [anon_sym_abstract] = ACTIONS(1584), - [anon_sym_interface] = ACTIONS(1586), - [anon_sym_enum] = ACTIONS(1588), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1572), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1574), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_declaration] = STATE(3969), + [sym_import] = STATE(3688), + [sym_variable_declaration] = STATE(4164), + [sym_lexical_declaration] = STATE(4164), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_class_declaration] = STATE(4164), + [sym_function_expression] = STATE(2280), + [sym_function_declaration] = STATE(4164), + [sym_generator_function] = STATE(2280), + [sym_generator_function_declaration] = STATE(4164), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_function_signature] = STATE(4164), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_ambient_declaration] = STATE(4164), + [sym_abstract_class_declaration] = STATE(4164), + [sym_module] = STATE(4164), + [sym_internal_module] = STATE(2438), + [sym_import_alias] = STATE(4164), + [sym_interface_declaration] = STATE(4164), + [sym_enum_declaration] = STATE(4164), + [sym_type_alias_declaration] = STATE(4164), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4207), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1612), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1332), + [anon_sym_import] = ACTIONS(1614), + [anon_sym_var] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1624), + [anon_sym_function] = ACTIONS(1626), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1340), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1628), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1630), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), + [anon_sym_abstract] = ACTIONS(1632), + [anon_sym_interface] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1636), + [sym_html_comment] = ACTIONS(5), + }, + [188] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(154), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(938), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -46497,235 +46697,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [188] = { - [sym_declaration] = STATE(873), - [sym_import] = STATE(3636), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_class_declaration] = STATE(831), - [sym_function_expression] = STATE(2222), - [sym_function_declaration] = STATE(831), - [sym_generator_function] = STATE(2222), - [sym_generator_function_declaration] = STATE(831), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_function_signature] = STATE(831), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(214), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4150), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_namespace] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1594), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(1598), - [anon_sym_function] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1600), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(924), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(153), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -46737,114 +46817,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(948), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), + [anon_sym_of] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(970), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -46856,114 +46936,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_EQ] = ACTIONS(964), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(153), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(154), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -46975,114 +47055,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(948), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -47094,56 +47174,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(824), @@ -47151,56 +47231,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1546), [anon_sym_DASH] = ACTIONS(1546), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -47212,339 +47292,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4309), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4309), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4309), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5679), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4344), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4344), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1371), + [sym_subscript_expression] = STATE(1371), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4344), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5552), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1371), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(1652), - [anon_sym_export] = ACTIONS(724), - [anon_sym_type] = ACTIONS(724), - [anon_sym_namespace] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(724), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(150), + [anon_sym_export] = ACTIONS(734), + [anon_sym_type] = ACTIONS(734), + [anon_sym_namespace] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(752), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1654), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(1656), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1658), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(724), + [anon_sym_static] = ACTIONS(734), [anon_sym_readonly] = ACTIONS(1660), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [anon_sym_declare] = ACTIONS(724), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(724), - [anon_sym_any] = ACTIONS(724), - [anon_sym_number] = ACTIONS(724), - [anon_sym_boolean] = ACTIONS(724), - [anon_sym_string] = ACTIONS(724), - [anon_sym_symbol] = ACTIONS(724), - [anon_sym_object] = ACTIONS(724), + [anon_sym_get] = ACTIONS(734), + [anon_sym_set] = ACTIONS(734), + [anon_sym_declare] = ACTIONS(734), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), + [anon_sym_module] = ACTIONS(734), + [anon_sym_any] = ACTIONS(734), + [anon_sym_number] = ACTIONS(734), + [anon_sym_boolean] = ACTIONS(734), + [anon_sym_string] = ACTIONS(734), + [anon_sym_symbol] = ACTIONS(734), + [anon_sym_object] = ACTIONS(734), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4309), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4309), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4309), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5780), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4344), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4344), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1371), + [sym_subscript_expression] = STATE(1371), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4344), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5602), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1371), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(1652), - [anon_sym_export] = ACTIONS(724), - [anon_sym_type] = ACTIONS(724), - [anon_sym_namespace] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(724), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(150), + [anon_sym_export] = ACTIONS(734), + [anon_sym_type] = ACTIONS(734), + [anon_sym_namespace] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(734), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(752), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1654), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(1656), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1658), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(724), + [anon_sym_static] = ACTIONS(734), [anon_sym_readonly] = ACTIONS(1660), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), - [anon_sym_declare] = ACTIONS(724), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(724), - [anon_sym_any] = ACTIONS(724), - [anon_sym_number] = ACTIONS(724), - [anon_sym_boolean] = ACTIONS(724), - [anon_sym_string] = ACTIONS(724), - [anon_sym_symbol] = ACTIONS(724), - [anon_sym_object] = ACTIONS(724), + [anon_sym_get] = ACTIONS(734), + [anon_sym_set] = ACTIONS(734), + [anon_sym_declare] = ACTIONS(734), + [anon_sym_public] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_protected] = ACTIONS(786), + [anon_sym_override] = ACTIONS(788), + [anon_sym_module] = ACTIONS(734), + [anon_sym_any] = ACTIONS(734), + [anon_sym_number] = ACTIONS(734), + [anon_sym_boolean] = ACTIONS(734), + [anon_sym_string] = ACTIONS(734), + [anon_sym_symbol] = ACTIONS(734), + [anon_sym_object] = ACTIONS(734), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(5169), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5169), - [sym_optional_parameter] = STATE(5169), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(5424), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(5424), + [sym_optional_parameter] = STATE(5424), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(1662), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -47552,10 +47632,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -47566,96 +47646,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(4899), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4899), - [sym_optional_parameter] = STATE(4899), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(5424), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(5424), + [sym_optional_parameter] = STATE(5424), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -47663,10 +47743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -47677,96 +47757,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_statement_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_with] = ACTIONS(1674), + [anon_sym_var] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(1674), + [anon_sym_in] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_debugger] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_class] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_function] = ACTIONS(1674), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_GT_GT_GT] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_STAR_STAR] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK_QMARK] = ACTIONS(1672), + [anon_sym_instanceof] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1674), + [anon_sym_delete] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1672), + [sym_private_property_identifier] = ACTIONS(1672), + [sym_this] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_null] = ACTIONS(1674), + [sym_undefined] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_readonly] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1674), + [anon_sym_set] = ACTIONS(1674), + [anon_sym_declare] = ACTIONS(1674), + [anon_sym_public] = ACTIONS(1674), + [anon_sym_private] = ACTIONS(1674), + [anon_sym_protected] = ACTIONS(1674), + [anon_sym_override] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [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(1674), + [anon_sym_satisfies] = ACTIONS(1674), + [anon_sym_interface] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__ternary_qmark] = ACTIONS(1672), + [sym_html_comment] = ACTIONS(5), + }, + [199] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(4939), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4939), - [sym_optional_parameter] = STATE(4939), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(5424), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(5424), + [sym_optional_parameter] = STATE(5424), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1680), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -47774,10 +47965,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -47787,97 +47978,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [199] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [200] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(4621), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4621), - [sym_optional_parameter] = STATE(4621), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(5424), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(5424), + [sym_optional_parameter] = STATE(5424), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -47885,10 +48076,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -47898,319 +48089,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_statement_block] = STATE(217), - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_export] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_as] = ACTIONS(1676), - [anon_sym_namespace] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_COMMA] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_typeof] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1676), - [anon_sym_with] = ACTIONS(1676), - [anon_sym_var] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1676), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_debugger] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1680), - [anon_sym_class] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_QMARK_DOT] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_using] = ACTIONS(1676), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1676), - [anon_sym_GT_GT_GT] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_PERCENT] = ACTIONS(1674), - [anon_sym_STAR_STAR] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_LT_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1676), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ] = ACTIONS(1676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), - [anon_sym_GT_EQ] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1676), - [anon_sym_QMARK_QMARK] = ACTIONS(1674), - [anon_sym_instanceof] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_void] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1674), - [sym_number] = ACTIONS(1674), - [sym_private_property_identifier] = ACTIONS(1674), - [sym_this] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_true] = ACTIONS(1676), - [sym_false] = ACTIONS(1676), - [sym_null] = ACTIONS(1676), - [sym_undefined] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_readonly] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_declare] = ACTIONS(1676), - [anon_sym_public] = ACTIONS(1676), - [anon_sym_private] = ACTIONS(1676), - [anon_sym_protected] = ACTIONS(1676), - [anon_sym_override] = ACTIONS(1676), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_any] = ACTIONS(1676), - [anon_sym_number] = ACTIONS(1676), - [anon_sym_boolean] = ACTIONS(1676), - [anon_sym_string] = ACTIONS(1676), - [anon_sym_symbol] = ACTIONS(1676), - [anon_sym_object] = ACTIONS(1676), - [anon_sym_abstract] = ACTIONS(1676), - [anon_sym_satisfies] = ACTIONS(1676), - [anon_sym_interface] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), - [sym__automatic_semicolon] = ACTIONS(1674), - [sym__ternary_qmark] = ACTIONS(1674), - [sym_html_comment] = ACTIONS(5), - }, [201] = { - [sym_statement_block] = STATE(217), - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_export] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_as] = ACTIONS(1676), - [anon_sym_namespace] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_COMMA] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_typeof] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1676), - [anon_sym_with] = ACTIONS(1676), - [anon_sym_var] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1676), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_debugger] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1682), - [anon_sym_class] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_QMARK_DOT] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_using] = ACTIONS(1676), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1676), - [anon_sym_GT_GT_GT] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_PERCENT] = ACTIONS(1674), - [anon_sym_STAR_STAR] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_LT_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1676), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ] = ACTIONS(1676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), - [anon_sym_GT_EQ] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1676), - [anon_sym_QMARK_QMARK] = ACTIONS(1674), - [anon_sym_instanceof] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_void] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1674), - [sym_number] = ACTIONS(1674), - [sym_private_property_identifier] = ACTIONS(1674), - [sym_this] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_true] = ACTIONS(1676), - [sym_false] = ACTIONS(1676), - [sym_null] = ACTIONS(1676), - [sym_undefined] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_readonly] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_declare] = ACTIONS(1676), - [anon_sym_public] = ACTIONS(1676), - [anon_sym_private] = ACTIONS(1676), - [anon_sym_protected] = ACTIONS(1676), - [anon_sym_override] = ACTIONS(1676), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_any] = ACTIONS(1676), - [anon_sym_number] = ACTIONS(1676), - [anon_sym_boolean] = ACTIONS(1676), - [anon_sym_string] = ACTIONS(1676), - [anon_sym_symbol] = ACTIONS(1676), - [anon_sym_object] = ACTIONS(1676), - [anon_sym_abstract] = ACTIONS(1676), - [anon_sym_satisfies] = ACTIONS(1676), - [anon_sym_interface] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), - [sym__automatic_semicolon] = ACTIONS(1674), - [sym__ternary_qmark] = ACTIONS(1674), - [sym_html_comment] = ACTIONS(5), - }, - [202] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(5169), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5169), - [sym_optional_parameter] = STATE(5169), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(4592), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4592), + [sym_optional_parameter] = STATE(4592), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(1684), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -48218,10 +48187,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -48231,208 +48200,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_statement_block] = STATE(217), - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_export] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_as] = ACTIONS(1676), - [anon_sym_namespace] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_COMMA] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_typeof] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1676), - [anon_sym_with] = ACTIONS(1676), - [anon_sym_var] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1676), - [anon_sym_in] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_debugger] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1676), - [anon_sym_class] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_QMARK_DOT] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_using] = ACTIONS(1676), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1676), - [anon_sym_GT_GT_GT] = ACTIONS(1674), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_PERCENT] = ACTIONS(1674), - [anon_sym_STAR_STAR] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_LT_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1676), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ] = ACTIONS(1676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), - [anon_sym_GT_EQ] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1676), - [anon_sym_QMARK_QMARK] = ACTIONS(1674), - [anon_sym_instanceof] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_void] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1674), - [sym_number] = ACTIONS(1674), - [sym_private_property_identifier] = ACTIONS(1674), - [sym_this] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_true] = ACTIONS(1676), - [sym_false] = ACTIONS(1676), - [sym_null] = ACTIONS(1676), - [sym_undefined] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_readonly] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_declare] = ACTIONS(1676), - [anon_sym_public] = ACTIONS(1676), - [anon_sym_private] = ACTIONS(1676), - [anon_sym_protected] = ACTIONS(1676), - [anon_sym_override] = ACTIONS(1676), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_any] = ACTIONS(1676), - [anon_sym_number] = ACTIONS(1676), - [anon_sym_boolean] = ACTIONS(1676), - [anon_sym_string] = ACTIONS(1676), - [anon_sym_symbol] = ACTIONS(1676), - [anon_sym_object] = ACTIONS(1676), - [anon_sym_abstract] = ACTIONS(1676), - [anon_sym_satisfies] = ACTIONS(1676), - [anon_sym_interface] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), - [sym__automatic_semicolon] = ACTIONS(1674), - [sym__ternary_qmark] = ACTIONS(1674), - [sym_html_comment] = ACTIONS(5), - }, - [204] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [202] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(5169), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5169), - [sym_optional_parameter] = STATE(5169), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(5004), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(5004), + [sym_optional_parameter] = STATE(5004), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(1686), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -48440,10 +48298,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -48453,97 +48311,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [203] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(5169), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5169), - [sym_optional_parameter] = STATE(5169), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(4981), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(4981), + [sym_optional_parameter] = STATE(4981), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -48551,10 +48409,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -48564,208 +48422,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_export] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(1694), - [anon_sym_namespace] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(1692), - [anon_sym_import] = ACTIONS(1692), - [anon_sym_with] = ACTIONS(1692), - [anon_sym_var] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_await] = ACTIONS(1692), - [anon_sym_in] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_debugger] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_throw] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_class] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_QMARK_DOT] = ACTIONS(1698), - [anon_sym_new] = ACTIONS(1692), - [anon_sym_using] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1694), - [anon_sym_GT_GT_GT] = ACTIONS(1698), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_CARET] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_SLASH] = ACTIONS(1692), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_STAR_STAR] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_QMARK_QMARK] = ACTIONS(1698), - [anon_sym_instanceof] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_void] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1690), - [sym_number] = ACTIONS(1690), - [sym_private_property_identifier] = ACTIONS(1690), - [sym_this] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [sym_false] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [sym_undefined] = ACTIONS(1692), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_readonly] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_declare] = ACTIONS(1692), - [anon_sym_public] = ACTIONS(1692), - [anon_sym_private] = ACTIONS(1692), - [anon_sym_protected] = ACTIONS(1692), - [anon_sym_override] = ACTIONS(1692), - [anon_sym_module] = ACTIONS(1692), - [anon_sym_any] = ACTIONS(1692), - [anon_sym_number] = ACTIONS(1692), - [anon_sym_boolean] = ACTIONS(1692), - [anon_sym_string] = ACTIONS(1692), - [anon_sym_symbol] = ACTIONS(1692), - [anon_sym_object] = ACTIONS(1692), - [anon_sym_abstract] = ACTIONS(1692), - [anon_sym_satisfies] = ACTIONS(1694), - [anon_sym_interface] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [sym__automatic_semicolon] = ACTIONS(1700), - [sym__ternary_qmark] = ACTIONS(1698), + [204] = { + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_type] = ACTIONS(1690), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1690), + [anon_sym_import] = ACTIONS(1690), + [anon_sym_with] = ACTIONS(1690), + [anon_sym_var] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_switch] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_await] = ACTIONS(1690), + [anon_sym_in] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_try] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_debugger] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(1690), + [anon_sym_case] = ACTIONS(1690), + [anon_sym_yield] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1692), + [anon_sym_class] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_function] = ACTIONS(1690), + [anon_sym_QMARK_DOT] = ACTIONS(1696), + [anon_sym_new] = ACTIONS(1690), + [anon_sym_using] = ACTIONS(1690), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_GT_GT] = ACTIONS(1692), + [anon_sym_GT_GT_GT] = ACTIONS(1696), + [anon_sym_LT_LT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_SLASH] = ACTIONS(1690), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_STAR_STAR] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_EQ_EQ] = ACTIONS(1692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_QMARK_QMARK] = ACTIONS(1696), + [anon_sym_instanceof] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_void] = ACTIONS(1690), + [anon_sym_delete] = ACTIONS(1690), + [anon_sym_PLUS_PLUS] = ACTIONS(1688), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_true] = ACTIONS(1690), + [sym_false] = ACTIONS(1690), + [sym_null] = ACTIONS(1690), + [sym_undefined] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_readonly] = ACTIONS(1690), + [anon_sym_get] = ACTIONS(1690), + [anon_sym_set] = ACTIONS(1690), + [anon_sym_declare] = ACTIONS(1690), + [anon_sym_public] = ACTIONS(1690), + [anon_sym_private] = ACTIONS(1690), + [anon_sym_protected] = ACTIONS(1690), + [anon_sym_override] = ACTIONS(1690), + [anon_sym_module] = ACTIONS(1690), + [anon_sym_any] = ACTIONS(1690), + [anon_sym_number] = ACTIONS(1690), + [anon_sym_boolean] = ACTIONS(1690), + [anon_sym_string] = ACTIONS(1690), + [anon_sym_symbol] = ACTIONS(1690), + [anon_sym_object] = ACTIONS(1690), + [anon_sym_abstract] = ACTIONS(1690), + [anon_sym_satisfies] = ACTIONS(1692), + [anon_sym_interface] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [sym__automatic_semicolon] = ACTIONS(1698), + [sym__ternary_qmark] = ACTIONS(1696), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [205] = { + [sym_statement_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_with] = ACTIONS(1674), + [anon_sym_var] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(1674), + [anon_sym_in] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_debugger] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1700), + [anon_sym_class] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_function] = ACTIONS(1674), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_GT_GT_GT] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_STAR_STAR] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK_QMARK] = ACTIONS(1672), + [anon_sym_instanceof] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1674), + [anon_sym_delete] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1672), + [sym_private_property_identifier] = ACTIONS(1672), + [sym_this] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_null] = ACTIONS(1674), + [sym_undefined] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_readonly] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1674), + [anon_sym_set] = ACTIONS(1674), + [anon_sym_declare] = ACTIONS(1674), + [anon_sym_public] = ACTIONS(1674), + [anon_sym_private] = ACTIONS(1674), + [anon_sym_protected] = ACTIONS(1674), + [anon_sym_override] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [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(1674), + [anon_sym_satisfies] = ACTIONS(1674), + [anon_sym_interface] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__ternary_qmark] = ACTIONS(1672), + [sym_html_comment] = ACTIONS(5), + }, + [206] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(5169), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5169), - [sym_optional_parameter] = STATE(5169), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(5424), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(5424), + [sym_optional_parameter] = STATE(5424), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -48773,10 +48742,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -48786,97 +48755,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, + [207] = { + [sym_statement_block] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_with] = ACTIONS(1674), + [anon_sym_var] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(1674), + [anon_sym_in] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_debugger] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_class] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_function] = ACTIONS(1674), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1674), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_GT_GT] = ACTIONS(1674), + [anon_sym_GT_GT_GT] = ACTIONS(1672), + [anon_sym_LT_LT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_STAR_STAR] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK_QMARK] = ACTIONS(1672), + [anon_sym_instanceof] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1674), + [anon_sym_delete] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1672), + [sym_private_property_identifier] = ACTIONS(1672), + [sym_this] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_null] = ACTIONS(1674), + [sym_undefined] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_readonly] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1674), + [anon_sym_set] = ACTIONS(1674), + [anon_sym_declare] = ACTIONS(1674), + [anon_sym_public] = ACTIONS(1674), + [anon_sym_private] = ACTIONS(1674), + [anon_sym_protected] = ACTIONS(1674), + [anon_sym_override] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [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(1674), + [anon_sym_satisfies] = ACTIONS(1674), + [anon_sym_interface] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__ternary_qmark] = ACTIONS(1672), + [sym_html_comment] = ACTIONS(5), + }, [208] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(5169), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5169), - [sym_optional_parameter] = STATE(5169), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), + [sym__formal_parameter] = STATE(5424), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(5424), + [sym_optional_parameter] = STATE(5424), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(1704), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -48884,10 +48964,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -48901,13 +48981,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1706), [sym_identifier] = ACTIONS(1708), [anon_sym_export] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_default] = ACTIONS(1708), [anon_sym_type] = ACTIONS(1708), - [anon_sym_as] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(1708), [anon_sym_namespace] = ACTIONS(1708), [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_COMMA] = ACTIONS(1706), [anon_sym_RBRACE] = ACTIONS(1706), [anon_sym_typeof] = ACTIONS(1708), [anon_sym_import] = ACTIONS(1708), @@ -48923,7 +49003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), [anon_sym_await] = ACTIONS(1708), - [anon_sym_in] = ACTIONS(1710), + [anon_sym_in] = ACTIONS(1708), [anon_sym_while] = ACTIONS(1708), [anon_sym_do] = ACTIONS(1708), [anon_sym_try] = ACTIONS(1708), @@ -48935,36 +49015,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1708), [anon_sym_yield] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_DOT] = ACTIONS(1710), + [anon_sym_DOT] = ACTIONS(1708), [anon_sym_class] = ACTIONS(1708), [anon_sym_async] = ACTIONS(1708), [anon_sym_function] = ACTIONS(1708), - [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_QMARK_DOT] = ACTIONS(1706), [anon_sym_new] = ACTIONS(1708), [anon_sym_using] = ACTIONS(1708), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1712), - [anon_sym_GT_GT] = ACTIONS(1710), - [anon_sym_GT_GT_GT] = ACTIONS(1712), - [anon_sym_LT_LT] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_CARET] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_AMP_AMP] = ACTIONS(1706), + [anon_sym_PIPE_PIPE] = ACTIONS(1706), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_GT_GT_GT] = ACTIONS(1706), + [anon_sym_LT_LT] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1708), [anon_sym_PLUS] = ACTIONS(1708), [anon_sym_DASH] = ACTIONS(1708), [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1712), - [anon_sym_STAR_STAR] = ACTIONS(1712), + [anon_sym_PERCENT] = ACTIONS(1706), + [anon_sym_STAR_STAR] = ACTIONS(1706), [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_EQ] = ACTIONS(1712), - [anon_sym_EQ_EQ] = ACTIONS(1710), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), - [anon_sym_BANG_EQ] = ACTIONS(1710), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), - [anon_sym_GT_EQ] = ACTIONS(1712), - [anon_sym_GT] = ACTIONS(1710), - [anon_sym_QMARK_QMARK] = ACTIONS(1712), - [anon_sym_instanceof] = ACTIONS(1710), + [anon_sym_LT_EQ] = ACTIONS(1706), + [anon_sym_EQ_EQ] = ACTIONS(1708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1706), + [anon_sym_BANG_EQ] = ACTIONS(1708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1706), + [anon_sym_GT_EQ] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_QMARK_QMARK] = ACTIONS(1706), + [anon_sym_instanceof] = ACTIONS(1708), [anon_sym_TILDE] = ACTIONS(1706), [anon_sym_void] = ACTIONS(1708), [anon_sym_delete] = ACTIONS(1708), @@ -49000,120 +49080,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1708), [anon_sym_object] = ACTIONS(1708), [anon_sym_abstract] = ACTIONS(1708), - [anon_sym_satisfies] = ACTIONS(1710), + [anon_sym_satisfies] = ACTIONS(1708), [anon_sym_interface] = ACTIONS(1708), [anon_sym_enum] = ACTIONS(1708), - [sym__automatic_semicolon] = ACTIONS(1714), - [sym__ternary_qmark] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(1706), + [sym__ternary_qmark] = ACTIONS(1706), [sym_html_comment] = ACTIONS(5), }, [210] = { - [ts_builtin_sym_end] = ACTIONS(1716), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_default] = ACTIONS(1718), - [anon_sym_type] = ACTIONS(1718), - [anon_sym_as] = ACTIONS(1718), - [anon_sym_namespace] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1716), + [ts_builtin_sym_end] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [anon_sym_export] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_type] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_namespace] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1710), [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_typeof] = ACTIONS(1718), - [anon_sym_import] = ACTIONS(1718), - [anon_sym_with] = ACTIONS(1718), - [anon_sym_var] = ACTIONS(1718), - [anon_sym_let] = ACTIONS(1718), - [anon_sym_const] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1718), - [anon_sym_else] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_await] = ACTIONS(1718), - [anon_sym_in] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1718), - [anon_sym_do] = ACTIONS(1718), - [anon_sym_try] = ACTIONS(1718), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1718), - [anon_sym_debugger] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_throw] = ACTIONS(1718), - [anon_sym_case] = ACTIONS(1718), - [anon_sym_yield] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_DOT] = ACTIONS(1718), - [anon_sym_class] = ACTIONS(1718), - [anon_sym_async] = ACTIONS(1718), - [anon_sym_function] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_typeof] = ACTIONS(1712), + [anon_sym_import] = ACTIONS(1712), + [anon_sym_with] = ACTIONS(1712), + [anon_sym_var] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_await] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_try] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_debugger] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_yield] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_class] = ACTIONS(1712), + [anon_sym_async] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), [anon_sym_QMARK_DOT] = ACTIONS(1716), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_using] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1712), + [anon_sym_using] = ACTIONS(1712), [anon_sym_AMP_AMP] = ACTIONS(1716), [anon_sym_PIPE_PIPE] = ACTIONS(1716), - [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT] = ACTIONS(1714), [anon_sym_GT_GT_GT] = ACTIONS(1716), [anon_sym_LT_LT] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1714), [anon_sym_CARET] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_SLASH] = ACTIONS(1712), [anon_sym_PERCENT] = ACTIONS(1716), [anon_sym_STAR_STAR] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1712), [anon_sym_LT_EQ] = ACTIONS(1716), - [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ] = ACTIONS(1714), [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), - [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1714), [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), [anon_sym_GT_EQ] = ACTIONS(1716), - [anon_sym_GT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1714), [anon_sym_QMARK_QMARK] = ACTIONS(1716), - [anon_sym_instanceof] = ACTIONS(1718), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_void] = ACTIONS(1718), - [anon_sym_delete] = ACTIONS(1718), - [anon_sym_PLUS_PLUS] = ACTIONS(1716), - [anon_sym_DASH_DASH] = ACTIONS(1716), - [anon_sym_DQUOTE] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(1716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1716), - [sym_number] = ACTIONS(1716), - [sym_private_property_identifier] = ACTIONS(1716), - [sym_this] = ACTIONS(1718), - [sym_super] = ACTIONS(1718), - [sym_true] = ACTIONS(1718), - [sym_false] = ACTIONS(1718), - [sym_null] = ACTIONS(1718), - [sym_undefined] = ACTIONS(1718), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1718), - [anon_sym_readonly] = ACTIONS(1718), - [anon_sym_get] = ACTIONS(1718), - [anon_sym_set] = ACTIONS(1718), - [anon_sym_declare] = ACTIONS(1718), - [anon_sym_public] = ACTIONS(1718), - [anon_sym_private] = ACTIONS(1718), - [anon_sym_protected] = ACTIONS(1718), - [anon_sym_override] = ACTIONS(1718), - [anon_sym_module] = ACTIONS(1718), - [anon_sym_any] = ACTIONS(1718), - [anon_sym_number] = ACTIONS(1718), - [anon_sym_boolean] = ACTIONS(1718), - [anon_sym_string] = ACTIONS(1718), - [anon_sym_symbol] = ACTIONS(1718), - [anon_sym_object] = ACTIONS(1718), - [anon_sym_abstract] = ACTIONS(1718), - [anon_sym_satisfies] = ACTIONS(1718), - [anon_sym_interface] = ACTIONS(1718), - [anon_sym_enum] = ACTIONS(1718), - [sym__automatic_semicolon] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_void] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1710), + [sym_number] = ACTIONS(1710), + [sym_private_property_identifier] = ACTIONS(1710), + [sym_this] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_true] = ACTIONS(1712), + [sym_false] = ACTIONS(1712), + [sym_null] = ACTIONS(1712), + [sym_undefined] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_readonly] = ACTIONS(1712), + [anon_sym_get] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_declare] = ACTIONS(1712), + [anon_sym_public] = ACTIONS(1712), + [anon_sym_private] = ACTIONS(1712), + [anon_sym_protected] = ACTIONS(1712), + [anon_sym_override] = ACTIONS(1712), + [anon_sym_module] = ACTIONS(1712), + [anon_sym_any] = ACTIONS(1712), + [anon_sym_number] = ACTIONS(1712), + [anon_sym_boolean] = ACTIONS(1712), + [anon_sym_string] = ACTIONS(1712), + [anon_sym_symbol] = ACTIONS(1712), + [anon_sym_object] = ACTIONS(1712), + [anon_sym_abstract] = ACTIONS(1712), + [anon_sym_satisfies] = ACTIONS(1714), + [anon_sym_interface] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(1718), [sym__ternary_qmark] = ACTIONS(1716), [sym_html_comment] = ACTIONS(5), }, @@ -49121,13 +49201,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1720), [sym_identifier] = ACTIONS(1722), [anon_sym_export] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1724), [anon_sym_default] = ACTIONS(1722), [anon_sym_type] = ACTIONS(1722), - [anon_sym_as] = ACTIONS(1722), + [anon_sym_as] = ACTIONS(1724), [anon_sym_namespace] = ACTIONS(1722), [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1726), [anon_sym_RBRACE] = ACTIONS(1720), [anon_sym_typeof] = ACTIONS(1722), [anon_sym_import] = ACTIONS(1722), @@ -49143,7 +49223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1720), [anon_sym_SEMI] = ACTIONS(1720), [anon_sym_await] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1724), [anon_sym_while] = ACTIONS(1722), [anon_sym_do] = ACTIONS(1722), [anon_sym_try] = ACTIONS(1722), @@ -49155,36 +49235,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1722), [anon_sym_yield] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(1724), [anon_sym_class] = ACTIONS(1722), [anon_sym_async] = ACTIONS(1722), [anon_sym_function] = ACTIONS(1722), - [anon_sym_QMARK_DOT] = ACTIONS(1720), + [anon_sym_QMARK_DOT] = ACTIONS(1726), [anon_sym_new] = ACTIONS(1722), [anon_sym_using] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_PIPE_PIPE] = ACTIONS(1720), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_GT_GT_GT] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1724), [anon_sym_PLUS] = ACTIONS(1722), [anon_sym_DASH] = ACTIONS(1722), [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1720), - [anon_sym_STAR_STAR] = ACTIONS(1720), + [anon_sym_PERCENT] = ACTIONS(1726), + [anon_sym_STAR_STAR] = ACTIONS(1726), [anon_sym_LT] = ACTIONS(1722), - [anon_sym_LT_EQ] = ACTIONS(1720), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1720), - [anon_sym_GT] = ACTIONS(1722), - [anon_sym_QMARK_QMARK] = ACTIONS(1720), - [anon_sym_instanceof] = ACTIONS(1722), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_QMARK_QMARK] = ACTIONS(1726), + [anon_sym_instanceof] = ACTIONS(1724), [anon_sym_TILDE] = ACTIONS(1720), [anon_sym_void] = ACTIONS(1722), [anon_sym_delete] = ACTIONS(1722), @@ -49220,234 +49300,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1722), [anon_sym_object] = ACTIONS(1722), [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_satisfies] = ACTIONS(1722), + [anon_sym_satisfies] = ACTIONS(1724), [anon_sym_interface] = ACTIONS(1722), [anon_sym_enum] = ACTIONS(1722), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym__ternary_qmark] = ACTIONS(1720), - [sym_html_comment] = ACTIONS(5), - }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_export] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_as] = ACTIONS(1692), - [anon_sym_namespace] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(1692), - [anon_sym_import] = ACTIONS(1692), - [anon_sym_with] = ACTIONS(1692), - [anon_sym_var] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_await] = ACTIONS(1692), - [anon_sym_in] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_debugger] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_throw] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_DOT] = ACTIONS(1692), - [anon_sym_class] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_QMARK_DOT] = ACTIONS(1690), - [anon_sym_new] = ACTIONS(1692), - [anon_sym_using] = ACTIONS(1692), - [anon_sym_AMP_AMP] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [anon_sym_GT_GT] = ACTIONS(1692), - [anon_sym_GT_GT_GT] = ACTIONS(1690), - [anon_sym_LT_LT] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_SLASH] = ACTIONS(1692), - [anon_sym_PERCENT] = ACTIONS(1690), - [anon_sym_STAR_STAR] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_EQ] = ACTIONS(1690), - [anon_sym_EQ_EQ] = ACTIONS(1692), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1690), - [anon_sym_BANG_EQ] = ACTIONS(1692), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1690), - [anon_sym_GT_EQ] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_QMARK_QMARK] = ACTIONS(1690), - [anon_sym_instanceof] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_void] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1690), - [sym_number] = ACTIONS(1690), - [sym_private_property_identifier] = ACTIONS(1690), - [sym_this] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [sym_false] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [sym_undefined] = ACTIONS(1692), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_readonly] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_declare] = ACTIONS(1692), - [anon_sym_public] = ACTIONS(1692), - [anon_sym_private] = ACTIONS(1692), - [anon_sym_protected] = ACTIONS(1692), - [anon_sym_override] = ACTIONS(1692), - [anon_sym_module] = ACTIONS(1692), - [anon_sym_any] = ACTIONS(1692), - [anon_sym_number] = ACTIONS(1692), - [anon_sym_boolean] = ACTIONS(1692), - [anon_sym_string] = ACTIONS(1692), - [anon_sym_symbol] = ACTIONS(1692), - [anon_sym_object] = ACTIONS(1692), - [anon_sym_abstract] = ACTIONS(1692), - [anon_sym_satisfies] = ACTIONS(1692), - [anon_sym_interface] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [sym__automatic_semicolon] = ACTIONS(1724), - [sym__ternary_qmark] = ACTIONS(1690), - [sym_html_comment] = ACTIONS(5), - }, - [213] = { - [ts_builtin_sym_end] = ACTIONS(1726), - [sym_identifier] = ACTIONS(1728), - [anon_sym_export] = ACTIONS(1728), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_type] = ACTIONS(1728), - [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_COMMA] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_typeof] = ACTIONS(1728), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_with] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1728), - [anon_sym_let] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_else] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_switch] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_await] = ACTIONS(1728), - [anon_sym_in] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_do] = ACTIONS(1728), - [anon_sym_try] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_debugger] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_throw] = ACTIONS(1728), - [anon_sym_case] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_class] = ACTIONS(1728), - [anon_sym_async] = ACTIONS(1728), - [anon_sym_function] = ACTIONS(1728), - [anon_sym_QMARK_DOT] = ACTIONS(1726), - [anon_sym_new] = ACTIONS(1728), - [anon_sym_using] = ACTIONS(1728), - [anon_sym_AMP_AMP] = ACTIONS(1726), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1726), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_SLASH] = ACTIONS(1728), - [anon_sym_PERCENT] = ACTIONS(1726), - [anon_sym_STAR_STAR] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_LT_EQ] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1728), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1728), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1726), - [anon_sym_GT_EQ] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_QMARK_QMARK] = ACTIONS(1726), - [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1726), - [anon_sym_void] = ACTIONS(1728), - [anon_sym_delete] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1726), - [anon_sym_SQUOTE] = ACTIONS(1726), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1726), - [sym_number] = ACTIONS(1726), - [sym_private_property_identifier] = ACTIONS(1726), - [sym_this] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_true] = ACTIONS(1728), - [sym_false] = ACTIONS(1728), - [sym_null] = ACTIONS(1728), - [sym_undefined] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_readonly] = ACTIONS(1728), - [anon_sym_get] = ACTIONS(1728), - [anon_sym_set] = ACTIONS(1728), - [anon_sym_declare] = ACTIONS(1728), - [anon_sym_public] = ACTIONS(1728), - [anon_sym_private] = ACTIONS(1728), - [anon_sym_protected] = ACTIONS(1728), - [anon_sym_override] = ACTIONS(1728), - [anon_sym_module] = ACTIONS(1728), - [anon_sym_any] = ACTIONS(1728), - [anon_sym_number] = ACTIONS(1728), - [anon_sym_boolean] = ACTIONS(1728), - [anon_sym_string] = ACTIONS(1728), - [anon_sym_symbol] = ACTIONS(1728), - [anon_sym_object] = ACTIONS(1728), - [anon_sym_abstract] = ACTIONS(1728), - [anon_sym_satisfies] = ACTIONS(1728), - [anon_sym_interface] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), - [sym__automatic_semicolon] = ACTIONS(1726), + [sym__automatic_semicolon] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1726), [sym_html_comment] = ACTIONS(5), }, - [214] = { + [212] = { [ts_builtin_sym_end] = ACTIONS(1730), [sym_identifier] = ACTIONS(1732), [anon_sym_export] = ACTIONS(1732), @@ -49553,188 +49413,628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(1734), [anon_sym_interface] = ACTIONS(1732), [anon_sym_enum] = ACTIONS(1732), - [sym__automatic_semicolon] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1738), [sym__ternary_qmark] = ACTIONS(1736), [sym_html_comment] = ACTIONS(5), }, + [213] = { + [ts_builtin_sym_end] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_type] = ACTIONS(1742), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_namespace] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(1742), + [anon_sym_import] = ACTIONS(1742), + [anon_sym_with] = ACTIONS(1742), + [anon_sym_var] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_await] = ACTIONS(1742), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_try] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_debugger] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_throw] = ACTIONS(1742), + [anon_sym_case] = ACTIONS(1742), + [anon_sym_yield] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_class] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(1742), + [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_new] = ACTIONS(1742), + [anon_sym_using] = ACTIONS(1742), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_GT_GT] = ACTIONS(1744), + [anon_sym_GT_GT_GT] = ACTIONS(1746), + [anon_sym_LT_LT] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_CARET] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_SLASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_STAR_STAR] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1742), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_QMARK_QMARK] = ACTIONS(1746), + [anon_sym_instanceof] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_void] = ACTIONS(1742), + [anon_sym_delete] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1740), + [sym_number] = ACTIONS(1740), + [sym_private_property_identifier] = ACTIONS(1740), + [sym_this] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_true] = ACTIONS(1742), + [sym_false] = ACTIONS(1742), + [sym_null] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_readonly] = ACTIONS(1742), + [anon_sym_get] = ACTIONS(1742), + [anon_sym_set] = ACTIONS(1742), + [anon_sym_declare] = ACTIONS(1742), + [anon_sym_public] = ACTIONS(1742), + [anon_sym_private] = ACTIONS(1742), + [anon_sym_protected] = ACTIONS(1742), + [anon_sym_override] = ACTIONS(1742), + [anon_sym_module] = ACTIONS(1742), + [anon_sym_any] = ACTIONS(1742), + [anon_sym_number] = ACTIONS(1742), + [anon_sym_boolean] = ACTIONS(1742), + [anon_sym_string] = ACTIONS(1742), + [anon_sym_symbol] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1742), + [anon_sym_abstract] = ACTIONS(1742), + [anon_sym_satisfies] = ACTIONS(1744), + [anon_sym_interface] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym__ternary_qmark] = ACTIONS(1746), + [sym_html_comment] = ACTIONS(5), + }, + [214] = { + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_import] = ACTIONS(1750), + [anon_sym_with] = ACTIONS(1750), + [anon_sym_var] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_switch] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_await] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_do] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_debugger] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_case] = ACTIONS(1750), + [anon_sym_yield] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_class] = ACTIONS(1750), + [anon_sym_async] = ACTIONS(1750), + [anon_sym_function] = ACTIONS(1750), + [anon_sym_QMARK_DOT] = ACTIONS(1754), + [anon_sym_new] = ACTIONS(1750), + [anon_sym_using] = ACTIONS(1750), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1752), + [anon_sym_GT_GT_GT] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_STAR_STAR] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_QMARK_QMARK] = ACTIONS(1754), + [anon_sym_instanceof] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1748), + [anon_sym_void] = ACTIONS(1750), + [anon_sym_delete] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1748), + [anon_sym_DASH_DASH] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1748), + [sym_number] = ACTIONS(1748), + [sym_private_property_identifier] = ACTIONS(1748), + [sym_this] = ACTIONS(1750), + [sym_super] = ACTIONS(1750), + [sym_true] = ACTIONS(1750), + [sym_false] = ACTIONS(1750), + [sym_null] = ACTIONS(1750), + [sym_undefined] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_readonly] = ACTIONS(1750), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_override] = ACTIONS(1750), + [anon_sym_module] = ACTIONS(1750), + [anon_sym_any] = ACTIONS(1750), + [anon_sym_number] = ACTIONS(1750), + [anon_sym_boolean] = ACTIONS(1750), + [anon_sym_string] = ACTIONS(1750), + [anon_sym_symbol] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_abstract] = ACTIONS(1750), + [anon_sym_satisfies] = ACTIONS(1752), + [anon_sym_interface] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym__ternary_qmark] = ACTIONS(1754), + [sym_html_comment] = ACTIONS(5), + }, [215] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(1738), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(541), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1742), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), - [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_namespace] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym_import] = ACTIONS(1760), + [anon_sym_with] = ACTIONS(1760), + [anon_sym_var] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_await] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_debugger] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_class] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_function] = ACTIONS(1760), + [anon_sym_QMARK_DOT] = ACTIONS(1758), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_using] = ACTIONS(1760), + [anon_sym_AMP_AMP] = ACTIONS(1758), + [anon_sym_PIPE_PIPE] = ACTIONS(1758), + [anon_sym_GT_GT] = ACTIONS(1760), + [anon_sym_GT_GT_GT] = ACTIONS(1758), + [anon_sym_LT_LT] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1758), + [anon_sym_STAR_STAR] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1758), + [anon_sym_EQ_EQ] = ACTIONS(1760), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1758), + [anon_sym_BANG_EQ] = ACTIONS(1760), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1758), + [anon_sym_GT_EQ] = ACTIONS(1758), + [anon_sym_GT] = ACTIONS(1760), + [anon_sym_QMARK_QMARK] = ACTIONS(1758), + [anon_sym_instanceof] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(1760), + [anon_sym_delete] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(541), - [anon_sym_readonly] = ACTIONS(541), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(541), - [anon_sym_private] = ACTIONS(541), - [anon_sym_protected] = ACTIONS(541), - [anon_sym_override] = ACTIONS(541), - [anon_sym_module] = ACTIONS(541), - [anon_sym_any] = ACTIONS(541), - [anon_sym_number] = ACTIONS(541), - [anon_sym_boolean] = ACTIONS(541), - [anon_sym_string] = ACTIONS(541), - [anon_sym_symbol] = ACTIONS(541), - [anon_sym_object] = ACTIONS(541), + [anon_sym_BQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1758), + [sym_private_property_identifier] = ACTIONS(1758), + [sym_this] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_undefined] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_readonly] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_declare] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_any] = ACTIONS(1760), + [anon_sym_number] = ACTIONS(1760), + [anon_sym_boolean] = ACTIONS(1760), + [anon_sym_string] = ACTIONS(1760), + [anon_sym_symbol] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_abstract] = ACTIONS(1760), + [anon_sym_satisfies] = ACTIONS(1760), + [anon_sym_interface] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [sym__automatic_semicolon] = ACTIONS(1758), + [sym__ternary_qmark] = ACTIONS(1758), [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(1738), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_type] = ACTIONS(1690), + [anon_sym_as] = ACTIONS(1690), + [anon_sym_namespace] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1690), + [anon_sym_import] = ACTIONS(1690), + [anon_sym_with] = ACTIONS(1690), + [anon_sym_var] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_switch] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_await] = ACTIONS(1690), + [anon_sym_in] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_try] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_debugger] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(1690), + [anon_sym_case] = ACTIONS(1690), + [anon_sym_yield] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_class] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_function] = ACTIONS(1690), + [anon_sym_QMARK_DOT] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1690), + [anon_sym_using] = ACTIONS(1690), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [anon_sym_GT_GT] = ACTIONS(1690), + [anon_sym_GT_GT_GT] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_CARET] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_SLASH] = ACTIONS(1690), + [anon_sym_PERCENT] = ACTIONS(1688), + [anon_sym_STAR_STAR] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_LT_EQ] = ACTIONS(1688), + [anon_sym_EQ_EQ] = ACTIONS(1690), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ] = ACTIONS(1690), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1688), + [anon_sym_GT_EQ] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_QMARK_QMARK] = ACTIONS(1688), + [anon_sym_instanceof] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_void] = ACTIONS(1690), + [anon_sym_delete] = ACTIONS(1690), + [anon_sym_PLUS_PLUS] = ACTIONS(1688), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_true] = ACTIONS(1690), + [sym_false] = ACTIONS(1690), + [sym_null] = ACTIONS(1690), + [sym_undefined] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_readonly] = ACTIONS(1690), + [anon_sym_get] = ACTIONS(1690), + [anon_sym_set] = ACTIONS(1690), + [anon_sym_declare] = ACTIONS(1690), + [anon_sym_public] = ACTIONS(1690), + [anon_sym_private] = ACTIONS(1690), + [anon_sym_protected] = ACTIONS(1690), + [anon_sym_override] = ACTIONS(1690), + [anon_sym_module] = ACTIONS(1690), + [anon_sym_any] = ACTIONS(1690), + [anon_sym_number] = ACTIONS(1690), + [anon_sym_boolean] = ACTIONS(1690), + [anon_sym_string] = ACTIONS(1690), + [anon_sym_symbol] = ACTIONS(1690), + [anon_sym_object] = ACTIONS(1690), + [anon_sym_abstract] = ACTIONS(1690), + [anon_sym_satisfies] = ACTIONS(1690), + [anon_sym_interface] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [sym__automatic_semicolon] = ACTIONS(1762), + [sym__ternary_qmark] = ACTIONS(1688), + [sym_html_comment] = ACTIONS(5), + }, + [217] = { + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_QMARK_DOT] = ACTIONS(1764), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_GT_GT_GT] = ACTIONS(1764), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_STAR_STAR] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_QMARK_QMARK] = ACTIONS(1764), + [anon_sym_instanceof] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_private_property_identifier] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_readonly] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_object] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_satisfies] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym__ternary_qmark] = ACTIONS(1764), + [sym_html_comment] = ACTIONS(5), + }, + [218] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2123), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4990), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(5019), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1748), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(581), @@ -49746,18 +50046,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(541), @@ -49777,514 +50077,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1752), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(1752), - [anon_sym_namespace] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_typeof] = ACTIONS(1752), - [anon_sym_import] = ACTIONS(1752), - [anon_sym_with] = ACTIONS(1752), - [anon_sym_var] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_switch] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_do] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_case] = ACTIONS(1752), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_class] = ACTIONS(1752), - [anon_sym_async] = ACTIONS(1752), - [anon_sym_function] = ACTIONS(1752), - [anon_sym_QMARK_DOT] = ACTIONS(1750), - [anon_sym_new] = ACTIONS(1752), - [anon_sym_using] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_GT_GT] = ACTIONS(1752), - [anon_sym_GT_GT_GT] = ACTIONS(1750), - [anon_sym_LT_LT] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_STAR_STAR] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_EQ_EQ] = ACTIONS(1752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1752), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1750), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_QMARK_QMARK] = ACTIONS(1750), - [anon_sym_instanceof] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_void] = ACTIONS(1752), - [anon_sym_delete] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1750), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1750), - [sym_number] = ACTIONS(1750), - [sym_private_property_identifier] = ACTIONS(1750), - [sym_this] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_true] = ACTIONS(1752), - [sym_false] = ACTIONS(1752), - [sym_null] = ACTIONS(1752), - [sym_undefined] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_readonly] = ACTIONS(1752), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), - [anon_sym_declare] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_protected] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_module] = ACTIONS(1752), - [anon_sym_any] = ACTIONS(1752), - [anon_sym_number] = ACTIONS(1752), - [anon_sym_boolean] = ACTIONS(1752), - [anon_sym_string] = ACTIONS(1752), - [anon_sym_symbol] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_satisfies] = ACTIONS(1752), - [anon_sym_interface] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [sym__automatic_semicolon] = ACTIONS(1750), - [sym__ternary_qmark] = ACTIONS(1750), - [sym_html_comment] = ACTIONS(5), - }, - [218] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym__formal_parameter] = STATE(5169), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4339), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5169), - [sym_optional_parameter] = STATE(5169), - [sym__parameter_name] = STATE(3624), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1666), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(1668), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1756), - [anon_sym_export] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_type] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(1756), - [anon_sym_namespace] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_typeof] = ACTIONS(1756), - [anon_sym_import] = ACTIONS(1756), - [anon_sym_with] = ACTIONS(1756), - [anon_sym_var] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_else] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_switch] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_await] = ACTIONS(1756), - [anon_sym_in] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_try] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_debugger] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_throw] = ACTIONS(1756), - [anon_sym_case] = ACTIONS(1756), - [anon_sym_yield] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_function] = ACTIONS(1756), - [anon_sym_QMARK_DOT] = ACTIONS(1754), - [anon_sym_new] = ACTIONS(1756), - [anon_sym_using] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_GT_GT_GT] = ACTIONS(1754), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_STAR_STAR] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1756), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1756), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_QMARK_QMARK] = ACTIONS(1754), - [anon_sym_instanceof] = ACTIONS(1756), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_delete] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1754), - [sym_number] = ACTIONS(1754), - [sym_private_property_identifier] = ACTIONS(1754), - [sym_this] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_true] = ACTIONS(1756), - [sym_false] = ACTIONS(1756), - [sym_null] = ACTIONS(1756), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_readonly] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(1756), - [anon_sym_set] = ACTIONS(1756), - [anon_sym_declare] = ACTIONS(1756), - [anon_sym_public] = ACTIONS(1756), - [anon_sym_private] = ACTIONS(1756), - [anon_sym_protected] = ACTIONS(1756), - [anon_sym_override] = ACTIONS(1756), - [anon_sym_module] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_number] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_symbol] = ACTIONS(1756), - [anon_sym_object] = ACTIONS(1756), - [anon_sym_abstract] = ACTIONS(1756), - [anon_sym_satisfies] = ACTIONS(1756), - [anon_sym_interface] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [sym__automatic_semicolon] = ACTIONS(1754), - [sym__ternary_qmark] = ACTIONS(1754), - [sym_html_comment] = ACTIONS(5), - }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_export] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_as] = ACTIONS(1762), - [anon_sym_namespace] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_as] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_typeof] = ACTIONS(1760), - [anon_sym_import] = ACTIONS(1760), - [anon_sym_with] = ACTIONS(1760), - [anon_sym_var] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_else] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_switch] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_await] = ACTIONS(1760), - [anon_sym_in] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_do] = ACTIONS(1760), - [anon_sym_try] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_debugger] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_throw] = ACTIONS(1760), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(1762), - [anon_sym_class] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_function] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_in] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), [anon_sym_QMARK_DOT] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_using] = ACTIONS(1760), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_using] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1764), [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_GT_GT] = ACTIONS(1762), + [anon_sym_GT_GT] = ACTIONS(1766), [anon_sym_GT_GT_GT] = ACTIONS(1764), [anon_sym_LT_LT] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1766), [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), [anon_sym_PERCENT] = ACTIONS(1764), [anon_sym_STAR_STAR] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1766), [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ] = ACTIONS(1766), [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1766), [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1766), [anon_sym_QMARK_QMARK] = ACTIONS(1764), - [anon_sym_instanceof] = ACTIONS(1762), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_delete] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1758), - [sym_number] = ACTIONS(1758), - [sym_private_property_identifier] = ACTIONS(1758), - [sym_this] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_true] = ACTIONS(1760), - [sym_false] = ACTIONS(1760), - [sym_null] = ACTIONS(1760), - [sym_undefined] = ACTIONS(1760), - [anon_sym_AT] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_readonly] = ACTIONS(1760), - [anon_sym_get] = ACTIONS(1760), - [anon_sym_set] = ACTIONS(1760), - [anon_sym_declare] = ACTIONS(1760), - [anon_sym_public] = ACTIONS(1760), - [anon_sym_private] = ACTIONS(1760), - [anon_sym_protected] = ACTIONS(1760), - [anon_sym_override] = ACTIONS(1760), - [anon_sym_module] = ACTIONS(1760), - [anon_sym_any] = ACTIONS(1760), - [anon_sym_number] = ACTIONS(1760), - [anon_sym_boolean] = ACTIONS(1760), - [anon_sym_string] = ACTIONS(1760), - [anon_sym_symbol] = ACTIONS(1760), - [anon_sym_object] = ACTIONS(1760), - [anon_sym_abstract] = ACTIONS(1760), - [anon_sym_satisfies] = ACTIONS(1762), - [anon_sym_interface] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [sym__automatic_semicolon] = ACTIONS(1766), + [anon_sym_instanceof] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_private_property_identifier] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_readonly] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_object] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_satisfies] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1778), [sym__ternary_qmark] = ACTIONS(1764), [sym_html_comment] = ACTIONS(5), }, - [221] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(1738), + [220] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1768), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1780), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(581), @@ -50296,18 +50266,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(541), @@ -50327,844 +50297,1174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_export] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_as] = ACTIONS(1774), - [anon_sym_namespace] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_typeof] = ACTIONS(1772), - [anon_sym_import] = ACTIONS(1772), - [anon_sym_with] = ACTIONS(1772), - [anon_sym_var] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_switch] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_await] = ACTIONS(1772), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_do] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_debugger] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_throw] = ACTIONS(1772), - [anon_sym_case] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_class] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_function] = ACTIONS(1772), - [anon_sym_QMARK_DOT] = ACTIONS(1776), - [anon_sym_new] = ACTIONS(1772), - [anon_sym_using] = ACTIONS(1772), - [anon_sym_AMP_AMP] = ACTIONS(1776), - [anon_sym_PIPE_PIPE] = ACTIONS(1776), - [anon_sym_GT_GT] = ACTIONS(1774), - [anon_sym_GT_GT_GT] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_STAR_STAR] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1774), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1774), - [anon_sym_QMARK_QMARK] = ACTIONS(1776), - [anon_sym_instanceof] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_void] = ACTIONS(1772), - [anon_sym_delete] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1770), - [sym_number] = ACTIONS(1770), - [sym_private_property_identifier] = ACTIONS(1770), - [sym_this] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_true] = ACTIONS(1772), - [sym_false] = ACTIONS(1772), - [sym_null] = ACTIONS(1772), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_readonly] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1772), - [anon_sym_set] = ACTIONS(1772), - [anon_sym_declare] = ACTIONS(1772), - [anon_sym_public] = ACTIONS(1772), - [anon_sym_private] = ACTIONS(1772), - [anon_sym_protected] = ACTIONS(1772), - [anon_sym_override] = ACTIONS(1772), - [anon_sym_module] = ACTIONS(1772), - [anon_sym_any] = ACTIONS(1772), - [anon_sym_number] = ACTIONS(1772), - [anon_sym_boolean] = ACTIONS(1772), - [anon_sym_string] = ACTIONS(1772), - [anon_sym_symbol] = ACTIONS(1772), - [anon_sym_object] = ACTIONS(1772), - [anon_sym_abstract] = ACTIONS(1772), - [anon_sym_satisfies] = ACTIONS(1774), - [anon_sym_interface] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1778), - [sym__ternary_qmark] = ACTIONS(1776), - [sym_html_comment] = ACTIONS(5), - }, - [223] = { - [ts_builtin_sym_end] = ACTIONS(1780), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1782), + [221] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_export] = ACTIONS(1784), [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_type] = ACTIONS(1782), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_type] = ACTIONS(1784), [anon_sym_as] = ACTIONS(1784), - [anon_sym_namespace] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_typeof] = ACTIONS(1782), - [anon_sym_import] = ACTIONS(1782), - [anon_sym_with] = ACTIONS(1782), - [anon_sym_var] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1782), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_with] = ACTIONS(1784), + [anon_sym_var] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_await] = ACTIONS(1784), [anon_sym_in] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_debugger] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_throw] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_yield] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_debugger] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_yield] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(1782), - [anon_sym_async] = ACTIONS(1782), - [anon_sym_function] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(1784), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_function] = ACTIONS(1784), + [anon_sym_QMARK_DOT] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_AMP_AMP] = ACTIONS(1782), + [anon_sym_PIPE_PIPE] = ACTIONS(1782), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1782), + [anon_sym_LT_LT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_STAR_STAR] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_LT_EQ] = ACTIONS(1782), + [anon_sym_EQ_EQ] = ACTIONS(1784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1782), + [anon_sym_GT_EQ] = ACTIONS(1782), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_QMARK_QMARK] = ACTIONS(1782), + [anon_sym_instanceof] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_void] = ACTIONS(1784), + [anon_sym_delete] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1782), + [sym_number] = ACTIONS(1782), + [sym_private_property_identifier] = ACTIONS(1782), + [sym_this] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_undefined] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_readonly] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(1784), + [anon_sym_set] = ACTIONS(1784), + [anon_sym_declare] = ACTIONS(1784), + [anon_sym_public] = ACTIONS(1784), + [anon_sym_private] = ACTIONS(1784), + [anon_sym_protected] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(1784), + [anon_sym_module] = ACTIONS(1784), + [anon_sym_any] = ACTIONS(1784), + [anon_sym_number] = ACTIONS(1784), + [anon_sym_boolean] = ACTIONS(1784), + [anon_sym_string] = ACTIONS(1784), + [anon_sym_symbol] = ACTIONS(1784), + [anon_sym_object] = ACTIONS(1784), + [anon_sym_abstract] = ACTIONS(1784), + [anon_sym_satisfies] = ACTIONS(1784), + [anon_sym_interface] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [sym__automatic_semicolon] = ACTIONS(1782), + [sym__ternary_qmark] = ACTIONS(1782), + [sym_html_comment] = ACTIONS(5), + }, + [222] = { + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_namespace] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1788), + [anon_sym_with] = ACTIONS(1788), + [anon_sym_var] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_await] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_debugger] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_throw] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1788), + [anon_sym_class] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_function] = ACTIONS(1788), [anon_sym_QMARK_DOT] = ACTIONS(1786), - [anon_sym_new] = ACTIONS(1782), - [anon_sym_using] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_using] = ACTIONS(1788), [anon_sym_AMP_AMP] = ACTIONS(1786), [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT] = ACTIONS(1788), [anon_sym_GT_GT_GT] = ACTIONS(1786), [anon_sym_LT_LT] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1788), [anon_sym_CARET] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_SLASH] = ACTIONS(1788), [anon_sym_PERCENT] = ACTIONS(1786), [anon_sym_STAR_STAR] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1788), [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1784), + [anon_sym_EQ_EQ] = ACTIONS(1788), [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1784), + [anon_sym_BANG_EQ] = ACTIONS(1788), [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1784), + [anon_sym_GT] = ACTIONS(1788), [anon_sym_QMARK_QMARK] = ACTIONS(1786), - [anon_sym_instanceof] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_void] = ACTIONS(1782), - [anon_sym_delete] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1780), - [sym_number] = ACTIONS(1780), - [sym_private_property_identifier] = ACTIONS(1780), - [sym_this] = ACTIONS(1782), - [sym_super] = ACTIONS(1782), - [sym_true] = ACTIONS(1782), - [sym_false] = ACTIONS(1782), - [sym_null] = ACTIONS(1782), - [sym_undefined] = ACTIONS(1782), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_readonly] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(1782), - [anon_sym_set] = ACTIONS(1782), - [anon_sym_declare] = ACTIONS(1782), - [anon_sym_public] = ACTIONS(1782), - [anon_sym_private] = ACTIONS(1782), - [anon_sym_protected] = ACTIONS(1782), - [anon_sym_override] = ACTIONS(1782), - [anon_sym_module] = ACTIONS(1782), - [anon_sym_any] = ACTIONS(1782), - [anon_sym_number] = ACTIONS(1782), - [anon_sym_boolean] = ACTIONS(1782), - [anon_sym_string] = ACTIONS(1782), - [anon_sym_symbol] = ACTIONS(1782), - [anon_sym_object] = ACTIONS(1782), - [anon_sym_abstract] = ACTIONS(1782), - [anon_sym_satisfies] = ACTIONS(1784), - [anon_sym_interface] = ACTIONS(1782), - [anon_sym_enum] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1788), + [anon_sym_instanceof] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_void] = ACTIONS(1788), + [anon_sym_delete] = ACTIONS(1788), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1786), + [sym_number] = ACTIONS(1786), + [sym_private_property_identifier] = ACTIONS(1786), + [sym_this] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_readonly] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1788), + [anon_sym_set] = ACTIONS(1788), + [anon_sym_declare] = ACTIONS(1788), + [anon_sym_public] = ACTIONS(1788), + [anon_sym_private] = ACTIONS(1788), + [anon_sym_protected] = ACTIONS(1788), + [anon_sym_override] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_any] = ACTIONS(1788), + [anon_sym_number] = ACTIONS(1788), + [anon_sym_boolean] = ACTIONS(1788), + [anon_sym_string] = ACTIONS(1788), + [anon_sym_symbol] = ACTIONS(1788), + [anon_sym_object] = ACTIONS(1788), + [anon_sym_abstract] = ACTIONS(1788), + [anon_sym_satisfies] = ACTIONS(1788), + [anon_sym_interface] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [sym__automatic_semicolon] = ACTIONS(1786), [sym__ternary_qmark] = ACTIONS(1786), [sym_html_comment] = ACTIONS(5), }, + [223] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(1768), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_export] = ACTIONS(1792), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1794), [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), [anon_sym_as] = ACTIONS(1794), - [anon_sym_namespace] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(1792), - [anon_sym_import] = ACTIONS(1792), - [anon_sym_with] = ACTIONS(1792), - [anon_sym_var] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_switch] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_await] = ACTIONS(1792), + [anon_sym_namespace] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_COMMA] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_typeof] = ACTIONS(1794), + [anon_sym_import] = ACTIONS(1794), + [anon_sym_with] = ACTIONS(1794), + [anon_sym_var] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_else] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_await] = ACTIONS(1794), [anon_sym_in] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_do] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_debugger] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_case] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_try] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_debugger] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_throw] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1794), + [anon_sym_yield] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1792), [anon_sym_DOT] = ACTIONS(1794), - [anon_sym_class] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_function] = ACTIONS(1792), - [anon_sym_QMARK_DOT] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_using] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1796), - [anon_sym_PIPE_PIPE] = ACTIONS(1796), + [anon_sym_class] = ACTIONS(1794), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_function] = ACTIONS(1794), + [anon_sym_QMARK_DOT] = ACTIONS(1792), + [anon_sym_new] = ACTIONS(1794), + [anon_sym_using] = ACTIONS(1794), + [anon_sym_AMP_AMP] = ACTIONS(1792), + [anon_sym_PIPE_PIPE] = ACTIONS(1792), [anon_sym_GT_GT] = ACTIONS(1794), - [anon_sym_GT_GT_GT] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1796), + [anon_sym_GT_GT_GT] = ACTIONS(1792), + [anon_sym_LT_LT] = ACTIONS(1792), [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1796), + [anon_sym_CARET] = ACTIONS(1792), [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_STAR_STAR] = ACTIONS(1796), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_STAR_STAR] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1794), + [anon_sym_LT_EQ] = ACTIONS(1792), [anon_sym_EQ_EQ] = ACTIONS(1794), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), [anon_sym_BANG_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1796), - [anon_sym_GT_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), + [anon_sym_GT_EQ] = ACTIONS(1792), [anon_sym_GT] = ACTIONS(1794), - [anon_sym_QMARK_QMARK] = ACTIONS(1796), + [anon_sym_QMARK_QMARK] = ACTIONS(1792), [anon_sym_instanceof] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_void] = ACTIONS(1792), - [anon_sym_delete] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1790), - [sym_number] = ACTIONS(1790), - [sym_private_property_identifier] = ACTIONS(1790), - [sym_this] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_true] = ACTIONS(1792), - [sym_false] = ACTIONS(1792), - [sym_null] = ACTIONS(1792), - [sym_undefined] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_readonly] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1792), - [anon_sym_set] = ACTIONS(1792), - [anon_sym_declare] = ACTIONS(1792), - [anon_sym_public] = ACTIONS(1792), - [anon_sym_private] = ACTIONS(1792), - [anon_sym_protected] = ACTIONS(1792), - [anon_sym_override] = ACTIONS(1792), - [anon_sym_module] = ACTIONS(1792), - [anon_sym_any] = ACTIONS(1792), - [anon_sym_number] = ACTIONS(1792), - [anon_sym_boolean] = ACTIONS(1792), - [anon_sym_string] = ACTIONS(1792), - [anon_sym_symbol] = ACTIONS(1792), - [anon_sym_object] = ACTIONS(1792), - [anon_sym_abstract] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_void] = ACTIONS(1794), + [anon_sym_delete] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1792), + [sym_number] = ACTIONS(1792), + [sym_private_property_identifier] = ACTIONS(1792), + [sym_this] = ACTIONS(1794), + [sym_super] = ACTIONS(1794), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [sym_null] = ACTIONS(1794), + [sym_undefined] = ACTIONS(1794), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_readonly] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(1794), + [anon_sym_set] = ACTIONS(1794), + [anon_sym_declare] = ACTIONS(1794), + [anon_sym_public] = ACTIONS(1794), + [anon_sym_private] = ACTIONS(1794), + [anon_sym_protected] = ACTIONS(1794), + [anon_sym_override] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1794), + [anon_sym_any] = ACTIONS(1794), + [anon_sym_number] = ACTIONS(1794), + [anon_sym_boolean] = ACTIONS(1794), + [anon_sym_string] = ACTIONS(1794), + [anon_sym_symbol] = ACTIONS(1794), + [anon_sym_object] = ACTIONS(1794), + [anon_sym_abstract] = ACTIONS(1794), [anon_sym_satisfies] = ACTIONS(1794), - [anon_sym_interface] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym__ternary_qmark] = ACTIONS(1796), + [anon_sym_interface] = ACTIONS(1794), + [anon_sym_enum] = ACTIONS(1794), + [sym__automatic_semicolon] = ACTIONS(1792), + [sym__ternary_qmark] = ACTIONS(1792), [sym_html_comment] = ACTIONS(5), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_type] = ACTIONS(1802), - [anon_sym_as] = ACTIONS(1804), - [anon_sym_namespace] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_COMMA] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym_import] = ACTIONS(1802), - [anon_sym_with] = ACTIONS(1802), - [anon_sym_var] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_await] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_debugger] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_throw] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_yield] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1804), - [anon_sym_class] = ACTIONS(1802), - [anon_sym_async] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(1802), - [anon_sym_QMARK_DOT] = ACTIONS(1806), - [anon_sym_new] = ACTIONS(1802), - [anon_sym_using] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1806), - [anon_sym_PIPE_PIPE] = ACTIONS(1806), - [anon_sym_GT_GT] = ACTIONS(1804), - [anon_sym_GT_GT_GT] = ACTIONS(1806), - [anon_sym_LT_LT] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1802), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_STAR_STAR] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_LT_EQ] = ACTIONS(1806), - [anon_sym_EQ_EQ] = ACTIONS(1804), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1806), - [anon_sym_BANG_EQ] = ACTIONS(1804), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1806), - [anon_sym_GT_EQ] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1804), - [anon_sym_QMARK_QMARK] = ACTIONS(1806), - [anon_sym_instanceof] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_void] = ACTIONS(1802), - [anon_sym_delete] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1800), - [sym_number] = ACTIONS(1800), - [sym_private_property_identifier] = ACTIONS(1800), - [sym_this] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_undefined] = ACTIONS(1802), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_readonly] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1802), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1802), - [anon_sym_private] = ACTIONS(1802), - [anon_sym_protected] = ACTIONS(1802), - [anon_sym_override] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_any] = ACTIONS(1802), - [anon_sym_number] = ACTIONS(1802), - [anon_sym_boolean] = ACTIONS(1802), - [anon_sym_string] = ACTIONS(1802), - [anon_sym_symbol] = ACTIONS(1802), - [anon_sym_object] = ACTIONS(1802), - [anon_sym_abstract] = ACTIONS(1802), - [anon_sym_satisfies] = ACTIONS(1804), - [anon_sym_interface] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1808), - [sym__ternary_qmark] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1798), + [anon_sym_as] = ACTIONS(1800), + [anon_sym_namespace] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_typeof] = ACTIONS(1798), + [anon_sym_import] = ACTIONS(1798), + [anon_sym_with] = ACTIONS(1798), + [anon_sym_var] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_else] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_do] = ACTIONS(1798), + [anon_sym_try] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_debugger] = ACTIONS(1798), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_throw] = ACTIONS(1798), + [anon_sym_case] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_DOT] = ACTIONS(1800), + [anon_sym_class] = ACTIONS(1798), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_function] = ACTIONS(1798), + [anon_sym_QMARK_DOT] = ACTIONS(1802), + [anon_sym_new] = ACTIONS(1798), + [anon_sym_using] = ACTIONS(1798), + [anon_sym_AMP_AMP] = ACTIONS(1802), + [anon_sym_PIPE_PIPE] = ACTIONS(1802), + [anon_sym_GT_GT] = ACTIONS(1800), + [anon_sym_GT_GT_GT] = ACTIONS(1802), + [anon_sym_LT_LT] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_SLASH] = ACTIONS(1798), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_STAR_STAR] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_LT_EQ] = ACTIONS(1802), + [anon_sym_EQ_EQ] = ACTIONS(1800), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1802), + [anon_sym_BANG_EQ] = ACTIONS(1800), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1802), + [anon_sym_GT_EQ] = ACTIONS(1802), + [anon_sym_GT] = ACTIONS(1800), + [anon_sym_QMARK_QMARK] = ACTIONS(1802), + [anon_sym_instanceof] = ACTIONS(1800), + [anon_sym_TILDE] = ACTIONS(1796), + [anon_sym_void] = ACTIONS(1798), + [anon_sym_delete] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1796), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1796), + [sym_number] = ACTIONS(1796), + [sym_private_property_identifier] = ACTIONS(1796), + [sym_this] = ACTIONS(1798), + [sym_super] = ACTIONS(1798), + [sym_true] = ACTIONS(1798), + [sym_false] = ACTIONS(1798), + [sym_null] = ACTIONS(1798), + [sym_undefined] = ACTIONS(1798), + [anon_sym_AT] = ACTIONS(1796), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1798), + [anon_sym_declare] = ACTIONS(1798), + [anon_sym_public] = ACTIONS(1798), + [anon_sym_private] = ACTIONS(1798), + [anon_sym_protected] = ACTIONS(1798), + [anon_sym_override] = ACTIONS(1798), + [anon_sym_module] = ACTIONS(1798), + [anon_sym_any] = ACTIONS(1798), + [anon_sym_number] = ACTIONS(1798), + [anon_sym_boolean] = ACTIONS(1798), + [anon_sym_string] = ACTIONS(1798), + [anon_sym_symbol] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_abstract] = ACTIONS(1798), + [anon_sym_satisfies] = ACTIONS(1800), + [anon_sym_interface] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1804), + [sym__ternary_qmark] = ACTIONS(1802), [sym_html_comment] = ACTIONS(5), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_export] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_as] = ACTIONS(1814), - [anon_sym_namespace] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_typeof] = ACTIONS(1812), - [anon_sym_import] = ACTIONS(1812), - [anon_sym_with] = ACTIONS(1812), - [anon_sym_var] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_else] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_switch] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_await] = ACTIONS(1812), - [anon_sym_in] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_do] = ACTIONS(1812), - [anon_sym_try] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_debugger] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_throw] = ACTIONS(1812), - [anon_sym_case] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1814), - [anon_sym_class] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_function] = ACTIONS(1812), - [anon_sym_QMARK_DOT] = ACTIONS(1816), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_using] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1816), - [anon_sym_PIPE_PIPE] = ACTIONS(1816), - [anon_sym_GT_GT] = ACTIONS(1814), - [anon_sym_GT_GT_GT] = ACTIONS(1816), - [anon_sym_LT_LT] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_STAR_STAR] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_LT_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ] = ACTIONS(1814), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ] = ACTIONS(1814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), - [anon_sym_GT_EQ] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1814), - [anon_sym_QMARK_QMARK] = ACTIONS(1816), - [anon_sym_instanceof] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1810), - [anon_sym_void] = ACTIONS(1812), - [anon_sym_delete] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1810), - [sym_number] = ACTIONS(1810), - [sym_private_property_identifier] = ACTIONS(1810), - [sym_this] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_true] = ACTIONS(1812), - [sym_false] = ACTIONS(1812), - [sym_null] = ACTIONS(1812), - [sym_undefined] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_readonly] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(1812), - [anon_sym_set] = ACTIONS(1812), - [anon_sym_declare] = ACTIONS(1812), - [anon_sym_public] = ACTIONS(1812), - [anon_sym_private] = ACTIONS(1812), - [anon_sym_protected] = ACTIONS(1812), - [anon_sym_override] = ACTIONS(1812), - [anon_sym_module] = ACTIONS(1812), - [anon_sym_any] = ACTIONS(1812), - [anon_sym_number] = ACTIONS(1812), - [anon_sym_boolean] = ACTIONS(1812), - [anon_sym_string] = ACTIONS(1812), - [anon_sym_symbol] = ACTIONS(1812), - [anon_sym_object] = ACTIONS(1812), - [anon_sym_abstract] = ACTIONS(1812), - [anon_sym_satisfies] = ACTIONS(1814), - [anon_sym_interface] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym__ternary_qmark] = ACTIONS(1816), + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1808), + [anon_sym_export] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_type] = ACTIONS(1808), + [anon_sym_as] = ACTIONS(1810), + [anon_sym_namespace] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_typeof] = ACTIONS(1808), + [anon_sym_import] = ACTIONS(1808), + [anon_sym_with] = ACTIONS(1808), + [anon_sym_var] = ACTIONS(1808), + [anon_sym_let] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1810), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_do] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_debugger] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_DOT] = ACTIONS(1810), + [anon_sym_class] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_QMARK_DOT] = ACTIONS(1812), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1808), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1812), + [anon_sym_GT_GT] = ACTIONS(1810), + [anon_sym_GT_GT_GT] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_CARET] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_STAR_STAR] = ACTIONS(1812), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_LT_EQ] = ACTIONS(1812), + [anon_sym_EQ_EQ] = ACTIONS(1810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1812), + [anon_sym_BANG_EQ] = ACTIONS(1810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1812), + [anon_sym_GT_EQ] = ACTIONS(1812), + [anon_sym_GT] = ACTIONS(1810), + [anon_sym_QMARK_QMARK] = ACTIONS(1812), + [anon_sym_instanceof] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_void] = ACTIONS(1808), + [anon_sym_delete] = ACTIONS(1808), + [anon_sym_PLUS_PLUS] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1806), + [sym_number] = ACTIONS(1806), + [sym_private_property_identifier] = ACTIONS(1806), + [sym_this] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_null] = ACTIONS(1808), + [sym_undefined] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_readonly] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_declare] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_override] = ACTIONS(1808), + [anon_sym_module] = ACTIONS(1808), + [anon_sym_any] = ACTIONS(1808), + [anon_sym_number] = ACTIONS(1808), + [anon_sym_boolean] = ACTIONS(1808), + [anon_sym_string] = ACTIONS(1808), + [anon_sym_symbol] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_satisfies] = ACTIONS(1810), + [anon_sym_interface] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [sym__automatic_semicolon] = ACTIONS(1814), + [sym__ternary_qmark] = ACTIONS(1812), [sym_html_comment] = ACTIONS(5), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(1820), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_type] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_namespace] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym_import] = ACTIONS(1822), - [anon_sym_with] = ACTIONS(1822), - [anon_sym_var] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_await] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_debugger] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_yield] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_class] = ACTIONS(1822), - [anon_sym_async] = ACTIONS(1822), - [anon_sym_function] = ACTIONS(1822), - [anon_sym_QMARK_DOT] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1822), - [anon_sym_using] = ACTIONS(1822), - [anon_sym_AMP_AMP] = ACTIONS(1826), - [anon_sym_PIPE_PIPE] = ACTIONS(1826), - [anon_sym_GT_GT] = ACTIONS(1824), - [anon_sym_GT_GT_GT] = ACTIONS(1826), - [anon_sym_LT_LT] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_STAR_STAR] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_LT_EQ] = ACTIONS(1826), - [anon_sym_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1826), - [anon_sym_GT_EQ] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1824), - [anon_sym_QMARK_QMARK] = ACTIONS(1826), - [anon_sym_instanceof] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_void] = ACTIONS(1822), - [anon_sym_delete] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1820), - [sym_number] = ACTIONS(1820), - [sym_private_property_identifier] = ACTIONS(1820), - [sym_this] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_undefined] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_readonly] = ACTIONS(1822), - [anon_sym_get] = ACTIONS(1822), - [anon_sym_set] = ACTIONS(1822), - [anon_sym_declare] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1822), - [anon_sym_private] = ACTIONS(1822), - [anon_sym_protected] = ACTIONS(1822), - [anon_sym_override] = ACTIONS(1822), - [anon_sym_module] = ACTIONS(1822), - [anon_sym_any] = ACTIONS(1822), - [anon_sym_number] = ACTIONS(1822), - [anon_sym_boolean] = ACTIONS(1822), - [anon_sym_string] = ACTIONS(1822), - [anon_sym_symbol] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_abstract] = ACTIONS(1822), - [anon_sym_satisfies] = ACTIONS(1824), - [anon_sym_interface] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [sym__automatic_semicolon] = ACTIONS(1828), - [sym__ternary_qmark] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1820), + [anon_sym_namespace] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1818), + [anon_sym_import] = ACTIONS(1818), + [anon_sym_with] = ACTIONS(1818), + [anon_sym_var] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_switch] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_await] = ACTIONS(1818), + [anon_sym_in] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_debugger] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_throw] = ACTIONS(1818), + [anon_sym_case] = ACTIONS(1818), + [anon_sym_yield] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_DOT] = ACTIONS(1820), + [anon_sym_class] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_function] = ACTIONS(1818), + [anon_sym_QMARK_DOT] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1818), + [anon_sym_using] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1822), + [anon_sym_PIPE_PIPE] = ACTIONS(1822), + [anon_sym_GT_GT] = ACTIONS(1820), + [anon_sym_GT_GT_GT] = ACTIONS(1822), + [anon_sym_LT_LT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1818), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_STAR_STAR] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1822), + [anon_sym_EQ_EQ] = ACTIONS(1820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1822), + [anon_sym_BANG_EQ] = ACTIONS(1820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1822), + [anon_sym_GT_EQ] = ACTIONS(1822), + [anon_sym_GT] = ACTIONS(1820), + [anon_sym_QMARK_QMARK] = ACTIONS(1822), + [anon_sym_instanceof] = ACTIONS(1820), + [anon_sym_TILDE] = ACTIONS(1816), + [anon_sym_void] = ACTIONS(1818), + [anon_sym_delete] = ACTIONS(1818), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1816), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1816), + [sym_number] = ACTIONS(1816), + [sym_private_property_identifier] = ACTIONS(1816), + [sym_this] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_true] = ACTIONS(1818), + [sym_false] = ACTIONS(1818), + [sym_null] = ACTIONS(1818), + [sym_undefined] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_readonly] = ACTIONS(1818), + [anon_sym_get] = ACTIONS(1818), + [anon_sym_set] = ACTIONS(1818), + [anon_sym_declare] = ACTIONS(1818), + [anon_sym_public] = ACTIONS(1818), + [anon_sym_private] = ACTIONS(1818), + [anon_sym_protected] = ACTIONS(1818), + [anon_sym_override] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_any] = ACTIONS(1818), + [anon_sym_number] = ACTIONS(1818), + [anon_sym_boolean] = ACTIONS(1818), + [anon_sym_string] = ACTIONS(1818), + [anon_sym_symbol] = ACTIONS(1818), + [anon_sym_object] = ACTIONS(1818), + [anon_sym_abstract] = ACTIONS(1818), + [anon_sym_satisfies] = ACTIONS(1820), + [anon_sym_interface] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1824), + [sym__ternary_qmark] = ACTIONS(1822), [sym_html_comment] = ACTIONS(5), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_export] = ACTIONS(1832), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_as] = ACTIONS(1834), - [anon_sym_namespace] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_typeof] = ACTIONS(1832), - [anon_sym_import] = ACTIONS(1832), - [anon_sym_with] = ACTIONS(1832), - [anon_sym_var] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_else] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_await] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_do] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_debugger] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_throw] = ACTIONS(1832), - [anon_sym_case] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_DOT] = ACTIONS(1834), - [anon_sym_class] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_function] = ACTIONS(1832), - [anon_sym_QMARK_DOT] = ACTIONS(1836), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_using] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1836), - [anon_sym_PIPE_PIPE] = ACTIONS(1836), - [anon_sym_GT_GT] = ACTIONS(1834), - [anon_sym_GT_GT_GT] = ACTIONS(1836), - [anon_sym_LT_LT] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_SLASH] = ACTIONS(1832), - [anon_sym_PERCENT] = ACTIONS(1836), - [anon_sym_STAR_STAR] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_LT_EQ] = ACTIONS(1836), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1836), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_QMARK_QMARK] = ACTIONS(1836), - [anon_sym_instanceof] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1830), - [anon_sym_void] = ACTIONS(1832), - [anon_sym_delete] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1830), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1830), - [sym_number] = ACTIONS(1830), - [sym_private_property_identifier] = ACTIONS(1830), - [sym_this] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_true] = ACTIONS(1832), - [sym_false] = ACTIONS(1832), - [sym_null] = ACTIONS(1832), - [sym_undefined] = ACTIONS(1832), - [anon_sym_AT] = ACTIONS(1830), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_readonly] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1832), - [anon_sym_declare] = ACTIONS(1832), - [anon_sym_public] = ACTIONS(1832), - [anon_sym_private] = ACTIONS(1832), - [anon_sym_protected] = ACTIONS(1832), - [anon_sym_override] = ACTIONS(1832), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_any] = ACTIONS(1832), - [anon_sym_number] = ACTIONS(1832), - [anon_sym_boolean] = ACTIONS(1832), - [anon_sym_string] = ACTIONS(1832), - [anon_sym_symbol] = ACTIONS(1832), - [anon_sym_object] = ACTIONS(1832), - [anon_sym_abstract] = ACTIONS(1832), - [anon_sym_satisfies] = ACTIONS(1834), - [anon_sym_interface] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [sym__automatic_semicolon] = ACTIONS(1838), - [sym__ternary_qmark] = ACTIONS(1836), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(1768), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1826), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2301), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4971), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4975), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(1738), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_as] = ACTIONS(1832), + [anon_sym_namespace] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_COMMA] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_typeof] = ACTIONS(1830), + [anon_sym_import] = ACTIONS(1830), + [anon_sym_with] = ACTIONS(1830), + [anon_sym_var] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_await] = ACTIONS(1830), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_debugger] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_case] = ACTIONS(1830), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_DOT] = ACTIONS(1832), + [anon_sym_class] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_function] = ACTIONS(1830), + [anon_sym_QMARK_DOT] = ACTIONS(1834), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_using] = ACTIONS(1830), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_GT_GT] = ACTIONS(1832), + [anon_sym_GT_GT_GT] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_CARET] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_PERCENT] = ACTIONS(1834), + [anon_sym_STAR_STAR] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_LT_EQ] = ACTIONS(1834), + [anon_sym_EQ_EQ] = ACTIONS(1832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1834), + [anon_sym_BANG_EQ] = ACTIONS(1832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1834), + [anon_sym_GT_EQ] = ACTIONS(1834), + [anon_sym_GT] = ACTIONS(1832), + [anon_sym_QMARK_QMARK] = ACTIONS(1834), + [anon_sym_instanceof] = ACTIONS(1832), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_void] = ACTIONS(1830), + [anon_sym_delete] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [anon_sym_SQUOTE] = ACTIONS(1828), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1828), + [sym_number] = ACTIONS(1828), + [sym_private_property_identifier] = ACTIONS(1828), + [sym_this] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_true] = ACTIONS(1830), + [sym_false] = ACTIONS(1830), + [sym_null] = ACTIONS(1830), + [sym_undefined] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_readonly] = ACTIONS(1830), + [anon_sym_get] = ACTIONS(1830), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_declare] = ACTIONS(1830), + [anon_sym_public] = ACTIONS(1830), + [anon_sym_private] = ACTIONS(1830), + [anon_sym_protected] = ACTIONS(1830), + [anon_sym_override] = ACTIONS(1830), + [anon_sym_module] = ACTIONS(1830), + [anon_sym_any] = ACTIONS(1830), + [anon_sym_number] = ACTIONS(1830), + [anon_sym_boolean] = ACTIONS(1830), + [anon_sym_string] = ACTIONS(1830), + [anon_sym_symbol] = ACTIONS(1830), + [anon_sym_object] = ACTIONS(1830), + [anon_sym_abstract] = ACTIONS(1830), + [anon_sym_satisfies] = ACTIONS(1832), + [anon_sym_interface] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [sym__automatic_semicolon] = ACTIONS(1836), + [sym__ternary_qmark] = ACTIONS(1834), + [sym_html_comment] = ACTIONS(5), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1840), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_type] = ACTIONS(1840), + [anon_sym_as] = ACTIONS(1840), + [anon_sym_namespace] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_COMMA] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym_import] = ACTIONS(1840), + [anon_sym_with] = ACTIONS(1840), + [anon_sym_var] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_await] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_debugger] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_throw] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_yield] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_DOT] = ACTIONS(1840), + [anon_sym_class] = ACTIONS(1840), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(1840), + [anon_sym_QMARK_DOT] = ACTIONS(1838), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1840), + [anon_sym_AMP_AMP] = ACTIONS(1838), + [anon_sym_PIPE_PIPE] = ACTIONS(1838), + [anon_sym_GT_GT] = ACTIONS(1840), + [anon_sym_GT_GT_GT] = ACTIONS(1838), + [anon_sym_LT_LT] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_CARET] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_SLASH] = ACTIONS(1840), + [anon_sym_PERCENT] = ACTIONS(1838), + [anon_sym_STAR_STAR] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_LT_EQ] = ACTIONS(1838), + [anon_sym_EQ_EQ] = ACTIONS(1840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1838), + [anon_sym_BANG_EQ] = ACTIONS(1840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1838), + [anon_sym_GT_EQ] = ACTIONS(1838), + [anon_sym_GT] = ACTIONS(1840), + [anon_sym_QMARK_QMARK] = ACTIONS(1838), + [anon_sym_instanceof] = ACTIONS(1840), + [anon_sym_TILDE] = ACTIONS(1838), + [anon_sym_void] = ACTIONS(1840), + [anon_sym_delete] = ACTIONS(1840), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1838), + [sym_number] = ACTIONS(1838), + [sym_private_property_identifier] = ACTIONS(1838), + [sym_this] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_undefined] = ACTIONS(1840), + [anon_sym_AT] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_readonly] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1840), + [anon_sym_declare] = ACTIONS(1840), + [anon_sym_public] = ACTIONS(1840), + [anon_sym_private] = ACTIONS(1840), + [anon_sym_protected] = ACTIONS(1840), + [anon_sym_override] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_any] = ACTIONS(1840), + [anon_sym_number] = ACTIONS(1840), + [anon_sym_boolean] = ACTIONS(1840), + [anon_sym_string] = ACTIONS(1840), + [anon_sym_symbol] = ACTIONS(1840), + [anon_sym_object] = ACTIONS(1840), + [anon_sym_abstract] = ACTIONS(1840), + [anon_sym_satisfies] = ACTIONS(1840), + [anon_sym_interface] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [sym__automatic_semicolon] = ACTIONS(1838), + [sym__ternary_qmark] = ACTIONS(1838), + [sym_html_comment] = ACTIONS(5), + }, + [231] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1842), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(581), @@ -51176,18 +51476,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(541), @@ -51207,514 +51507,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_export] = ACTIONS(1844), + [232] = { + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(1846), [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), [anon_sym_as] = ACTIONS(1846), - [anon_sym_namespace] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_typeof] = ACTIONS(1844), - [anon_sym_import] = ACTIONS(1844), - [anon_sym_with] = ACTIONS(1844), - [anon_sym_var] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_else] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_switch] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_await] = ACTIONS(1844), + [anon_sym_namespace] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_typeof] = ACTIONS(1846), + [anon_sym_import] = ACTIONS(1846), + [anon_sym_with] = ACTIONS(1846), + [anon_sym_var] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_else] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_switch] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_await] = ACTIONS(1846), [anon_sym_in] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_do] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_debugger] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_throw] = ACTIONS(1844), - [anon_sym_case] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_try] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_debugger] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_throw] = ACTIONS(1846), + [anon_sym_case] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1844), [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_class] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_function] = ACTIONS(1844), - [anon_sym_QMARK_DOT] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_using] = ACTIONS(1844), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_class] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_function] = ACTIONS(1846), + [anon_sym_QMARK_DOT] = ACTIONS(1844), + [anon_sym_new] = ACTIONS(1846), + [anon_sym_using] = ACTIONS(1846), + [anon_sym_AMP_AMP] = ACTIONS(1844), + [anon_sym_PIPE_PIPE] = ACTIONS(1844), [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_GT_GT_GT] = ACTIONS(1848), - [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_GT_GT_GT] = ACTIONS(1844), + [anon_sym_LT_LT] = ACTIONS(1844), [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_CARET] = ACTIONS(1848), + [anon_sym_CARET] = ACTIONS(1844), [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_PERCENT] = ACTIONS(1848), - [anon_sym_STAR_STAR] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_LT_EQ] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_SLASH] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_STAR_STAR] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_LT_EQ] = ACTIONS(1844), [anon_sym_EQ_EQ] = ACTIONS(1846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1844), [anon_sym_BANG_EQ] = ACTIONS(1846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1848), - [anon_sym_GT_EQ] = ACTIONS(1848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1844), + [anon_sym_GT_EQ] = ACTIONS(1844), [anon_sym_GT] = ACTIONS(1846), - [anon_sym_QMARK_QMARK] = ACTIONS(1848), + [anon_sym_QMARK_QMARK] = ACTIONS(1844), [anon_sym_instanceof] = ACTIONS(1846), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_void] = ACTIONS(1844), - [anon_sym_delete] = ACTIONS(1844), - [anon_sym_PLUS_PLUS] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1842), - [sym_number] = ACTIONS(1842), - [sym_private_property_identifier] = ACTIONS(1842), - [sym_this] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_true] = ACTIONS(1844), - [sym_false] = ACTIONS(1844), - [sym_null] = ACTIONS(1844), - [sym_undefined] = ACTIONS(1844), - [anon_sym_AT] = ACTIONS(1842), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_readonly] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(1844), - [anon_sym_set] = ACTIONS(1844), - [anon_sym_declare] = ACTIONS(1844), - [anon_sym_public] = ACTIONS(1844), - [anon_sym_private] = ACTIONS(1844), - [anon_sym_protected] = ACTIONS(1844), - [anon_sym_override] = ACTIONS(1844), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_any] = ACTIONS(1844), - [anon_sym_number] = ACTIONS(1844), - [anon_sym_boolean] = ACTIONS(1844), - [anon_sym_string] = ACTIONS(1844), - [anon_sym_symbol] = ACTIONS(1844), - [anon_sym_object] = ACTIONS(1844), - [anon_sym_abstract] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_void] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1844), + [sym_number] = ACTIONS(1844), + [sym_private_property_identifier] = ACTIONS(1844), + [sym_this] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_true] = ACTIONS(1846), + [sym_false] = ACTIONS(1846), + [sym_null] = ACTIONS(1846), + [sym_undefined] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_readonly] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(1846), + [anon_sym_set] = ACTIONS(1846), + [anon_sym_declare] = ACTIONS(1846), + [anon_sym_public] = ACTIONS(1846), + [anon_sym_private] = ACTIONS(1846), + [anon_sym_protected] = ACTIONS(1846), + [anon_sym_override] = ACTIONS(1846), + [anon_sym_module] = ACTIONS(1846), + [anon_sym_any] = ACTIONS(1846), + [anon_sym_number] = ACTIONS(1846), + [anon_sym_boolean] = ACTIONS(1846), + [anon_sym_string] = ACTIONS(1846), + [anon_sym_symbol] = ACTIONS(1846), + [anon_sym_object] = ACTIONS(1846), + [anon_sym_abstract] = ACTIONS(1846), [anon_sym_satisfies] = ACTIONS(1846), - [anon_sym_interface] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [sym__automatic_semicolon] = ACTIONS(1850), - [sym__ternary_qmark] = ACTIONS(1848), + [anon_sym_interface] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [sym__automatic_semicolon] = ACTIONS(1844), + [sym__ternary_qmark] = ACTIONS(1844), [sym_html_comment] = ACTIONS(5), }, - [231] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_type] = ACTIONS(1854), - [anon_sym_as] = ACTIONS(1854), - [anon_sym_namespace] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_COMMA] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym_import] = ACTIONS(1854), - [anon_sym_with] = ACTIONS(1854), - [anon_sym_var] = ACTIONS(1854), - [anon_sym_let] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_else] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_await] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_try] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_debugger] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_throw] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_yield] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_class] = ACTIONS(1854), - [anon_sym_async] = ACTIONS(1854), - [anon_sym_function] = ACTIONS(1854), - [anon_sym_QMARK_DOT] = ACTIONS(1852), - [anon_sym_new] = ACTIONS(1854), - [anon_sym_using] = ACTIONS(1854), - [anon_sym_AMP_AMP] = ACTIONS(1852), - [anon_sym_PIPE_PIPE] = ACTIONS(1852), - [anon_sym_GT_GT] = ACTIONS(1854), - [anon_sym_GT_GT_GT] = ACTIONS(1852), - [anon_sym_LT_LT] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_SLASH] = ACTIONS(1854), - [anon_sym_PERCENT] = ACTIONS(1852), - [anon_sym_STAR_STAR] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_LT_EQ] = ACTIONS(1852), - [anon_sym_EQ_EQ] = ACTIONS(1854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1852), - [anon_sym_BANG_EQ] = ACTIONS(1854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1852), - [anon_sym_GT_EQ] = ACTIONS(1852), - [anon_sym_GT] = ACTIONS(1854), - [anon_sym_QMARK_QMARK] = ACTIONS(1852), - [anon_sym_instanceof] = ACTIONS(1854), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_void] = ACTIONS(1854), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1852), - [sym_number] = ACTIONS(1852), - [sym_private_property_identifier] = ACTIONS(1852), - [sym_this] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_undefined] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_readonly] = ACTIONS(1854), - [anon_sym_get] = ACTIONS(1854), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_declare] = ACTIONS(1854), - [anon_sym_public] = ACTIONS(1854), - [anon_sym_private] = ACTIONS(1854), - [anon_sym_protected] = ACTIONS(1854), - [anon_sym_override] = ACTIONS(1854), - [anon_sym_module] = ACTIONS(1854), - [anon_sym_any] = ACTIONS(1854), - [anon_sym_number] = ACTIONS(1854), - [anon_sym_boolean] = ACTIONS(1854), - [anon_sym_string] = ACTIONS(1854), - [anon_sym_symbol] = ACTIONS(1854), - [anon_sym_object] = ACTIONS(1854), - [anon_sym_abstract] = ACTIONS(1854), - [anon_sym_satisfies] = ACTIONS(1854), - [anon_sym_interface] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [sym__automatic_semicolon] = ACTIONS(1852), - [sym__ternary_qmark] = ACTIONS(1852), + [233] = { + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_export] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_as] = ACTIONS(1852), + [anon_sym_namespace] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_COMMA] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1850), + [anon_sym_import] = ACTIONS(1850), + [anon_sym_with] = ACTIONS(1850), + [anon_sym_var] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_else] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_await] = ACTIONS(1850), + [anon_sym_in] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_debugger] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_throw] = ACTIONS(1850), + [anon_sym_case] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1852), + [anon_sym_class] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_function] = ACTIONS(1850), + [anon_sym_QMARK_DOT] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1850), + [anon_sym_using] = ACTIONS(1850), + [anon_sym_AMP_AMP] = ACTIONS(1854), + [anon_sym_PIPE_PIPE] = ACTIONS(1854), + [anon_sym_GT_GT] = ACTIONS(1852), + [anon_sym_GT_GT_GT] = ACTIONS(1854), + [anon_sym_LT_LT] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_CARET] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_SLASH] = ACTIONS(1850), + [anon_sym_PERCENT] = ACTIONS(1854), + [anon_sym_STAR_STAR] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_LT_EQ] = ACTIONS(1854), + [anon_sym_EQ_EQ] = ACTIONS(1852), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1854), + [anon_sym_BANG_EQ] = ACTIONS(1852), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1854), + [anon_sym_GT_EQ] = ACTIONS(1854), + [anon_sym_GT] = ACTIONS(1852), + [anon_sym_QMARK_QMARK] = ACTIONS(1854), + [anon_sym_instanceof] = ACTIONS(1852), + [anon_sym_TILDE] = ACTIONS(1848), + [anon_sym_void] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1848), + [sym_number] = ACTIONS(1848), + [sym_private_property_identifier] = ACTIONS(1848), + [sym_this] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_true] = ACTIONS(1850), + [sym_false] = ACTIONS(1850), + [sym_null] = ACTIONS(1850), + [sym_undefined] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_readonly] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(1850), + [anon_sym_set] = ACTIONS(1850), + [anon_sym_declare] = ACTIONS(1850), + [anon_sym_public] = ACTIONS(1850), + [anon_sym_private] = ACTIONS(1850), + [anon_sym_protected] = ACTIONS(1850), + [anon_sym_override] = ACTIONS(1850), + [anon_sym_module] = ACTIONS(1850), + [anon_sym_any] = ACTIONS(1850), + [anon_sym_number] = ACTIONS(1850), + [anon_sym_boolean] = ACTIONS(1850), + [anon_sym_string] = ACTIONS(1850), + [anon_sym_symbol] = ACTIONS(1850), + [anon_sym_object] = ACTIONS(1850), + [anon_sym_abstract] = ACTIONS(1850), + [anon_sym_satisfies] = ACTIONS(1852), + [anon_sym_interface] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [sym__automatic_semicolon] = ACTIONS(1856), + [sym__ternary_qmark] = ACTIONS(1854), [sym_html_comment] = ACTIONS(5), }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1858), - [anon_sym_export] = ACTIONS(1858), + [234] = { + [ts_builtin_sym_end] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1860), [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_type] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1860), [anon_sym_as] = ACTIONS(1860), - [anon_sym_namespace] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_COMMA] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1858), - [anon_sym_import] = ACTIONS(1858), - [anon_sym_with] = ACTIONS(1858), - [anon_sym_var] = ACTIONS(1858), - [anon_sym_let] = ACTIONS(1858), - [anon_sym_const] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_else] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_switch] = ACTIONS(1858), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_await] = ACTIONS(1858), + [anon_sym_namespace] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_COMMA] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym_import] = ACTIONS(1860), + [anon_sym_with] = ACTIONS(1860), + [anon_sym_var] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_else] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_await] = ACTIONS(1860), [anon_sym_in] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_do] = ACTIONS(1858), - [anon_sym_try] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_debugger] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_throw] = ACTIONS(1858), - [anon_sym_case] = ACTIONS(1858), - [anon_sym_yield] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_try] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_debugger] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_throw] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_yield] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1858), [anon_sym_DOT] = ACTIONS(1860), - [anon_sym_class] = ACTIONS(1858), - [anon_sym_async] = ACTIONS(1858), - [anon_sym_function] = ACTIONS(1858), - [anon_sym_QMARK_DOT] = ACTIONS(1862), - [anon_sym_new] = ACTIONS(1858), - [anon_sym_using] = ACTIONS(1858), - [anon_sym_AMP_AMP] = ACTIONS(1862), - [anon_sym_PIPE_PIPE] = ACTIONS(1862), + [anon_sym_class] = ACTIONS(1860), + [anon_sym_async] = ACTIONS(1860), + [anon_sym_function] = ACTIONS(1860), + [anon_sym_QMARK_DOT] = ACTIONS(1858), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_using] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), [anon_sym_GT_GT] = ACTIONS(1860), - [anon_sym_GT_GT_GT] = ACTIONS(1862), - [anon_sym_LT_LT] = ACTIONS(1862), + [anon_sym_GT_GT_GT] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(1858), [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1858), [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_SLASH] = ACTIONS(1858), - [anon_sym_PERCENT] = ACTIONS(1862), - [anon_sym_STAR_STAR] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_LT_EQ] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_SLASH] = ACTIONS(1860), + [anon_sym_PERCENT] = ACTIONS(1858), + [anon_sym_STAR_STAR] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_LT_EQ] = ACTIONS(1858), [anon_sym_EQ_EQ] = ACTIONS(1860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1862), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1858), [anon_sym_BANG_EQ] = ACTIONS(1860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1862), - [anon_sym_GT_EQ] = ACTIONS(1862), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1858), + [anon_sym_GT_EQ] = ACTIONS(1858), [anon_sym_GT] = ACTIONS(1860), - [anon_sym_QMARK_QMARK] = ACTIONS(1862), + [anon_sym_QMARK_QMARK] = ACTIONS(1858), [anon_sym_instanceof] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_void] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(1858), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1856), - [sym_number] = ACTIONS(1856), - [sym_private_property_identifier] = ACTIONS(1856), - [sym_this] = ACTIONS(1858), - [sym_super] = ACTIONS(1858), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_undefined] = ACTIONS(1858), - [anon_sym_AT] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_readonly] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(1858), - [anon_sym_set] = ACTIONS(1858), - [anon_sym_declare] = ACTIONS(1858), - [anon_sym_public] = ACTIONS(1858), - [anon_sym_private] = ACTIONS(1858), - [anon_sym_protected] = ACTIONS(1858), - [anon_sym_override] = ACTIONS(1858), - [anon_sym_module] = ACTIONS(1858), - [anon_sym_any] = ACTIONS(1858), - [anon_sym_number] = ACTIONS(1858), - [anon_sym_boolean] = ACTIONS(1858), - [anon_sym_string] = ACTIONS(1858), - [anon_sym_symbol] = ACTIONS(1858), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_abstract] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [anon_sym_void] = ACTIONS(1860), + [anon_sym_delete] = ACTIONS(1860), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1858), + [sym_number] = ACTIONS(1858), + [sym_private_property_identifier] = ACTIONS(1858), + [sym_this] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_undefined] = ACTIONS(1860), + [anon_sym_AT] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_readonly] = ACTIONS(1860), + [anon_sym_get] = ACTIONS(1860), + [anon_sym_set] = ACTIONS(1860), + [anon_sym_declare] = ACTIONS(1860), + [anon_sym_public] = ACTIONS(1860), + [anon_sym_private] = ACTIONS(1860), + [anon_sym_protected] = ACTIONS(1860), + [anon_sym_override] = ACTIONS(1860), + [anon_sym_module] = ACTIONS(1860), + [anon_sym_any] = ACTIONS(1860), + [anon_sym_number] = ACTIONS(1860), + [anon_sym_boolean] = ACTIONS(1860), + [anon_sym_string] = ACTIONS(1860), + [anon_sym_symbol] = ACTIONS(1860), + [anon_sym_object] = ACTIONS(1860), + [anon_sym_abstract] = ACTIONS(1860), [anon_sym_satisfies] = ACTIONS(1860), - [anon_sym_interface] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [sym__automatic_semicolon] = ACTIONS(1864), - [sym__ternary_qmark] = ACTIONS(1862), + [anon_sym_interface] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [sym__automatic_semicolon] = ACTIONS(1858), + [sym__ternary_qmark] = ACTIONS(1858), [sym_html_comment] = ACTIONS(5), }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_export] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_as] = ACTIONS(1870), - [anon_sym_namespace] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_typeof] = ACTIONS(1868), - [anon_sym_import] = ACTIONS(1868), - [anon_sym_with] = ACTIONS(1868), - [anon_sym_var] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_else] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_switch] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_await] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_do] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_debugger] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_throw] = ACTIONS(1868), - [anon_sym_case] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_DOT] = ACTIONS(1870), - [anon_sym_class] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_function] = ACTIONS(1868), - [anon_sym_QMARK_DOT] = ACTIONS(1872), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_using] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1872), - [anon_sym_PIPE_PIPE] = ACTIONS(1872), - [anon_sym_GT_GT] = ACTIONS(1870), - [anon_sym_GT_GT_GT] = ACTIONS(1872), - [anon_sym_LT_LT] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_STAR_STAR] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1872), - [anon_sym_BANG_EQ] = ACTIONS(1870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_GT] = ACTIONS(1870), - [anon_sym_QMARK_QMARK] = ACTIONS(1872), - [anon_sym_instanceof] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_void] = ACTIONS(1868), - [anon_sym_delete] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1866), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1866), - [sym_number] = ACTIONS(1866), - [sym_private_property_identifier] = ACTIONS(1866), - [sym_this] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_true] = ACTIONS(1868), - [sym_false] = ACTIONS(1868), - [sym_null] = ACTIONS(1868), - [sym_undefined] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_readonly] = ACTIONS(1868), - [anon_sym_get] = ACTIONS(1868), - [anon_sym_set] = ACTIONS(1868), - [anon_sym_declare] = ACTIONS(1868), - [anon_sym_public] = ACTIONS(1868), - [anon_sym_private] = ACTIONS(1868), - [anon_sym_protected] = ACTIONS(1868), - [anon_sym_override] = ACTIONS(1868), - [anon_sym_module] = ACTIONS(1868), - [anon_sym_any] = ACTIONS(1868), - [anon_sym_number] = ACTIONS(1868), - [anon_sym_boolean] = ACTIONS(1868), - [anon_sym_string] = ACTIONS(1868), - [anon_sym_symbol] = ACTIONS(1868), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_abstract] = ACTIONS(1868), - [anon_sym_satisfies] = ACTIONS(1870), - [anon_sym_interface] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [sym__automatic_semicolon] = ACTIONS(1874), - [sym__ternary_qmark] = ACTIONS(1872), + [235] = { + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1864), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1864), + [anon_sym_as] = ACTIONS(1866), + [anon_sym_namespace] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_typeof] = ACTIONS(1864), + [anon_sym_import] = ACTIONS(1864), + [anon_sym_with] = ACTIONS(1864), + [anon_sym_var] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_await] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_debugger] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_throw] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_yield] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_DOT] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1864), + [anon_sym_async] = ACTIONS(1864), + [anon_sym_function] = ACTIONS(1864), + [anon_sym_QMARK_DOT] = ACTIONS(1868), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1864), + [anon_sym_AMP_AMP] = ACTIONS(1868), + [anon_sym_PIPE_PIPE] = ACTIONS(1868), + [anon_sym_GT_GT] = ACTIONS(1866), + [anon_sym_GT_GT_GT] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_PLUS] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_SLASH] = ACTIONS(1864), + [anon_sym_PERCENT] = ACTIONS(1868), + [anon_sym_STAR_STAR] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_LT_EQ] = ACTIONS(1868), + [anon_sym_EQ_EQ] = ACTIONS(1866), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1868), + [anon_sym_BANG_EQ] = ACTIONS(1866), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1868), + [anon_sym_GT_EQ] = ACTIONS(1868), + [anon_sym_GT] = ACTIONS(1866), + [anon_sym_QMARK_QMARK] = ACTIONS(1868), + [anon_sym_instanceof] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_void] = ACTIONS(1864), + [anon_sym_delete] = ACTIONS(1864), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1862), + [sym_number] = ACTIONS(1862), + [sym_private_property_identifier] = ACTIONS(1862), + [sym_this] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_true] = ACTIONS(1864), + [sym_false] = ACTIONS(1864), + [sym_null] = ACTIONS(1864), + [sym_undefined] = ACTIONS(1864), + [anon_sym_AT] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_readonly] = ACTIONS(1864), + [anon_sym_get] = ACTIONS(1864), + [anon_sym_set] = ACTIONS(1864), + [anon_sym_declare] = ACTIONS(1864), + [anon_sym_public] = ACTIONS(1864), + [anon_sym_private] = ACTIONS(1864), + [anon_sym_protected] = ACTIONS(1864), + [anon_sym_override] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_any] = ACTIONS(1864), + [anon_sym_number] = ACTIONS(1864), + [anon_sym_boolean] = ACTIONS(1864), + [anon_sym_string] = ACTIONS(1864), + [anon_sym_symbol] = ACTIONS(1864), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_abstract] = ACTIONS(1864), + [anon_sym_satisfies] = ACTIONS(1866), + [anon_sym_interface] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [sym__automatic_semicolon] = ACTIONS(1870), + [sym__ternary_qmark] = ACTIONS(1868), [sym_html_comment] = ACTIONS(5), }, - [234] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(1738), + [236] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5424), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3941), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(278), + [sym_override_modifier] = STATE(301), + [sym_required_parameter] = STATE(5424), + [sym_optional_parameter] = STATE(5424), + [sym__parameter_name] = STATE(3700), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [237] = { + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_as] = ACTIONS(1876), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1874), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_with] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_else] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_switch] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_await] = ACTIONS(1874), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_debugger] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_throw] = ACTIONS(1874), + [anon_sym_case] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_DOT] = ACTIONS(1876), + [anon_sym_class] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1874), + [anon_sym_QMARK_DOT] = ACTIONS(1878), + [anon_sym_new] = ACTIONS(1874), + [anon_sym_using] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1876), + [anon_sym_GT_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_SLASH] = ACTIONS(1874), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_STAR_STAR] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1876), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1876), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1878), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1876), + [anon_sym_QMARK_QMARK] = ACTIONS(1878), + [anon_sym_instanceof] = ACTIONS(1876), + [anon_sym_TILDE] = ACTIONS(1872), + [anon_sym_void] = ACTIONS(1874), + [anon_sym_delete] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1872), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1872), + [sym_number] = ACTIONS(1872), + [sym_private_property_identifier] = ACTIONS(1872), + [sym_this] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_true] = ACTIONS(1874), + [sym_false] = ACTIONS(1874), + [sym_null] = ACTIONS(1874), + [sym_undefined] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_readonly] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_override] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [anon_sym_object] = ACTIONS(1874), + [anon_sym_abstract] = ACTIONS(1874), + [anon_sym_satisfies] = ACTIONS(1876), + [anon_sym_interface] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(1880), + [sym__ternary_qmark] = ACTIONS(1878), + [sym_html_comment] = ACTIONS(5), + }, + [238] = { + [ts_builtin_sym_end] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [anon_sym_export] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_type] = ACTIONS(1884), + [anon_sym_as] = ACTIONS(1884), + [anon_sym_namespace] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_typeof] = ACTIONS(1884), + [anon_sym_import] = ACTIONS(1884), + [anon_sym_with] = ACTIONS(1884), + [anon_sym_var] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_switch] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_await] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(1884), + [anon_sym_try] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_debugger] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1884), + [anon_sym_case] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(1884), + [anon_sym_async] = ACTIONS(1884), + [anon_sym_function] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1882), + [anon_sym_new] = ACTIONS(1884), + [anon_sym_using] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_GT_GT_GT] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1882), + [anon_sym_STAR_STAR] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1882), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1882), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1882), + [anon_sym_GT_EQ] = ACTIONS(1882), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_QMARK_QMARK] = ACTIONS(1882), + [anon_sym_instanceof] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1882), + [anon_sym_void] = ACTIONS(1884), + [anon_sym_delete] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1882), + [sym_number] = ACTIONS(1882), + [sym_private_property_identifier] = ACTIONS(1882), + [sym_this] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_true] = ACTIONS(1884), + [sym_false] = ACTIONS(1884), + [sym_null] = ACTIONS(1884), + [sym_undefined] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_readonly] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(1884), + [anon_sym_set] = ACTIONS(1884), + [anon_sym_declare] = ACTIONS(1884), + [anon_sym_public] = ACTIONS(1884), + [anon_sym_private] = ACTIONS(1884), + [anon_sym_protected] = ACTIONS(1884), + [anon_sym_override] = ACTIONS(1884), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_any] = ACTIONS(1884), + [anon_sym_number] = ACTIONS(1884), + [anon_sym_boolean] = ACTIONS(1884), + [anon_sym_string] = ACTIONS(1884), + [anon_sym_symbol] = ACTIONS(1884), + [anon_sym_object] = ACTIONS(1884), + [anon_sym_abstract] = ACTIONS(1884), + [anon_sym_satisfies] = ACTIONS(1884), + [anon_sym_interface] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), + [sym__automatic_semicolon] = ACTIONS(1882), + [sym__ternary_qmark] = ACTIONS(1882), + [sym_html_comment] = ACTIONS(5), + }, + [239] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2258), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4990), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(5019), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1876), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(581), @@ -51726,18 +52356,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(541), @@ -51757,294 +52387,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_as] = ACTIONS(1880), - [anon_sym_namespace] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_with] = ACTIONS(1880), - [anon_sym_var] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_else] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_switch] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_await] = ACTIONS(1880), - [anon_sym_in] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_do] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_debugger] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_case] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_DOT] = ACTIONS(1880), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(1880), - [anon_sym_QMARK_DOT] = ACTIONS(1878), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1880), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_GT_GT_GT] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1878), - [anon_sym_STAR_STAR] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_LT_EQ] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1878), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1878), - [anon_sym_GT_EQ] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_QMARK_QMARK] = ACTIONS(1878), - [anon_sym_instanceof] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_void] = ACTIONS(1880), - [anon_sym_delete] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [sym_private_property_identifier] = ACTIONS(1878), - [sym_this] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_true] = ACTIONS(1880), - [sym_false] = ACTIONS(1880), - [sym_null] = ACTIONS(1880), - [sym_undefined] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_readonly] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1880), - [anon_sym_declare] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_protected] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_any] = ACTIONS(1880), - [anon_sym_number] = ACTIONS(1880), - [anon_sym_boolean] = ACTIONS(1880), - [anon_sym_string] = ACTIONS(1880), - [anon_sym_symbol] = ACTIONS(1880), - [anon_sym_object] = ACTIONS(1880), - [anon_sym_abstract] = ACTIONS(1880), - [anon_sym_satisfies] = ACTIONS(1880), - [anon_sym_interface] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [sym__automatic_semicolon] = ACTIONS(1878), - [sym__ternary_qmark] = ACTIONS(1878), - [sym_html_comment] = ACTIONS(5), - }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_as] = ACTIONS(1880), - [anon_sym_namespace] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_with] = ACTIONS(1880), - [anon_sym_var] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_else] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_switch] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_await] = ACTIONS(1880), - [anon_sym_in] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_do] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_debugger] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_case] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_DOT] = ACTIONS(1880), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(1880), - [anon_sym_QMARK_DOT] = ACTIONS(1878), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1880), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_GT_GT_GT] = ACTIONS(1878), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1878), - [anon_sym_STAR_STAR] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_LT_EQ] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1878), - [anon_sym_BANG_EQ] = ACTIONS(1880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1878), - [anon_sym_GT_EQ] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_QMARK_QMARK] = ACTIONS(1878), - [anon_sym_instanceof] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_void] = ACTIONS(1880), - [anon_sym_delete] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [sym_private_property_identifier] = ACTIONS(1878), - [sym_this] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_true] = ACTIONS(1880), - [sym_false] = ACTIONS(1880), - [sym_null] = ACTIONS(1880), - [sym_undefined] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_readonly] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1880), - [anon_sym_declare] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_protected] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_any] = ACTIONS(1880), - [anon_sym_number] = ACTIONS(1880), - [anon_sym_boolean] = ACTIONS(1880), - [anon_sym_string] = ACTIONS(1880), - [anon_sym_symbol] = ACTIONS(1880), - [anon_sym_object] = ACTIONS(1880), - [anon_sym_abstract] = ACTIONS(1880), - [anon_sym_satisfies] = ACTIONS(1880), - [anon_sym_interface] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [sym__automatic_semicolon] = ACTIONS(1882), - [sym__ternary_qmark] = ACTIONS(1878), - [sym_html_comment] = ACTIONS(5), - }, - [237] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2305), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4971), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4975), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(1738), + [240] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(4595), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4599), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1770), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(581), @@ -52056,18 +52466,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(541), @@ -52087,127 +52497,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_identifier] = ACTIONS(1886), - [anon_sym_export] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_type] = ACTIONS(1886), - [anon_sym_as] = ACTIONS(1886), - [anon_sym_namespace] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_typeof] = ACTIONS(1886), - [anon_sym_import] = ACTIONS(1886), - [anon_sym_with] = ACTIONS(1886), - [anon_sym_var] = ACTIONS(1886), - [anon_sym_let] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_else] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_switch] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_await] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_try] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_debugger] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_throw] = ACTIONS(1886), - [anon_sym_case] = ACTIONS(1886), - [anon_sym_yield] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_DOT] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_async] = ACTIONS(1886), - [anon_sym_function] = ACTIONS(1886), - [anon_sym_QMARK_DOT] = ACTIONS(1884), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_using] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_GT_GT_GT] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_STAR_STAR] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_LT_EQ] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), - [anon_sym_GT_EQ] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_QMARK_QMARK] = ACTIONS(1884), - [anon_sym_instanceof] = ACTIONS(1886), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_void] = ACTIONS(1886), - [anon_sym_delete] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [sym_private_property_identifier] = ACTIONS(1884), - [sym_this] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_true] = ACTIONS(1886), - [sym_false] = ACTIONS(1886), - [sym_null] = ACTIONS(1886), - [sym_undefined] = ACTIONS(1886), - [anon_sym_AT] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_readonly] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(1886), - [anon_sym_set] = ACTIONS(1886), - [anon_sym_declare] = ACTIONS(1886), - [anon_sym_public] = ACTIONS(1886), - [anon_sym_private] = ACTIONS(1886), - [anon_sym_protected] = ACTIONS(1886), - [anon_sym_override] = ACTIONS(1886), - [anon_sym_module] = ACTIONS(1886), - [anon_sym_any] = ACTIONS(1886), - [anon_sym_number] = ACTIONS(1886), - [anon_sym_boolean] = ACTIONS(1886), - [anon_sym_string] = ACTIONS(1886), - [anon_sym_symbol] = ACTIONS(1886), - [anon_sym_object] = ACTIONS(1886), - [anon_sym_abstract] = ACTIONS(1886), - [anon_sym_satisfies] = ACTIONS(1886), - [anon_sym_interface] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [sym__automatic_semicolon] = ACTIONS(1884), - [sym__ternary_qmark] = ACTIONS(1884), - [sym_html_comment] = ACTIONS(5), - }, - [239] = { + [241] = { [ts_builtin_sym_end] = ACTIONS(1888), [sym_identifier] = ACTIONS(1890), [anon_sym_export] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1892), [anon_sym_default] = ACTIONS(1890), [anon_sym_type] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1892), [anon_sym_namespace] = ACTIONS(1890), [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1894), [anon_sym_RBRACE] = ACTIONS(1888), [anon_sym_typeof] = ACTIONS(1890), [anon_sym_import] = ACTIONS(1890), @@ -52223,7 +52523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1888), [anon_sym_SEMI] = ACTIONS(1888), [anon_sym_await] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1892), [anon_sym_while] = ACTIONS(1890), [anon_sym_do] = ACTIONS(1890), [anon_sym_try] = ACTIONS(1890), @@ -52235,36 +52535,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1890), [anon_sym_yield] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_DOT] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1892), [anon_sym_class] = ACTIONS(1890), [anon_sym_async] = ACTIONS(1890), [anon_sym_function] = ACTIONS(1890), - [anon_sym_QMARK_DOT] = ACTIONS(1888), + [anon_sym_QMARK_DOT] = ACTIONS(1894), [anon_sym_new] = ACTIONS(1890), [anon_sym_using] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_GT_GT_GT] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_GT_GT_GT] = ACTIONS(1894), + [anon_sym_LT_LT] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1892), [anon_sym_PLUS] = ACTIONS(1890), [anon_sym_DASH] = ACTIONS(1890), [anon_sym_SLASH] = ACTIONS(1890), - [anon_sym_PERCENT] = ACTIONS(1888), - [anon_sym_STAR_STAR] = ACTIONS(1888), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_STAR_STAR] = ACTIONS(1894), [anon_sym_LT] = ACTIONS(1890), - [anon_sym_LT_EQ] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1888), - [anon_sym_BANG_EQ] = ACTIONS(1890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1890), - [anon_sym_QMARK_QMARK] = ACTIONS(1888), - [anon_sym_instanceof] = ACTIONS(1890), + [anon_sym_LT_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1894), + [anon_sym_BANG_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1894), + [anon_sym_GT_EQ] = ACTIONS(1894), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_QMARK_QMARK] = ACTIONS(1894), + [anon_sym_instanceof] = ACTIONS(1892), [anon_sym_TILDE] = ACTIONS(1888), [anon_sym_void] = ACTIONS(1890), [anon_sym_delete] = ACTIONS(1890), @@ -52300,276 +52600,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1890), [anon_sym_object] = ACTIONS(1890), [anon_sym_abstract] = ACTIONS(1890), - [anon_sym_satisfies] = ACTIONS(1890), + [anon_sym_satisfies] = ACTIONS(1892), [anon_sym_interface] = ACTIONS(1890), [anon_sym_enum] = ACTIONS(1890), - [sym__automatic_semicolon] = ACTIONS(1888), - [sym__ternary_qmark] = ACTIONS(1888), - [sym_html_comment] = ACTIONS(5), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [sym_identifier] = ACTIONS(1894), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_default] = ACTIONS(1894), - [anon_sym_type] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_namespace] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_COMMA] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1894), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_var] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_await] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_debugger] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_throw] = ACTIONS(1894), - [anon_sym_case] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_function] = ACTIONS(1894), - [anon_sym_QMARK_DOT] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1894), - [anon_sym_using] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1892), - [anon_sym_PIPE_PIPE] = ACTIONS(1892), - [anon_sym_GT_GT] = ACTIONS(1894), - [anon_sym_GT_GT_GT] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_CARET] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1892), - [anon_sym_STAR_STAR] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_LT_EQ] = ACTIONS(1892), - [anon_sym_EQ_EQ] = ACTIONS(1894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1892), - [anon_sym_BANG_EQ] = ACTIONS(1894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1892), - [anon_sym_GT_EQ] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(1894), - [anon_sym_QMARK_QMARK] = ACTIONS(1892), - [anon_sym_instanceof] = ACTIONS(1894), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_void] = ACTIONS(1894), - [anon_sym_delete] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1892), - [sym_number] = ACTIONS(1892), - [sym_private_property_identifier] = ACTIONS(1892), - [sym_this] = ACTIONS(1894), - [sym_super] = ACTIONS(1894), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_null] = ACTIONS(1894), - [sym_undefined] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_readonly] = ACTIONS(1894), - [anon_sym_get] = ACTIONS(1894), - [anon_sym_set] = ACTIONS(1894), - [anon_sym_declare] = ACTIONS(1894), - [anon_sym_public] = ACTIONS(1894), - [anon_sym_private] = ACTIONS(1894), - [anon_sym_protected] = ACTIONS(1894), - [anon_sym_override] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_any] = ACTIONS(1894), - [anon_sym_number] = ACTIONS(1894), - [anon_sym_boolean] = ACTIONS(1894), - [anon_sym_string] = ACTIONS(1894), - [anon_sym_symbol] = ACTIONS(1894), - [anon_sym_object] = ACTIONS(1894), - [anon_sym_abstract] = ACTIONS(1894), - [anon_sym_satisfies] = ACTIONS(1894), - [anon_sym_interface] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [sym__automatic_semicolon] = ACTIONS(1892), - [sym__ternary_qmark] = ACTIONS(1892), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2126), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4946), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4955), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(1738), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(541), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), - [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(541), - [anon_sym_readonly] = ACTIONS(541), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(541), - [anon_sym_private] = ACTIONS(541), - [anon_sym_protected] = ACTIONS(541), - [anon_sym_override] = ACTIONS(541), - [anon_sym_module] = ACTIONS(541), - [anon_sym_any] = ACTIONS(541), - [anon_sym_number] = ACTIONS(541), - [anon_sym_boolean] = ACTIONS(541), - [anon_sym_string] = ACTIONS(541), - [anon_sym_symbol] = ACTIONS(541), - [anon_sym_object] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(1896), + [sym__ternary_qmark] = ACTIONS(1894), [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), @@ -52578,17 +52658,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1898), [anon_sym_RBRACE] = ACTIONS(1898), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(1898), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_AMP] = ACTIONS(1898), @@ -52602,17 +52682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -52637,94 +52717,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5096), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5096), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5096), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1414), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5820), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5133), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5133), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5133), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_mapped_type_clause] = STATE(5562), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_pattern_repeat1] = STATE(5022), [sym_identifier] = ACTIONS(1902), [anon_sym_export] = ACTIONS(1904), [anon_sym_type] = ACTIONS(1904), [anon_sym_namespace] = ACTIONS(1906), [anon_sym_LBRACE] = ACTIONS(1908), [anon_sym_COMMA] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(1912), [anon_sym_RBRACK] = ACTIONS(1914), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1916), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1918), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1920), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1904), @@ -52746,48 +52826,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), @@ -52796,17 +52876,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1898), [anon_sym_RBRACE] = ACTIONS(1898), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(1898), [anon_sym_RBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_AMP] = ACTIONS(1898), @@ -52821,17 +52901,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -52855,396 +52935,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_assignment_pattern] = STATE(4927), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4479), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_pattern_repeat1] = STATE(5023), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_RBRACK] = ACTIONS(1922), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [246] = { - [sym_import] = STATE(3639), - [sym_variable_declaration] = STATE(299), - [sym_lexical_declaration] = STATE(299), - [sym_empty_statement] = STATE(299), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2227), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5003), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5003), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5003), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5597), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1381), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1924), - [anon_sym_export] = ACTIONS(1926), - [anon_sym_type] = ACTIONS(1926), - [anon_sym_namespace] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_var] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1942), - [anon_sym_using] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_readonly] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1926), - [anon_sym_set] = ACTIONS(1926), - [anon_sym_declare] = ACTIONS(1926), - [anon_sym_public] = ACTIONS(1926), - [anon_sym_private] = ACTIONS(1926), - [anon_sym_protected] = ACTIONS(1926), - [anon_sym_override] = ACTIONS(1926), - [anon_sym_module] = ACTIONS(1926), - [anon_sym_any] = ACTIONS(1926), - [anon_sym_number] = ACTIONS(1926), - [anon_sym_boolean] = ACTIONS(1926), - [anon_sym_string] = ACTIONS(1926), - [anon_sym_symbol] = ACTIONS(1926), - [anon_sym_object] = ACTIONS(1926), - [sym_html_comment] = ACTIONS(5), - }, - [247] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2553), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5096), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5096), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5096), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1414), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_pattern_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(1946), - [anon_sym_export] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_namespace] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_COMMA] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_RBRACK] = ACTIONS(1914), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1954), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_readonly] = ACTIONS(1948), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1948), - [anon_sym_declare] = ACTIONS(1948), - [anon_sym_public] = ACTIONS(1948), - [anon_sym_private] = ACTIONS(1948), - [anon_sym_protected] = ACTIONS(1948), - [anon_sym_override] = ACTIONS(1948), - [anon_sym_module] = ACTIONS(1948), - [anon_sym_any] = ACTIONS(1948), - [anon_sym_number] = ACTIONS(1948), - [anon_sym_boolean] = ACTIONS(1948), - [anon_sym_string] = ACTIONS(1948), - [anon_sym_symbol] = ACTIONS(1948), - [anon_sym_object] = ACTIONS(1948), - [sym_html_comment] = ACTIONS(5), - }, - [248] = { - [sym_import] = STATE(3639), - [sym_variable_declaration] = STATE(304), - [sym_lexical_declaration] = STATE(304), - [sym_empty_statement] = STATE(304), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2311), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5003), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5003), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5003), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5849), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1381), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1924), - [anon_sym_export] = ACTIONS(1926), - [anon_sym_type] = ACTIONS(1926), - [anon_sym_namespace] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(1930), + [sym_import] = STATE(3577), + [sym_variable_declaration] = STATE(302), + [sym_lexical_declaration] = STATE(302), + [sym_empty_statement] = STATE(302), + [sym_parenthesized_expression] = STATE(1388), + [sym_expression] = STATE(2365), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4876), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4876), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1388), + [sym_subscript_expression] = STATE(1388), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4876), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5889), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1388), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1922), + [anon_sym_export] = ACTIONS(1924), + [anon_sym_type] = ACTIONS(1924), + [anon_sym_namespace] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_var] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1936), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1934), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1940), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), [anon_sym_DASH] = ACTIONS(581), @@ -53255,103 +53011,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1944), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_readonly] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1926), - [anon_sym_set] = ACTIONS(1926), - [anon_sym_declare] = ACTIONS(1926), - [anon_sym_public] = ACTIONS(1926), - [anon_sym_private] = ACTIONS(1926), - [anon_sym_protected] = ACTIONS(1926), - [anon_sym_override] = ACTIONS(1926), - [anon_sym_module] = ACTIONS(1926), - [anon_sym_any] = ACTIONS(1926), - [anon_sym_number] = ACTIONS(1926), - [anon_sym_boolean] = ACTIONS(1926), - [anon_sym_string] = ACTIONS(1926), - [anon_sym_symbol] = ACTIONS(1926), - [anon_sym_object] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_readonly] = ACTIONS(1924), + [anon_sym_get] = ACTIONS(1924), + [anon_sym_set] = ACTIONS(1924), + [anon_sym_declare] = ACTIONS(1924), + [anon_sym_public] = ACTIONS(1924), + [anon_sym_private] = ACTIONS(1924), + [anon_sym_protected] = ACTIONS(1924), + [anon_sym_override] = ACTIONS(1924), + [anon_sym_module] = ACTIONS(1924), + [anon_sym_any] = ACTIONS(1924), + [anon_sym_number] = ACTIONS(1924), + [anon_sym_boolean] = ACTIONS(1924), + [anon_sym_string] = ACTIONS(1924), + [anon_sym_symbol] = ACTIONS(1924), + [anon_sym_object] = ACTIONS(1924), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4980), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4982), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1738), + [246] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(5393), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(5049), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4807), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1944), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(581), @@ -53363,18 +53119,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(541), @@ -53394,74 +53150,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4980), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4982), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1738), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(541), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1956), + [247] = { + [sym_import] = STATE(3577), + [sym_variable_declaration] = STATE(299), + [sym_lexical_declaration] = STATE(299), + [sym_empty_statement] = STATE(299), + [sym_parenthesized_expression] = STATE(1388), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4876), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4876), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1388), + [sym_subscript_expression] = STATE(1388), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4876), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5838), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1388), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1922), + [anon_sym_export] = ACTIONS(1924), + [anon_sym_type] = ACTIONS(1924), + [anon_sym_namespace] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(541), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1934), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1956), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1940), [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(581), [anon_sym_DASH] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(577), @@ -53471,233 +53227,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(541), - [anon_sym_readonly] = ACTIONS(541), - [anon_sym_get] = ACTIONS(541), - [anon_sym_set] = ACTIONS(541), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(541), - [anon_sym_private] = ACTIONS(541), - [anon_sym_protected] = ACTIONS(541), - [anon_sym_override] = ACTIONS(541), - [anon_sym_module] = ACTIONS(541), - [anon_sym_any] = ACTIONS(541), - [anon_sym_number] = ACTIONS(541), - [anon_sym_boolean] = ACTIONS(541), - [anon_sym_string] = ACTIONS(541), - [anon_sym_symbol] = ACTIONS(541), - [anon_sym_object] = ACTIONS(541), - [sym_html_comment] = ACTIONS(5), - }, - [251] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1898), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_RBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [anon_sym_extends] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_readonly] = ACTIONS(1924), + [anon_sym_get] = ACTIONS(1924), + [anon_sym_set] = ACTIONS(1924), + [anon_sym_declare] = ACTIONS(1924), + [anon_sym_public] = ACTIONS(1924), + [anon_sym_private] = ACTIONS(1924), + [anon_sym_protected] = ACTIONS(1924), + [anon_sym_override] = ACTIONS(1924), + [anon_sym_module] = ACTIONS(1924), + [anon_sym_any] = ACTIONS(1924), + [anon_sym_number] = ACTIONS(1924), + [anon_sym_boolean] = ACTIONS(1924), + [anon_sym_string] = ACTIONS(1924), + [anon_sym_symbol] = ACTIONS(1924), + [anon_sym_object] = ACTIONS(1924), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_assignment_pattern] = STATE(4969), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [248] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4406), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_pattern_repeat1] = STATE(5022), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), [anon_sym_COMMA] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), [anon_sym_RBRACK] = ACTIONS(1914), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -53718,72 +53366,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_spread_element] = STATE(4980), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4982), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1738), + [249] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), + [anon_sym_extends] = ACTIONS(1900), + [sym_html_comment] = ACTIONS(5), + }, + [250] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(5393), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(5049), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4807), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(1963), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(581), @@ -53795,18 +53551,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(541), @@ -53826,93 +53582,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [251] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5133), + [sym_assignment_pattern] = STATE(4978), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5133), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5133), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4548), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_pattern_repeat1] = STATE(5022), + [sym_identifier] = ACTIONS(1951), + [anon_sym_export] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1953), + [anon_sym_namespace] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1959), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1920), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_readonly] = ACTIONS(1953), + [anon_sym_get] = ACTIONS(1953), + [anon_sym_set] = ACTIONS(1953), + [anon_sym_declare] = ACTIONS(1953), + [anon_sym_public] = ACTIONS(1953), + [anon_sym_private] = ACTIONS(1953), + [anon_sym_protected] = ACTIONS(1953), + [anon_sym_override] = ACTIONS(1953), + [anon_sym_module] = ACTIONS(1953), + [anon_sym_any] = ACTIONS(1953), + [anon_sym_number] = ACTIONS(1953), + [anon_sym_boolean] = ACTIONS(1953), + [anon_sym_string] = ACTIONS(1953), + [anon_sym_symbol] = ACTIONS(1953), + [anon_sym_object] = ACTIONS(1953), + [sym_html_comment] = ACTIONS(5), + }, + [252] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_assignment_pattern] = STATE(4594), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4982), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4460), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_pattern_repeat1] = STATE(4600), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_RBRACK] = ACTIONS(1967), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(1961), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), @@ -53933,158 +53798,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1898), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [253] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(5393), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_spread_element] = STATE(5049), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4807), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1768), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [anon_sym_extends] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), + [254] = { + [sym_identifier] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(1967), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(1969), - [anon_sym_import] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(1969), + [anon_sym_namespace] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1967), + [anon_sym_import] = ACTIONS(1967), + [anon_sym_let] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(1967), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1969), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(1969), - [anon_sym_async] = ACTIONS(1969), - [anon_sym_function] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = 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_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_class] = ACTIONS(1967), + [anon_sym_async] = ACTIONS(1967), + [anon_sym_function] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1967), + [anon_sym_using] = ACTIONS(1967), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(1969), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -54093,105 +53959,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1967), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_void] = ACTIONS(1969), - [anon_sym_delete] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1971), - [sym_number] = ACTIONS(1971), - [sym_private_property_identifier] = ACTIONS(1971), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(1969), - [sym_true] = ACTIONS(1969), - [sym_false] = ACTIONS(1969), - [sym_null] = ACTIONS(1969), - [sym_undefined] = ACTIONS(1969), - [anon_sym_AT] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1969), - [anon_sym_readonly] = ACTIONS(1969), - [anon_sym_get] = ACTIONS(1969), - [anon_sym_set] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1969), + [anon_sym_void] = ACTIONS(1967), + [anon_sym_delete] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1969), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1969), + [sym_number] = ACTIONS(1969), + [sym_private_property_identifier] = ACTIONS(1969), + [sym_this] = ACTIONS(1967), + [sym_super] = ACTIONS(1967), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_null] = ACTIONS(1967), + [sym_undefined] = ACTIONS(1967), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_readonly] = ACTIONS(1967), + [anon_sym_get] = ACTIONS(1967), + [anon_sym_set] = ACTIONS(1967), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1969), - [anon_sym_public] = ACTIONS(1969), - [anon_sym_private] = ACTIONS(1969), - [anon_sym_protected] = ACTIONS(1969), - [anon_sym_override] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_any] = ACTIONS(1969), - [anon_sym_number] = ACTIONS(1969), - [anon_sym_boolean] = ACTIONS(1969), - [anon_sym_string] = ACTIONS(1969), - [anon_sym_symbol] = ACTIONS(1969), - [anon_sym_object] = ACTIONS(1969), + [anon_sym_declare] = ACTIONS(1967), + [anon_sym_public] = ACTIONS(1967), + [anon_sym_private] = ACTIONS(1967), + [anon_sym_protected] = ACTIONS(1967), + [anon_sym_override] = ACTIONS(1967), + [anon_sym_module] = ACTIONS(1967), + [anon_sym_any] = ACTIONS(1967), + [anon_sym_number] = ACTIONS(1967), + [anon_sym_boolean] = ACTIONS(1967), + [anon_sym_string] = ACTIONS(1967), + [anon_sym_symbol] = ACTIONS(1967), + [anon_sym_object] = ACTIONS(1967), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1973), + [255] = { + [sym_identifier] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1971), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1973), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_type] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(1973), - [anon_sym_import] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_BANG] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(1973), + [anon_sym_namespace] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1971), + [anon_sym_import] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(1971), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1973), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1973), - [anon_sym_function] = ACTIONS(1973), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1973), - [anon_sym_using] = ACTIONS(1973), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(1975), + [anon_sym_class] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(1971), + [anon_sym_function] = ACTIONS(1971), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_using] = ACTIONS(1971), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(1973), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -54200,105 +54066,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(1971), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1975), - [anon_sym_void] = ACTIONS(1973), - [anon_sym_delete] = ACTIONS(1973), - [anon_sym_PLUS_PLUS] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1975), - [anon_sym_SQUOTE] = ACTIONS(1975), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1975), - [sym_private_property_identifier] = ACTIONS(1975), - [sym_this] = ACTIONS(1973), - [sym_super] = ACTIONS(1973), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_null] = ACTIONS(1973), - [sym_undefined] = ACTIONS(1973), - [anon_sym_AT] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_readonly] = ACTIONS(1973), - [anon_sym_get] = ACTIONS(1973), - [anon_sym_set] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1971), + [anon_sym_delete] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1973), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1973), + [sym_number] = ACTIONS(1973), + [sym_private_property_identifier] = ACTIONS(1973), + [sym_this] = ACTIONS(1971), + [sym_super] = ACTIONS(1971), + [sym_true] = ACTIONS(1971), + [sym_false] = ACTIONS(1971), + [sym_null] = ACTIONS(1971), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1971), + [anon_sym_readonly] = ACTIONS(1971), + [anon_sym_get] = ACTIONS(1971), + [anon_sym_set] = ACTIONS(1971), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1973), - [anon_sym_public] = ACTIONS(1973), - [anon_sym_private] = ACTIONS(1973), - [anon_sym_protected] = ACTIONS(1973), - [anon_sym_override] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_any] = ACTIONS(1973), - [anon_sym_number] = ACTIONS(1973), - [anon_sym_boolean] = ACTIONS(1973), - [anon_sym_string] = ACTIONS(1973), - [anon_sym_symbol] = ACTIONS(1973), - [anon_sym_object] = ACTIONS(1973), + [anon_sym_declare] = ACTIONS(1971), + [anon_sym_public] = ACTIONS(1971), + [anon_sym_private] = ACTIONS(1971), + [anon_sym_protected] = ACTIONS(1971), + [anon_sym_override] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_any] = ACTIONS(1971), + [anon_sym_number] = ACTIONS(1971), + [anon_sym_boolean] = ACTIONS(1971), + [anon_sym_string] = ACTIONS(1971), + [anon_sym_symbol] = ACTIONS(1971), + [anon_sym_object] = ACTIONS(1971), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [256] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [anon_sym_extends] = ACTIONS(1900), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_assignment_pattern] = STATE(5393), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4807), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), + [sym_identifier] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1971), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_type] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(1969), - [anon_sym_import] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(1969), + [anon_sym_namespace] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1971), + [anon_sym_import] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1971), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1973), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(1969), - [anon_sym_async] = ACTIONS(1969), - [anon_sym_function] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = 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_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_class] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(1971), + [anon_sym_function] = ACTIONS(1971), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_using] = ACTIONS(1971), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(1973), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -54307,105 +54387,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(1971), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_void] = ACTIONS(1969), - [anon_sym_delete] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1971), - [sym_number] = ACTIONS(1971), - [sym_private_property_identifier] = ACTIONS(1971), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(1969), - [sym_true] = ACTIONS(1969), - [sym_false] = ACTIONS(1969), - [sym_null] = ACTIONS(1969), - [sym_undefined] = ACTIONS(1969), - [anon_sym_AT] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1969), - [anon_sym_readonly] = ACTIONS(1969), - [anon_sym_get] = ACTIONS(1969), - [anon_sym_set] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1971), + [anon_sym_delete] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1973), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1973), + [sym_number] = ACTIONS(1973), + [sym_private_property_identifier] = ACTIONS(1973), + [sym_this] = ACTIONS(1971), + [sym_super] = ACTIONS(1971), + [sym_true] = ACTIONS(1971), + [sym_false] = ACTIONS(1971), + [sym_null] = ACTIONS(1971), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1971), + [anon_sym_readonly] = ACTIONS(1971), + [anon_sym_get] = ACTIONS(1971), + [anon_sym_set] = ACTIONS(1971), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1969), - [anon_sym_public] = ACTIONS(1969), - [anon_sym_private] = ACTIONS(1969), - [anon_sym_protected] = ACTIONS(1969), - [anon_sym_override] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_any] = ACTIONS(1969), - [anon_sym_number] = ACTIONS(1969), - [anon_sym_boolean] = ACTIONS(1969), - [anon_sym_string] = ACTIONS(1969), - [anon_sym_symbol] = ACTIONS(1969), - [anon_sym_object] = ACTIONS(1969), + [anon_sym_declare] = ACTIONS(1971), + [anon_sym_public] = ACTIONS(1971), + [anon_sym_private] = ACTIONS(1971), + [anon_sym_protected] = ACTIONS(1971), + [anon_sym_override] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_any] = ACTIONS(1971), + [anon_sym_number] = ACTIONS(1971), + [anon_sym_boolean] = ACTIONS(1971), + [anon_sym_string] = ACTIONS(1971), + [anon_sym_symbol] = ACTIONS(1971), + [anon_sym_object] = ACTIONS(1971), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1973), + [sym_identifier] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(1967), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1973), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(1973), - [anon_sym_import] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_BANG] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(1973), + [anon_sym_namespace] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1967), + [anon_sym_import] = ACTIONS(1967), + [anon_sym_let] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1967), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1969), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_class] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1973), - [anon_sym_function] = ACTIONS(1973), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1973), - [anon_sym_using] = ACTIONS(1973), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(1975), + [anon_sym_class] = ACTIONS(1967), + [anon_sym_async] = ACTIONS(1967), + [anon_sym_function] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1967), + [anon_sym_using] = ACTIONS(1967), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(1969), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -54414,146 +54494,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1967), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1975), - [anon_sym_void] = ACTIONS(1973), - [anon_sym_delete] = ACTIONS(1973), - [anon_sym_PLUS_PLUS] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1975), - [anon_sym_SQUOTE] = ACTIONS(1975), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1975), - [sym_private_property_identifier] = ACTIONS(1975), - [sym_this] = ACTIONS(1973), - [sym_super] = ACTIONS(1973), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_null] = ACTIONS(1973), - [sym_undefined] = ACTIONS(1973), - [anon_sym_AT] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_readonly] = ACTIONS(1973), - [anon_sym_get] = ACTIONS(1973), - [anon_sym_set] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1969), + [anon_sym_void] = ACTIONS(1967), + [anon_sym_delete] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1969), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1969), + [sym_number] = ACTIONS(1969), + [sym_private_property_identifier] = ACTIONS(1969), + [sym_this] = ACTIONS(1967), + [sym_super] = ACTIONS(1967), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_null] = ACTIONS(1967), + [sym_undefined] = ACTIONS(1967), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_readonly] = ACTIONS(1967), + [anon_sym_get] = ACTIONS(1967), + [anon_sym_set] = ACTIONS(1967), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1973), - [anon_sym_public] = ACTIONS(1973), - [anon_sym_private] = ACTIONS(1973), - [anon_sym_protected] = ACTIONS(1973), - [anon_sym_override] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_any] = ACTIONS(1973), - [anon_sym_number] = ACTIONS(1973), - [anon_sym_boolean] = ACTIONS(1973), - [anon_sym_string] = ACTIONS(1973), - [anon_sym_symbol] = ACTIONS(1973), - [anon_sym_object] = ACTIONS(1973), + [anon_sym_declare] = ACTIONS(1967), + [anon_sym_public] = ACTIONS(1967), + [anon_sym_private] = ACTIONS(1967), + [anon_sym_protected] = ACTIONS(1967), + [anon_sym_override] = ACTIONS(1967), + [anon_sym_module] = ACTIONS(1967), + [anon_sym_any] = ACTIONS(1967), + [anon_sym_number] = ACTIONS(1967), + [anon_sym_boolean] = ACTIONS(1967), + [anon_sym_string] = ACTIONS(1967), + [anon_sym_symbol] = ACTIONS(1967), + [anon_sym_object] = ACTIONS(1967), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2284), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_spread_element] = STATE(4691), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4692), + [sym_identifier] = ACTIONS(1482), [anon_sym_export] = ACTIONS(1178), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), [anon_sym_readonly] = ACTIONS(1178), @@ -54571,307 +54652,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1178), [anon_sym_symbol] = ACTIONS(1178), [anon_sym_object] = ACTIONS(1178), - [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_spread_element] = STATE(4556), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4561), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [anon_sym_extends] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [262] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(1898), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), [anon_sym_AMP] = ACTIONS(1898), [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), [anon_sym_GT] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), + [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1498), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2233), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_spread_element] = STATE(4753), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4754), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [264] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), [anon_sym_export] = ACTIONS(1270), [anon_sym_type] = ACTIONS(1270), [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(1898), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), [anon_sym_AMP] = ACTIONS(1898), [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), [anon_sym_GT] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1270), [anon_sym_readonly] = ACTIONS(1270), @@ -54892,421 +55078,739 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(3639), + [265] = { + [sym_import] = STATE(3577), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2231), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), + [sym_expression] = STATE(2118), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_spread_element] = STATE(4590), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4591), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1979), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2142), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_spread_element] = STATE(5115), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(5116), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [266] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [anon_sym_extends] = ACTIONS(1900), + [sym_html_comment] = ACTIONS(5), + }, + [267] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_spread_element] = STATE(5069), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1987), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2237), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_spread_element] = STATE(4638), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4639), + [268] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [anon_sym_extends] = ACTIONS(1900), + [sym_html_comment] = ACTIONS(5), + }, + [269] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2269), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_spread_element] = STATE(4587), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4588), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1985), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), + [anon_sym_using] = ACTIONS(756), [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [270] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2281), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_spread_element] = STATE(4676), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4677), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [271] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4285), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(279), - [sym_override_modifier] = STATE(298), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(1297), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4315), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_accessibility_modifier] = STATE(276), + [sym_override_modifier] = STATE(305), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(1292), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(1987), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1989), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1995), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1997), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_protected] = ACTIONS(798), - [anon_sym_override] = ACTIONS(800), + [anon_sym_public] = ACTIONS(820), + [anon_sym_private] = ACTIONS(820), + [anon_sym_protected] = ACTIONS(820), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -55316,285 +55820,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2238), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_spread_element] = STATE(4653), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4654), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [269] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2212), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_spread_element] = STATE(5008), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(5011), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [272] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [270] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2106), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), + [273] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), [anon_sym_export] = ACTIONS(1422), [anon_sym_type] = ACTIONS(1422), [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(800), [anon_sym_COMMA] = ACTIONS(1898), [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1422), [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(1430), [anon_sym_yield] = ACTIONS(1432), [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), [anon_sym_using] = ACTIONS(1438), [anon_sym_AMP] = ACTIONS(1898), [anon_sym_PIPE] = ACTIONS(1898), [anon_sym_PLUS] = ACTIONS(1444), [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), [anon_sym_GT] = ACTIONS(1898), [anon_sym_TILDE] = ACTIONS(1428), @@ -55602,18 +56000,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1444), [anon_sym_PLUS_PLUS] = ACTIONS(1446), [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1422), @@ -55634,810 +56032,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2208), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_spread_element] = STATE(4789), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4790), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [272] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), - [anon_sym_extends] = ACTIONS(1900), - [sym_html_comment] = ACTIONS(5), - }, - [273] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2219), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_spread_element] = STATE(4544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [aux_sym_array_repeat1] = STATE(4545), + [274] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_spread_element] = STATE(4632), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [aux_sym_array_repeat1] = STATE(4633), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), + [anon_sym_using] = ACTIONS(756), [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [274] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), - [anon_sym_extends] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(3575), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2931), - [sym__type_query_subscript_expression] = STATE(2933), - [sym__type_query_call_expression] = STATE(3124), - [sym__type_query_instantiation_expression] = STATE(3280), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2001), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_type] = ACTIONS(1048), - [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(2003), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_readonly] = ACTIONS(1048), - [anon_sym_get] = ACTIONS(1048), - [anon_sym_set] = ACTIONS(1048), - [anon_sym_declare] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_protected] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_any] = ACTIONS(1048), - [anon_sym_number] = ACTIONS(1048), - [anon_sym_boolean] = ACTIONS(1048), - [anon_sym_string] = ACTIONS(1048), - [anon_sym_symbol] = ACTIONS(1048), - [anon_sym_object] = ACTIONS(1048), - [sym_html_comment] = ACTIONS(5), - }, - [276] = { - [sym_import] = STATE(3609), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(2007), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), - [sym_html_comment] = ACTIONS(5), - }, - [277] = { - [sym_import] = STATE(3739), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(2011), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [278] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4425), - [sym_assignment_pattern] = STATE(5260), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4425), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4425), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4930), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1396), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1738), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(4440), + [sym_assignment_pattern] = STATE(5401), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(4440), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(4440), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(5058), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1392), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(541), [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(800), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(541), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1774), [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(581), [anon_sym_DASH] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(577), @@ -56447,18 +56212,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1746), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1776), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(541), @@ -56478,102 +56243,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [276] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(3924), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_override_modifier] = STATE(302), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(3990), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_override_modifier] = STATE(298), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2013), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2001), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2003), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(822), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [277] = { + [sym_import] = STATE(3658), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [sym_html_comment] = ACTIONS(5), + }, + [278] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4289), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_override_modifier] = STATE(304), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(728), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_readonly] = ACTIONS(2009), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(800), + [anon_sym_override] = ACTIONS(822), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -56583,71 +56558,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, + [279] = { + [sym_import] = STATE(3638), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2011), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2013), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), + [sym_html_comment] = ACTIONS(5), + }, [280] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_spread_element] = STATE(4980), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1456), + [sym_import] = STATE(3662), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2945), + [sym__type_query_subscript_expression] = STATE(2946), + [sym__type_query_call_expression] = STATE(3143), + [sym__type_query_instantiation_expression] = STATE(3256), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2015), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(2017), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_RBRACK] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2019), [anon_sym_PLUS] = ACTIONS(581), [anon_sym_DASH] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(577), @@ -56657,17 +56737,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(2017), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -56689,68 +56769,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(3540), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2021), + [sym_import] = STATE(3646), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(2019), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1332), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1340), + [sym_this] = ACTIONS(2021), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), + [sym_html_comment] = ACTIONS(5), + }, + [282] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_spread_element] = STATE(5049), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [283] = { + [sym_import] = STATE(3626), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2025), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(2027), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [284] = { + [sym_import] = STATE(3638), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2029), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [285] = { + [sym_import] = STATE(3581), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2031), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -56762,17 +57262,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(2007), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -56793,384 +57293,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_import] = STATE(3609), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2023), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [286] = { + [sym_import] = STATE(3601), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(2033), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2007), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(2021), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(3599), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2025), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [287] = { + [sym_import] = STATE(3626), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2035), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(2007), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(3540), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [288] = { + [sym_import] = STATE(3638), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2027), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2037), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2029), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(3540), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2031), + [289] = { + [sym_import] = STATE(3581), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2039), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -57182,17 +57682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(2033), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(2027), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -57213,617 +57713,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(3609), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2035), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2033), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [sym_html_comment] = ACTIONS(5), - }, - [287] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_assignment_pattern] = STATE(5260), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4930), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [288] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4312), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_override_modifier] = STATE(300), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(716), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2037), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(800), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [289] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_spread_element] = STATE(4980), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(2017), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(2017), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, [290] = { - [sym_import] = STATE(3599), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_spread_element] = STATE(5049), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(2029), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_import] = STATE(3546), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(2041), + [sym_import] = STATE(3601), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(2043), [anon_sym_export] = ACTIONS(1270), [anon_sym_type] = ACTIONS(1270), [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(2011), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1270), [anon_sym_readonly] = ACTIONS(1270), @@ -57844,196 +57924,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(3572), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2043), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [sym_import] = STATE(3581), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2045), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(2007), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2027), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_import] = STATE(3739), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(2045), + [sym_import] = STATE(3581), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2118), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2047), [anon_sym_export] = ACTIONS(1386), [anon_sym_type] = ACTIONS(1386), [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1386), [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(1394), [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), [anon_sym_using] = ACTIONS(1402), [anon_sym_PLUS] = ACTIONS(1408), [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1392), [anon_sym_void] = ACTIONS(1408), [anon_sym_delete] = ACTIONS(1408), [anon_sym_PLUS_PLUS] = ACTIONS(1410), [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(2011), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1386), [anon_sym_readonly] = ACTIONS(1386), @@ -58054,68 +58134,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(3540), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2047), + [sym_import] = STATE(3581), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2049), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -58127,17 +58207,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(2029), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(2013), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -58159,197 +58239,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [295] = { - [sym_import] = STATE(3609), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2049), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), + [sym_import] = STATE(3638), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym__type_query_member_expression] = STATE(2889), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(2951), + [sym__type_query_instantiation_expression] = STATE(3013), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2051), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), + [sym_private_property_identifier] = ACTIONS(1448), [sym_this] = ACTIONS(2007), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), - [sym_html_comment] = ACTIONS(5), - }, - [296] = { - [sym_import] = STATE(3540), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2106), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2877), - [sym__type_query_call_expression] = STATE(2922), - [sym__type_query_instantiation_expression] = STATE(3010), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2051), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(2007), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1422), [anon_sym_get] = ACTIONS(1422), @@ -58368,198 +58343,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1905), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5245), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym__automatic_semicolon] = ACTIONS(2053), - [sym_html_comment] = ACTIONS(5), - }, - [298] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [296] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_assignment_pattern] = STATE(5401), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(3930), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(5058), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), @@ -58576,68 +58448,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [299] = { - [sym_import] = STATE(3639), - [sym_empty_statement] = STATE(314), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2124), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5500), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [297] = { + [sym_import] = STATE(3577), + [sym_empty_statement] = STATE(311), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5720), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -58649,17 +58521,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -58680,94 +58552,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [298] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(3914), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4010), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2053), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2059), + [anon_sym_readonly] = ACTIONS(2055), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), @@ -58784,68 +58656,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_import] = STATE(3639), + [299] = { + [sym_import] = STATE(3577), [sym_empty_statement] = STATE(306), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2292), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5561), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2157), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5885), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -58857,17 +58729,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -58888,198 +58760,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4226), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(696), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [300] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2088), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5239), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2061), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2063), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym__automatic_semicolon] = ACTIONS(2057), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3722), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3722), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [301] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1295), - [sym_subscript_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3722), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_pattern] = STATE(4312), - [sym_rest_pattern] = STATE(3684), - [sym_non_null_expression] = STATE(1295), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4289), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(696), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(148), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(706), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(716), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(728), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2037), + [anon_sym_readonly] = ACTIONS(2009), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), @@ -59096,68 +58968,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_import] = STATE(3639), - [sym_empty_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5664), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [302] = { + [sym_import] = STATE(3577), + [sym_empty_statement] = STATE(312), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2347), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5704), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -59169,17 +59041,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -59200,68 +59072,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [305] = { - [sym_import] = STATE(3639), - [sym_empty_statement] = STATE(309), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2337), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5680), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [303] = { + [sym_import] = STATE(3577), + [sym_empty_statement] = STATE(308), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2274), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5872), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -59273,17 +59145,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -59304,1316 +59176,1524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, + [304] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4132), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(724), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2059), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [305] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3774), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3774), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3774), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_pattern] = STATE(4006), + [sym_rest_pattern] = STATE(3637), + [sym_non_null_expression] = STATE(1286), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(147), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2061), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2063), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, [306] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2330), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5565), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5869), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(2065), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [307] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2174), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5542), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2322), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5700), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [308] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5723), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2324), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5729), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2273), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5726), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2346), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5631), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(2071), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [310] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2275), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5751), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2302), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5762), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [311] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5562), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2303), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5764), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [312] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1447), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5019), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5019), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1447), - [sym_subscript_expression] = STATE(1447), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5019), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1447), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_var] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2091), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_readonly] = ACTIONS(2079), - [anon_sym_get] = ACTIONS(2079), - [anon_sym_set] = ACTIONS(2079), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_public] = ACTIONS(2079), - [anon_sym_private] = ACTIONS(2079), - [anon_sym_protected] = ACTIONS(2079), - [anon_sym_override] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_any] = ACTIONS(2079), - [anon_sym_number] = ACTIONS(2079), - [anon_sym_boolean] = ACTIONS(2079), - [anon_sym_string] = ACTIONS(2079), - [anon_sym_symbol] = ACTIONS(2079), - [anon_sym_object] = ACTIONS(2079), - [sym_html_comment] = ACTIONS(5), - }, - [313] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2269), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5687), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2300), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5728), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2290), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5511), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [313] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5788), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1683), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_type] = ACTIONS(1048), - [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), + [314] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1436), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5061), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5061), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1436), + [sym_subscript_expression] = STATE(1436), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5061), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1436), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2081), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_namespace] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2095), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1466), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2097), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_readonly] = ACTIONS(1048), - [anon_sym_get] = ACTIONS(1048), - [anon_sym_set] = ACTIONS(1048), - [anon_sym_declare] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_protected] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_any] = ACTIONS(1048), - [anon_sym_number] = ACTIONS(1048), - [anon_sym_boolean] = ACTIONS(1048), - [anon_sym_string] = ACTIONS(1048), - [anon_sym_symbol] = ACTIONS(1048), - [anon_sym_object] = ACTIONS(1048), + [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), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_import] = STATE(3639), + [315] = { + [sym_import] = STATE(3577), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2341), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5620), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym__extends_clause_single] = STATE(4768), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [316] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1688), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2556), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [317] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5513), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1689), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2558), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [318] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2140), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2217), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2226), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -60621,84 +60701,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, [319] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5498), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2129), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5685), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -60710,17 +60790,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -60742,65 +60822,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [320] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2287), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5643), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2181), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [321] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2254), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5810), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -60812,17 +60994,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -60843,678 +61025,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2262), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2155), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [sym_html_comment] = ACTIONS(5), - }, [322] = { - [sym_import] = STATE(3639), + [sym_import] = STATE(3577), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2288), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5722), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym__extends_clause_single] = STATE(4503), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [323] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2121), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5736), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [324] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2198), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2158), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [sym_html_comment] = ACTIONS(5), - }, - [325] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2201), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2159), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [sym_html_comment] = ACTIONS(5), - }, - [326] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2204), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), - [sym_html_comment] = ACTIONS(5), - }, - [327] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2225), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5835), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2268), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5590), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -61526,17 +61198,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -61557,167 +61229,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2289), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5506), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [329] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2262), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [324] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2191), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -61743,798 +61313,1308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [330] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1886), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [325] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2270), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5698), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [331] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2166), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5487), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_type] = ACTIONS(1048), - [anon_sym_namespace] = ACTIONS(1050), + [326] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1877), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5725), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [327] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1696), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2093), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1466), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_readonly] = ACTIONS(1048), - [anon_sym_get] = ACTIONS(1048), - [anon_sym_set] = ACTIONS(1048), - [anon_sym_declare] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_protected] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_any] = ACTIONS(1048), - [anon_sym_number] = ACTIONS(1048), - [anon_sym_boolean] = ACTIONS(1048), - [anon_sym_string] = ACTIONS(1048), - [anon_sym_symbol] = ACTIONS(1048), - [anon_sym_object] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1668), + [328] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1664), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), + [sym_expression] = STATE(2097), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [333] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1672), + [329] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1673), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1913), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), + [sym_expression] = STATE(2110), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5820), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2103), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [330] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2112), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [335] = { - [sym_import] = STATE(3639), + [331] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1688), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2113), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [332] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1689), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1864), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), + [sym_expression] = STATE(2114), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5575), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [333] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2271), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5893), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [334] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_mapped_type_clause] = STATE(5562), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2105), + [anon_sym_export] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2107), + [anon_sym_namespace] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_readonly] = ACTIONS(2107), + [anon_sym_get] = ACTIONS(2107), + [anon_sym_set] = ACTIONS(2107), + [anon_sym_declare] = ACTIONS(2107), + [anon_sym_public] = ACTIONS(2107), + [anon_sym_private] = ACTIONS(2107), + [anon_sym_protected] = ACTIONS(2107), + [anon_sym_override] = ACTIONS(2107), + [anon_sym_module] = ACTIONS(2107), + [anon_sym_any] = ACTIONS(2107), + [anon_sym_number] = ACTIONS(2107), + [anon_sym_boolean] = ACTIONS(2107), + [anon_sym_string] = ACTIONS(2107), + [anon_sym_symbol] = ACTIONS(2107), + [anon_sym_object] = ACTIONS(2107), [sym_html_comment] = ACTIONS(5), }, - [336] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2198), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1815), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [335] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2191), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2231), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), + [sym_html_comment] = ACTIONS(5), + }, + [336] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1696), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1910), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [337] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2235), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5884), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -62546,17 +62626,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -62578,65 +62658,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [338] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1668), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1745), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1696), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2103), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -62648,17 +62728,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -62680,65 +62760,677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [339] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1672), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1696), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2379), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [340] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1664), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2383), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [341] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1673), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2396), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [342] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2398), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [343] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1688), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2399), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [344] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1689), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [345] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2363), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5723), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -62750,17 +63442,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -62781,66 +63473,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [340] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1680), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [346] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1664), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2103), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -62852,17 +63544,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -62883,66 +63575,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [341] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [347] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1673), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1751), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2103), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -62954,17 +63646,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -62985,371 +63677,983 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [342] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2201), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [348] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1758), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [343] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2204), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [349] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1688), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1759), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [344] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1680), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [350] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1689), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [sym_html_comment] = ACTIONS(5), + }, + [351] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1696), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [345] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1893), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_sequence_expression] = STATE(5284), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [352] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1664), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [sym_html_comment] = ACTIONS(5), + }, + [353] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1673), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [sym_html_comment] = ACTIONS(5), + }, + [354] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [sym_html_comment] = ACTIONS(5), + }, + [355] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1688), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [sym_html_comment] = ACTIONS(5), + }, + [356] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1689), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2427), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [sym_html_comment] = ACTIONS(5), + }, + [357] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2217), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1874), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -63375,1841 +64679,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [346] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2280), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [358] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1664), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1938), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [347] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [359] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [348] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2262), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [360] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2158), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), + [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [349] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2198), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), - [sym_html_comment] = ACTIONS(5), - }, - [350] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2201), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1857), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), - [sym_html_comment] = ACTIONS(5), - }, - [351] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2204), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1858), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), - [sym_html_comment] = ACTIONS(5), - }, - [352] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [353] = { - [sym_import] = STATE(3639), + [361] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1696), [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), + [sym_expression] = STATE(2504), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), [sym_member_expression] = STATE(1457), [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5605), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2113), - [anon_sym_export] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2119), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_readonly] = ACTIONS(2115), - [anon_sym_get] = ACTIONS(2115), - [anon_sym_set] = ACTIONS(2115), - [anon_sym_declare] = ACTIONS(2115), - [anon_sym_public] = ACTIONS(2115), - [anon_sym_private] = ACTIONS(2115), - [anon_sym_protected] = ACTIONS(2115), - [anon_sym_override] = ACTIONS(2115), - [anon_sym_module] = ACTIONS(2115), - [anon_sym_any] = ACTIONS(2115), - [anon_sym_number] = ACTIONS(2115), - [anon_sym_boolean] = ACTIONS(2115), - [anon_sym_string] = ACTIONS(2115), - [anon_sym_symbol] = ACTIONS(2115), - [anon_sym_object] = ACTIONS(2115), - [sym_html_comment] = ACTIONS(5), - }, - [354] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [sym_html_comment] = ACTIONS(5), - }, - [355] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2183), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym__extends_clause_single] = STATE(4894), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), - [sym_html_comment] = ACTIONS(5), - }, - [356] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1668), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [sym_html_comment] = ACTIONS(5), - }, - [357] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1672), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [sym_html_comment] = ACTIONS(5), - }, - [358] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1680), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [sym_html_comment] = ACTIONS(5), - }, - [359] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [360] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1683), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [sym_html_comment] = ACTIONS(5), - }, - [361] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2280), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [362] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5837), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_type] = ACTIONS(1048), - [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_readonly] = ACTIONS(1048), - [anon_sym_get] = ACTIONS(1048), - [anon_sym_set] = ACTIONS(1048), - [anon_sym_declare] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_protected] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_any] = ACTIONS(1048), - [anon_sym_number] = ACTIONS(1048), - [anon_sym_boolean] = ACTIONS(1048), - [anon_sym_string] = ACTIONS(1048), - [anon_sym_symbol] = ACTIONS(1048), - [anon_sym_object] = ACTIONS(1048), - [sym_html_comment] = ACTIONS(5), - }, - [363] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2081), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), [anon_sym_export] = ACTIONS(1422), [anon_sym_type] = ACTIONS(1422), [anon_sym_namespace] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(2099), [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1422), [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(1430), [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), [anon_sym_using] = ACTIONS(1438), [anon_sym_PLUS] = ACTIONS(1444), [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1428), [anon_sym_void] = ACTIONS(1444), [anon_sym_delete] = ACTIONS(1444), [anon_sym_PLUS_PLUS] = ACTIONS(1446), [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1422), @@ -65229,89 +65105,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [364] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1668), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2085), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), + [362] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1664), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), [anon_sym_export] = ACTIONS(1422), [anon_sym_type] = ACTIONS(1422), [anon_sym_namespace] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(2099), [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1422), [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(1430), [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), [anon_sym_using] = ACTIONS(1438), [anon_sym_PLUS] = ACTIONS(1444), [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1428), [anon_sym_void] = ACTIONS(1444), [anon_sym_delete] = ACTIONS(1444), [anon_sym_PLUS_PLUS] = ACTIONS(1446), [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1422), @@ -65331,89 +65207,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1672), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2098), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), + [363] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1673), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2521), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), [anon_sym_export] = ACTIONS(1422), [anon_sym_type] = ACTIONS(1422), [anon_sym_namespace] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(2099), [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1422), [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(1430), [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), [anon_sym_using] = ACTIONS(1438), [anon_sym_PLUS] = ACTIONS(1444), [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1428), [anon_sym_void] = ACTIONS(1444), [anon_sym_delete] = ACTIONS(1444), [anon_sym_PLUS_PLUS] = ACTIONS(1446), [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1422), @@ -65433,89 +65309,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1680), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2100), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), + [364] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), [anon_sym_export] = ACTIONS(1422), [anon_sym_type] = ACTIONS(1422), [anon_sym_namespace] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(2099), [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1422), [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(1430), [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), [anon_sym_using] = ACTIONS(1438), [anon_sym_PLUS] = ACTIONS(1444), [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1428), [anon_sym_void] = ACTIONS(1444), [anon_sym_delete] = ACTIONS(1444), [anon_sym_PLUS_PLUS] = ACTIONS(1446), [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1422), @@ -65535,89 +65411,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2101), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), + [365] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1688), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), [anon_sym_export] = ACTIONS(1422), [anon_sym_type] = ACTIONS(1422), [anon_sym_namespace] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(2099), [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1422), [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(1430), [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), [anon_sym_using] = ACTIONS(1438), [anon_sym_PLUS] = ACTIONS(1444), [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1428), [anon_sym_void] = ACTIONS(1444), [anon_sym_delete] = ACTIONS(1444), [anon_sym_PLUS_PLUS] = ACTIONS(1446), [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1422), @@ -65637,89 +65513,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1683), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2102), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), + [366] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1689), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2525), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), [anon_sym_export] = ACTIONS(1422), [anon_sym_type] = ACTIONS(1422), [anon_sym_namespace] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(2099), [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1422), [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(1430), [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), [anon_sym_using] = ACTIONS(1438), [anon_sym_PLUS] = ACTIONS(1444), [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(1428), [anon_sym_void] = ACTIONS(1444), [anon_sym_delete] = ACTIONS(1444), [anon_sym_PLUS_PLUS] = ACTIONS(1446), [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1422), [anon_sym_readonly] = ACTIONS(1422), @@ -65739,803 +65615,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2183), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym__extends_clause_single] = STATE(4462), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [367] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2341), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5605), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), - [sym_html_comment] = ACTIONS(5), - }, - [370] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), - [sym_html_comment] = ACTIONS(5), - }, - [371] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1668), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1672), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2363), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [368] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1673), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1951), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1680), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [369] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_mapped_type_clause] = STATE(5880), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2115), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2123), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_override] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_object] = ACTIONS(2117), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [370] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5712), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1683), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [371] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1953), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2388), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), + [372] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1688), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1954), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), [anon_sym_export] = ACTIONS(1178), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), [anon_sym_readonly] = ACTIONS(1178), @@ -66555,89 +66227,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [377] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1668), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), + [373] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1689), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1955), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), [anon_sym_export] = ACTIONS(1178), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), [anon_sym_readonly] = ACTIONS(1178), @@ -66657,89 +66329,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [378] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1672), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), + [374] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2342), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5607), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), [anon_sym_export] = ACTIONS(1178), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), [anon_sym_readonly] = ACTIONS(1178), @@ -66759,89 +66431,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1680), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), + [375] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2343), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5609), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), [anon_sym_export] = ACTIONS(1178), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), [anon_sym_readonly] = ACTIONS(1178), @@ -66861,89 +66533,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2420), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), + [376] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2320), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5659), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), [anon_sym_export] = ACTIONS(1178), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), [anon_sym_readonly] = ACTIONS(1178), @@ -66963,89 +66635,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1683), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2421), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), + [377] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2217), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [sym_html_comment] = ACTIONS(5), + }, + [378] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2344), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5612), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), [anon_sym_export] = ACTIONS(1178), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), [anon_sym_readonly] = ACTIONS(1178), @@ -67065,1188 +66839,780 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1658), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), + [379] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2177), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2248), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1332), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1340), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), - [sym_html_comment] = ACTIONS(5), - }, - [383] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1668), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2489), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), - [sym_html_comment] = ACTIONS(5), - }, - [384] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1672), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), - [sym_html_comment] = ACTIONS(5), - }, - [385] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1680), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), - [sym_html_comment] = ACTIONS(5), - }, - [386] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1683), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), + [380] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2191), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1683), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1932), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [381] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2158), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1883), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5730), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [382] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2177), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2291), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5550), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [383] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2179), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1808), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2308), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5631), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [384] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2181), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2328), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5551), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), + [385] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2179), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1332), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1340), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2188), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5640), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [386] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2256), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5737), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -68258,17 +67624,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -68289,83 +67655,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_import] = STATE(3636), - [sym_statement_block] = STATE(2280), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2132), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [387] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2181), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -68373,208 +67739,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(3639), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [388] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2158), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), + [389] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2177), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), [anon_sym_export] = ACTIONS(1234), [anon_sym_type] = ACTIONS(1234), [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1234), [anon_sym_readonly] = ACTIONS(1234), @@ -68594,1680 +67961,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [398] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1891), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [399] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1895), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [400] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [401] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1896), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [402] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1897), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [403] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [404] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [405] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1900), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [406] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [407] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1903), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [408] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1904), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [409] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1906), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [410] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1908), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [411] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [412] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2386), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [413] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1940), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [390] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_sequence_expression] = STATE(5241), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -70293,82 +68045,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [391] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1696), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [414] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(2005), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [392] = { + [sym_import] = STATE(3688), + [sym_statement_block] = STATE(2179), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -70394,308 +68249,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [415] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1946), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [393] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1664), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [416] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1959), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [394] = { + [sym_import] = STATE(3577), + [sym_statement_block] = STATE(1673), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2597), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2553), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), + [395] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2340), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_sequence_expression] = STATE(5603), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), [anon_sym_export] = ACTIONS(1178), [anon_sym_type] = ACTIONS(1178), [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1178), [anon_sym_readonly] = ACTIONS(1178), @@ -70715,64 +68573,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [418] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [396] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [397] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1468), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5828), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5828), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1468), + [sym_subscript_expression] = STATE(1468), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5828), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1468), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2135), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2127), + [anon_sym_readonly] = ACTIONS(2127), + [anon_sym_get] = ACTIONS(2127), + [anon_sym_set] = ACTIONS(2127), + [anon_sym_declare] = ACTIONS(2127), + [anon_sym_public] = ACTIONS(2127), + [anon_sym_private] = ACTIONS(2127), + [anon_sym_protected] = ACTIONS(2127), + [anon_sym_override] = ACTIONS(2127), + [anon_sym_module] = ACTIONS(2127), + [anon_sym_any] = ACTIONS(2127), + [anon_sym_number] = ACTIONS(2127), + [anon_sym_boolean] = ACTIONS(2127), + [anon_sym_string] = ACTIONS(2127), + [anon_sym_symbol] = ACTIONS(2127), + [anon_sym_object] = ACTIONS(2127), + [sym_html_comment] = ACTIONS(5), + }, + [398] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2045), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -70789,7 +68849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2125), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), @@ -70798,82 +68858,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1943), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [399] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2047), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -70899,385 +68959,486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1944), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [400] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1907), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [401] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1908), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [402] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1911), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [422] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2041), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [403] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1915), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(2353), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [404] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2154), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -71303,890 +69464,1900 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [424] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [405] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1937), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [425] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1923), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [406] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1939), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [426] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2604), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [407] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1940), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_namespace_export] = STATE(5206), - [sym_export_clause] = STATE(4427), - [sym_declaration] = STATE(919), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_EQ] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [408] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(2161), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [409] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1941), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1894), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [410] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1942), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [411] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2171), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2135), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_type] = ACTIONS(1048), - [anon_sym_namespace] = ACTIONS(1050), + [412] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1466), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_readonly] = ACTIONS(1048), - [anon_sym_get] = ACTIONS(1048), - [anon_sym_set] = ACTIONS(1048), - [anon_sym_declare] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_protected] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_any] = ACTIONS(1048), - [anon_sym_number] = ACTIONS(1048), - [anon_sym_boolean] = ACTIONS(1048), - [anon_sym_string] = ACTIONS(1048), - [anon_sym_symbol] = ACTIONS(1048), - [anon_sym_object] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1800), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [413] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [414] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1946), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [415] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1947), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [416] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1948), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [417] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1949), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [418] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1950), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [419] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1952), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [421] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1956), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [422] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1957), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1885), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -72212,82 +71383,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(2224), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [424] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -72304,7 +71475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [sym_number] = ACTIONS(2137), [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), @@ -72313,82 +71484,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1819), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [425] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -72414,82 +71585,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [426] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2180), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -72515,183 +71686,688 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [436] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2552), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [427] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2013), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1798), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [429] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [sym_html_comment] = ACTIONS(5), + }, + [430] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [431] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1894), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [432] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3756), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3756), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1290), + [sym_subscript_expression] = STATE(1290), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3756), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1290), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2139), + [anon_sym_export] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_namespace] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_readonly] = ACTIONS(2141), + [anon_sym_get] = ACTIONS(2141), + [anon_sym_set] = ACTIONS(2141), + [anon_sym_declare] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_private] = ACTIONS(2141), + [anon_sym_protected] = ACTIONS(2141), + [anon_sym_override] = ACTIONS(2141), + [anon_sym_module] = ACTIONS(2141), + [anon_sym_any] = ACTIONS(2141), + [anon_sym_number] = ACTIONS(2141), + [anon_sym_boolean] = ACTIONS(2141), + [anon_sym_string] = ACTIONS(2141), + [anon_sym_symbol] = ACTIONS(2141), + [anon_sym_object] = ACTIONS(2141), + [sym_html_comment] = ACTIONS(5), + }, + [433] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -72717,183 +72393,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [434] = { + [sym_namespace_export] = STATE(5317), + [sym_export_clause] = STATE(4457), + [sym_declaration] = STATE(863), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [435] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1464), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5508), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5508), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1464), + [sym_subscript_expression] = STATE(1464), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5508), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1464), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2195), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2205), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [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), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [436] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -72919,86 +72696,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_namespace_export] = STATE(5206), - [sym_export_clause] = STATE(4427), - [sym_declaration] = STATE(919), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_EQ] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [437] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1831), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [438] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [439] = { + [sym_namespace_export] = STATE(5317), + [sym_export_clause] = STATE(4457), + [sym_declaration] = STATE(863), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -73012,394 +72991,899 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(2161), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_declare] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [440] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2171), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2207), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2046), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1292), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1296), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [442] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2359), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [443] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(3654), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(3654), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [sym_html_comment] = ACTIONS(5), + }, + [444] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2589), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [sym_html_comment] = ACTIONS(5), + }, + [445] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1858), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [446] = { + [sym_namespace_export] = STATE(5317), + [sym_export_clause] = STATE(4457), + [sym_declaration] = STATE(863), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [447] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1278), - [sym_subscript_expression] = STATE(1278), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3654), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1278), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2175), - [anon_sym_export] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_readonly] = ACTIONS(2177), - [anon_sym_get] = ACTIONS(2177), - [anon_sym_set] = ACTIONS(2177), - [anon_sym_declare] = ACTIONS(2177), - [anon_sym_public] = ACTIONS(2177), - [anon_sym_private] = ACTIONS(2177), - [anon_sym_protected] = ACTIONS(2177), - [anon_sym_override] = ACTIONS(2177), - [anon_sym_module] = ACTIONS(2177), - [anon_sym_any] = ACTIONS(2177), - [anon_sym_number] = ACTIONS(2177), - [anon_sym_boolean] = ACTIONS(2177), - [anon_sym_string] = ACTIONS(2177), - [anon_sym_symbol] = ACTIONS(2177), - [anon_sym_object] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [448] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -73411,17 +73895,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2187), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -73442,267 +73926,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2187), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), - [sym_html_comment] = ACTIONS(5), - }, - [446] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [447] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [449] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2496), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -73714,17 +73996,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -73745,65 +74027,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2371), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [450] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -73815,17 +74097,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2211), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -73846,65 +74128,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [451] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2211), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), + [sym_html_comment] = ACTIONS(5), + }, + [452] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -73916,17 +74299,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2189), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2213), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -73947,183 +74330,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1471), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5758), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5758), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [453] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1469), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5551), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5551), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1471), - [sym_subscript_expression] = STATE(1471), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5758), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1471), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2191), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1469), + [sym_subscript_expression] = STATE(1469), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5551), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1469), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2201), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2225), [anon_sym_AT] = ACTIONS(97), - [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_static] = ACTIONS(2217), + [anon_sym_readonly] = ACTIONS(2217), + [anon_sym_get] = ACTIONS(2217), + [anon_sym_set] = ACTIONS(2217), + [anon_sym_declare] = ACTIONS(2217), + [anon_sym_public] = ACTIONS(2217), + [anon_sym_private] = ACTIONS(2217), + [anon_sym_protected] = ACTIONS(2217), + [anon_sym_override] = ACTIONS(2217), + [anon_sym_module] = ACTIONS(2217), + [anon_sym_any] = ACTIONS(2217), + [anon_sym_number] = ACTIONS(2217), + [anon_sym_boolean] = ACTIONS(2217), + [anon_sym_string] = ACTIONS(2217), + [anon_sym_symbol] = ACTIONS(2217), + [anon_sym_object] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [454] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -74131,100 +74514,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2131), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [455] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2225), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -74232,302 +74615,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1802), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [456] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2227), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2133), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [457] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [458] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2229), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -74535,100 +74918,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2139), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [459] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(3940), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(3940), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(3940), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1365), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1080), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2229), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2231), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), + [sym_html_comment] = ACTIONS(5), + }, + [460] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -74636,82 +75120,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [461] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -74737,100 +75221,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2141), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [462] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2232), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -74838,201 +75322,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [459] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2588), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [463] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2594), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [460] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2143), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [464] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2234), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75040,100 +75524,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [461] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2145), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [465] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75141,100 +75625,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [462] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [466] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75242,100 +75726,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [463] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2147), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [467] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2238), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75343,100 +75827,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [464] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2148), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [468] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75444,100 +75928,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2149), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [469] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75545,100 +76029,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2150), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [470] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75646,100 +76130,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2151), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [471] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75747,100 +76231,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2152), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [472] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2243), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75848,100 +76332,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2153), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [473] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2244), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75949,100 +76433,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2154), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [474] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -76050,100 +76534,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2156), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [475] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -76151,504 +76635,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [476] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), - [sym_html_comment] = ACTIONS(5), - }, - [473] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [474] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [477] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2251), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2161), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [478] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2252), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -76656,100 +76938,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2162), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [479] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -76757,285 +77039,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [480] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1395), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1395), + [sym_subscript_expression] = STATE(1395), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3038), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1395), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(401), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), + [anon_sym_typeof] = ACTIONS(766), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(746), + [anon_sym_yield] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), + [anon_sym_using] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_DASH] = ACTIONS(766), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_void] = ACTIONS(766), + [anon_sym_delete] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(768), + [anon_sym_DASH_DASH] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2207), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1488), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [479] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2312), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [481] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -77047,17 +77228,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -77078,82 +77259,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2167), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [482] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2576), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [483] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [484] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -77161,82 +77544,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [485] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2358), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -77262,184 +77645,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [486] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [487] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -77451,17 +77834,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -77482,65 +77865,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1741), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [488] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -77552,17 +77935,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -77583,166 +77966,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1468), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5658), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5658), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1468), - [sym_subscript_expression] = STATE(1468), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5658), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1468), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_namespace] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2211), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [487] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1743), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [489] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -77754,17 +78036,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -77785,65 +78067,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1744), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [490] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -77855,17 +78137,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -77886,65 +78168,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [491] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -77956,17 +78238,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -77987,65 +78269,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [492] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78057,17 +78339,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78088,65 +78370,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [493] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78158,17 +78440,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78189,65 +78471,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [494] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78259,17 +78541,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78290,65 +78572,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [495] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78360,17 +78642,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78391,65 +78673,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [496] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78461,17 +78743,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78492,65 +78774,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [497] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1729), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78562,17 +78844,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78593,65 +78875,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1752), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [498] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1731), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78663,17 +78945,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78694,65 +78976,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [497] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [499] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1736), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78764,17 +79046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78795,65 +79077,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1754), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [500] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1737), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78865,17 +79147,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78896,65 +79178,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [501] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1743), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -78966,17 +79248,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -78997,65 +79279,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [502] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -79067,17 +79349,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -79098,65 +79380,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [503] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1745), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -79168,17 +79450,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -79199,65 +79481,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [504] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1752), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -79269,17 +79551,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -79300,65 +79582,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [505] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -79370,17 +79652,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -79401,166 +79683,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [505] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), + [506] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -79572,17 +79753,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -79603,65 +79784,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), + [507] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -79673,17 +79854,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -79704,82 +79885,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [508] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1865), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [509] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1332), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -79787,83 +80069,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1765), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [510] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -79875,17 +80157,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -79906,65 +80188,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [511] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [512] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -79976,17 +80359,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -80007,65 +80390,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [513] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1732), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -80077,17 +80460,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -80108,65 +80491,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [514] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -80178,17 +80561,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2171), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2209), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -80209,183 +80592,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3639), + [515] = { + [sym_import] = STATE(3577), [sym_parenthesized_expression] = STATE(1466), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5708), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5708), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5652), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5652), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), [sym_member_expression] = STATE(1466), [sym_subscript_expression] = STATE(1466), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5708), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5652), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), [sym_non_null_expression] = STATE(1466), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2215), - [anon_sym_export] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_namespace] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2243), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_readonly] = ACTIONS(2217), - [anon_sym_get] = ACTIONS(2217), - [anon_sym_set] = ACTIONS(2217), - [anon_sym_declare] = ACTIONS(2217), - [anon_sym_public] = ACTIONS(2217), - [anon_sym_private] = ACTIONS(2217), - [anon_sym_protected] = ACTIONS(2217), - [anon_sym_override] = ACTIONS(2217), - [anon_sym_module] = ACTIONS(2217), - [anon_sym_any] = ACTIONS(2217), - [anon_sym_number] = ACTIONS(2217), - [anon_sym_boolean] = ACTIONS(2217), - [anon_sym_string] = ACTIONS(2217), - [anon_sym_symbol] = ACTIONS(2217), - [anon_sym_object] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_override] = ACTIONS(2235), + [anon_sym_module] = ACTIONS(2235), + [anon_sym_any] = ACTIONS(2235), + [anon_sym_number] = ACTIONS(2235), + [anon_sym_boolean] = ACTIONS(2235), + [anon_sym_string] = ACTIONS(2235), + [anon_sym_symbol] = ACTIONS(2235), + [anon_sym_object] = ACTIONS(2235), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1835), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [516] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -80393,201 +80776,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [517] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1863), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [518] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -80595,100 +80978,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [519] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -80696,100 +81079,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1840), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [520] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1879), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -80797,100 +81180,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [521] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2592), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [522] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1838), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -80898,201 +81382,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), - [sym_html_comment] = ACTIONS(5), - }, - [519] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2572), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [523] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -81100,100 +81483,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [524] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -81201,100 +81584,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [525] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1867), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -81302,100 +81685,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [526] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1815), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -81403,100 +81786,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [527] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1835), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -81504,100 +81887,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [528] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1870), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -81605,201 +81988,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [529] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1788), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1850), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [530] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1795), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -81807,100 +82190,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [531] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -81908,201 +82291,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), - [sym_html_comment] = ACTIONS(5), - }, - [529] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [532] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1869), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -82110,100 +82392,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [533] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -82211,201 +82493,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [534] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1859), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [535] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -82413,100 +82695,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [536] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -82514,83 +82796,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [537] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -82602,17 +82884,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2173), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2207), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -82633,183 +82915,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [537] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [538] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -82817,2530 +82998,2631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), - [sym_html_comment] = ACTIONS(5), - }, - [538] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [539] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [540] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2585), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2587), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [542] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2612), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [543] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2532), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2613), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [544] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [545] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2618), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [546] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2535), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2542), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [547] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2579), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [548] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2537), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [549] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2539), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2578), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [551] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2540), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2582), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [552] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2541), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [553] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2542), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2588), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [554] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2590), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [555] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [556] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2596), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [557] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [558] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2125), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [559] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [560] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [561] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1213), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5522), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5522), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [562] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2571), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1213), - [sym_subscript_expression] = STATE(1213), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5522), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1213), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_type] = ACTIONS(804), - [anon_sym_namespace] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(804), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(818), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(822), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(804), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), - [anon_sym_declare] = ACTIONS(804), - [anon_sym_public] = ACTIONS(804), - [anon_sym_private] = ACTIONS(804), - [anon_sym_protected] = ACTIONS(804), - [anon_sym_override] = ACTIONS(804), - [anon_sym_module] = ACTIONS(804), - [anon_sym_any] = ACTIONS(804), - [anon_sym_number] = ACTIONS(804), - [anon_sym_boolean] = ACTIONS(804), - [anon_sym_string] = ACTIONS(804), - [anon_sym_symbol] = ACTIONS(804), - [anon_sym_object] = ACTIONS(804), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1498), + [563] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [564] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1474), [anon_sym_export] = ACTIONS(1270), [anon_sym_type] = ACTIONS(1270), [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1504), + [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1270), [anon_sym_readonly] = ACTIONS(1270), @@ -85360,290 +85642,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2106), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2171), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), - [sym_html_comment] = ACTIONS(5), - }, - [564] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1465), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5867), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5867), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1465), - [sym_subscript_expression] = STATE(1465), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5867), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1465), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2235), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [sym_html_comment] = ACTIONS(5), - }, [565] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), [anon_sym_export] = ACTIONS(1234), [anon_sym_type] = ACTIONS(1234), [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1234), [anon_sym_readonly] = ACTIONS(1234), @@ -85664,1982 +85744,2386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [566] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2080), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [567] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2082), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [568] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2083), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [569] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2084), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [570] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2086), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2118), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [571] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2087), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1465), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5866), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5866), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1465), + [sym_subscript_expression] = STATE(1465), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5866), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1465), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2245), + [anon_sym_export] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_namespace] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2255), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_readonly] = ACTIONS(2247), + [anon_sym_get] = ACTIONS(2247), + [anon_sym_set] = ACTIONS(2247), + [anon_sym_declare] = ACTIONS(2247), + [anon_sym_public] = ACTIONS(2247), + [anon_sym_private] = ACTIONS(2247), + [anon_sym_protected] = ACTIONS(2247), + [anon_sym_override] = ACTIONS(2247), + [anon_sym_module] = ACTIONS(2247), + [anon_sym_any] = ACTIONS(2247), + [anon_sym_number] = ACTIONS(2247), + [anon_sym_boolean] = ACTIONS(2247), + [anon_sym_string] = ACTIONS(2247), + [anon_sym_symbol] = ACTIONS(2247), + [anon_sym_object] = ACTIONS(2247), [sym_html_comment] = ACTIONS(5), }, [572] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2088), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2615), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, [573] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2089), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2092), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [574] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2090), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [575] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2091), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2095), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [576] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2092), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2096), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [577] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2093), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [578] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2094), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2099), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [579] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2095), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2100), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [580] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2096), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2101), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [581] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2097), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2102), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [582] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2099), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2103), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [583] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2103), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2104), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [584] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [585] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [586] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2107), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [587] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2108), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [588] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2109), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [589] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -87665,82 +88149,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [590] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2111), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [591] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2115), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [592] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2116), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [sym_html_comment] = ACTIONS(5), + }, + [593] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1882), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -87766,813 +88553,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2105), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [594] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2117), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2106), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [595] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2118), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2107), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [596] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2119), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), - [sym_html_comment] = ACTIONS(5), - }, - [590] = { - [sym_namespace_export] = STATE(5206), - [sym_export_clause] = STATE(4427), - [sym_declaration] = STATE(919), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_EQ] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(2161), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [597] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2171), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5615), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5615), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [598] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1470), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5665), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5665), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5615), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1464), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2239), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2247), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1470), + [sym_subscript_expression] = STATE(1470), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5665), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1470), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2257), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_namespace] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2249), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2267), [anon_sym_AT] = ACTIONS(97), - [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_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), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2589), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [599] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2544), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), + [600] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2091), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), [anon_sym_export] = ACTIONS(1234), [anon_sym_type] = ACTIONS(1234), [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1234), [anon_sym_readonly] = ACTIONS(1234), @@ -88592,1680 +89278,1781 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [601] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2378), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [602] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2380), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [603] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2381), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [604] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2481), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [605] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2384), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [606] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2385), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [607] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [608] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2387), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [609] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [610] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [611] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2390), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [612] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2360), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [613] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [614] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [615] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [616] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [611] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [617] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2397), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [618] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(1852), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1234), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1246), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1472), [anon_sym_using] = ACTIONS(75), @@ -90291,107 +91078,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1234), [anon_sym_readonly] = ACTIONS(1234), [anon_sym_get] = ACTIONS(1234), @@ -90410,6142 +91096,5637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [613] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [619] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2401), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [620] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [621] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [616] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [622] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [623] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2171), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [618] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1469), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5783), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5783), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [624] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1467), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5826), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5826), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1469), - [sym_subscript_expression] = STATE(1469), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5783), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1469), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1467), + [sym_subscript_expression] = STATE(1467), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5826), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1467), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2269), + [anon_sym_export] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2275), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2261), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2279), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_readonly] = ACTIONS(2253), - [anon_sym_get] = ACTIONS(2253), - [anon_sym_set] = ACTIONS(2253), - [anon_sym_declare] = ACTIONS(2253), - [anon_sym_public] = ACTIONS(2253), - [anon_sym_private] = ACTIONS(2253), - [anon_sym_protected] = ACTIONS(2253), - [anon_sym_override] = ACTIONS(2253), - [anon_sym_module] = ACTIONS(2253), - [anon_sym_any] = ACTIONS(2253), - [anon_sym_number] = ACTIONS(2253), - [anon_sym_boolean] = ACTIONS(2253), - [anon_sym_string] = ACTIONS(2253), - [anon_sym_symbol] = ACTIONS(2253), - [anon_sym_object] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_readonly] = ACTIONS(2271), + [anon_sym_get] = ACTIONS(2271), + [anon_sym_set] = ACTIONS(2271), + [anon_sym_declare] = ACTIONS(2271), + [anon_sym_public] = ACTIONS(2271), + [anon_sym_private] = ACTIONS(2271), + [anon_sym_protected] = ACTIONS(2271), + [anon_sym_override] = ACTIONS(2271), + [anon_sym_module] = ACTIONS(2271), + [anon_sym_any] = ACTIONS(2271), + [anon_sym_number] = ACTIONS(2271), + [anon_sym_boolean] = ACTIONS(2271), + [anon_sym_string] = ACTIONS(2271), + [anon_sym_symbol] = ACTIONS(2271), + [anon_sym_object] = ACTIONS(2271), [sym_html_comment] = ACTIONS(5), }, - [619] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2590), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [625] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2554), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, - [620] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [626] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [621] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2389), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [627] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2407), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2390), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [628] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2408), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2391), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [629] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2409), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [624] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2393), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [630] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [631] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2412), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [632] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [633] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2399), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [634] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [635] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [636] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2403), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [637] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [638] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2409), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [639] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [640] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [641] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), - [sym_html_comment] = ACTIONS(5), - }, - [636] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1922), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [642] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), - [sym_html_comment] = ACTIONS(5), - }, - [638] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1976), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), - [sym_html_comment] = ACTIONS(5), - }, - [639] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [643] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2428), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [644] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2429), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2426), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [645] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), - [sym_html_comment] = ACTIONS(5), - }, - [643] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1872), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [646] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [645] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [647] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1470), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [648] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1473), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1470), - [sym_subscript_expression] = STATE(1470), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1470), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2263), - [anon_sym_export] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1473), + [sym_subscript_expression] = STATE(1473), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1473), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2283), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2287), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2273), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_readonly] = ACTIONS(2265), - [anon_sym_get] = ACTIONS(2265), - [anon_sym_set] = ACTIONS(2265), - [anon_sym_declare] = ACTIONS(2265), - [anon_sym_public] = ACTIONS(2265), - [anon_sym_private] = ACTIONS(2265), - [anon_sym_protected] = ACTIONS(2265), - [anon_sym_override] = ACTIONS(2265), - [anon_sym_module] = ACTIONS(2265), - [anon_sym_any] = ACTIONS(2265), - [anon_sym_number] = ACTIONS(2265), - [anon_sym_boolean] = ACTIONS(2265), - [anon_sym_string] = ACTIONS(2265), - [anon_sym_symbol] = ACTIONS(2265), - [anon_sym_object] = ACTIONS(2265), - [sym_html_comment] = ACTIONS(5), - }, - [647] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2484), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), - [sym_html_comment] = ACTIONS(5), - }, - [648] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2291), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_get] = ACTIONS(2283), + [anon_sym_set] = ACTIONS(2283), + [anon_sym_declare] = ACTIONS(2283), + [anon_sym_public] = ACTIONS(2283), + [anon_sym_private] = ACTIONS(2283), + [anon_sym_protected] = ACTIONS(2283), + [anon_sym_override] = ACTIONS(2283), + [anon_sym_module] = ACTIONS(2283), + [anon_sym_any] = ACTIONS(2283), + [anon_sym_number] = ACTIONS(2283), + [anon_sym_boolean] = ACTIONS(2283), + [anon_sym_string] = ACTIONS(2283), + [anon_sym_symbol] = ACTIONS(2283), + [anon_sym_object] = ACTIONS(2283), [sym_html_comment] = ACTIONS(5), }, [649] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2487), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, [650] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2488), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2503), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [651] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [652] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [653] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [654] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2493), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [655] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [656] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2495), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), - [sym_html_comment] = ACTIONS(5), - }, - [657] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [sym_html_comment] = ACTIONS(5), + }, + [657] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [658] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [659] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [660] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [661] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2500), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2516), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [662] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2501), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2518), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1362), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5492), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5492), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5821), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1362), - [sym_subscript_expression] = STATE(1362), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3025), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5492), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1362), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(428), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_namespace] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(77), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_readonly] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_protected] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_module] = ACTIONS(1352), - [anon_sym_any] = ACTIONS(1352), - [anon_sym_number] = ACTIONS(1352), - [anon_sym_boolean] = ACTIONS(1352), - [anon_sym_string] = ACTIONS(1352), - [anon_sym_symbol] = ACTIONS(1352), - [anon_sym_object] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [666] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2522), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [667] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2515), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2528), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1473), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5541), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5541), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1473), - [sym_subscript_expression] = STATE(1473), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5541), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1473), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2275), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_namespace] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2283), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_SLASH] = ACTIONS(577), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_readonly] = ACTIONS(2277), - [anon_sym_get] = ACTIONS(2277), - [anon_sym_set] = ACTIONS(2277), - [anon_sym_declare] = ACTIONS(2277), - [anon_sym_public] = ACTIONS(2277), - [anon_sym_private] = ACTIONS(2277), - [anon_sym_protected] = ACTIONS(2277), - [anon_sym_override] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_any] = ACTIONS(2277), - [anon_sym_number] = ACTIONS(2277), - [anon_sym_boolean] = ACTIONS(2277), - [anon_sym_string] = ACTIONS(2277), - [anon_sym_symbol] = ACTIONS(2277), - [anon_sym_object] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1048), - [anon_sym_type] = ACTIONS(1048), - [anon_sym_namespace] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(2293), + [anon_sym_export] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2295), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1466), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2303), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_readonly] = ACTIONS(1048), - [anon_sym_get] = ACTIONS(1048), - [anon_sym_set] = ACTIONS(1048), - [anon_sym_declare] = ACTIONS(1048), - [anon_sym_public] = ACTIONS(1048), - [anon_sym_private] = ACTIONS(1048), - [anon_sym_protected] = ACTIONS(1048), - [anon_sym_override] = ACTIONS(1048), - [anon_sym_module] = ACTIONS(1048), - [anon_sym_any] = ACTIONS(1048), - [anon_sym_number] = ACTIONS(1048), - [anon_sym_boolean] = ACTIONS(1048), - [anon_sym_string] = ACTIONS(1048), - [anon_sym_symbol] = ACTIONS(1048), - [anon_sym_object] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_readonly] = ACTIONS(2295), + [anon_sym_get] = ACTIONS(2295), + [anon_sym_set] = ACTIONS(2295), + [anon_sym_declare] = ACTIONS(2295), + [anon_sym_public] = ACTIONS(2295), + [anon_sym_private] = ACTIONS(2295), + [anon_sym_protected] = ACTIONS(2295), + [anon_sym_override] = ACTIONS(2295), + [anon_sym_module] = ACTIONS(2295), + [anon_sym_any] = ACTIONS(2295), + [anon_sym_number] = ACTIONS(2295), + [anon_sym_boolean] = ACTIONS(2295), + [anon_sym_string] = ACTIONS(2295), + [anon_sym_symbol] = ACTIONS(2295), + [anon_sym_object] = ACTIONS(2295), [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2559), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), + [sym_html_comment] = ACTIONS(5), + }, + [674] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -96553,100 +96734,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2240), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [675] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2290), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -96654,100 +96835,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1410), - [sym_expression] = STATE(2242), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5580), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5580), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5466), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1410), - [sym_subscript_expression] = STATE(1410), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3004), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5580), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1410), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(452), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [676] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1409), + [sym_expression] = STATE(2292), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5619), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5619), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5617), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3037), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5619), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1409), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(455), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1332), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1314), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1322), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1502), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_void] = ACTIONS(1332), + [anon_sym_delete] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1306), + [sym_private_property_identifier] = ACTIONS(1340), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -96755,83 +96936,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1504), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_readonly] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_declare] = ACTIONS(1270), - [anon_sym_public] = ACTIONS(1270), - [anon_sym_private] = ACTIONS(1270), - [anon_sym_protected] = ACTIONS(1270), - [anon_sym_override] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_any] = ACTIONS(1270), - [anon_sym_number] = ACTIONS(1270), - [anon_sym_boolean] = ACTIONS(1270), - [anon_sym_string] = ACTIONS(1270), - [anon_sym_symbol] = ACTIONS(1270), - [anon_sym_object] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_readonly] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_override] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [anon_sym_object] = ACTIONS(1306), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5698), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5698), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5698), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1322), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [677] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2043), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [sym_html_comment] = ACTIONS(5), + }, + [678] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), + [sym_html_comment] = ACTIONS(5), + }, + [679] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1308), + [sym_expression] = STATE(1735), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5738), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5738), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5902), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2968), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5738), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1308), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(487), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(1456), [anon_sym_export] = ACTIONS(1048), [anon_sym_type] = ACTIONS(1048), [anon_sym_namespace] = ACTIONS(1050), [anon_sym_LBRACE] = ACTIONS(838), [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1048), [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(802), [anon_sym_await] = ACTIONS(555), [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(1464), [anon_sym_using] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(581), @@ -96843,17 +97226,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(581), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1466), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1048), @@ -96874,284 +97257,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1322), - [sym_expression] = STATE(2312), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(4276), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(4276), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5508), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1363), - [sym_subscript_expression] = STATE(1363), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3003), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4276), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1363), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(484), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(1216), - [anon_sym_type] = ACTIONS(1216), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(581), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_using] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(581), - [anon_sym_DASH] = ACTIONS(581), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_void] = ACTIONS(581), - [anon_sym_delete] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(585), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2291), - [anon_sym_AT] = ACTIONS(97), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [678] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5827), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5529), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2979), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(647), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_type] = ACTIONS(1074), - [anon_sym_namespace] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1090), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_using] = ACTIONS(1094), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), + [680] = { + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5568), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5867), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(650), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), [anon_sym_SLASH] = ACTIONS(958), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1100), - [anon_sym_delete] = ACTIONS(1100), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(2171), - [sym_private_property_identifier] = ACTIONS(1108), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(2209), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1512), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1074), - [anon_sym_readonly] = ACTIONS(1074), - [anon_sym_get] = ACTIONS(1074), - [anon_sym_set] = ACTIONS(1074), - [anon_sym_declare] = ACTIONS(1074), - [anon_sym_public] = ACTIONS(1074), - [anon_sym_private] = ACTIONS(1074), - [anon_sym_protected] = ACTIONS(1074), - [anon_sym_override] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_any] = ACTIONS(1074), - [anon_sym_number] = ACTIONS(1074), - [anon_sym_boolean] = ACTIONS(1074), - [anon_sym_string] = ACTIONS(1074), - [anon_sym_symbol] = ACTIONS(1074), - [anon_sym_object] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [681] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -97159,100 +97441,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [680] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1874), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), + [682] = { + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5813), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5813), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5811), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3064), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5813), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1376), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(516), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1292), [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1282), [anon_sym_function] = ACTIONS(680), [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(878), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_void] = ACTIONS(1292), + [anon_sym_delete] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), + [sym_private_property_identifier] = ACTIONS(1296), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -97260,308 +97542,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1480), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), - [sym_html_comment] = ACTIONS(5), - }, - [681] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1387), - [sym_expression] = STATE(2109), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5803), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5803), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5585), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3009), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5803), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1387), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(566), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1490), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_namespace] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_delete] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1448), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_declare] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_protected] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), - [anon_sym_object] = ACTIONS(1422), - [sym_html_comment] = ACTIONS(5), - }, - [682] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5544), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5544), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5558), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2980), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5544), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1398), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(638), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_namespace] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_using] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_void] = ACTIONS(756), - [anon_sym_delete] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(764), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_readonly] = ACTIONS(1158), - [anon_sym_get] = ACTIONS(1158), - [anon_sym_set] = ACTIONS(1158), - [anon_sym_declare] = ACTIONS(1158), - [anon_sym_public] = ACTIONS(1158), - [anon_sym_private] = ACTIONS(1158), - [anon_sym_protected] = ACTIONS(1158), - [anon_sym_override] = ACTIONS(1158), - [anon_sym_module] = ACTIONS(1158), - [anon_sym_any] = ACTIONS(1158), - [anon_sym_number] = ACTIONS(1158), - [anon_sym_boolean] = ACTIONS(1158), - [anon_sym_string] = ACTIONS(1158), - [anon_sym_symbol] = ACTIONS(1158), - [anon_sym_object] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [683] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2407), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), + [sym_import] = STATE(3688), + [sym_parenthesized_expression] = STATE(1353), + [sym_expression] = STATE(2044), + [sym_primary_expression] = STATE(1864), + [sym_yield_expression] = STATE(2367), + [sym_object] = STATE(2280), + [sym_object_pattern] = STATE(5904), + [sym_array] = STATE(2280), + [sym_array_pattern] = STATE(5904), + [sym_class] = STATE(2280), + [sym_function_expression] = STATE(2280), + [sym_generator_function] = STATE(2280), + [sym_arrow_function] = STATE(2280), + [sym__call_signature] = STATE(5514), + [sym_call_expression] = STATE(2280), + [sym_new_expression] = STATE(1913), + [sym_await_expression] = STATE(2367), + [sym_member_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_assignment_expression] = STATE(2367), + [sym__augmented_assignment_lhs] = STATE(3021), + [sym_augmented_assignment_expression] = STATE(2367), + [sym__destructuring_pattern] = STATE(5904), + [sym_ternary_expression] = STATE(2367), + [sym_binary_expression] = STATE(2367), + [sym_unary_expression] = STATE(2367), + [sym_update_expression] = STATE(2367), + [sym_string] = STATE(2280), + [sym_template_string] = STATE(2280), + [sym_regex] = STATE(2280), + [sym_meta_property] = STATE(2280), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1353), + [sym_type_assertion] = STATE(2367), + [sym_as_expression] = STATE(2367), + [sym_satisfies_expression] = STATE(2367), + [sym_instantiation_expression] = STATE(2367), + [sym_internal_module] = STATE(2367), + [sym_type_arguments] = STATE(423), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(1468), [anon_sym_export] = ACTIONS(1234), [anon_sym_type] = ACTIONS(1234), [anon_sym_namespace] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(669), [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1234), [anon_sym_readonly] = ACTIONS(1234), @@ -97582,389 +97662,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [684] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5823), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5823), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5477), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5823), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(620), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_namespace] = ACTIONS(1180), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2121), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5843), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5843), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5642), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2998), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5843), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(573), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_using] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(942), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1206), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1528), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1496), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_readonly] = ACTIONS(1178), - [anon_sym_get] = ACTIONS(1178), - [anon_sym_set] = ACTIONS(1178), - [anon_sym_declare] = ACTIONS(1178), - [anon_sym_public] = ACTIONS(1178), - [anon_sym_private] = ACTIONS(1178), - [anon_sym_protected] = ACTIONS(1178), - [anon_sym_override] = ACTIONS(1178), - [anon_sym_module] = ACTIONS(1178), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_object] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [685] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1467), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1467), - [sym_subscript_expression] = STATE(1467), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1467), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(2293), - [anon_sym_export] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), - [anon_sym_PLUS_PLUS] = ACTIONS(686), - [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2303), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_readonly] = ACTIONS(2295), - [anon_sym_get] = ACTIONS(2295), - [anon_sym_set] = ACTIONS(2295), - [anon_sym_declare] = ACTIONS(2295), - [anon_sym_public] = ACTIONS(2295), - [anon_sym_private] = ACTIONS(2295), - [anon_sym_protected] = ACTIONS(2295), - [anon_sym_override] = ACTIONS(2295), - [anon_sym_module] = ACTIONS(2295), - [anon_sym_any] = ACTIONS(2295), - [anon_sym_number] = ACTIONS(2295), - [anon_sym_boolean] = ACTIONS(2295), - [anon_sym_string] = ACTIONS(2295), - [anon_sym_symbol] = ACTIONS(2295), - [anon_sym_object] = ACTIONS(2295), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, [686] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2601), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5863), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5516), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3016), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_namespace] = ACTIONS(1200), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_void] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1224), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1528), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_readonly] = ACTIONS(1198), + [anon_sym_get] = ACTIONS(1198), + [anon_sym_set] = ACTIONS(1198), + [anon_sym_declare] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_protected] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_module] = ACTIONS(1198), + [anon_sym_any] = ACTIONS(1198), + [anon_sym_number] = ACTIONS(1198), + [anon_sym_boolean] = ACTIONS(1198), + [anon_sym_string] = ACTIONS(1198), + [anon_sym_symbol] = ACTIONS(1198), + [anon_sym_object] = ACTIONS(1198), [sym_html_comment] = ACTIONS(5), }, [687] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1472), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5788), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5788), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1471), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5649), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5649), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), [sym__call_signature] = STATE(5800), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1472), - [sym_subscript_expression] = STATE(1472), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3013), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5788), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1472), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1471), + [sym_subscript_expression] = STATE(1471), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5649), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1471), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), [sym_identifier] = ACTIONS(2305), [anon_sym_export] = ACTIONS(2307), [anon_sym_type] = ACTIONS(2307), [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_typeof] = ACTIONS(179), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_class] = ACTIONS(146), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), [anon_sym_async] = ACTIONS(2311), - [anon_sym_function] = ACTIONS(150), + [anon_sym_function] = ACTIONS(149), [anon_sym_new] = ACTIONS(2313), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(175), - [anon_sym_void] = ACTIONS(179), - [anon_sym_delete] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), [anon_sym_PLUS_PLUS] = ACTIONS(686), [anon_sym_DASH_DASH] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(2315), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(2307), @@ -97986,216 +98066,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [688] = { - [sym_import] = STATE(3639), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2606), - [sym_primary_expression] = STATE(1515), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1687), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1687), - [sym_array_pattern] = STATE(5815), - [sym_class] = STATE(1687), - [sym_function_expression] = STATE(1687), - [sym_generator_function] = STATE(1687), - [sym_arrow_function] = STATE(1687), - [sym__call_signature] = STATE(5755), - [sym_call_expression] = STATE(1687), - [sym_new_expression] = STATE(1648), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3029), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1687), - [sym_template_string] = STATE(1687), - [sym_regex] = STATE(1687), - [sym_meta_property] = STATE(1687), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1456), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(594), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4429), - [sym_identifier] = ACTIONS(1506), - [anon_sym_export] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_namespace] = ACTIONS(1236), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1453), + [sym_expression] = STATE(2569), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5855), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5855), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5786), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1453), + [sym_subscript_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(3008), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5855), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1453), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(601), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_namespace] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_typeof] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), + [anon_sym_typeof] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), [anon_sym_LBRACK] = ACTIONS(840), - [anon_sym_class] = ACTIONS(146), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_function] = ACTIONS(150), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_using] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1256), - [anon_sym_delete] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(1148), + [anon_sym_void] = ACTIONS(1164), + [anon_sym_delete] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_number] = ACTIONS(714), - [sym_private_property_identifier] = ACTIONS(1260), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1512), + [sym_private_property_identifier] = ACTIONS(1168), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1520), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_readonly] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_declare] = ACTIONS(1234), - [anon_sym_public] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_protected] = ACTIONS(1234), - [anon_sym_override] = ACTIONS(1234), - [anon_sym_module] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_number] = ACTIONS(1234), - [anon_sym_boolean] = ACTIONS(1234), - [anon_sym_string] = ACTIONS(1234), - [anon_sym_symbol] = ACTIONS(1234), - [anon_sym_object] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_readonly] = ACTIONS(1140), + [anon_sym_get] = ACTIONS(1140), + [anon_sym_set] = ACTIONS(1140), + [anon_sym_declare] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_override] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), + [anon_sym_object] = ACTIONS(1140), [sym_html_comment] = ACTIONS(5), }, [689] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1810), - [sym_yield_expression] = STATE(2358), - [sym_object] = STATE(2222), - [sym_object_pattern] = STATE(5773), - [sym_array] = STATE(2222), - [sym_array_pattern] = STATE(5773), - [sym_class] = STATE(2222), - [sym_function_expression] = STATE(2222), - [sym_generator_function] = STATE(2222), - [sym_arrow_function] = STATE(2222), - [sym__call_signature] = STATE(5771), - [sym_call_expression] = STATE(2222), - [sym_new_expression] = STATE(1948), - [sym_await_expression] = STATE(2358), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2358), - [sym__augmented_assignment_lhs] = STATE(3020), - [sym_augmented_assignment_expression] = STATE(2358), - [sym__destructuring_pattern] = STATE(5773), - [sym_ternary_expression] = STATE(2358), - [sym_binary_expression] = STATE(2358), - [sym_unary_expression] = STATE(2358), - [sym_update_expression] = STATE(2358), - [sym_string] = STATE(2222), - [sym_template_string] = STATE(2222), - [sym_regex] = STATE(2222), - [sym_meta_property] = STATE(2222), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3806), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2358), - [sym_as_expression] = STATE(2358), - [sym_satisfies_expression] = STATE(2358), - [sym_instantiation_expression] = STATE(2358), - [sym_internal_module] = STATE(2358), - [sym_type_arguments] = STATE(513), - [sym_type_parameters] = STATE(5328), - [aux_sym_export_statement_repeat1] = STATE(4408), - [sym_identifier] = ACTIONS(1474), - [anon_sym_export] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_namespace] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(669), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_class] = ACTIONS(676), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(680), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(876), + [sym_import] = STATE(3577), + [sym_parenthesized_expression] = STATE(1217), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1531), + [sym_yield_expression] = STATE(1726), + [sym_object] = STATE(1701), + [sym_object_pattern] = STATE(5864), + [sym_array] = STATE(1701), + [sym_array_pattern] = STATE(5864), + [sym_class] = STATE(1701), + [sym_function_expression] = STATE(1701), + [sym_generator_function] = STATE(1701), + [sym_arrow_function] = STATE(1701), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1701), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1726), + [sym_member_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1726), + [sym__augmented_assignment_lhs] = STATE(2985), + [sym_augmented_assignment_expression] = STATE(1726), + [sym__destructuring_pattern] = STATE(5864), + [sym_ternary_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_unary_expression] = STATE(1726), + [sym_update_expression] = STATE(1726), + [sym_string] = STATE(1701), + [sym_template_string] = STATE(1701), + [sym_regex] = STATE(1701), + [sym_meta_property] = STATE(1701), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3860), + [sym_non_null_expression] = STATE(1217), + [sym_type_assertion] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_satisfies_expression] = STATE(1726), + [sym_instantiation_expression] = STATE(1726), + [sym_internal_module] = STATE(1726), + [sym_type_arguments] = STATE(540), + [sym_type_parameters] = STATE(5217), + [aux_sym_export_statement_repeat1] = STATE(4459), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(796), + [anon_sym_type] = ACTIONS(796), + [anon_sym_namespace] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_typeof] = ACTIONS(178), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_class] = ACTIONS(145), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(149), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_LT] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(178), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1412), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(814), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_declare] = ACTIONS(1386), - [anon_sym_public] = ACTIONS(1386), - [anon_sym_private] = ACTIONS(1386), - [anon_sym_protected] = ACTIONS(1386), - [anon_sym_override] = ACTIONS(1386), - [anon_sym_module] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_number] = ACTIONS(1386), - [anon_sym_boolean] = ACTIONS(1386), - [anon_sym_string] = ACTIONS(1386), - [anon_sym_symbol] = ACTIONS(1386), - [anon_sym_object] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(796), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(796), + [anon_sym_set] = ACTIONS(796), + [anon_sym_declare] = ACTIONS(796), + [anon_sym_public] = ACTIONS(796), + [anon_sym_private] = ACTIONS(796), + [anon_sym_protected] = ACTIONS(796), + [anon_sym_override] = ACTIONS(796), + [anon_sym_module] = ACTIONS(796), + [anon_sym_any] = ACTIONS(796), + [anon_sym_number] = ACTIONS(796), + [anon_sym_boolean] = ACTIONS(796), + [anon_sym_string] = ACTIONS(796), + [anon_sym_symbol] = ACTIONS(796), + [anon_sym_object] = ACTIONS(796), [sym_html_comment] = ACTIONS(5), }, [690] = { - [sym__call_signature] = STATE(5693), - [sym_string] = STATE(3816), - [sym_formal_parameters] = STATE(3806), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [sym_type_parameters] = STATE(5328), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym__call_signature] = STATE(5740), + [sym_string] = STATE(3814), + [sym_formal_parameters] = STATE(3860), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [sym_type_parameters] = STATE(5217), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2317), [anon_sym_export] = ACTIONS(2319), [anon_sym_STAR] = ACTIONS(2321), @@ -98203,12 +98283,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2319), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_let] = ACTIONS(2319), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), @@ -98216,23 +98296,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2319), [anon_sym_function] = ACTIONS(2331), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2319), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98247,21 +98327,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2333), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2319), @@ -98282,19 +98362,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2319), [anon_sym_object] = ACTIONS(2319), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [691] = { - [sym__call_signature] = STATE(5693), - [sym_string] = STATE(3816), - [sym_formal_parameters] = STATE(3806), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [sym_type_parameters] = STATE(5328), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym__call_signature] = STATE(5740), + [sym_string] = STATE(3814), + [sym_formal_parameters] = STATE(3860), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [sym_type_parameters] = STATE(5217), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2317), [anon_sym_export] = ACTIONS(2319), [anon_sym_STAR] = ACTIONS(2321), @@ -98302,12 +98382,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2319), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_let] = ACTIONS(2319), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), @@ -98315,23 +98395,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2319), [anon_sym_function] = ACTIONS(2331), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2319), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98346,21 +98426,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2333), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2319), @@ -98381,19 +98461,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2319), [anon_sym_object] = ACTIONS(2319), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [692] = { - [sym__call_signature] = STATE(5693), - [sym_string] = STATE(3816), - [sym_formal_parameters] = STATE(3806), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [sym_type_parameters] = STATE(5328), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym__call_signature] = STATE(5740), + [sym_string] = STATE(3814), + [sym_formal_parameters] = STATE(3860), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [sym_type_parameters] = STATE(5217), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2317), [anon_sym_export] = ACTIONS(2319), [anon_sym_STAR] = ACTIONS(2321), @@ -98401,12 +98481,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2319), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_let] = ACTIONS(2319), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), @@ -98414,23 +98494,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2319), [anon_sym_function] = ACTIONS(2331), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2319), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98445,21 +98525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2333), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2319), @@ -98480,68 +98560,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2319), [anon_sym_object] = ACTIONS(2319), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [693] = { - [sym_declaration] = STATE(867), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_declaration] = STATE(912), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2341), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98555,91 +98635,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2185), [anon_sym_module] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), [anon_sym_global] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [694] = { - [sym_declaration] = STATE(867), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_declaration] = STATE(912), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2341), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98653,91 +98733,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2185), [anon_sym_module] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), [anon_sym_global] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [695] = { - [sym_declaration] = STATE(867), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_declaration] = STATE(912), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2341), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98751,92 +98831,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2185), [anon_sym_module] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), [anon_sym_global] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [696] = { - [sym_namespace_export] = STATE(5206), - [sym_export_clause] = STATE(4427), - [sym_declaration] = STATE(919), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2131), + [sym_namespace_export] = STATE(5317), + [sym_export_clause] = STATE(4457), + [sym_declaration] = STATE(863), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2155), [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98851,89 +98931,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2161), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_declare] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [697] = { - [sym_namespace_export] = STATE(5206), - [sym_export_clause] = STATE(4427), - [sym_declaration] = STATE(919), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), - [anon_sym_STAR] = ACTIONS(2127), + [sym_namespace_export] = STATE(5317), + [sym_export_clause] = STATE(4457), + [sym_declaration] = STATE(863), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), + [anon_sym_STAR] = ACTIONS(2151), [anon_sym_default] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2155), [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -98948,37 +99028,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2161), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_declare] = ACTIONS(2185), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [sym_override_modifier] = STATE(2813), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [sym_override_modifier] = STATE(2801), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), [anon_sym_STAR] = ACTIONS(2321), @@ -98986,35 +99066,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), [anon_sym_async] = ACTIONS(2353), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99028,22 +99108,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), @@ -99064,17 +99144,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [sym_override_modifier] = STATE(2813), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [sym_override_modifier] = STATE(2801), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), [anon_sym_STAR] = ACTIONS(2321), @@ -99082,35 +99162,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), [anon_sym_async] = ACTIONS(2353), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99124,22 +99204,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), @@ -99160,17 +99240,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [700] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [sym_override_modifier] = STATE(2813), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [sym_override_modifier] = STATE(2801), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), [anon_sym_STAR] = ACTIONS(2321), @@ -99178,35 +99258,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), [anon_sym_async] = ACTIONS(2353), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99220,22 +99300,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), @@ -99256,52 +99336,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [701] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(2321), [anon_sym_type] = ACTIONS(2351), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2353), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99315,28 +99395,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), [anon_sym_readonly] = ACTIONS(2351), - [anon_sym_get] = ACTIONS(2351), - [anon_sym_set] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_declare] = ACTIONS(2351), [anon_sym_public] = ACTIONS(2351), @@ -99351,52 +99431,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [702] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(2321), [anon_sym_type] = ACTIONS(2351), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2353), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99410,28 +99490,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), [anon_sym_readonly] = ACTIONS(2351), - [anon_sym_get] = ACTIONS(2351), - [anon_sym_set] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_declare] = ACTIONS(2351), [anon_sym_public] = ACTIONS(2351), @@ -99446,52 +99526,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [703] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2351), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2351), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99505,28 +99585,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), [anon_sym_readonly] = ACTIONS(2351), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_declare] = ACTIONS(2351), [anon_sym_public] = ACTIONS(2351), @@ -99541,52 +99621,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2351), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2351), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99600,28 +99680,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), [anon_sym_readonly] = ACTIONS(2351), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_declare] = ACTIONS(2351), [anon_sym_public] = ACTIONS(2351), @@ -99636,52 +99716,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [705] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2351), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2351), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99695,28 +99775,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), [anon_sym_readonly] = ACTIONS(2351), - [anon_sym_get] = ACTIONS(2357), - [anon_sym_set] = ACTIONS(2357), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_declare] = ACTIONS(2351), [anon_sym_public] = ACTIONS(2351), @@ -99731,52 +99811,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [706] = { - [sym_string] = STATE(3816), - [sym__property_name] = STATE(3816), - [sym_computed_property_name] = STATE(3816), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_string] = STATE(3814), + [sym__property_name] = STATE(3814), + [sym_computed_property_name] = STATE(3814), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), [sym_identifier] = ACTIONS(2351), [anon_sym_export] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(2321), [anon_sym_type] = ACTIONS(2351), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_let] = ACTIONS(2351), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(2328), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2353), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2351), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99790,28 +99870,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [sym_number] = ACTIONS(2337), [sym_private_property_identifier] = ACTIONS(2337), [anon_sym_static] = ACTIONS(2351), [anon_sym_readonly] = ACTIONS(2351), - [anon_sym_get] = ACTIONS(2351), - [anon_sym_set] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_declare] = ACTIONS(2351), [anon_sym_public] = ACTIONS(2351), @@ -99826,65 +99906,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2351), [anon_sym_object] = ACTIONS(2351), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym_declaration] = STATE(867), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(1846), + [anon_sym_namespace] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_typeof] = ACTIONS(1846), + [anon_sym_import] = ACTIONS(1846), + [anon_sym_from] = ACTIONS(1846), + [anon_sym_with] = ACTIONS(1846), + [anon_sym_var] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_else] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_switch] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_await] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_do] = ACTIONS(1846), + [anon_sym_try] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_debugger] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_throw] = ACTIONS(1846), + [anon_sym_COLON] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_class] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_function] = ACTIONS(1846), + [anon_sym_EQ_GT] = ACTIONS(1844), + [anon_sym_new] = ACTIONS(1846), + [anon_sym_using] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_SLASH] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_GT] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_void] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1844), + [sym_number] = ACTIONS(1844), + [sym_private_property_identifier] = ACTIONS(1844), + [sym_this] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_true] = ACTIONS(1846), + [sym_false] = ACTIONS(1846), + [sym_null] = ACTIONS(1846), + [sym_undefined] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_readonly] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(1846), + [anon_sym_set] = ACTIONS(1846), + [anon_sym_QMARK] = ACTIONS(1844), + [anon_sym_declare] = ACTIONS(1846), + [anon_sym_public] = ACTIONS(1846), + [anon_sym_private] = ACTIONS(1846), + [anon_sym_protected] = ACTIONS(1846), + [anon_sym_override] = ACTIONS(1846), + [anon_sym_module] = ACTIONS(1846), + [anon_sym_any] = ACTIONS(1846), + [anon_sym_number] = ACTIONS(1846), + [anon_sym_boolean] = ACTIONS(1846), + [anon_sym_string] = ACTIONS(1846), + [anon_sym_symbol] = ACTIONS(1846), + [anon_sym_object] = ACTIONS(1846), + [anon_sym_abstract] = ACTIONS(1846), + [anon_sym_extends] = ACTIONS(1846), + [anon_sym_interface] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [sym_html_comment] = ACTIONS(5), + }, + [708] = { + [sym_declaration] = STATE(912), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2341), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -99899,274 +100073,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2185), [anon_sym_module] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), [anon_sym_global] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [708] = { - [ts_builtin_sym_end] = ACTIONS(1726), - [sym_identifier] = ACTIONS(1728), - [anon_sym_export] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_type] = ACTIONS(1728), - [anon_sym_EQ] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_COMMA] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_typeof] = ACTIONS(1728), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_from] = ACTIONS(1728), - [anon_sym_with] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1728), - [anon_sym_let] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_else] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_switch] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_await] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_do] = ACTIONS(1728), - [anon_sym_try] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_debugger] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_throw] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_RBRACK] = ACTIONS(1726), - [anon_sym_class] = ACTIONS(1728), - [anon_sym_async] = ACTIONS(1728), - [anon_sym_function] = ACTIONS(1728), - [anon_sym_EQ_GT] = ACTIONS(1726), - [anon_sym_new] = ACTIONS(1728), - [anon_sym_using] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_SLASH] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_TILDE] = ACTIONS(1726), - [anon_sym_void] = ACTIONS(1728), - [anon_sym_delete] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1726), - [anon_sym_SQUOTE] = ACTIONS(1726), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1726), - [sym_number] = ACTIONS(1726), - [sym_private_property_identifier] = ACTIONS(1726), - [sym_this] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_true] = ACTIONS(1728), - [sym_false] = ACTIONS(1728), - [sym_null] = ACTIONS(1728), - [sym_undefined] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_readonly] = ACTIONS(1728), - [anon_sym_get] = ACTIONS(1728), - [anon_sym_set] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1726), - [anon_sym_declare] = ACTIONS(1728), - [anon_sym_public] = ACTIONS(1728), - [anon_sym_private] = ACTIONS(1728), - [anon_sym_protected] = ACTIONS(1728), - [anon_sym_override] = ACTIONS(1728), - [anon_sym_module] = ACTIONS(1728), - [anon_sym_any] = ACTIONS(1728), - [anon_sym_number] = ACTIONS(1728), - [anon_sym_boolean] = ACTIONS(1728), - [anon_sym_string] = ACTIONS(1728), - [anon_sym_symbol] = ACTIONS(1728), - [anon_sym_object] = ACTIONS(1728), - [anon_sym_abstract] = ACTIONS(1728), - [anon_sym_extends] = ACTIONS(1728), - [anon_sym_interface] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [709] = { - [ts_builtin_sym_end] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1756), - [anon_sym_export] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_type] = ACTIONS(1756), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_namespace] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_typeof] = ACTIONS(1756), - [anon_sym_import] = ACTIONS(1756), - [anon_sym_from] = ACTIONS(1756), - [anon_sym_with] = ACTIONS(1756), - [anon_sym_var] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_else] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_switch] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_await] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_try] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_debugger] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_throw] = ACTIONS(1756), - [anon_sym_COLON] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1756), - [anon_sym_yield] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_function] = ACTIONS(1756), - [anon_sym_EQ_GT] = ACTIONS(1754), - [anon_sym_new] = ACTIONS(1756), - [anon_sym_using] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_void] = ACTIONS(1756), - [anon_sym_delete] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1754), - [sym_number] = ACTIONS(1754), - [sym_private_property_identifier] = ACTIONS(1754), - [sym_this] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_true] = ACTIONS(1756), - [sym_false] = ACTIONS(1756), - [sym_null] = ACTIONS(1756), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_readonly] = ACTIONS(1756), - [anon_sym_get] = ACTIONS(1756), - [anon_sym_set] = ACTIONS(1756), - [anon_sym_QMARK] = ACTIONS(1754), - [anon_sym_declare] = ACTIONS(1756), - [anon_sym_public] = ACTIONS(1756), - [anon_sym_private] = ACTIONS(1756), - [anon_sym_protected] = ACTIONS(1756), - [anon_sym_override] = ACTIONS(1756), - [anon_sym_module] = ACTIONS(1756), - [anon_sym_any] = ACTIONS(1756), - [anon_sym_number] = ACTIONS(1756), - [anon_sym_boolean] = ACTIONS(1756), - [anon_sym_string] = ACTIONS(1756), - [anon_sym_symbol] = ACTIONS(1756), - [anon_sym_object] = ACTIONS(1756), - [anon_sym_abstract] = ACTIONS(1756), - [anon_sym_extends] = ACTIONS(1756), - [anon_sym_interface] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [sym_html_comment] = ACTIONS(5), - }, - [710] = { - [sym_declaration] = STATE(867), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), + [sym_declaration] = STATE(912), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2341), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100181,29 +100167,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2185), [anon_sym_module] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), [anon_sym_global] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [710] = { + [ts_builtin_sym_end] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1860), + [anon_sym_export] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_EQ] = ACTIONS(1860), + [anon_sym_namespace] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_COMMA] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym_import] = ACTIONS(1860), + [anon_sym_from] = ACTIONS(1860), + [anon_sym_with] = ACTIONS(1860), + [anon_sym_var] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_else] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_await] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_try] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_debugger] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_throw] = ACTIONS(1860), + [anon_sym_COLON] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_yield] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_RBRACK] = ACTIONS(1858), + [anon_sym_class] = ACTIONS(1860), + [anon_sym_async] = ACTIONS(1860), + [anon_sym_function] = ACTIONS(1860), + [anon_sym_EQ_GT] = ACTIONS(1858), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_using] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_SLASH] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_GT] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [anon_sym_void] = ACTIONS(1860), + [anon_sym_delete] = ACTIONS(1860), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1858), + [sym_number] = ACTIONS(1858), + [sym_private_property_identifier] = ACTIONS(1858), + [sym_this] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_undefined] = ACTIONS(1860), + [anon_sym_AT] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_readonly] = ACTIONS(1860), + [anon_sym_get] = ACTIONS(1860), + [anon_sym_set] = ACTIONS(1860), + [anon_sym_QMARK] = ACTIONS(1858), + [anon_sym_declare] = ACTIONS(1860), + [anon_sym_public] = ACTIONS(1860), + [anon_sym_private] = ACTIONS(1860), + [anon_sym_protected] = ACTIONS(1860), + [anon_sym_override] = ACTIONS(1860), + [anon_sym_module] = ACTIONS(1860), + [anon_sym_any] = ACTIONS(1860), + [anon_sym_number] = ACTIONS(1860), + [anon_sym_boolean] = ACTIONS(1860), + [anon_sym_string] = ACTIONS(1860), + [anon_sym_symbol] = ACTIONS(1860), + [anon_sym_object] = ACTIONS(1860), + [anon_sym_abstract] = ACTIONS(1860), + [anon_sym_extends] = ACTIONS(1860), + [anon_sym_interface] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), [sym_html_comment] = ACTIONS(5), }, [711] = { @@ -100672,44 +100752,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [716] = { - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(1967), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_namespace] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_let] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1967), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1969), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1967), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1967), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100723,85 +100803,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [sym_number] = ACTIONS(1971), - [sym_private_property_identifier] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1969), - [anon_sym_readonly] = ACTIONS(1969), - [anon_sym_get] = ACTIONS(1969), - [anon_sym_set] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1969), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [sym_number] = ACTIONS(1969), + [sym_private_property_identifier] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_readonly] = ACTIONS(1967), + [anon_sym_get] = ACTIONS(1967), + [anon_sym_set] = ACTIONS(1967), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(1969), - [anon_sym_public] = ACTIONS(1969), - [anon_sym_private] = ACTIONS(1969), - [anon_sym_protected] = ACTIONS(1969), - [anon_sym_override] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_any] = ACTIONS(1969), - [anon_sym_number] = ACTIONS(1969), - [anon_sym_boolean] = ACTIONS(1969), - [anon_sym_string] = ACTIONS(1969), - [anon_sym_symbol] = ACTIONS(1969), - [anon_sym_object] = ACTIONS(1969), + [anon_sym_declare] = ACTIONS(1967), + [anon_sym_public] = ACTIONS(1967), + [anon_sym_private] = ACTIONS(1967), + [anon_sym_protected] = ACTIONS(1967), + [anon_sym_override] = ACTIONS(1967), + [anon_sym_module] = ACTIONS(1967), + [anon_sym_any] = ACTIONS(1967), + [anon_sym_number] = ACTIONS(1967), + [anon_sym_boolean] = ACTIONS(1967), + [anon_sym_string] = ACTIONS(1967), + [anon_sym_symbol] = ACTIONS(1967), + [anon_sym_object] = ACTIONS(1967), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [717] = { - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_type] = ACTIONS(1971), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_let] = ACTIONS(1969), + [anon_sym_namespace] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(1971), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1973), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1971), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100815,85 +100895,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [sym_number] = ACTIONS(1971), - [sym_private_property_identifier] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1969), - [anon_sym_readonly] = ACTIONS(1969), - [anon_sym_get] = ACTIONS(1969), - [anon_sym_set] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1973), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [sym_number] = ACTIONS(1973), + [sym_private_property_identifier] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1971), + [anon_sym_readonly] = ACTIONS(1971), + [anon_sym_get] = ACTIONS(1971), + [anon_sym_set] = ACTIONS(1971), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(1969), - [anon_sym_public] = ACTIONS(1969), - [anon_sym_private] = ACTIONS(1969), - [anon_sym_protected] = ACTIONS(1969), - [anon_sym_override] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_any] = ACTIONS(1969), - [anon_sym_number] = ACTIONS(1969), - [anon_sym_boolean] = ACTIONS(1969), - [anon_sym_string] = ACTIONS(1969), - [anon_sym_symbol] = ACTIONS(1969), - [anon_sym_object] = ACTIONS(1969), + [anon_sym_declare] = ACTIONS(1971), + [anon_sym_public] = ACTIONS(1971), + [anon_sym_private] = ACTIONS(1971), + [anon_sym_protected] = ACTIONS(1971), + [anon_sym_override] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_any] = ACTIONS(1971), + [anon_sym_number] = ACTIONS(1971), + [anon_sym_boolean] = ACTIONS(1971), + [anon_sym_string] = ACTIONS(1971), + [anon_sym_symbol] = ACTIONS(1971), + [anon_sym_object] = ACTIONS(1971), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [718] = { - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_type] = ACTIONS(1973), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(1967), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_let] = ACTIONS(1973), + [anon_sym_namespace] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(1967), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1969), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1967), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1973), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1967), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100907,85 +100987,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1975), - [anon_sym_SQUOTE] = ACTIONS(1975), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [sym_number] = ACTIONS(1975), - [sym_private_property_identifier] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_readonly] = ACTIONS(1973), - [anon_sym_get] = ACTIONS(1973), - [anon_sym_set] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1969), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [sym_number] = ACTIONS(1969), + [sym_private_property_identifier] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_readonly] = ACTIONS(1967), + [anon_sym_get] = ACTIONS(1967), + [anon_sym_set] = ACTIONS(1967), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(1973), - [anon_sym_public] = ACTIONS(1973), - [anon_sym_private] = ACTIONS(1973), - [anon_sym_protected] = ACTIONS(1973), - [anon_sym_override] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_any] = ACTIONS(1973), - [anon_sym_number] = ACTIONS(1973), - [anon_sym_boolean] = ACTIONS(1973), - [anon_sym_string] = ACTIONS(1973), - [anon_sym_symbol] = ACTIONS(1973), - [anon_sym_object] = ACTIONS(1973), + [anon_sym_declare] = ACTIONS(1967), + [anon_sym_public] = ACTIONS(1967), + [anon_sym_private] = ACTIONS(1967), + [anon_sym_protected] = ACTIONS(1967), + [anon_sym_override] = ACTIONS(1967), + [anon_sym_module] = ACTIONS(1967), + [anon_sym_any] = ACTIONS(1967), + [anon_sym_number] = ACTIONS(1967), + [anon_sym_boolean] = ACTIONS(1967), + [anon_sym_string] = ACTIONS(1967), + [anon_sym_symbol] = ACTIONS(1967), + [anon_sym_object] = ACTIONS(1967), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [719] = { - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_type] = ACTIONS(1973), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_type] = ACTIONS(1971), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_let] = ACTIONS(1973), + [anon_sym_namespace] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(1971), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1973), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1971), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1973), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -100999,99 +101079,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1975), - [anon_sym_SQUOTE] = ACTIONS(1975), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [sym_number] = ACTIONS(1975), - [sym_private_property_identifier] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_readonly] = ACTIONS(1973), - [anon_sym_get] = ACTIONS(1973), - [anon_sym_set] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1973), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [sym_number] = ACTIONS(1973), + [sym_private_property_identifier] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1971), + [anon_sym_readonly] = ACTIONS(1971), + [anon_sym_get] = ACTIONS(1971), + [anon_sym_set] = ACTIONS(1971), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(1973), - [anon_sym_public] = ACTIONS(1973), - [anon_sym_private] = ACTIONS(1973), - [anon_sym_protected] = ACTIONS(1973), - [anon_sym_override] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_any] = ACTIONS(1973), - [anon_sym_number] = ACTIONS(1973), - [anon_sym_boolean] = ACTIONS(1973), - [anon_sym_string] = ACTIONS(1973), - [anon_sym_symbol] = ACTIONS(1973), - [anon_sym_object] = ACTIONS(1973), + [anon_sym_declare] = ACTIONS(1971), + [anon_sym_public] = ACTIONS(1971), + [anon_sym_private] = ACTIONS(1971), + [anon_sym_protected] = ACTIONS(1971), + [anon_sym_override] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_any] = ACTIONS(1971), + [anon_sym_number] = ACTIONS(1971), + [anon_sym_boolean] = ACTIONS(1971), + [anon_sym_string] = ACTIONS(1971), + [anon_sym_symbol] = ACTIONS(1971), + [anon_sym_object] = ACTIONS(1971), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [720] = { - [sym_declaration] = STATE(4310), - [sym_variable_declaration] = STATE(4275), - [sym_lexical_declaration] = STATE(4275), - [sym_class_declaration] = STATE(4275), - [sym_function_declaration] = STATE(4275), - [sym_generator_function_declaration] = STATE(4275), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(4275), - [sym_ambient_declaration] = STATE(4275), - [sym_abstract_class_declaration] = STATE(4275), - [sym_module] = STATE(4275), - [sym_internal_module] = STATE(4287), - [sym_import_alias] = STATE(4275), - [sym_interface_declaration] = STATE(4275), - [sym_enum_declaration] = STATE(4275), - [sym_type_alias_declaration] = STATE(4275), - [aux_sym_export_statement_repeat1] = STATE(4304), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_EQ] = ACTIONS(918), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(1967), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_import] = ACTIONS(2385), - [anon_sym_var] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2391), + [anon_sym_namespace] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(1967), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2395), - [anon_sym_function] = ACTIONS(2397), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1967), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101105,85 +101171,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2401), - [anon_sym_abstract] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(154), - [anon_sym_global] = ACTIONS(2405), - [anon_sym_interface] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2409), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1969), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [sym_number] = ACTIONS(1969), + [sym_private_property_identifier] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_readonly] = ACTIONS(1967), + [anon_sym_get] = ACTIONS(1967), + [anon_sym_set] = ACTIONS(1967), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1967), + [anon_sym_public] = ACTIONS(1967), + [anon_sym_private] = ACTIONS(1967), + [anon_sym_protected] = ACTIONS(1967), + [anon_sym_override] = ACTIONS(1967), + [anon_sym_module] = ACTIONS(1967), + [anon_sym_any] = ACTIONS(1967), + [anon_sym_number] = ACTIONS(1967), + [anon_sym_boolean] = ACTIONS(1967), + [anon_sym_string] = ACTIONS(1967), + [anon_sym_symbol] = ACTIONS(1967), + [anon_sym_object] = ACTIONS(1967), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [721] = { - [sym_declaration] = STATE(867), - [sym_variable_declaration] = STATE(831), - [sym_lexical_declaration] = STATE(831), - [sym_class_declaration] = STATE(831), - [sym_function_declaration] = STATE(831), - [sym_generator_function_declaration] = STATE(831), - [sym_decorator] = STATE(1344), - [sym_function_signature] = STATE(831), - [sym_ambient_declaration] = STATE(831), - [sym_abstract_class_declaration] = STATE(831), - [sym_module] = STATE(831), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(831), - [sym_interface_declaration] = STATE(831), - [sym_enum_declaration] = STATE(831), - [sym_type_alias_declaration] = STATE(831), - [aux_sym_export_statement_repeat1] = STATE(4301), + [sym_declaration] = STATE(912), + [sym_variable_declaration] = STATE(851), + [sym_lexical_declaration] = STATE(851), + [sym_class_declaration] = STATE(851), + [sym_function_declaration] = STATE(851), + [sym_generator_function_declaration] = STATE(851), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(851), + [sym_ambient_declaration] = STATE(851), + [sym_abstract_class_declaration] = STATE(851), + [sym_module] = STATE(851), + [sym_internal_module] = STATE(868), + [sym_import_alias] = STATE(851), + [sym_interface_declaration] = STATE(851), + [sym_enum_declaration] = STATE(851), + [sym_type_alias_declaration] = STATE(851), + [aux_sym_export_statement_repeat1] = STATE(4196), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2341), - [anon_sym_EQ] = ACTIONS(918), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2147), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2171), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2180), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101198,70 +101278,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(154), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2161), + [anon_sym_declare] = ACTIONS(2185), [anon_sym_module] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2165), - [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(153), [anon_sym_global] = ACTIONS(2345), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2169), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2193), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [722] = { - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(1969), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_type] = ACTIONS(1971), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_namespace] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_let] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1971), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1973), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1971), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [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_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101275,85 +101355,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [sym_number] = ACTIONS(1971), - [sym_private_property_identifier] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1969), - [anon_sym_readonly] = ACTIONS(1969), - [anon_sym_get] = ACTIONS(1969), - [anon_sym_set] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1973), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [sym_number] = ACTIONS(1973), + [sym_private_property_identifier] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1971), + [anon_sym_readonly] = ACTIONS(1971), + [anon_sym_get] = ACTIONS(1971), + [anon_sym_set] = ACTIONS(1971), [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(1969), - [anon_sym_public] = ACTIONS(1969), - [anon_sym_private] = ACTIONS(1969), - [anon_sym_protected] = ACTIONS(1969), - [anon_sym_override] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_any] = ACTIONS(1969), - [anon_sym_number] = ACTIONS(1969), - [anon_sym_boolean] = ACTIONS(1969), - [anon_sym_string] = ACTIONS(1969), - [anon_sym_symbol] = ACTIONS(1969), - [anon_sym_object] = ACTIONS(1969), + [anon_sym_declare] = ACTIONS(1971), + [anon_sym_public] = ACTIONS(1971), + [anon_sym_private] = ACTIONS(1971), + [anon_sym_protected] = ACTIONS(1971), + [anon_sym_override] = ACTIONS(1971), + [anon_sym_module] = ACTIONS(1971), + [anon_sym_any] = ACTIONS(1971), + [anon_sym_number] = ACTIONS(1971), + [anon_sym_boolean] = ACTIONS(1971), + [anon_sym_string] = ACTIONS(1971), + [anon_sym_symbol] = ACTIONS(1971), + [anon_sym_object] = ACTIONS(1971), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [723] = { - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_type] = ACTIONS(1973), - [anon_sym_EQ] = ACTIONS(661), + [sym_declaration] = STATE(4407), + [sym_variable_declaration] = STATE(4164), + [sym_lexical_declaration] = STATE(4164), + [sym_class_declaration] = STATE(4164), + [sym_function_declaration] = STATE(4164), + [sym_generator_function_declaration] = STATE(4164), + [sym_decorator] = STATE(1313), + [sym_function_signature] = STATE(4164), + [sym_ambient_declaration] = STATE(4164), + [sym_abstract_class_declaration] = STATE(4164), + [sym_module] = STATE(4164), + [sym_internal_module] = STATE(4188), + [sym_import_alias] = STATE(4164), + [sym_interface_declaration] = STATE(4164), + [sym_enum_declaration] = STATE(4164), + [sym_type_alias_declaration] = STATE(4164), + [aux_sym_export_statement_repeat1] = STATE(4324), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_let] = ACTIONS(1973), + [anon_sym_namespace] = ACTIONS(2383), + [anon_sym_import] = ACTIONS(2385), + [anon_sym_var] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2391), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_async] = ACTIONS(1973), - [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1973), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101367,88 +101461,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1975), - [anon_sym_SQUOTE] = ACTIONS(1975), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [sym_number] = ACTIONS(1975), - [sym_private_property_identifier] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_readonly] = ACTIONS(1973), - [anon_sym_get] = ACTIONS(1973), - [anon_sym_set] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_declare] = ACTIONS(1973), - [anon_sym_public] = ACTIONS(1973), - [anon_sym_private] = ACTIONS(1973), - [anon_sym_protected] = ACTIONS(1973), - [anon_sym_override] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_any] = ACTIONS(1973), - [anon_sym_number] = ACTIONS(1973), - [anon_sym_boolean] = ACTIONS(1973), - [anon_sym_string] = ACTIONS(1973), - [anon_sym_symbol] = ACTIONS(1973), - [anon_sym_object] = ACTIONS(1973), - [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_instanceof] = ACTIONS(153), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2403), + [anon_sym_satisfies] = ACTIONS(153), + [anon_sym_global] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2409), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [724] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101463,24 +101543,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), [anon_sym_set] = ACTIONS(2413), - [anon_sym_QMARK] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2413), [anon_sym_public] = ACTIONS(2413), [anon_sym_private] = ACTIONS(2413), @@ -101494,51 +101574,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [725] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(826), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101553,24 +101633,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), [anon_sym_set] = ACTIONS(2413), - [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(828), [anon_sym_declare] = ACTIONS(2413), [anon_sym_public] = ACTIONS(2413), [anon_sym_private] = ACTIONS(2413), @@ -101584,13 +101664,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [726] = { - [sym__call_signature] = STATE(5594), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5566), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2423), [anon_sym_export] = ACTIONS(2425), [anon_sym_STAR] = ACTIONS(120), @@ -101598,37 +101678,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_let] = ACTIONS(2425), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2425), [anon_sym_function] = ACTIONS(2418), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2425), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101643,19 +101723,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2425), [anon_sym_readonly] = ACTIONS(2425), [anon_sym_get] = ACTIONS(2425), @@ -101673,13 +101753,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2425), [anon_sym_object] = ACTIONS(2425), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [727] = { - [sym__call_signature] = STATE(5594), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5566), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2423), [anon_sym_export] = ACTIONS(2425), [anon_sym_STAR] = ACTIONS(120), @@ -101687,37 +101767,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_let] = ACTIONS(2425), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2425), [anon_sym_function] = ACTIONS(2418), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2425), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101732,19 +101812,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2425), [anon_sym_readonly] = ACTIONS(2425), [anon_sym_get] = ACTIONS(2425), @@ -101762,49 +101842,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2425), [anon_sym_object] = ACTIONS(2425), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [728] = { - [sym__call_signature] = STATE(5693), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5740), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2427), [anon_sym_export] = ACTIONS(2429), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2429), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_let] = ACTIONS(2429), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2331), + [anon_sym_function] = ACTIONS(2431), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2429), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101819,19 +101899,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2429), [anon_sym_readonly] = ACTIONS(2429), [anon_sym_get] = ACTIONS(2429), @@ -101849,50 +101929,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2429), [anon_sym_object] = ACTIONS(2429), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [729] = { - [sym__call_signature] = STATE(5693), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5740), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2427), [anon_sym_export] = ACTIONS(2429), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2429), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_let] = ACTIONS(2429), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2431), + [anon_sym_function] = ACTIONS(2331), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2429), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101907,19 +101987,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2429), [anon_sym_readonly] = ACTIONS(2429), [anon_sym_get] = ACTIONS(2429), @@ -101937,14 +102017,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2429), [anon_sym_object] = ACTIONS(2429), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [730] = { - [sym__call_signature] = STATE(5693), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5740), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2427), [anon_sym_export] = ACTIONS(2429), [anon_sym_STAR] = ACTIONS(120), @@ -101952,35 +102032,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_let] = ACTIONS(2429), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2433), + [anon_sym_function] = ACTIONS(2431), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2429), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -101995,19 +102075,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2429), [anon_sym_readonly] = ACTIONS(2429), [anon_sym_get] = ACTIONS(2429), @@ -102025,14 +102105,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2429), [anon_sym_object] = ACTIONS(2429), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [731] = { - [sym__call_signature] = STATE(5594), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5591), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2433), + [anon_sym_export] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_let] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2435), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2435), + [anon_sym_readonly] = ACTIONS(2435), + [anon_sym_get] = ACTIONS(2435), + [anon_sym_set] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2435), + [anon_sym_public] = ACTIONS(2435), + [anon_sym_private] = ACTIONS(2435), + [anon_sym_protected] = ACTIONS(2435), + [anon_sym_override] = ACTIONS(2435), + [anon_sym_module] = ACTIONS(2435), + [anon_sym_any] = ACTIONS(2435), + [anon_sym_number] = ACTIONS(2435), + [anon_sym_boolean] = ACTIONS(2435), + [anon_sym_string] = ACTIONS(2435), + [anon_sym_symbol] = ACTIONS(2435), + [anon_sym_object] = ACTIONS(2435), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [732] = { + [sym__call_signature] = STATE(5819), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2437), + [anon_sym_export] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2439), + [anon_sym_EQ] = ACTIONS(868), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_let] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2439), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(874), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2439), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2439), + [anon_sym_readonly] = ACTIONS(2439), + [anon_sym_get] = ACTIONS(2439), + [anon_sym_set] = ACTIONS(2439), + [anon_sym_declare] = ACTIONS(2439), + [anon_sym_public] = ACTIONS(2439), + [anon_sym_private] = ACTIONS(2439), + [anon_sym_protected] = ACTIONS(2439), + [anon_sym_override] = ACTIONS(2439), + [anon_sym_module] = ACTIONS(2439), + [anon_sym_any] = ACTIONS(2439), + [anon_sym_number] = ACTIONS(2439), + [anon_sym_boolean] = ACTIONS(2439), + [anon_sym_string] = ACTIONS(2439), + [anon_sym_symbol] = ACTIONS(2439), + [anon_sym_object] = ACTIONS(2439), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [733] = { + [sym__call_signature] = STATE(5566), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2423), [anon_sym_export] = ACTIONS(2425), [anon_sym_STAR] = ACTIONS(120), @@ -102040,36 +102296,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), [anon_sym_let] = ACTIONS(2425), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2425), [anon_sym_function] = ACTIONS(2418), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2425), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102084,19 +102340,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2425), [anon_sym_readonly] = ACTIONS(2425), [anon_sym_get] = ACTIONS(2425), @@ -102114,49 +102370,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2425), [anon_sym_object] = ACTIONS(2425), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [732] = { - [sym__call_signature] = STATE(5779), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2435), - [anon_sym_export] = ACTIONS(2437), + [734] = { + [sym__call_signature] = STATE(5740), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_EQ] = ACTIONS(866), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_let] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_let] = ACTIONS(2429), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2441), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(153), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [735] = { + [sym__call_signature] = STATE(5819), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2437), + [anon_sym_export] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2439), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_let] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2439), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(874), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2439), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102171,80 +102515,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_readonly] = ACTIONS(2437), - [anon_sym_get] = ACTIONS(2437), - [anon_sym_set] = ACTIONS(2437), - [anon_sym_declare] = ACTIONS(2437), - [anon_sym_public] = ACTIONS(2437), - [anon_sym_private] = ACTIONS(2437), - [anon_sym_protected] = ACTIONS(2437), - [anon_sym_override] = ACTIONS(2437), - [anon_sym_module] = ACTIONS(2437), - [anon_sym_any] = ACTIONS(2437), - [anon_sym_number] = ACTIONS(2437), - [anon_sym_boolean] = ACTIONS(2437), - [anon_sym_string] = ACTIONS(2437), - [anon_sym_symbol] = ACTIONS(2437), - [anon_sym_object] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2439), + [anon_sym_readonly] = ACTIONS(2439), + [anon_sym_get] = ACTIONS(2439), + [anon_sym_set] = ACTIONS(2439), + [anon_sym_declare] = ACTIONS(2439), + [anon_sym_public] = ACTIONS(2439), + [anon_sym_private] = ACTIONS(2439), + [anon_sym_protected] = ACTIONS(2439), + [anon_sym_override] = ACTIONS(2439), + [anon_sym_module] = ACTIONS(2439), + [anon_sym_any] = ACTIONS(2439), + [anon_sym_number] = ACTIONS(2439), + [anon_sym_boolean] = ACTIONS(2439), + [anon_sym_string] = ACTIONS(2439), + [anon_sym_symbol] = ACTIONS(2439), + [anon_sym_object] = ACTIONS(2439), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [733] = { - [sym__call_signature] = STATE(5814), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2439), - [anon_sym_export] = ACTIONS(2441), + [736] = { + [sym__call_signature] = STATE(5591), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2433), + [anon_sym_export] = ACTIONS(2435), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_EQ] = ACTIONS(885), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_let] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_let] = ACTIONS(2435), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_RPAREN] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2441), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2435), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102259,80 +102603,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_readonly] = ACTIONS(2441), - [anon_sym_get] = ACTIONS(2441), - [anon_sym_set] = ACTIONS(2441), - [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(2441), - [anon_sym_public] = ACTIONS(2441), - [anon_sym_private] = ACTIONS(2441), - [anon_sym_protected] = ACTIONS(2441), - [anon_sym_override] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_any] = ACTIONS(2441), - [anon_sym_number] = ACTIONS(2441), - [anon_sym_boolean] = ACTIONS(2441), - [anon_sym_string] = ACTIONS(2441), - [anon_sym_symbol] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(2441), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2435), + [anon_sym_readonly] = ACTIONS(2435), + [anon_sym_get] = ACTIONS(2435), + [anon_sym_set] = ACTIONS(2435), + [anon_sym_declare] = ACTIONS(2435), + [anon_sym_public] = ACTIONS(2435), + [anon_sym_private] = ACTIONS(2435), + [anon_sym_protected] = ACTIONS(2435), + [anon_sym_override] = ACTIONS(2435), + [anon_sym_module] = ACTIONS(2435), + [anon_sym_any] = ACTIONS(2435), + [anon_sym_number] = ACTIONS(2435), + [anon_sym_boolean] = ACTIONS(2435), + [anon_sym_string] = ACTIONS(2435), + [anon_sym_symbol] = ACTIONS(2435), + [anon_sym_object] = ACTIONS(2435), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym__call_signature] = STATE(5779), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2435), - [anon_sym_export] = ACTIONS(2437), + [737] = { + [sym__call_signature] = STATE(5591), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2433), + [anon_sym_export] = ACTIONS(2435), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2435), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_let] = ACTIONS(2437), + [anon_sym_namespace] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_let] = ACTIONS(2435), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2435), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2435), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102347,80 +102690,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_readonly] = ACTIONS(2437), - [anon_sym_get] = ACTIONS(2437), - [anon_sym_set] = ACTIONS(2437), - [anon_sym_declare] = ACTIONS(2437), - [anon_sym_public] = ACTIONS(2437), - [anon_sym_private] = ACTIONS(2437), - [anon_sym_protected] = ACTIONS(2437), - [anon_sym_override] = ACTIONS(2437), - [anon_sym_module] = ACTIONS(2437), - [anon_sym_any] = ACTIONS(2437), - [anon_sym_number] = ACTIONS(2437), - [anon_sym_boolean] = ACTIONS(2437), - [anon_sym_string] = ACTIONS(2437), - [anon_sym_symbol] = ACTIONS(2437), - [anon_sym_object] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2435), + [anon_sym_readonly] = ACTIONS(2435), + [anon_sym_get] = ACTIONS(2435), + [anon_sym_set] = ACTIONS(2435), + [anon_sym_declare] = ACTIONS(2435), + [anon_sym_public] = ACTIONS(2435), + [anon_sym_private] = ACTIONS(2435), + [anon_sym_protected] = ACTIONS(2435), + [anon_sym_override] = ACTIONS(2435), + [anon_sym_module] = ACTIONS(2435), + [anon_sym_any] = ACTIONS(2435), + [anon_sym_number] = ACTIONS(2435), + [anon_sym_boolean] = ACTIONS(2435), + [anon_sym_string] = ACTIONS(2435), + [anon_sym_symbol] = ACTIONS(2435), + [anon_sym_object] = ACTIONS(2435), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [735] = { - [sym__call_signature] = STATE(5693), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2427), - [anon_sym_export] = ACTIONS(2429), + [738] = { + [sym__call_signature] = STATE(5566), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(907), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_let] = ACTIONS(2429), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_let] = ACTIONS(2425), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102435,80 +102777,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_readonly] = ACTIONS(2429), - [anon_sym_get] = ACTIONS(2429), - [anon_sym_set] = ACTIONS(2429), - [anon_sym_declare] = ACTIONS(2429), - [anon_sym_public] = ACTIONS(2429), - [anon_sym_private] = ACTIONS(2429), - [anon_sym_protected] = ACTIONS(2429), - [anon_sym_override] = ACTIONS(2429), - [anon_sym_module] = ACTIONS(2429), - [anon_sym_any] = ACTIONS(2429), - [anon_sym_number] = ACTIONS(2429), - [anon_sym_boolean] = ACTIONS(2429), - [anon_sym_string] = ACTIONS(2429), - [anon_sym_symbol] = ACTIONS(2429), - [anon_sym_object] = ACTIONS(2429), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [736] = { - [sym__call_signature] = STATE(5481), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [739] = { + [sym__call_signature] = STATE(5650), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2443), [anon_sym_export] = ACTIONS(2445), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(886), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_let] = ACTIONS(2445), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2445), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2445), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102523,19 +102863,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2445), [anon_sym_readonly] = ACTIONS(2445), [anon_sym_get] = ACTIONS(2445), @@ -102553,48 +102893,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2445), [anon_sym_object] = ACTIONS(2445), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [737] = { - [sym__call_signature] = STATE(5591), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [740] = { + [sym__call_signature] = STATE(5520), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2447), [anon_sym_export] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2449), - [anon_sym_EQ] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(894), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(126), [anon_sym_let] = ACTIONS(2449), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2449), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(938), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102609,19 +102951,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2449), [anon_sym_readonly] = ACTIONS(2449), [anon_sym_get] = ACTIONS(2449), @@ -102639,50 +102981,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2449), [anon_sym_object] = ACTIONS(2449), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [738] = { - [sym__call_signature] = STATE(5594), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [741] = { + [sym__call_signature] = STATE(5566), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2423), [anon_sym_export] = ACTIONS(2425), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2425), - [anon_sym_EQ] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_let] = ACTIONS(2425), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_in] = ACTIONS(880), + [anon_sym_of] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2425), [anon_sym_function] = ACTIONS(2418), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2425), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102697,19 +103038,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2425), [anon_sym_readonly] = ACTIONS(2425), [anon_sym_get] = ACTIONS(2425), @@ -102727,49 +103068,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2425), [anon_sym_object] = ACTIONS(2425), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [739] = { - [sym__call_signature] = STATE(5814), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2439), - [anon_sym_export] = ACTIONS(2441), + [742] = { + [sym__call_signature] = STATE(5650), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(880), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(932), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_let] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_let] = ACTIONS(2445), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(154), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2445), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102784,78 +103124,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_readonly] = ACTIONS(2441), - [anon_sym_get] = ACTIONS(2441), - [anon_sym_set] = ACTIONS(2441), - [anon_sym_declare] = ACTIONS(2441), - [anon_sym_public] = ACTIONS(2441), - [anon_sym_private] = ACTIONS(2441), - [anon_sym_protected] = ACTIONS(2441), - [anon_sym_override] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_any] = ACTIONS(2441), - [anon_sym_number] = ACTIONS(2441), - [anon_sym_boolean] = ACTIONS(2441), - [anon_sym_string] = ACTIONS(2441), - [anon_sym_symbol] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(2441), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [740] = { - [sym__call_signature] = STATE(5591), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [743] = { + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_finally] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_private_property_identifier] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_readonly] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_object] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(2451), + [sym_html_comment] = ACTIONS(5), + }, + [744] = { + [sym__call_signature] = STATE(5520), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2447), [anon_sym_export] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2449), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(894), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(126), [anon_sym_let] = ACTIONS(2449), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2449), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(938), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102870,19 +103297,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2449), [anon_sym_readonly] = ACTIONS(2449), [anon_sym_get] = ACTIONS(2449), @@ -102900,50 +103327,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2449), [anon_sym_object] = ACTIONS(2449), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [741] = { - [sym__call_signature] = STATE(5814), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2439), - [anon_sym_export] = ACTIONS(2441), + [745] = { + [sym__call_signature] = STATE(5640), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2453), + [anon_sym_export] = ACTIONS(2455), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_let] = ACTIONS(2441), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -102958,79 +103382,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_readonly] = ACTIONS(2441), - [anon_sym_get] = ACTIONS(2441), - [anon_sym_set] = ACTIONS(2441), - [anon_sym_declare] = ACTIONS(2441), - [anon_sym_public] = ACTIONS(2441), - [anon_sym_private] = ACTIONS(2441), - [anon_sym_protected] = ACTIONS(2441), - [anon_sym_override] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_any] = ACTIONS(2441), - [anon_sym_number] = ACTIONS(2441), - [anon_sym_boolean] = ACTIONS(2441), - [anon_sym_string] = ACTIONS(2441), - [anon_sym_symbol] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(2441), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_readonly] = ACTIONS(2455), + [anon_sym_get] = ACTIONS(2455), + [anon_sym_set] = ACTIONS(2455), + [anon_sym_declare] = ACTIONS(2455), + [anon_sym_public] = ACTIONS(2455), + [anon_sym_private] = ACTIONS(2455), + [anon_sym_protected] = ACTIONS(2455), + [anon_sym_override] = ACTIONS(2455), + [anon_sym_module] = ACTIONS(2455), + [anon_sym_any] = ACTIONS(2455), + [anon_sym_number] = ACTIONS(2455), + [anon_sym_boolean] = ACTIONS(2455), + [anon_sym_string] = ACTIONS(2455), + [anon_sym_symbol] = ACTIONS(2455), + [anon_sym_object] = ACTIONS(2455), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [742] = { - [sym__call_signature] = STATE(5594), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2423), - [anon_sym_export] = ACTIONS(2425), + [746] = { + [sym__call_signature] = STATE(5520), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2447), + [anon_sym_export] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(924), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_let] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_in] = ACTIONS(902), - [anon_sym_of] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2449), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103045,77 +103469,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_readonly] = ACTIONS(2425), - [anon_sym_get] = ACTIONS(2425), - [anon_sym_set] = ACTIONS(2425), - [anon_sym_declare] = ACTIONS(2425), - [anon_sym_public] = ACTIONS(2425), - [anon_sym_private] = ACTIONS(2425), - [anon_sym_protected] = ACTIONS(2425), - [anon_sym_override] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_any] = ACTIONS(2425), - [anon_sym_number] = ACTIONS(2425), - [anon_sym_boolean] = ACTIONS(2425), - [anon_sym_string] = ACTIONS(2425), - [anon_sym_symbol] = ACTIONS(2425), - [anon_sym_object] = ACTIONS(2425), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_object] = ACTIONS(2449), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), + [747] = { + [sym__call_signature] = STATE(5640), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2453), + [anon_sym_export] = ACTIONS(2455), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(918), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103130,79 +103554,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_readonly] = ACTIONS(2455), + [anon_sym_get] = ACTIONS(2455), + [anon_sym_set] = ACTIONS(2455), + [anon_sym_declare] = ACTIONS(2455), + [anon_sym_public] = ACTIONS(2455), + [anon_sym_private] = ACTIONS(2455), + [anon_sym_protected] = ACTIONS(2455), + [anon_sym_override] = ACTIONS(2455), + [anon_sym_module] = ACTIONS(2455), + [anon_sym_any] = ACTIONS(2455), + [anon_sym_number] = ACTIONS(2455), + [anon_sym_boolean] = ACTIONS(2455), + [anon_sym_string] = ACTIONS(2455), + [anon_sym_symbol] = ACTIONS(2455), + [anon_sym_object] = ACTIONS(2455), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [744] = { - [sym__call_signature] = STATE(5481), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2443), - [anon_sym_export] = ACTIONS(2445), + [748] = { + [sym__call_signature] = STATE(5520), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2447), + [anon_sym_export] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(924), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2445), + [anon_sym_COLON] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2449), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103217,164 +103641,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_override] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), - [anon_sym_object] = ACTIONS(2445), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_object] = ACTIONS(2449), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym_catch_clause] = STATE(770), - [sym_finally_clause] = STATE(914), - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_identifier] = ACTIONS(2457), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_default] = ACTIONS(2457), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_import] = ACTIONS(2457), - [anon_sym_with] = ACTIONS(2457), - [anon_sym_var] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_debugger] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_case] = ACTIONS(2457), - [anon_sym_catch] = ACTIONS(2459), - [anon_sym_finally] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_SLASH] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_void] = ACTIONS(2457), - [anon_sym_delete] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2455), - [anon_sym_SQUOTE] = ACTIONS(2455), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2455), - [sym_number] = ACTIONS(2455), - [sym_private_property_identifier] = ACTIONS(2455), - [sym_this] = ACTIONS(2457), - [sym_super] = ACTIONS(2457), - [sym_true] = ACTIONS(2457), - [sym_false] = ACTIONS(2457), - [sym_null] = ACTIONS(2457), - [sym_undefined] = ACTIONS(2457), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_readonly] = ACTIONS(2457), - [anon_sym_get] = ACTIONS(2457), - [anon_sym_set] = ACTIONS(2457), - [anon_sym_declare] = ACTIONS(2457), - [anon_sym_public] = ACTIONS(2457), - [anon_sym_private] = ACTIONS(2457), - [anon_sym_protected] = ACTIONS(2457), - [anon_sym_override] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_any] = ACTIONS(2457), - [anon_sym_number] = ACTIONS(2457), - [anon_sym_boolean] = ACTIONS(2457), - [anon_sym_string] = ACTIONS(2457), - [anon_sym_symbol] = ACTIONS(2457), - [anon_sym_object] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), + [749] = { + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1690), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_type] = ACTIONS(1690), + [anon_sym_namespace] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1690), + [anon_sym_import] = ACTIONS(1690), + [anon_sym_with] = ACTIONS(1690), + [anon_sym_var] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_else] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_switch] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_await] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_try] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_debugger] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(1690), + [anon_sym_case] = ACTIONS(1690), + [anon_sym_catch] = ACTIONS(1690), + [anon_sym_finally] = ACTIONS(1690), + [anon_sym_yield] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_class] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_function] = ACTIONS(1690), + [anon_sym_new] = ACTIONS(1690), + [anon_sym_using] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_SLASH] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_void] = ACTIONS(1690), + [anon_sym_delete] = ACTIONS(1690), + [anon_sym_PLUS_PLUS] = ACTIONS(1688), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_true] = ACTIONS(1690), + [sym_false] = ACTIONS(1690), + [sym_null] = ACTIONS(1690), + [sym_undefined] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_readonly] = ACTIONS(1690), + [anon_sym_get] = ACTIONS(1690), + [anon_sym_set] = ACTIONS(1690), + [anon_sym_declare] = ACTIONS(1690), + [anon_sym_public] = ACTIONS(1690), + [anon_sym_private] = ACTIONS(1690), + [anon_sym_protected] = ACTIONS(1690), + [anon_sym_override] = ACTIONS(1690), + [anon_sym_module] = ACTIONS(1690), + [anon_sym_any] = ACTIONS(1690), + [anon_sym_number] = ACTIONS(1690), + [anon_sym_boolean] = ACTIONS(1690), + [anon_sym_string] = ACTIONS(1690), + [anon_sym_symbol] = ACTIONS(1690), + [anon_sym_object] = ACTIONS(1690), + [anon_sym_abstract] = ACTIONS(1690), + [anon_sym_interface] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [sym__automatic_semicolon] = ACTIONS(1698), [sym_html_comment] = ACTIONS(5), }, - [746] = { - [sym__call_signature] = STATE(5481), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2443), - [anon_sym_export] = ACTIONS(2445), + [750] = { + [sym__call_signature] = STATE(5640), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2453), + [anon_sym_export] = ACTIONS(2455), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103389,163 +103812,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_override] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), - [anon_sym_object] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_readonly] = ACTIONS(2455), + [anon_sym_get] = ACTIONS(2455), + [anon_sym_set] = ACTIONS(2455), + [anon_sym_declare] = ACTIONS(2455), + [anon_sym_public] = ACTIONS(2455), + [anon_sym_private] = ACTIONS(2455), + [anon_sym_protected] = ACTIONS(2455), + [anon_sym_override] = ACTIONS(2455), + [anon_sym_module] = ACTIONS(2455), + [anon_sym_any] = ACTIONS(2455), + [anon_sym_number] = ACTIONS(2455), + [anon_sym_boolean] = ACTIONS(2455), + [anon_sym_string] = ACTIONS(2455), + [anon_sym_symbol] = ACTIONS(2455), + [anon_sym_object] = ACTIONS(2455), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_export] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_namespace] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(1692), - [anon_sym_import] = ACTIONS(1692), - [anon_sym_with] = ACTIONS(1692), - [anon_sym_var] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_await] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_debugger] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_throw] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_catch] = ACTIONS(1692), - [anon_sym_finally] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_class] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_new] = ACTIONS(1692), - [anon_sym_using] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_SLASH] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_void] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1690), - [sym_number] = ACTIONS(1690), - [sym_private_property_identifier] = ACTIONS(1690), - [sym_this] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [sym_false] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [sym_undefined] = ACTIONS(1692), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_readonly] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_declare] = ACTIONS(1692), - [anon_sym_public] = ACTIONS(1692), - [anon_sym_private] = ACTIONS(1692), - [anon_sym_protected] = ACTIONS(1692), - [anon_sym_override] = ACTIONS(1692), - [anon_sym_module] = ACTIONS(1692), - [anon_sym_any] = ACTIONS(1692), - [anon_sym_number] = ACTIONS(1692), - [anon_sym_boolean] = ACTIONS(1692), - [anon_sym_string] = ACTIONS(1692), - [anon_sym_symbol] = ACTIONS(1692), - [anon_sym_object] = ACTIONS(1692), - [anon_sym_abstract] = ACTIONS(1692), - [anon_sym_interface] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [sym__automatic_semicolon] = ACTIONS(1700), + [751] = { + [sym_catch_clause] = STATE(778), + [sym_finally_clause] = STATE(824), + [ts_builtin_sym_end] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2461), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_namespace] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_typeof] = ACTIONS(2461), + [anon_sym_import] = ACTIONS(2461), + [anon_sym_with] = ACTIONS(2461), + [anon_sym_var] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_switch] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_debugger] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_throw] = ACTIONS(2461), + [anon_sym_case] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2463), + [anon_sym_finally] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2459), + [anon_sym_class] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_function] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_using] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_SLASH] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_TILDE] = ACTIONS(2459), + [anon_sym_void] = ACTIONS(2461), + [anon_sym_delete] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(2459), + [anon_sym_SQUOTE] = ACTIONS(2459), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2459), + [sym_number] = ACTIONS(2459), + [sym_private_property_identifier] = ACTIONS(2459), + [sym_this] = ACTIONS(2461), + [sym_super] = ACTIONS(2461), + [sym_true] = ACTIONS(2461), + [sym_false] = ACTIONS(2461), + [sym_null] = ACTIONS(2461), + [sym_undefined] = ACTIONS(2461), + [anon_sym_AT] = ACTIONS(2459), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_readonly] = ACTIONS(2461), + [anon_sym_get] = ACTIONS(2461), + [anon_sym_set] = ACTIONS(2461), + [anon_sym_declare] = ACTIONS(2461), + [anon_sym_public] = ACTIONS(2461), + [anon_sym_private] = ACTIONS(2461), + [anon_sym_protected] = ACTIONS(2461), + [anon_sym_override] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_any] = ACTIONS(2461), + [anon_sym_number] = ACTIONS(2461), + [anon_sym_boolean] = ACTIONS(2461), + [anon_sym_string] = ACTIONS(2461), + [anon_sym_symbol] = ACTIONS(2461), + [anon_sym_object] = ACTIONS(2461), + [anon_sym_abstract] = ACTIONS(2461), + [anon_sym_interface] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), + [752] = { + [sym__call_signature] = STATE(5640), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2453), + [anon_sym_export] = ACTIONS(2455), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2433), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_function] = ACTIONS(2441), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103560,78 +103984,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_readonly] = ACTIONS(2455), + [anon_sym_get] = ACTIONS(2455), + [anon_sym_set] = ACTIONS(2455), + [anon_sym_declare] = ACTIONS(2455), + [anon_sym_public] = ACTIONS(2455), + [anon_sym_private] = ACTIONS(2455), + [anon_sym_protected] = ACTIONS(2455), + [anon_sym_override] = ACTIONS(2455), + [anon_sym_module] = ACTIONS(2455), + [anon_sym_any] = ACTIONS(2455), + [anon_sym_number] = ACTIONS(2455), + [anon_sym_boolean] = ACTIONS(2455), + [anon_sym_string] = ACTIONS(2455), + [anon_sym_symbol] = ACTIONS(2455), + [anon_sym_object] = ACTIONS(2455), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), + [753] = { + [sym__call_signature] = STATE(5640), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2453), + [anon_sym_export] = ACTIONS(2455), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(918), + [anon_sym_type] = ACTIONS(2455), + [anon_sym_EQ] = ACTIONS(916), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2455), + [anon_sym_let] = ACTIONS(2455), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2463), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(910), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2455), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103646,165 +104070,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_readonly] = ACTIONS(2455), + [anon_sym_get] = ACTIONS(2455), + [anon_sym_set] = ACTIONS(2455), + [anon_sym_declare] = ACTIONS(2455), + [anon_sym_public] = ACTIONS(2455), + [anon_sym_private] = ACTIONS(2455), + [anon_sym_protected] = ACTIONS(2455), + [anon_sym_override] = ACTIONS(2455), + [anon_sym_module] = ACTIONS(2455), + [anon_sym_any] = ACTIONS(2455), + [anon_sym_number] = ACTIONS(2455), + [anon_sym_boolean] = ACTIONS(2455), + [anon_sym_string] = ACTIONS(2455), + [anon_sym_symbol] = ACTIONS(2455), + [anon_sym_object] = ACTIONS(2455), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(918), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2331), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), - [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [754] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_export] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_type] = ACTIONS(1784), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_with] = ACTIONS(1784), + [anon_sym_var] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_await] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_debugger] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_yield] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(1784), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_function] = ACTIONS(1784), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_void] = ACTIONS(1784), + [anon_sym_delete] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1782), + [sym_number] = ACTIONS(1782), + [sym_private_property_identifier] = ACTIONS(1782), + [sym_this] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_undefined] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_readonly] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(1784), + [anon_sym_set] = ACTIONS(1784), + [anon_sym_declare] = ACTIONS(1784), + [anon_sym_public] = ACTIONS(1784), + [anon_sym_private] = ACTIONS(1784), + [anon_sym_protected] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(1784), + [anon_sym_module] = ACTIONS(1784), + [anon_sym_any] = ACTIONS(1784), + [anon_sym_number] = ACTIONS(1784), + [anon_sym_boolean] = ACTIONS(1784), + [anon_sym_string] = ACTIONS(1784), + [anon_sym_symbol] = ACTIONS(1784), + [anon_sym_object] = ACTIONS(1784), + [anon_sym_abstract] = ACTIONS(1784), + [anon_sym_interface] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_PIPE_RBRACE] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1782), [sym_html_comment] = ACTIONS(5), }, - [751] = { - [sym__call_signature] = STATE(5481), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2443), - [anon_sym_export] = ACTIONS(2445), + [755] = { + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_namespace] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1788), + [anon_sym_with] = ACTIONS(1788), + [anon_sym_var] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_await] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_debugger] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_throw] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_finally] = ACTIONS(1788), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_class] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_function] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_using] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_SLASH] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_void] = ACTIONS(1788), + [anon_sym_delete] = ACTIONS(1788), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1786), + [sym_number] = ACTIONS(1786), + [sym_private_property_identifier] = ACTIONS(1786), + [sym_this] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_readonly] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1788), + [anon_sym_set] = ACTIONS(1788), + [anon_sym_declare] = ACTIONS(1788), + [anon_sym_public] = ACTIONS(1788), + [anon_sym_private] = ACTIONS(1788), + [anon_sym_protected] = ACTIONS(1788), + [anon_sym_override] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_any] = ACTIONS(1788), + [anon_sym_number] = ACTIONS(1788), + [anon_sym_boolean] = ACTIONS(1788), + [anon_sym_string] = ACTIONS(1788), + [anon_sym_symbol] = ACTIONS(1788), + [anon_sym_object] = ACTIONS(1788), + [anon_sym_abstract] = ACTIONS(1788), + [anon_sym_interface] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [sym_html_comment] = ACTIONS(5), + }, + [756] = { + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_private_property_identifier] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_readonly] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_object] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_PIPE_RBRACE] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(1764), + [sym_html_comment] = ACTIONS(5), + }, + [757] = { + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_namespace] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1708), + [anon_sym_with] = ACTIONS(1708), + [anon_sym_var] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_else] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_await] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_debugger] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_throw] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_class] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_function] = ACTIONS(1708), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_using] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1708), + [anon_sym_delete] = ACTIONS(1708), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1706), + [sym_number] = ACTIONS(1706), + [sym_private_property_identifier] = ACTIONS(1706), + [sym_this] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_undefined] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1706), + [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_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [anon_sym_PIPE_RBRACE] = ACTIONS(1706), + [sym__automatic_semicolon] = ACTIONS(1706), + [sym_html_comment] = ACTIONS(5), + }, + [758] = { + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1690), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_type] = ACTIONS(1690), + [anon_sym_namespace] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1690), + [anon_sym_import] = ACTIONS(1690), + [anon_sym_with] = ACTIONS(1690), + [anon_sym_var] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_else] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_switch] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_await] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_do] = ACTIONS(1690), + [anon_sym_try] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_debugger] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_throw] = ACTIONS(1690), + [anon_sym_case] = ACTIONS(1690), + [anon_sym_yield] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_class] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_function] = ACTIONS(1690), + [anon_sym_new] = ACTIONS(1690), + [anon_sym_using] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_SLASH] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_void] = ACTIONS(1690), + [anon_sym_delete] = ACTIONS(1690), + [anon_sym_PLUS_PLUS] = ACTIONS(1688), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1688), + [sym_number] = ACTIONS(1688), + [sym_private_property_identifier] = ACTIONS(1688), + [sym_this] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_true] = ACTIONS(1690), + [sym_false] = ACTIONS(1690), + [sym_null] = ACTIONS(1690), + [sym_undefined] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_readonly] = ACTIONS(1690), + [anon_sym_get] = ACTIONS(1690), + [anon_sym_set] = ACTIONS(1690), + [anon_sym_declare] = ACTIONS(1690), + [anon_sym_public] = ACTIONS(1690), + [anon_sym_private] = ACTIONS(1690), + [anon_sym_protected] = ACTIONS(1690), + [anon_sym_override] = ACTIONS(1690), + [anon_sym_module] = ACTIONS(1690), + [anon_sym_any] = ACTIONS(1690), + [anon_sym_number] = ACTIONS(1690), + [anon_sym_boolean] = ACTIONS(1690), + [anon_sym_string] = ACTIONS(1690), + [anon_sym_symbol] = ACTIONS(1690), + [anon_sym_object] = ACTIONS(1690), + [anon_sym_abstract] = ACTIONS(1690), + [anon_sym_interface] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [anon_sym_PIPE_RBRACE] = ACTIONS(1688), + [sym__automatic_semicolon] = ACTIONS(2467), + [sym_html_comment] = ACTIONS(5), + }, + [759] = { + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_namespace] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym_import] = ACTIONS(1788), + [anon_sym_with] = ACTIONS(1788), + [anon_sym_var] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_await] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_debugger] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_throw] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_class] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_function] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_using] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_SLASH] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_void] = ACTIONS(1788), + [anon_sym_delete] = ACTIONS(1788), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1786), + [sym_number] = ACTIONS(1786), + [sym_private_property_identifier] = ACTIONS(1786), + [sym_this] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_readonly] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1788), + [anon_sym_set] = ACTIONS(1788), + [anon_sym_declare] = ACTIONS(1788), + [anon_sym_public] = ACTIONS(1788), + [anon_sym_private] = ACTIONS(1788), + [anon_sym_protected] = ACTIONS(1788), + [anon_sym_override] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_any] = ACTIONS(1788), + [anon_sym_number] = ACTIONS(1788), + [anon_sym_boolean] = ACTIONS(1788), + [anon_sym_string] = ACTIONS(1788), + [anon_sym_symbol] = ACTIONS(1788), + [anon_sym_object] = ACTIONS(1788), + [anon_sym_abstract] = ACTIONS(1788), + [anon_sym_interface] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_PIPE_RBRACE] = ACTIONS(1786), + [sym__automatic_semicolon] = ACTIONS(1786), + [sym_html_comment] = ACTIONS(5), + }, + [760] = { + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_finally] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_private_property_identifier] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_readonly] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_object] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [sym_html_comment] = ACTIONS(5), + }, + [761] = { + [sym__call_signature] = STATE(5520), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2447), + [anon_sym_export] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(886), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(924), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_let] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2449), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103819,77 +104751,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_override] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), - [anon_sym_object] = ACTIONS(2445), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_object] = ACTIONS(2449), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [752] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), + [762] = { + [sym__call_signature] = STATE(5798), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2469), + [anon_sym_export] = ACTIONS(2471), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(918), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), + [anon_sym_namespace] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(154), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2431), - [anon_sym_EQ_GT] = ACTIONS(924), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2471), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2471), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -103904,759 +104836,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_readonly] = ACTIONS(2471), + [anon_sym_get] = ACTIONS(2471), + [anon_sym_set] = ACTIONS(2471), + [anon_sym_declare] = ACTIONS(2471), + [anon_sym_public] = ACTIONS(2471), + [anon_sym_private] = ACTIONS(2471), + [anon_sym_protected] = ACTIONS(2471), + [anon_sym_override] = ACTIONS(2471), + [anon_sym_module] = ACTIONS(2471), + [anon_sym_any] = ACTIONS(2471), + [anon_sym_number] = ACTIONS(2471), + [anon_sym_boolean] = ACTIONS(2471), + [anon_sym_string] = ACTIONS(2471), + [anon_sym_symbol] = ACTIONS(2471), + [anon_sym_object] = ACTIONS(2471), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_namespace] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_with] = ACTIONS(1880), - [anon_sym_var] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_switch] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_await] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_do] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_debugger] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_case] = ACTIONS(1880), - [anon_sym_catch] = ACTIONS(1880), - [anon_sym_finally] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_void] = ACTIONS(1880), - [anon_sym_delete] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [sym_private_property_identifier] = ACTIONS(1878), - [sym_this] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_true] = ACTIONS(1880), - [sym_false] = ACTIONS(1880), - [sym_null] = ACTIONS(1880), - [sym_undefined] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_readonly] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1880), - [anon_sym_declare] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_protected] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_any] = ACTIONS(1880), - [anon_sym_number] = ACTIONS(1880), - [anon_sym_boolean] = ACTIONS(1880), - [anon_sym_string] = ACTIONS(1880), - [anon_sym_symbol] = ACTIONS(1880), - [anon_sym_object] = ACTIONS(1880), - [anon_sym_abstract] = ACTIONS(1880), - [anon_sym_interface] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [sym__automatic_semicolon] = ACTIONS(2465), - [sym_html_comment] = ACTIONS(5), - }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_namespace] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_with] = ACTIONS(1880), - [anon_sym_var] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_switch] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_await] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_do] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_debugger] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_case] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_void] = ACTIONS(1880), - [anon_sym_delete] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [sym_private_property_identifier] = ACTIONS(1878), - [sym_this] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_true] = ACTIONS(1880), - [sym_false] = ACTIONS(1880), - [sym_null] = ACTIONS(1880), - [sym_undefined] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_readonly] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1880), - [anon_sym_declare] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_protected] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_any] = ACTIONS(1880), - [anon_sym_number] = ACTIONS(1880), - [anon_sym_boolean] = ACTIONS(1880), - [anon_sym_string] = ACTIONS(1880), - [anon_sym_symbol] = ACTIONS(1880), - [anon_sym_object] = ACTIONS(1880), - [anon_sym_abstract] = ACTIONS(1880), - [anon_sym_interface] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_PIPE_RBRACE] = ACTIONS(1878), - [sym__automatic_semicolon] = ACTIONS(2467), - [sym_html_comment] = ACTIONS(5), - }, - [755] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_namespace] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_with] = ACTIONS(1880), - [anon_sym_var] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_switch] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_await] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_do] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_debugger] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_case] = ACTIONS(1880), - [anon_sym_catch] = ACTIONS(1880), - [anon_sym_finally] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_void] = ACTIONS(1880), - [anon_sym_delete] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [sym_private_property_identifier] = ACTIONS(1878), - [sym_this] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_true] = ACTIONS(1880), - [sym_false] = ACTIONS(1880), - [sym_null] = ACTIONS(1880), - [sym_undefined] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_readonly] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1880), - [anon_sym_declare] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_protected] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_any] = ACTIONS(1880), - [anon_sym_number] = ACTIONS(1880), - [anon_sym_boolean] = ACTIONS(1880), - [anon_sym_string] = ACTIONS(1880), - [anon_sym_symbol] = ACTIONS(1880), - [anon_sym_object] = ACTIONS(1880), - [anon_sym_abstract] = ACTIONS(1880), - [anon_sym_interface] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [sym_html_comment] = ACTIONS(5), - }, - [756] = { - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_identifier] = ACTIONS(1886), - [anon_sym_export] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_type] = ACTIONS(1886), - [anon_sym_namespace] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_typeof] = ACTIONS(1886), - [anon_sym_import] = ACTIONS(1886), - [anon_sym_with] = ACTIONS(1886), - [anon_sym_var] = ACTIONS(1886), - [anon_sym_let] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_else] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_switch] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_await] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_try] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_debugger] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_throw] = ACTIONS(1886), - [anon_sym_case] = ACTIONS(1886), - [anon_sym_yield] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_async] = ACTIONS(1886), - [anon_sym_function] = ACTIONS(1886), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_using] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_void] = ACTIONS(1886), - [anon_sym_delete] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [sym_private_property_identifier] = ACTIONS(1884), - [sym_this] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_true] = ACTIONS(1886), - [sym_false] = ACTIONS(1886), - [sym_null] = ACTIONS(1886), - [sym_undefined] = ACTIONS(1886), - [anon_sym_AT] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_readonly] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(1886), - [anon_sym_set] = ACTIONS(1886), - [anon_sym_declare] = ACTIONS(1886), - [anon_sym_public] = ACTIONS(1886), - [anon_sym_private] = ACTIONS(1886), - [anon_sym_protected] = ACTIONS(1886), - [anon_sym_override] = ACTIONS(1886), - [anon_sym_module] = ACTIONS(1886), - [anon_sym_any] = ACTIONS(1886), - [anon_sym_number] = ACTIONS(1886), - [anon_sym_boolean] = ACTIONS(1886), - [anon_sym_string] = ACTIONS(1886), - [anon_sym_symbol] = ACTIONS(1886), - [anon_sym_object] = ACTIONS(1886), - [anon_sym_abstract] = ACTIONS(1886), - [anon_sym_interface] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_PIPE_RBRACE] = ACTIONS(1884), - [sym__automatic_semicolon] = ACTIONS(1884), - [sym_html_comment] = ACTIONS(5), - }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym_import] = ACTIONS(1722), - [anon_sym_with] = ACTIONS(1722), - [anon_sym_var] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_else] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_await] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_throw] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_class] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_using] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_TILDE] = ACTIONS(1720), - [anon_sym_void] = ACTIONS(1722), - [anon_sym_delete] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1720), - [sym_number] = ACTIONS(1720), - [sym_private_property_identifier] = ACTIONS(1720), - [sym_this] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_undefined] = ACTIONS(1722), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_protected] = ACTIONS(1722), - [anon_sym_override] = ACTIONS(1722), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1722), - [anon_sym_number] = ACTIONS(1722), - [anon_sym_boolean] = ACTIONS(1722), - [anon_sym_string] = ACTIONS(1722), - [anon_sym_symbol] = ACTIONS(1722), - [anon_sym_object] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_interface] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_PIPE_RBRACE] = ACTIONS(1720), - [sym__automatic_semicolon] = ACTIONS(1720), - [sym_html_comment] = ACTIONS(5), - }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_namespace] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_with] = ACTIONS(1880), - [anon_sym_var] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_switch] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_await] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_do] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_debugger] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_case] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_void] = ACTIONS(1880), - [anon_sym_delete] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_number] = ACTIONS(1878), - [sym_private_property_identifier] = ACTIONS(1878), - [sym_this] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_true] = ACTIONS(1880), - [sym_false] = ACTIONS(1880), - [sym_null] = ACTIONS(1880), - [sym_undefined] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_readonly] = ACTIONS(1880), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1880), - [anon_sym_declare] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_protected] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_any] = ACTIONS(1880), - [anon_sym_number] = ACTIONS(1880), - [anon_sym_boolean] = ACTIONS(1880), - [anon_sym_string] = ACTIONS(1880), - [anon_sym_symbol] = ACTIONS(1880), - [anon_sym_object] = ACTIONS(1880), - [anon_sym_abstract] = ACTIONS(1880), - [anon_sym_interface] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_PIPE_RBRACE] = ACTIONS(1878), - [sym__automatic_semicolon] = ACTIONS(1878), - [sym_html_comment] = ACTIONS(5), - }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_export] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_namespace] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(1692), - [anon_sym_import] = ACTIONS(1692), - [anon_sym_with] = ACTIONS(1692), - [anon_sym_var] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_await] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_debugger] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_throw] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_class] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_new] = ACTIONS(1692), - [anon_sym_using] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_SLASH] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_void] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1690), - [sym_number] = ACTIONS(1690), - [sym_private_property_identifier] = ACTIONS(1690), - [sym_this] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [sym_false] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [sym_undefined] = ACTIONS(1692), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_readonly] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_declare] = ACTIONS(1692), - [anon_sym_public] = ACTIONS(1692), - [anon_sym_private] = ACTIONS(1692), - [anon_sym_protected] = ACTIONS(1692), - [anon_sym_override] = ACTIONS(1692), - [anon_sym_module] = ACTIONS(1692), - [anon_sym_any] = ACTIONS(1692), - [anon_sym_number] = ACTIONS(1692), - [anon_sym_boolean] = ACTIONS(1692), - [anon_sym_string] = ACTIONS(1692), - [anon_sym_symbol] = ACTIONS(1692), - [anon_sym_object] = ACTIONS(1692), - [anon_sym_abstract] = ACTIONS(1692), - [anon_sym_interface] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [anon_sym_PIPE_RBRACE] = ACTIONS(1690), - [sym__automatic_semicolon] = ACTIONS(2469), - [sym_html_comment] = ACTIONS(5), - }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(1716), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1718), - [anon_sym_default] = ACTIONS(1718), - [anon_sym_type] = ACTIONS(1718), - [anon_sym_namespace] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_typeof] = ACTIONS(1718), - [anon_sym_import] = ACTIONS(1718), - [anon_sym_with] = ACTIONS(1718), - [anon_sym_var] = ACTIONS(1718), - [anon_sym_let] = ACTIONS(1718), - [anon_sym_const] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_else] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_await] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1718), - [anon_sym_do] = ACTIONS(1718), - [anon_sym_try] = ACTIONS(1718), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1718), - [anon_sym_debugger] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_throw] = ACTIONS(1718), - [anon_sym_case] = ACTIONS(1718), - [anon_sym_yield] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_class] = ACTIONS(1718), - [anon_sym_async] = ACTIONS(1718), - [anon_sym_function] = ACTIONS(1718), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_using] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_void] = ACTIONS(1718), - [anon_sym_delete] = ACTIONS(1718), - [anon_sym_PLUS_PLUS] = ACTIONS(1716), - [anon_sym_DASH_DASH] = ACTIONS(1716), - [anon_sym_DQUOTE] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(1716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1716), - [sym_number] = ACTIONS(1716), - [sym_private_property_identifier] = ACTIONS(1716), - [sym_this] = ACTIONS(1718), - [sym_super] = ACTIONS(1718), - [sym_true] = ACTIONS(1718), - [sym_false] = ACTIONS(1718), - [sym_null] = ACTIONS(1718), - [sym_undefined] = ACTIONS(1718), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1718), - [anon_sym_readonly] = ACTIONS(1718), - [anon_sym_get] = ACTIONS(1718), - [anon_sym_set] = ACTIONS(1718), - [anon_sym_declare] = ACTIONS(1718), - [anon_sym_public] = ACTIONS(1718), - [anon_sym_private] = ACTIONS(1718), - [anon_sym_protected] = ACTIONS(1718), - [anon_sym_override] = ACTIONS(1718), - [anon_sym_module] = ACTIONS(1718), - [anon_sym_any] = ACTIONS(1718), - [anon_sym_number] = ACTIONS(1718), - [anon_sym_boolean] = ACTIONS(1718), - [anon_sym_string] = ACTIONS(1718), - [anon_sym_symbol] = ACTIONS(1718), - [anon_sym_object] = ACTIONS(1718), - [anon_sym_abstract] = ACTIONS(1718), - [anon_sym_interface] = ACTIONS(1718), - [anon_sym_enum] = ACTIONS(1718), - [anon_sym_PIPE_RBRACE] = ACTIONS(1716), - [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [761] = { - [sym__call_signature] = STATE(5764), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2471), - [anon_sym_export] = ACTIONS(2473), + [763] = { + [sym__call_signature] = STATE(5520), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2447), + [anon_sym_export] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(964), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2449), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(970), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104671,77 +104921,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_readonly] = ACTIONS(2473), - [anon_sym_get] = ACTIONS(2473), - [anon_sym_set] = ACTIONS(2473), - [anon_sym_declare] = ACTIONS(2473), - [anon_sym_public] = ACTIONS(2473), - [anon_sym_private] = ACTIONS(2473), - [anon_sym_protected] = ACTIONS(2473), - [anon_sym_override] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_any] = ACTIONS(2473), - [anon_sym_number] = ACTIONS(2473), - [anon_sym_boolean] = ACTIONS(2473), - [anon_sym_string] = ACTIONS(2473), - [anon_sym_symbol] = ACTIONS(2473), - [anon_sym_object] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_object] = ACTIONS(2449), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [762] = { - [sym__call_signature] = STATE(5481), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2443), - [anon_sym_export] = ACTIONS(2445), + [764] = { + [sym__call_signature] = STATE(5572), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2473), + [anon_sym_export] = ACTIONS(2475), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_EQ] = ACTIONS(948), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_let] = ACTIONS(2475), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2445), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2475), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104756,77 +105006,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_override] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), - [anon_sym_object] = ACTIONS(2445), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_readonly] = ACTIONS(2475), + [anon_sym_get] = ACTIONS(2475), + [anon_sym_set] = ACTIONS(2475), + [anon_sym_declare] = ACTIONS(2475), + [anon_sym_public] = ACTIONS(2475), + [anon_sym_private] = ACTIONS(2475), + [anon_sym_protected] = ACTIONS(2475), + [anon_sym_override] = ACTIONS(2475), + [anon_sym_module] = ACTIONS(2475), + [anon_sym_any] = ACTIONS(2475), + [anon_sym_number] = ACTIONS(2475), + [anon_sym_boolean] = ACTIONS(2475), + [anon_sym_string] = ACTIONS(2475), + [anon_sym_symbol] = ACTIONS(2475), + [anon_sym_object] = ACTIONS(2475), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [763] = { - [sym__call_signature] = STATE(5764), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2471), - [anon_sym_export] = ACTIONS(2473), + [765] = { + [sym__call_signature] = STATE(5572), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2473), + [anon_sym_export] = ACTIONS(2475), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2473), + [anon_sym_type] = ACTIONS(2475), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_let] = ACTIONS(2475), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2473), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2475), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(970), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104841,77 +105091,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2473), - [anon_sym_readonly] = ACTIONS(2473), - [anon_sym_get] = ACTIONS(2473), - [anon_sym_set] = ACTIONS(2473), - [anon_sym_declare] = ACTIONS(2473), - [anon_sym_public] = ACTIONS(2473), - [anon_sym_private] = ACTIONS(2473), - [anon_sym_protected] = ACTIONS(2473), - [anon_sym_override] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_any] = ACTIONS(2473), - [anon_sym_number] = ACTIONS(2473), - [anon_sym_boolean] = ACTIONS(2473), - [anon_sym_string] = ACTIONS(2473), - [anon_sym_symbol] = ACTIONS(2473), - [anon_sym_object] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_readonly] = ACTIONS(2475), + [anon_sym_get] = ACTIONS(2475), + [anon_sym_set] = ACTIONS(2475), + [anon_sym_declare] = ACTIONS(2475), + [anon_sym_public] = ACTIONS(2475), + [anon_sym_private] = ACTIONS(2475), + [anon_sym_protected] = ACTIONS(2475), + [anon_sym_override] = ACTIONS(2475), + [anon_sym_module] = ACTIONS(2475), + [anon_sym_any] = ACTIONS(2475), + [anon_sym_number] = ACTIONS(2475), + [anon_sym_boolean] = ACTIONS(2475), + [anon_sym_string] = ACTIONS(2475), + [anon_sym_symbol] = ACTIONS(2475), + [anon_sym_object] = ACTIONS(2475), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [764] = { - [sym__call_signature] = STATE(5533), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2475), - [anon_sym_export] = ACTIONS(2477), + [766] = { + [sym__call_signature] = STATE(5798), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), + [sym_identifier] = ACTIONS(2469), + [anon_sym_export] = ACTIONS(2471), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_EQ] = ACTIONS(964), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2477), - [anon_sym_let] = ACTIONS(2477), + [anon_sym_namespace] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2477), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_async] = ACTIONS(2471), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2471), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -104926,43 +105176,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2477), - [anon_sym_readonly] = ACTIONS(2477), - [anon_sym_get] = ACTIONS(2477), - [anon_sym_set] = ACTIONS(2477), - [anon_sym_declare] = ACTIONS(2477), - [anon_sym_public] = ACTIONS(2477), - [anon_sym_private] = ACTIONS(2477), - [anon_sym_protected] = ACTIONS(2477), - [anon_sym_override] = ACTIONS(2477), - [anon_sym_module] = ACTIONS(2477), - [anon_sym_any] = ACTIONS(2477), - [anon_sym_number] = ACTIONS(2477), - [anon_sym_boolean] = ACTIONS(2477), - [anon_sym_string] = ACTIONS(2477), - [anon_sym_symbol] = ACTIONS(2477), - [anon_sym_object] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_readonly] = ACTIONS(2471), + [anon_sym_get] = ACTIONS(2471), + [anon_sym_set] = ACTIONS(2471), + [anon_sym_declare] = ACTIONS(2471), + [anon_sym_public] = ACTIONS(2471), + [anon_sym_private] = ACTIONS(2471), + [anon_sym_protected] = ACTIONS(2471), + [anon_sym_override] = ACTIONS(2471), + [anon_sym_module] = ACTIONS(2471), + [anon_sym_any] = ACTIONS(2471), + [anon_sym_number] = ACTIONS(2471), + [anon_sym_boolean] = ACTIONS(2471), + [anon_sym_string] = ACTIONS(2471), + [anon_sym_symbol] = ACTIONS(2471), + [anon_sym_object] = ACTIONS(2471), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [765] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [767] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), @@ -104973,30 +105223,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_in] = ACTIONS(902), - [anon_sym_of] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105011,19 +105261,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -105041,183 +105291,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [766] = { - [sym__call_signature] = STATE(5533), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2475), - [anon_sym_export] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2477), - [anon_sym_let] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2477), - [anon_sym_readonly] = ACTIONS(2477), - [anon_sym_get] = ACTIONS(2477), - [anon_sym_set] = ACTIONS(2477), - [anon_sym_declare] = ACTIONS(2477), - [anon_sym_public] = ACTIONS(2477), - [anon_sym_private] = ACTIONS(2477), - [anon_sym_protected] = ACTIONS(2477), - [anon_sym_override] = ACTIONS(2477), - [anon_sym_module] = ACTIONS(2477), - [anon_sym_any] = ACTIONS(2477), - [anon_sym_number] = ACTIONS(2477), - [anon_sym_boolean] = ACTIONS(2477), - [anon_sym_string] = ACTIONS(2477), - [anon_sym_symbol] = ACTIONS(2477), - [anon_sym_object] = ACTIONS(2477), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [767] = { - [sym__call_signature] = STATE(5481), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), - [sym_identifier] = ACTIONS(2443), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_override] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), - [anon_sym_object] = ACTIONS(2445), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [768] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), @@ -105228,30 +105308,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_in] = ACTIONS(880), + [anon_sym_of] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105266,19 +105346,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -105296,215 +105376,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [769] = { - [ts_builtin_sym_end] = ACTIONS(1716), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1718), - [anon_sym_default] = ACTIONS(1718), - [anon_sym_type] = ACTIONS(1718), - [anon_sym_namespace] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_typeof] = ACTIONS(1718), - [anon_sym_import] = ACTIONS(1718), - [anon_sym_with] = ACTIONS(1718), - [anon_sym_var] = ACTIONS(1718), - [anon_sym_let] = ACTIONS(1718), - [anon_sym_const] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_else] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_await] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1718), - [anon_sym_do] = ACTIONS(1718), - [anon_sym_try] = ACTIONS(1718), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1718), - [anon_sym_debugger] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_throw] = ACTIONS(1718), - [anon_sym_case] = ACTIONS(1718), - [anon_sym_catch] = ACTIONS(1718), - [anon_sym_finally] = ACTIONS(1718), - [anon_sym_yield] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_class] = ACTIONS(1718), - [anon_sym_async] = ACTIONS(1718), - [anon_sym_function] = ACTIONS(1718), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_using] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_void] = ACTIONS(1718), - [anon_sym_delete] = ACTIONS(1718), - [anon_sym_PLUS_PLUS] = ACTIONS(1716), - [anon_sym_DASH_DASH] = ACTIONS(1716), - [anon_sym_DQUOTE] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(1716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1716), - [sym_number] = ACTIONS(1716), - [sym_private_property_identifier] = ACTIONS(1716), - [sym_this] = ACTIONS(1718), - [sym_super] = ACTIONS(1718), - [sym_true] = ACTIONS(1718), - [sym_false] = ACTIONS(1718), - [sym_null] = ACTIONS(1718), - [sym_undefined] = ACTIONS(1718), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1718), - [anon_sym_readonly] = ACTIONS(1718), - [anon_sym_get] = ACTIONS(1718), - [anon_sym_set] = ACTIONS(1718), - [anon_sym_declare] = ACTIONS(1718), - [anon_sym_public] = ACTIONS(1718), - [anon_sym_private] = ACTIONS(1718), - [anon_sym_protected] = ACTIONS(1718), - [anon_sym_override] = ACTIONS(1718), - [anon_sym_module] = ACTIONS(1718), - [anon_sym_any] = ACTIONS(1718), - [anon_sym_number] = ACTIONS(1718), - [anon_sym_boolean] = ACTIONS(1718), - [anon_sym_string] = ACTIONS(1718), - [anon_sym_symbol] = ACTIONS(1718), - [anon_sym_object] = ACTIONS(1718), - [anon_sym_abstract] = ACTIONS(1718), - [anon_sym_interface] = ACTIONS(1718), - [anon_sym_enum] = ACTIONS(1718), + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_namespace] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_await] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_debugger] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_TILDE] = ACTIONS(1764), + [anon_sym_void] = ACTIONS(1766), + [anon_sym_delete] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_DQUOTE] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1764), + [sym_number] = ACTIONS(1764), + [sym_private_property_identifier] = ACTIONS(1764), + [sym_this] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_undefined] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_readonly] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(1766), + [anon_sym_set] = ACTIONS(1766), + [anon_sym_declare] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_protected] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_module] = ACTIONS(1766), + [anon_sym_any] = ACTIONS(1766), + [anon_sym_number] = ACTIONS(1766), + [anon_sym_boolean] = ACTIONS(1766), + [anon_sym_string] = ACTIONS(1766), + [anon_sym_symbol] = ACTIONS(1766), + [anon_sym_object] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_PIPE_RBRACE] = ACTIONS(1764), + [sym__automatic_semicolon] = ACTIONS(2477), [sym_html_comment] = ACTIONS(5), }, [770] = { - [sym_finally_clause] = STATE(826), - [ts_builtin_sym_end] = ACTIONS(2479), - [sym_identifier] = ACTIONS(2481), - [anon_sym_export] = ACTIONS(2481), - [anon_sym_default] = ACTIONS(2481), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_namespace] = ACTIONS(2481), + [sym_statement_block] = STATE(870), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1674), [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_typeof] = ACTIONS(2481), - [anon_sym_import] = ACTIONS(2481), - [anon_sym_with] = ACTIONS(2481), - [anon_sym_var] = ACTIONS(2481), - [anon_sym_let] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_switch] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_debugger] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_throw] = ACTIONS(2481), - [anon_sym_case] = ACTIONS(2481), - [anon_sym_finally] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2481), - [anon_sym_async] = ACTIONS(2481), - [anon_sym_function] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_using] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_void] = ACTIONS(2481), - [anon_sym_delete] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_SQUOTE] = ACTIONS(2479), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2479), - [sym_number] = ACTIONS(2479), - [sym_private_property_identifier] = ACTIONS(2479), - [sym_this] = ACTIONS(2481), - [sym_super] = ACTIONS(2481), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_null] = ACTIONS(2481), - [sym_undefined] = ACTIONS(2481), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2481), - [anon_sym_readonly] = ACTIONS(2481), - [anon_sym_get] = ACTIONS(2481), - [anon_sym_set] = ACTIONS(2481), - [anon_sym_declare] = ACTIONS(2481), - [anon_sym_public] = ACTIONS(2481), - [anon_sym_private] = ACTIONS(2481), - [anon_sym_protected] = ACTIONS(2481), - [anon_sym_override] = ACTIONS(2481), - [anon_sym_module] = ACTIONS(2481), - [anon_sym_any] = ACTIONS(2481), - [anon_sym_number] = ACTIONS(2481), - [anon_sym_boolean] = ACTIONS(2481), - [anon_sym_string] = ACTIONS(2481), - [anon_sym_symbol] = ACTIONS(2481), - [anon_sym_object] = ACTIONS(2481), - [anon_sym_abstract] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_with] = ACTIONS(1674), + [anon_sym_var] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_debugger] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(2481), + [anon_sym_class] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_function] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1674), + [anon_sym_delete] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1672), + [sym_private_property_identifier] = ACTIONS(1672), + [sym_this] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_null] = ACTIONS(1674), + [sym_undefined] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_readonly] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1674), + [anon_sym_set] = ACTIONS(1674), + [anon_sym_declare] = ACTIONS(1674), + [anon_sym_public] = ACTIONS(1674), + [anon_sym_private] = ACTIONS(1674), + [anon_sym_protected] = ACTIONS(1674), + [anon_sym_override] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [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(1674), + [anon_sym_interface] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), [sym_html_comment] = ACTIONS(5), }, [771] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(978), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105519,19 +105599,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -105549,46 +105629,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [772] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [sym_statement_block] = STATE(870), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_with] = ACTIONS(1674), + [anon_sym_var] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_debugger] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_function] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1674), + [anon_sym_delete] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1672), + [sym_private_property_identifier] = ACTIONS(1672), + [sym_this] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_null] = ACTIONS(1674), + [sym_undefined] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_readonly] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1674), + [anon_sym_set] = ACTIONS(1674), + [anon_sym_declare] = ACTIONS(1674), + [anon_sym_public] = ACTIONS(1674), + [anon_sym_private] = ACTIONS(1674), + [anon_sym_protected] = ACTIONS(1674), + [anon_sym_override] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [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(1674), + [anon_sym_interface] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [sym_html_comment] = ACTIONS(5), + }, + [773] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(982), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105603,19 +105767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -105633,46 +105797,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [773] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [774] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(986), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105687,19 +105851,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -105717,46 +105881,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [774] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [775] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(984), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105771,19 +105935,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -105801,46 +105965,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [775] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [776] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105855,19 +106019,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -105885,46 +106049,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [776] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [777] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(988), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -105939,19 +106103,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -105969,46 +106133,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [777] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [778] = { + [sym_finally_clause] = STATE(871), + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2487), + [anon_sym_export] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_typeof] = ACTIONS(2487), + [anon_sym_import] = ACTIONS(2487), + [anon_sym_with] = ACTIONS(2487), + [anon_sym_var] = ACTIONS(2487), + [anon_sym_let] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_await] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_debugger] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2487), + [anon_sym_finally] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_function] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_void] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2485), + [sym_number] = ACTIONS(2485), + [sym_private_property_identifier] = ACTIONS(2485), + [sym_this] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_undefined] = ACTIONS(2487), + [anon_sym_AT] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_get] = ACTIONS(2487), + [anon_sym_set] = ACTIONS(2487), + [anon_sym_declare] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_private] = ACTIONS(2487), + [anon_sym_protected] = ACTIONS(2487), + [anon_sym_override] = ACTIONS(2487), + [anon_sym_module] = ACTIONS(2487), + [anon_sym_any] = ACTIONS(2487), + [anon_sym_number] = ACTIONS(2487), + [anon_sym_boolean] = ACTIONS(2487), + [anon_sym_string] = ACTIONS(2487), + [anon_sym_symbol] = ACTIONS(2487), + [anon_sym_object] = ACTIONS(2487), + [anon_sym_abstract] = ACTIONS(2487), + [anon_sym_interface] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [sym_html_comment] = ACTIONS(5), + }, + [779] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(1042), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -106023,19 +106271,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -106053,46 +106301,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [778] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [780] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_EQ] = ACTIONS(976), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -106107,19 +106355,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -106137,46 +106385,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [779] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [781] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(974), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -106191,19 +106439,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -106221,130 +106469,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [780] = { - [sym_statement_block] = STATE(882), - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_export] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_namespace] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_typeof] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1676), - [anon_sym_with] = ACTIONS(1676), - [anon_sym_var] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_debugger] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_using] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_void] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1674), - [sym_number] = ACTIONS(1674), - [sym_private_property_identifier] = ACTIONS(1674), - [sym_this] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_true] = ACTIONS(1676), - [sym_false] = ACTIONS(1676), - [sym_null] = ACTIONS(1676), - [sym_undefined] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_readonly] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_declare] = ACTIONS(1676), - [anon_sym_public] = ACTIONS(1676), - [anon_sym_private] = ACTIONS(1676), - [anon_sym_protected] = ACTIONS(1676), - [anon_sym_override] = ACTIONS(1676), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_any] = ACTIONS(1676), - [anon_sym_number] = ACTIONS(1676), - [anon_sym_boolean] = ACTIONS(1676), - [anon_sym_string] = ACTIONS(1676), - [anon_sym_symbol] = ACTIONS(1676), - [anon_sym_object] = ACTIONS(1676), - [anon_sym_abstract] = ACTIONS(1676), - [anon_sym_interface] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), - [sym_html_comment] = ACTIONS(5), - }, - [781] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [782] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(980), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -106359,19 +106523,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -106389,46 +106553,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [782] = { - [sym__call_signature] = STATE(5834), - [sym_formal_parameters] = STATE(3806), - [sym_type_parameters] = STATE(5328), + [783] = { + [sym__call_signature] = STATE(5833), + [sym_formal_parameters] = STATE(3860), + [sym_type_parameters] = STATE(5217), [sym_identifier] = ACTIONS(2411), [anon_sym_export] = ACTIONS(2413), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2413), - [anon_sym_EQ] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(1044), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2413), [anon_sym_let] = ACTIONS(2413), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_async] = ACTIONS(2413), [anon_sym_function] = ACTIONS(2418), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), [anon_sym_new] = ACTIONS(2413), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -106443,19 +106607,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_static] = ACTIONS(2413), [anon_sym_readonly] = ACTIONS(2413), [anon_sym_get] = ACTIONS(2413), @@ -106473,177 +106637,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2413), [anon_sym_object] = ACTIONS(2413), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [783] = { - [sym_statement_block] = STATE(882), - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_export] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_namespace] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_typeof] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1676), - [anon_sym_with] = ACTIONS(1676), - [anon_sym_var] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_debugger] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_using] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_void] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1674), - [sym_number] = ACTIONS(1674), - [sym_private_property_identifier] = ACTIONS(1674), - [sym_this] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_true] = ACTIONS(1676), - [sym_false] = ACTIONS(1676), - [sym_null] = ACTIONS(1676), - [sym_undefined] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_readonly] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_declare] = ACTIONS(1676), - [anon_sym_public] = ACTIONS(1676), - [anon_sym_private] = ACTIONS(1676), - [anon_sym_protected] = ACTIONS(1676), - [anon_sym_override] = ACTIONS(1676), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_any] = ACTIONS(1676), - [anon_sym_number] = ACTIONS(1676), - [anon_sym_boolean] = ACTIONS(1676), - [anon_sym_string] = ACTIONS(1676), - [anon_sym_symbol] = ACTIONS(1676), - [anon_sym_object] = ACTIONS(1676), - [anon_sym_abstract] = ACTIONS(1676), - [anon_sym_interface] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), + [784] = { + [sym_else_clause] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_export] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_typeof] = ACTIONS(2491), + [anon_sym_import] = ACTIONS(2491), + [anon_sym_with] = ACTIONS(2491), + [anon_sym_var] = ACTIONS(2491), + [anon_sym_let] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_await] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_debugger] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2491), + [anon_sym_yield] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(2491), + [anon_sym_function] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_using] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_void] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2489), + [sym_number] = ACTIONS(2489), + [sym_private_property_identifier] = ACTIONS(2489), + [sym_this] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_undefined] = ACTIONS(2491), + [anon_sym_AT] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_readonly] = ACTIONS(2491), + [anon_sym_get] = ACTIONS(2491), + [anon_sym_set] = ACTIONS(2491), + [anon_sym_declare] = ACTIONS(2491), + [anon_sym_public] = ACTIONS(2491), + [anon_sym_private] = ACTIONS(2491), + [anon_sym_protected] = ACTIONS(2491), + [anon_sym_override] = ACTIONS(2491), + [anon_sym_module] = ACTIONS(2491), + [anon_sym_any] = ACTIONS(2491), + [anon_sym_number] = ACTIONS(2491), + [anon_sym_boolean] = ACTIONS(2491), + [anon_sym_string] = ACTIONS(2491), + [anon_sym_symbol] = ACTIONS(2491), + [anon_sym_object] = ACTIONS(2491), + [anon_sym_abstract] = ACTIONS(2491), + [anon_sym_interface] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), [sym_html_comment] = ACTIONS(5), }, - [784] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4999), - [sym_optional_tuple_parameter] = STATE(4999), - [sym_optional_type] = STATE(4999), - [sym_rest_type] = STATE(4999), - [sym__tuple_type_member] = STATE(4999), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), + [785] = { + [ts_builtin_sym_end] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2497), + [anon_sym_export] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_namespace] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(2497), + [anon_sym_import] = ACTIONS(2497), + [anon_sym_with] = ACTIONS(2497), + [anon_sym_var] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_switch] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_await] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_debugger] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_throw] = ACTIONS(2497), + [anon_sym_case] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_function] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_using] = ACTIONS(2497), [anon_sym_PLUS] = ACTIONS(2497), [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_SLASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_void] = ACTIONS(2497), + [anon_sym_delete] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2495), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2495), + [sym_number] = ACTIONS(2495), + [sym_private_property_identifier] = ACTIONS(2495), + [sym_this] = ACTIONS(2497), + [sym_super] = ACTIONS(2497), + [sym_true] = ACTIONS(2497), + [sym_false] = ACTIONS(2497), + [sym_null] = ACTIONS(2497), + [sym_undefined] = ACTIONS(2497), + [anon_sym_AT] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_readonly] = ACTIONS(2497), + [anon_sym_get] = ACTIONS(2497), + [anon_sym_set] = ACTIONS(2497), + [anon_sym_declare] = ACTIONS(2497), + [anon_sym_public] = ACTIONS(2497), + [anon_sym_private] = ACTIONS(2497), + [anon_sym_protected] = ACTIONS(2497), + [anon_sym_override] = ACTIONS(2497), + [anon_sym_module] = ACTIONS(2497), + [anon_sym_any] = ACTIONS(2497), + [anon_sym_number] = ACTIONS(2497), + [anon_sym_boolean] = ACTIONS(2497), + [anon_sym_string] = ACTIONS(2497), + [anon_sym_symbol] = ACTIONS(2497), + [anon_sym_object] = ACTIONS(2497), + [anon_sym_abstract] = ACTIONS(2497), + [anon_sym_interface] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [sym__automatic_semicolon] = ACTIONS(2499), [sym_html_comment] = ACTIONS(5), }, - [785] = { + [786] = { [ts_builtin_sym_end] = ACTIONS(2501), [sym_identifier] = ACTIONS(2503), [anon_sym_export] = ACTIONS(2503), @@ -106664,7 +106827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2503), [anon_sym_for] = ACTIONS(2503), [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2501), [anon_sym_await] = ACTIONS(2503), [anon_sym_while] = ACTIONS(2503), [anon_sym_do] = ACTIONS(2503), @@ -106675,6 +106838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2503), [anon_sym_throw] = ACTIONS(2503), [anon_sym_case] = ACTIONS(2503), + [anon_sym_finally] = ACTIONS(2503), [anon_sym_yield] = ACTIONS(2503), [anon_sym_LBRACK] = ACTIONS(2501), [anon_sym_class] = ACTIONS(2503), @@ -106723,508 +106887,839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2503), [anon_sym_interface] = ACTIONS(2503), [anon_sym_enum] = ACTIONS(2503), - [sym__automatic_semicolon] = ACTIONS(2505), [sym_html_comment] = ACTIONS(5), }, - [786] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_export] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_namespace] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_typeof] = ACTIONS(1812), - [anon_sym_import] = ACTIONS(1812), - [anon_sym_with] = ACTIONS(1812), - [anon_sym_var] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_switch] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_await] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_do] = ACTIONS(1812), - [anon_sym_try] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_debugger] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_throw] = ACTIONS(1812), - [anon_sym_case] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_class] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_function] = ACTIONS(1812), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_using] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_TILDE] = ACTIONS(1810), - [anon_sym_void] = ACTIONS(1812), - [anon_sym_delete] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1810), - [sym_number] = ACTIONS(1810), - [sym_private_property_identifier] = ACTIONS(1810), - [sym_this] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_true] = ACTIONS(1812), - [sym_false] = ACTIONS(1812), - [sym_null] = ACTIONS(1812), - [sym_undefined] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_readonly] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(1812), - [anon_sym_set] = ACTIONS(1812), - [anon_sym_declare] = ACTIONS(1812), - [anon_sym_public] = ACTIONS(1812), - [anon_sym_private] = ACTIONS(1812), - [anon_sym_protected] = ACTIONS(1812), - [anon_sym_override] = ACTIONS(1812), - [anon_sym_module] = ACTIONS(1812), - [anon_sym_any] = ACTIONS(1812), - [anon_sym_number] = ACTIONS(1812), - [anon_sym_boolean] = ACTIONS(1812), - [anon_sym_string] = ACTIONS(1812), - [anon_sym_symbol] = ACTIONS(1812), - [anon_sym_object] = ACTIONS(1812), - [anon_sym_abstract] = ACTIONS(1812), - [anon_sym_interface] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [sym__automatic_semicolon] = ACTIONS(1818), + [787] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4582), + [sym_optional_tuple_parameter] = STATE(4582), + [sym_optional_type] = STATE(4582), + [sym_rest_type] = STATE(4582), + [sym__tuple_type_member] = STATE(4582), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2507), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [788] = { + [ts_builtin_sym_end] = ACTIONS(2517), + [sym_identifier] = ACTIONS(2519), + [anon_sym_export] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_typeof] = ACTIONS(2519), + [anon_sym_import] = ACTIONS(2519), + [anon_sym_with] = ACTIONS(2519), + [anon_sym_var] = ACTIONS(2519), + [anon_sym_let] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2517), + [anon_sym_await] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_debugger] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_yield] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_async] = ACTIONS(2519), + [anon_sym_function] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_using] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_SLASH] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2517), + [anon_sym_TILDE] = ACTIONS(2517), + [anon_sym_void] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2517), + [sym_number] = ACTIONS(2517), + [sym_private_property_identifier] = ACTIONS(2517), + [sym_this] = ACTIONS(2519), + [sym_super] = ACTIONS(2519), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_undefined] = ACTIONS(2519), + [anon_sym_AT] = ACTIONS(2517), + [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), + [anon_sym_abstract] = ACTIONS(2519), + [anon_sym_interface] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [sym_html_comment] = ACTIONS(5), + }, + [789] = { + [sym_statement_block] = STATE(870), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_with] = ACTIONS(1674), + [anon_sym_var] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_debugger] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_throw] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_function] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_void] = ACTIONS(1674), + [anon_sym_delete] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1672), + [sym_private_property_identifier] = ACTIONS(1672), + [sym_this] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [sym_null] = ACTIONS(1674), + [sym_undefined] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_readonly] = ACTIONS(1674), + [anon_sym_get] = ACTIONS(1674), + [anon_sym_set] = ACTIONS(1674), + [anon_sym_declare] = ACTIONS(1674), + [anon_sym_public] = ACTIONS(1674), + [anon_sym_private] = ACTIONS(1674), + [anon_sym_protected] = ACTIONS(1674), + [anon_sym_override] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [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(1674), + [anon_sym_interface] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [sym_html_comment] = ACTIONS(5), + }, + [790] = { + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1722), + [anon_sym_import] = ACTIONS(1722), + [anon_sym_with] = ACTIONS(1722), + [anon_sym_var] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_await] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_debugger] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_throw] = ACTIONS(1722), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_function] = ACTIONS(1722), + [anon_sym_new] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1722), + [anon_sym_delete] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1720), + [sym_number] = ACTIONS(1720), + [sym_private_property_identifier] = ACTIONS(1720), + [sym_this] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_undefined] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_readonly] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_override] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [anon_sym_object] = ACTIONS(1722), + [anon_sym_abstract] = ACTIONS(1722), + [anon_sym_interface] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(1728), + [sym_html_comment] = ACTIONS(5), + }, + [791] = { + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_await] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_debugger] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_function] = ACTIONS(1732), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_void] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1730), + [sym_private_property_identifier] = ACTIONS(1730), + [sym_this] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_interface] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [sym__automatic_semicolon] = ACTIONS(1738), [sym_html_comment] = ACTIONS(5), }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_typeof] = ACTIONS(2509), - [anon_sym_import] = ACTIONS(2509), - [anon_sym_with] = ACTIONS(2509), - [anon_sym_var] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_switch] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_debugger] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_throw] = ACTIONS(2509), - [anon_sym_case] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_function] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_using] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_void] = ACTIONS(2509), - [anon_sym_delete] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [anon_sym_SQUOTE] = ACTIONS(2507), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2507), - [sym_number] = ACTIONS(2507), - [sym_private_property_identifier] = ACTIONS(2507), - [sym_this] = ACTIONS(2509), - [sym_super] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_null] = ACTIONS(2509), - [sym_undefined] = ACTIONS(2509), - [anon_sym_AT] = ACTIONS(2507), - [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), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [sym__automatic_semicolon] = ACTIONS(2507), + [792] = { + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1750), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_namespace] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1750), + [anon_sym_import] = ACTIONS(1750), + [anon_sym_with] = ACTIONS(1750), + [anon_sym_var] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_else] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_switch] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_await] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_do] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_debugger] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_throw] = ACTIONS(1750), + [anon_sym_case] = ACTIONS(1750), + [anon_sym_yield] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(1750), + [anon_sym_async] = ACTIONS(1750), + [anon_sym_function] = ACTIONS(1750), + [anon_sym_new] = ACTIONS(1750), + [anon_sym_using] = ACTIONS(1750), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_TILDE] = ACTIONS(1748), + [anon_sym_void] = ACTIONS(1750), + [anon_sym_delete] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1748), + [anon_sym_DASH_DASH] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1748), + [sym_number] = ACTIONS(1748), + [sym_private_property_identifier] = ACTIONS(1748), + [sym_this] = ACTIONS(1750), + [sym_super] = ACTIONS(1750), + [sym_true] = ACTIONS(1750), + [sym_false] = ACTIONS(1750), + [sym_null] = ACTIONS(1750), + [sym_undefined] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_readonly] = ACTIONS(1750), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1750), + [anon_sym_declare] = ACTIONS(1750), + [anon_sym_public] = ACTIONS(1750), + [anon_sym_private] = ACTIONS(1750), + [anon_sym_protected] = ACTIONS(1750), + [anon_sym_override] = ACTIONS(1750), + [anon_sym_module] = ACTIONS(1750), + [anon_sym_any] = ACTIONS(1750), + [anon_sym_number] = ACTIONS(1750), + [anon_sym_boolean] = ACTIONS(1750), + [anon_sym_string] = ACTIONS(1750), + [anon_sym_symbol] = ACTIONS(1750), + [anon_sym_object] = ACTIONS(1750), + [anon_sym_abstract] = ACTIONS(1750), + [anon_sym_interface] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1750), + [sym__automatic_semicolon] = ACTIONS(1756), [sym_html_comment] = ACTIONS(5), }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [sym_identifier] = ACTIONS(1708), - [anon_sym_export] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_namespace] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1708), - [anon_sym_import] = ACTIONS(1708), - [anon_sym_with] = ACTIONS(1708), - [anon_sym_var] = ACTIONS(1708), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_await] = ACTIONS(1708), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_do] = ACTIONS(1708), - [anon_sym_try] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_debugger] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_throw] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_yield] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_class] = ACTIONS(1708), - [anon_sym_async] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_new] = ACTIONS(1708), - [anon_sym_using] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_void] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1706), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1706), - [sym_number] = ACTIONS(1706), - [sym_private_property_identifier] = ACTIONS(1706), - [sym_this] = ACTIONS(1708), - [sym_super] = ACTIONS(1708), - [sym_true] = ACTIONS(1708), - [sym_false] = ACTIONS(1708), - [sym_null] = ACTIONS(1708), - [sym_undefined] = ACTIONS(1708), - [anon_sym_AT] = ACTIONS(1706), - [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_abstract] = ACTIONS(1708), - [anon_sym_interface] = ACTIONS(1708), - [anon_sym_enum] = ACTIONS(1708), - [sym__automatic_semicolon] = ACTIONS(1714), + [793] = { + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(1798), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1798), + [anon_sym_namespace] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_typeof] = ACTIONS(1798), + [anon_sym_import] = ACTIONS(1798), + [anon_sym_with] = ACTIONS(1798), + [anon_sym_var] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_do] = ACTIONS(1798), + [anon_sym_try] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_debugger] = ACTIONS(1798), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_throw] = ACTIONS(1798), + [anon_sym_case] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_class] = ACTIONS(1798), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_function] = ACTIONS(1798), + [anon_sym_new] = ACTIONS(1798), + [anon_sym_using] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_SLASH] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_TILDE] = ACTIONS(1796), + [anon_sym_void] = ACTIONS(1798), + [anon_sym_delete] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1796), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1796), + [sym_number] = ACTIONS(1796), + [sym_private_property_identifier] = ACTIONS(1796), + [sym_this] = ACTIONS(1798), + [sym_super] = ACTIONS(1798), + [sym_true] = ACTIONS(1798), + [sym_false] = ACTIONS(1798), + [sym_null] = ACTIONS(1798), + [sym_undefined] = ACTIONS(1798), + [anon_sym_AT] = ACTIONS(1796), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_readonly] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1798), + [anon_sym_set] = ACTIONS(1798), + [anon_sym_declare] = ACTIONS(1798), + [anon_sym_public] = ACTIONS(1798), + [anon_sym_private] = ACTIONS(1798), + [anon_sym_protected] = ACTIONS(1798), + [anon_sym_override] = ACTIONS(1798), + [anon_sym_module] = ACTIONS(1798), + [anon_sym_any] = ACTIONS(1798), + [anon_sym_number] = ACTIONS(1798), + [anon_sym_boolean] = ACTIONS(1798), + [anon_sym_string] = ACTIONS(1798), + [anon_sym_symbol] = ACTIONS(1798), + [anon_sym_object] = ACTIONS(1798), + [anon_sym_abstract] = ACTIONS(1798), + [anon_sym_interface] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [sym__automatic_semicolon] = ACTIONS(1804), [sym_html_comment] = ACTIONS(5), }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(1888), - [sym_identifier] = ACTIONS(1890), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_default] = ACTIONS(1890), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_namespace] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_typeof] = ACTIONS(1890), - [anon_sym_import] = ACTIONS(1890), - [anon_sym_with] = ACTIONS(1890), - [anon_sym_var] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_await] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_debugger] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_throw] = ACTIONS(1890), - [anon_sym_case] = ACTIONS(1890), - [anon_sym_yield] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_DOT] = ACTIONS(1890), - [anon_sym_class] = ACTIONS(1890), - [anon_sym_async] = ACTIONS(1890), - [anon_sym_function] = ACTIONS(1890), - [anon_sym_new] = ACTIONS(1890), - [anon_sym_using] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_SLASH] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1888), - [anon_sym_void] = ACTIONS(1890), - [anon_sym_delete] = ACTIONS(1890), - [anon_sym_PLUS_PLUS] = ACTIONS(1888), - [anon_sym_DASH_DASH] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1888), - [sym_number] = ACTIONS(1888), - [sym_private_property_identifier] = ACTIONS(1888), - [sym_this] = ACTIONS(1890), - [sym_super] = ACTIONS(1890), - [sym_true] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [sym_null] = ACTIONS(1890), - [sym_undefined] = ACTIONS(1890), - [anon_sym_AT] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_readonly] = ACTIONS(1890), - [anon_sym_get] = ACTIONS(1890), - [anon_sym_set] = ACTIONS(1890), - [anon_sym_declare] = ACTIONS(1890), - [anon_sym_public] = ACTIONS(1890), - [anon_sym_private] = ACTIONS(1890), - [anon_sym_protected] = ACTIONS(1890), - [anon_sym_override] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_any] = ACTIONS(1890), - [anon_sym_number] = ACTIONS(1890), - [anon_sym_boolean] = ACTIONS(1890), - [anon_sym_string] = ACTIONS(1890), - [anon_sym_symbol] = ACTIONS(1890), - [anon_sym_object] = ACTIONS(1890), - [anon_sym_abstract] = ACTIONS(1890), - [anon_sym_interface] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), + [794] = { + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1808), + [anon_sym_export] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_type] = ACTIONS(1808), + [anon_sym_namespace] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_typeof] = ACTIONS(1808), + [anon_sym_import] = ACTIONS(1808), + [anon_sym_with] = ACTIONS(1808), + [anon_sym_var] = ACTIONS(1808), + [anon_sym_let] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_do] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_debugger] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_throw] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_class] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1808), + [anon_sym_function] = ACTIONS(1808), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_using] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_SLASH] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_void] = ACTIONS(1808), + [anon_sym_delete] = ACTIONS(1808), + [anon_sym_PLUS_PLUS] = ACTIONS(1806), + [anon_sym_DASH_DASH] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1806), + [sym_number] = ACTIONS(1806), + [sym_private_property_identifier] = ACTIONS(1806), + [sym_this] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_null] = ACTIONS(1808), + [sym_undefined] = ACTIONS(1808), + [anon_sym_AT] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_readonly] = ACTIONS(1808), + [anon_sym_get] = ACTIONS(1808), + [anon_sym_set] = ACTIONS(1808), + [anon_sym_declare] = ACTIONS(1808), + [anon_sym_public] = ACTIONS(1808), + [anon_sym_private] = ACTIONS(1808), + [anon_sym_protected] = ACTIONS(1808), + [anon_sym_override] = ACTIONS(1808), + [anon_sym_module] = ACTIONS(1808), + [anon_sym_any] = ACTIONS(1808), + [anon_sym_number] = ACTIONS(1808), + [anon_sym_boolean] = ACTIONS(1808), + [anon_sym_string] = ACTIONS(1808), + [anon_sym_symbol] = ACTIONS(1808), + [anon_sym_object] = ACTIONS(1808), + [anon_sym_abstract] = ACTIONS(1808), + [anon_sym_interface] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [sym__automatic_semicolon] = ACTIONS(1814), [sym_html_comment] = ACTIONS(5), }, - [790] = { - [sym_else_clause] = STATE(854), - [ts_builtin_sym_end] = ACTIONS(2511), - [sym_identifier] = ACTIONS(2513), - [anon_sym_export] = ACTIONS(2513), - [anon_sym_default] = ACTIONS(2513), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_typeof] = ACTIONS(2513), - [anon_sym_import] = ACTIONS(2513), - [anon_sym_with] = ACTIONS(2513), - [anon_sym_var] = ACTIONS(2513), - [anon_sym_let] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_debugger] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_case] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_void] = ACTIONS(2513), - [anon_sym_delete] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2511), - [sym_number] = ACTIONS(2511), - [sym_private_property_identifier] = ACTIONS(2511), - [sym_this] = ACTIONS(2513), - [sym_super] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_null] = ACTIONS(2513), - [sym_undefined] = ACTIONS(2513), - [anon_sym_AT] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_readonly] = ACTIONS(2513), - [anon_sym_get] = ACTIONS(2513), - [anon_sym_set] = ACTIONS(2513), - [anon_sym_declare] = ACTIONS(2513), - [anon_sym_public] = ACTIONS(2513), - [anon_sym_private] = ACTIONS(2513), - [anon_sym_protected] = ACTIONS(2513), - [anon_sym_override] = ACTIONS(2513), - [anon_sym_module] = ACTIONS(2513), - [anon_sym_any] = ACTIONS(2513), - [anon_sym_number] = ACTIONS(2513), - [anon_sym_boolean] = ACTIONS(2513), - [anon_sym_string] = ACTIONS(2513), - [anon_sym_symbol] = ACTIONS(2513), - [anon_sym_object] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), + [795] = { + [ts_builtin_sym_end] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [anon_sym_export] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_type] = ACTIONS(1712), + [anon_sym_namespace] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_typeof] = ACTIONS(1712), + [anon_sym_import] = ACTIONS(1712), + [anon_sym_with] = ACTIONS(1712), + [anon_sym_var] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_await] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_try] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_debugger] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_throw] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_yield] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_class] = ACTIONS(1712), + [anon_sym_async] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_new] = ACTIONS(1712), + [anon_sym_using] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_void] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1710), + [sym_number] = ACTIONS(1710), + [sym_private_property_identifier] = ACTIONS(1710), + [sym_this] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_true] = ACTIONS(1712), + [sym_false] = ACTIONS(1712), + [sym_null] = ACTIONS(1712), + [sym_undefined] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_readonly] = ACTIONS(1712), + [anon_sym_get] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_declare] = ACTIONS(1712), + [anon_sym_public] = ACTIONS(1712), + [anon_sym_private] = ACTIONS(1712), + [anon_sym_protected] = ACTIONS(1712), + [anon_sym_override] = ACTIONS(1712), + [anon_sym_module] = ACTIONS(1712), + [anon_sym_any] = ACTIONS(1712), + [anon_sym_number] = ACTIONS(1712), + [anon_sym_boolean] = ACTIONS(1712), + [anon_sym_string] = ACTIONS(1712), + [anon_sym_symbol] = ACTIONS(1712), + [anon_sym_object] = ACTIONS(1712), + [anon_sym_abstract] = ACTIONS(1712), + [anon_sym_interface] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [sym__automatic_semicolon] = ACTIONS(1718), [sym_html_comment] = ACTIONS(5), }, - [791] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_export] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_namespace] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_typeof] = ACTIONS(1832), - [anon_sym_import] = ACTIONS(1832), - [anon_sym_with] = ACTIONS(1832), - [anon_sym_var] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_else] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_await] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_do] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_debugger] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_throw] = ACTIONS(1832), - [anon_sym_case] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_class] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_function] = ACTIONS(1832), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_using] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_SLASH] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1830), - [anon_sym_void] = ACTIONS(1832), - [anon_sym_delete] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1830), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1830), - [sym_number] = ACTIONS(1830), - [sym_private_property_identifier] = ACTIONS(1830), - [sym_this] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_true] = ACTIONS(1832), - [sym_false] = ACTIONS(1832), - [sym_null] = ACTIONS(1832), - [sym_undefined] = ACTIONS(1832), - [anon_sym_AT] = ACTIONS(1830), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_readonly] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(1832), - [anon_sym_set] = ACTIONS(1832), - [anon_sym_declare] = ACTIONS(1832), - [anon_sym_public] = ACTIONS(1832), - [anon_sym_private] = ACTIONS(1832), - [anon_sym_protected] = ACTIONS(1832), - [anon_sym_override] = ACTIONS(1832), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_any] = ACTIONS(1832), - [anon_sym_number] = ACTIONS(1832), - [anon_sym_boolean] = ACTIONS(1832), - [anon_sym_string] = ACTIONS(1832), - [anon_sym_symbol] = ACTIONS(1832), - [anon_sym_object] = ACTIONS(1832), - [anon_sym_abstract] = ACTIONS(1832), - [anon_sym_interface] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [sym__automatic_semicolon] = ACTIONS(1838), + [796] = { + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1864), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1864), + [anon_sym_namespace] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_typeof] = ACTIONS(1864), + [anon_sym_import] = ACTIONS(1864), + [anon_sym_with] = ACTIONS(1864), + [anon_sym_var] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_await] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_debugger] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_throw] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_yield] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_class] = ACTIONS(1864), + [anon_sym_async] = ACTIONS(1864), + [anon_sym_function] = ACTIONS(1864), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_using] = ACTIONS(1864), + [anon_sym_PLUS] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_SLASH] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_void] = ACTIONS(1864), + [anon_sym_delete] = ACTIONS(1864), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1862), + [sym_number] = ACTIONS(1862), + [sym_private_property_identifier] = ACTIONS(1862), + [sym_this] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_true] = ACTIONS(1864), + [sym_false] = ACTIONS(1864), + [sym_null] = ACTIONS(1864), + [sym_undefined] = ACTIONS(1864), + [anon_sym_AT] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_readonly] = ACTIONS(1864), + [anon_sym_get] = ACTIONS(1864), + [anon_sym_set] = ACTIONS(1864), + [anon_sym_declare] = ACTIONS(1864), + [anon_sym_public] = ACTIONS(1864), + [anon_sym_private] = ACTIONS(1864), + [anon_sym_protected] = ACTIONS(1864), + [anon_sym_override] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_any] = ACTIONS(1864), + [anon_sym_number] = ACTIONS(1864), + [anon_sym_boolean] = ACTIONS(1864), + [anon_sym_string] = ACTIONS(1864), + [anon_sym_symbol] = ACTIONS(1864), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_abstract] = ACTIONS(1864), + [anon_sym_interface] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [sym__automatic_semicolon] = ACTIONS(1870), [sym_html_comment] = ACTIONS(5), }, - [792] = { + [797] = { [ts_builtin_sym_end] = ACTIONS(1758), [sym_identifier] = ACTIONS(1760), [anon_sym_export] = ACTIONS(1760), @@ -107258,6 +107753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1760), [anon_sym_yield] = ACTIONS(1760), [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1760), [anon_sym_class] = ACTIONS(1760), [anon_sym_async] = ACTIONS(1760), [anon_sym_function] = ACTIONS(1760), @@ -107304,231 +107800,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1760), [anon_sym_interface] = ACTIONS(1760), [anon_sym_enum] = ACTIONS(1760), - [sym__automatic_semicolon] = ACTIONS(1766), [sym_html_comment] = ACTIONS(5), }, - [793] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4540), - [sym_optional_tuple_parameter] = STATE(4540), - [sym_optional_type] = STATE(4540), - [sym_rest_type] = STATE(4540), - [sym__tuple_type_member] = STATE(4540), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(2517), - [anon_sym_typeof] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [798] = { + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_namespace] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1818), + [anon_sym_import] = ACTIONS(1818), + [anon_sym_with] = ACTIONS(1818), + [anon_sym_var] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_switch] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_await] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_debugger] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_throw] = ACTIONS(1818), + [anon_sym_case] = ACTIONS(1818), + [anon_sym_yield] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_class] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_function] = ACTIONS(1818), + [anon_sym_new] = ACTIONS(1818), + [anon_sym_using] = ACTIONS(1818), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_TILDE] = ACTIONS(1816), + [anon_sym_void] = ACTIONS(1818), + [anon_sym_delete] = ACTIONS(1818), + [anon_sym_PLUS_PLUS] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1816), + [anon_sym_DQUOTE] = ACTIONS(1816), + [anon_sym_SQUOTE] = ACTIONS(1816), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1816), + [sym_number] = ACTIONS(1816), + [sym_private_property_identifier] = ACTIONS(1816), + [sym_this] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_true] = ACTIONS(1818), + [sym_false] = ACTIONS(1818), + [sym_null] = ACTIONS(1818), + [sym_undefined] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_readonly] = ACTIONS(1818), + [anon_sym_get] = ACTIONS(1818), + [anon_sym_set] = ACTIONS(1818), + [anon_sym_declare] = ACTIONS(1818), + [anon_sym_public] = ACTIONS(1818), + [anon_sym_private] = ACTIONS(1818), + [anon_sym_protected] = ACTIONS(1818), + [anon_sym_override] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_any] = ACTIONS(1818), + [anon_sym_number] = ACTIONS(1818), + [anon_sym_boolean] = ACTIONS(1818), + [anon_sym_string] = ACTIONS(1818), + [anon_sym_symbol] = ACTIONS(1818), + [anon_sym_object] = ACTIONS(1818), + [anon_sym_abstract] = ACTIONS(1818), + [anon_sym_interface] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [sym__automatic_semicolon] = ACTIONS(1824), [sym_html_comment] = ACTIONS(5), }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_export] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_namespace] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_typeof] = ACTIONS(1844), - [anon_sym_import] = ACTIONS(1844), - [anon_sym_with] = ACTIONS(1844), - [anon_sym_var] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_else] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_switch] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_await] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_do] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_debugger] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_throw] = ACTIONS(1844), - [anon_sym_case] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_class] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_function] = ACTIONS(1844), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_using] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_void] = ACTIONS(1844), - [anon_sym_delete] = ACTIONS(1844), - [anon_sym_PLUS_PLUS] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1842), - [sym_number] = ACTIONS(1842), - [sym_private_property_identifier] = ACTIONS(1842), - [sym_this] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_true] = ACTIONS(1844), - [sym_false] = ACTIONS(1844), - [sym_null] = ACTIONS(1844), - [sym_undefined] = ACTIONS(1844), - [anon_sym_AT] = ACTIONS(1842), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_readonly] = ACTIONS(1844), - [anon_sym_get] = ACTIONS(1844), - [anon_sym_set] = ACTIONS(1844), - [anon_sym_declare] = ACTIONS(1844), - [anon_sym_public] = ACTIONS(1844), - [anon_sym_private] = ACTIONS(1844), - [anon_sym_protected] = ACTIONS(1844), - [anon_sym_override] = ACTIONS(1844), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_any] = ACTIONS(1844), - [anon_sym_number] = ACTIONS(1844), - [anon_sym_boolean] = ACTIONS(1844), - [anon_sym_string] = ACTIONS(1844), - [anon_sym_symbol] = ACTIONS(1844), - [anon_sym_object] = ACTIONS(1844), - [anon_sym_abstract] = ACTIONS(1844), - [anon_sym_interface] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [sym__automatic_semicolon] = ACTIONS(1850), + [799] = { + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_export] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_namespace] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1874), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_with] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_switch] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_await] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_do] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_debugger] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_throw] = ACTIONS(1874), + [anon_sym_case] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_function] = ACTIONS(1874), + [anon_sym_new] = ACTIONS(1874), + [anon_sym_using] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_SLASH] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_TILDE] = ACTIONS(1872), + [anon_sym_void] = ACTIONS(1874), + [anon_sym_delete] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1872), + [anon_sym_DQUOTE] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1872), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1872), + [sym_number] = ACTIONS(1872), + [sym_private_property_identifier] = ACTIONS(1872), + [sym_this] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_true] = ACTIONS(1874), + [sym_false] = ACTIONS(1874), + [sym_null] = ACTIONS(1874), + [sym_undefined] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_readonly] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1874), + [anon_sym_set] = ACTIONS(1874), + [anon_sym_declare] = ACTIONS(1874), + [anon_sym_public] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1874), + [anon_sym_protected] = ACTIONS(1874), + [anon_sym_override] = ACTIONS(1874), + [anon_sym_module] = ACTIONS(1874), + [anon_sym_any] = ACTIONS(1874), + [anon_sym_number] = ACTIONS(1874), + [anon_sym_boolean] = ACTIONS(1874), + [anon_sym_string] = ACTIONS(1874), + [anon_sym_symbol] = ACTIONS(1874), + [anon_sym_object] = ACTIONS(1874), + [anon_sym_abstract] = ACTIONS(1874), + [anon_sym_interface] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [sym__automatic_semicolon] = ACTIONS(1880), [sym_html_comment] = ACTIONS(5), }, - [795] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4586), - [sym_optional_tuple_parameter] = STATE(4586), - [sym_optional_type] = STATE(4586), - [sym_rest_type] = STATE(4586), - [sym__tuple_type_member] = STATE(4586), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [800] = { + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_namespace] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_typeof] = ACTIONS(1830), + [anon_sym_import] = ACTIONS(1830), + [anon_sym_with] = ACTIONS(1830), + [anon_sym_var] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_switch] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_await] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_debugger] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_case] = ACTIONS(1830), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_class] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_function] = ACTIONS(1830), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_using] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_void] = ACTIONS(1830), + [anon_sym_delete] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [anon_sym_SQUOTE] = ACTIONS(1828), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1828), + [sym_number] = ACTIONS(1828), + [sym_private_property_identifier] = ACTIONS(1828), + [sym_this] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_true] = ACTIONS(1830), + [sym_false] = ACTIONS(1830), + [sym_null] = ACTIONS(1830), + [sym_undefined] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_readonly] = ACTIONS(1830), + [anon_sym_get] = ACTIONS(1830), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_declare] = ACTIONS(1830), + [anon_sym_public] = ACTIONS(1830), + [anon_sym_private] = ACTIONS(1830), + [anon_sym_protected] = ACTIONS(1830), + [anon_sym_override] = ACTIONS(1830), + [anon_sym_module] = ACTIONS(1830), + [anon_sym_any] = ACTIONS(1830), + [anon_sym_number] = ACTIONS(1830), + [anon_sym_boolean] = ACTIONS(1830), + [anon_sym_string] = ACTIONS(1830), + [anon_sym_symbol] = ACTIONS(1830), + [anon_sym_object] = ACTIONS(1830), + [anon_sym_abstract] = ACTIONS(1830), + [anon_sym_interface] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [sym__automatic_semicolon] = ACTIONS(1836), + [sym_html_comment] = ACTIONS(5), + }, + [801] = { + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_export] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_namespace] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1850), + [anon_sym_import] = ACTIONS(1850), + [anon_sym_with] = ACTIONS(1850), + [anon_sym_var] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_else] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_switch] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_await] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_do] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_debugger] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_throw] = ACTIONS(1850), + [anon_sym_case] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_class] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_function] = ACTIONS(1850), + [anon_sym_new] = ACTIONS(1850), + [anon_sym_using] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_SLASH] = ACTIONS(1850), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1848), + [anon_sym_void] = ACTIONS(1850), + [anon_sym_delete] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1848), + [sym_number] = ACTIONS(1848), + [sym_private_property_identifier] = ACTIONS(1848), + [sym_this] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_true] = ACTIONS(1850), + [sym_false] = ACTIONS(1850), + [sym_null] = ACTIONS(1850), + [sym_undefined] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_readonly] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(1850), + [anon_sym_set] = ACTIONS(1850), + [anon_sym_declare] = ACTIONS(1850), + [anon_sym_public] = ACTIONS(1850), + [anon_sym_private] = ACTIONS(1850), + [anon_sym_protected] = ACTIONS(1850), + [anon_sym_override] = ACTIONS(1850), + [anon_sym_module] = ACTIONS(1850), + [anon_sym_any] = ACTIONS(1850), + [anon_sym_number] = ACTIONS(1850), + [anon_sym_boolean] = ACTIONS(1850), + [anon_sym_string] = ACTIONS(1850), + [anon_sym_symbol] = ACTIONS(1850), + [anon_sym_object] = ACTIONS(1850), + [anon_sym_abstract] = ACTIONS(1850), + [anon_sym_interface] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [sym__automatic_semicolon] = ACTIONS(1856), + [sym_html_comment] = ACTIONS(5), + }, + [802] = { + [ts_builtin_sym_end] = ACTIONS(2521), + [sym_identifier] = ACTIONS(2523), + [anon_sym_export] = ACTIONS(2523), + [anon_sym_default] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2523), + [anon_sym_namespace] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_typeof] = ACTIONS(2523), + [anon_sym_import] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2523), + [anon_sym_var] = ACTIONS(2523), + [anon_sym_let] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_await] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_debugger] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_throw] = ACTIONS(2523), + [anon_sym_case] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_async] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_using] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_SLASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_void] = ACTIONS(2523), + [anon_sym_delete] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2521), + [sym_number] = ACTIONS(2521), + [sym_private_property_identifier] = ACTIONS(2521), + [sym_this] = ACTIONS(2523), + [sym_super] = ACTIONS(2523), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_undefined] = ACTIONS(2523), + [anon_sym_AT] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_readonly] = ACTIONS(2523), + [anon_sym_get] = ACTIONS(2523), + [anon_sym_set] = ACTIONS(2523), + [anon_sym_declare] = ACTIONS(2523), + [anon_sym_public] = ACTIONS(2523), + [anon_sym_private] = ACTIONS(2523), + [anon_sym_protected] = ACTIONS(2523), + [anon_sym_override] = ACTIONS(2523), + [anon_sym_module] = ACTIONS(2523), + [anon_sym_any] = ACTIONS(2523), + [anon_sym_number] = ACTIONS(2523), + [anon_sym_boolean] = ACTIONS(2523), + [anon_sym_string] = ACTIONS(2523), + [anon_sym_symbol] = ACTIONS(2523), + [anon_sym_object] = ACTIONS(2523), + [anon_sym_abstract] = ACTIONS(2523), + [anon_sym_interface] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [sym__automatic_semicolon] = ACTIONS(2521), + [sym_html_comment] = ACTIONS(5), + }, + [803] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5053), + [sym_optional_tuple_parameter] = STATE(5053), + [sym_optional_type] = STATE(5053), + [sym_rest_type] = STATE(5053), + [sym__tuple_type_member] = STATE(5053), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(2521), + [anon_sym_COMMA] = ACTIONS(2525), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -107539,411 +108283,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(1780), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_type] = ACTIONS(1782), - [anon_sym_namespace] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_typeof] = ACTIONS(1782), - [anon_sym_import] = ACTIONS(1782), - [anon_sym_with] = ACTIONS(1782), - [anon_sym_var] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_else] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_await] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_debugger] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_throw] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_yield] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_class] = ACTIONS(1782), - [anon_sym_async] = ACTIONS(1782), - [anon_sym_function] = ACTIONS(1782), - [anon_sym_new] = ACTIONS(1782), - [anon_sym_using] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_void] = ACTIONS(1782), - [anon_sym_delete] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1780), - [sym_number] = ACTIONS(1780), - [sym_private_property_identifier] = ACTIONS(1780), - [sym_this] = ACTIONS(1782), - [sym_super] = ACTIONS(1782), - [sym_true] = ACTIONS(1782), - [sym_false] = ACTIONS(1782), - [sym_null] = ACTIONS(1782), - [sym_undefined] = ACTIONS(1782), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_readonly] = ACTIONS(1782), - [anon_sym_get] = ACTIONS(1782), - [anon_sym_set] = ACTIONS(1782), - [anon_sym_declare] = ACTIONS(1782), - [anon_sym_public] = ACTIONS(1782), - [anon_sym_private] = ACTIONS(1782), - [anon_sym_protected] = ACTIONS(1782), - [anon_sym_override] = ACTIONS(1782), - [anon_sym_module] = ACTIONS(1782), - [anon_sym_any] = ACTIONS(1782), - [anon_sym_number] = ACTIONS(1782), - [anon_sym_boolean] = ACTIONS(1782), - [anon_sym_string] = ACTIONS(1782), - [anon_sym_symbol] = ACTIONS(1782), - [anon_sym_object] = ACTIONS(1782), - [anon_sym_abstract] = ACTIONS(1782), - [anon_sym_interface] = ACTIONS(1782), - [anon_sym_enum] = ACTIONS(1782), - [sym__automatic_semicolon] = ACTIONS(1788), - [sym_html_comment] = ACTIONS(5), - }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(1820), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_type] = ACTIONS(1822), - [anon_sym_namespace] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym_import] = ACTIONS(1822), - [anon_sym_with] = ACTIONS(1822), - [anon_sym_var] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_await] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_debugger] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_yield] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_class] = ACTIONS(1822), - [anon_sym_async] = ACTIONS(1822), - [anon_sym_function] = ACTIONS(1822), - [anon_sym_new] = ACTIONS(1822), - [anon_sym_using] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_void] = ACTIONS(1822), - [anon_sym_delete] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1820), - [sym_number] = ACTIONS(1820), - [sym_private_property_identifier] = ACTIONS(1820), - [sym_this] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_undefined] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_readonly] = ACTIONS(1822), - [anon_sym_get] = ACTIONS(1822), - [anon_sym_set] = ACTIONS(1822), - [anon_sym_declare] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1822), - [anon_sym_private] = ACTIONS(1822), - [anon_sym_protected] = ACTIONS(1822), - [anon_sym_override] = ACTIONS(1822), - [anon_sym_module] = ACTIONS(1822), - [anon_sym_any] = ACTIONS(1822), - [anon_sym_number] = ACTIONS(1822), - [anon_sym_boolean] = ACTIONS(1822), - [anon_sym_string] = ACTIONS(1822), - [anon_sym_symbol] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_abstract] = ACTIONS(1822), - [anon_sym_interface] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [sym__automatic_semicolon] = ACTIONS(1828), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [798] = { - [sym_statement_block] = STATE(882), - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_export] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_namespace] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_typeof] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1676), - [anon_sym_with] = ACTIONS(1676), - [anon_sym_var] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_debugger] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_class] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_using] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_void] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1674), - [sym_number] = ACTIONS(1674), - [sym_private_property_identifier] = ACTIONS(1674), - [sym_this] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_true] = ACTIONS(1676), - [sym_false] = ACTIONS(1676), - [sym_null] = ACTIONS(1676), - [sym_undefined] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_readonly] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_declare] = ACTIONS(1676), - [anon_sym_public] = ACTIONS(1676), - [anon_sym_private] = ACTIONS(1676), - [anon_sym_protected] = ACTIONS(1676), - [anon_sym_override] = ACTIONS(1676), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_any] = ACTIONS(1676), - [anon_sym_number] = ACTIONS(1676), - [anon_sym_boolean] = ACTIONS(1676), - [anon_sym_string] = ACTIONS(1676), - [anon_sym_symbol] = ACTIONS(1676), - [anon_sym_object] = ACTIONS(1676), - [anon_sym_abstract] = ACTIONS(1676), - [anon_sym_interface] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), + [804] = { + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_with] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_await] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_debugger] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_throw] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1890), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_using] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_TILDE] = ACTIONS(1888), + [anon_sym_void] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_number] = ACTIONS(1888), + [sym_private_property_identifier] = ACTIONS(1888), + [sym_this] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_true] = ACTIONS(1890), + [sym_false] = ACTIONS(1890), + [sym_null] = ACTIONS(1890), + [sym_undefined] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_readonly] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_interface] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [sym__automatic_semicolon] = ACTIONS(1896), [sym_html_comment] = ACTIONS(5), }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_export] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_namespace] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_typeof] = ACTIONS(1772), - [anon_sym_import] = ACTIONS(1772), - [anon_sym_with] = ACTIONS(1772), - [anon_sym_var] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_switch] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_await] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_do] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_debugger] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_throw] = ACTIONS(1772), - [anon_sym_case] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_class] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_function] = ACTIONS(1772), - [anon_sym_new] = ACTIONS(1772), - [anon_sym_using] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_void] = ACTIONS(1772), - [anon_sym_delete] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1770), - [sym_number] = ACTIONS(1770), - [sym_private_property_identifier] = ACTIONS(1770), - [sym_this] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_true] = ACTIONS(1772), - [sym_false] = ACTIONS(1772), - [sym_null] = ACTIONS(1772), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_readonly] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1772), - [anon_sym_set] = ACTIONS(1772), - [anon_sym_declare] = ACTIONS(1772), - [anon_sym_public] = ACTIONS(1772), - [anon_sym_private] = ACTIONS(1772), - [anon_sym_protected] = ACTIONS(1772), - [anon_sym_override] = ACTIONS(1772), - [anon_sym_module] = ACTIONS(1772), - [anon_sym_any] = ACTIONS(1772), - [anon_sym_number] = ACTIONS(1772), - [anon_sym_boolean] = ACTIONS(1772), - [anon_sym_string] = ACTIONS(1772), - [anon_sym_symbol] = ACTIONS(1772), - [anon_sym_object] = ACTIONS(1772), - [anon_sym_abstract] = ACTIONS(1772), - [anon_sym_interface] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [sym__automatic_semicolon] = ACTIONS(1778), + [805] = { + [ts_builtin_sym_end] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [anon_sym_export] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_type] = ACTIONS(1884), + [anon_sym_namespace] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_typeof] = ACTIONS(1884), + [anon_sym_import] = ACTIONS(1884), + [anon_sym_with] = ACTIONS(1884), + [anon_sym_var] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_else] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_switch] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_await] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(1884), + [anon_sym_try] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_debugger] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_throw] = ACTIONS(1884), + [anon_sym_case] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(1884), + [anon_sym_async] = ACTIONS(1884), + [anon_sym_function] = ACTIONS(1884), + [anon_sym_new] = ACTIONS(1884), + [anon_sym_using] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1882), + [anon_sym_void] = ACTIONS(1884), + [anon_sym_delete] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1882), + [sym_number] = ACTIONS(1882), + [sym_private_property_identifier] = ACTIONS(1882), + [sym_this] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_true] = ACTIONS(1884), + [sym_false] = ACTIONS(1884), + [sym_null] = ACTIONS(1884), + [sym_undefined] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_readonly] = ACTIONS(1884), + [anon_sym_get] = ACTIONS(1884), + [anon_sym_set] = ACTIONS(1884), + [anon_sym_declare] = ACTIONS(1884), + [anon_sym_public] = ACTIONS(1884), + [anon_sym_private] = ACTIONS(1884), + [anon_sym_protected] = ACTIONS(1884), + [anon_sym_override] = ACTIONS(1884), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_any] = ACTIONS(1884), + [anon_sym_number] = ACTIONS(1884), + [anon_sym_boolean] = ACTIONS(1884), + [anon_sym_string] = ACTIONS(1884), + [anon_sym_symbol] = ACTIONS(1884), + [anon_sym_object] = ACTIONS(1884), + [anon_sym_abstract] = ACTIONS(1884), + [anon_sym_interface] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), [sym_html_comment] = ACTIONS(5), }, - [800] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4956), - [sym_optional_tuple_parameter] = STATE(4956), - [sym_optional_type] = STATE(4956), - [sym_rest_type] = STATE(4956), - [sym__tuple_type_member] = STATE(4956), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [806] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4613), + [sym_optional_tuple_parameter] = STATE(4613), + [sym_optional_type] = STATE(4613), + [sym_rest_type] = STATE(4613), + [sym__tuple_type_member] = STATE(4613), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(2525), + [anon_sym_COMMA] = ACTIONS(2529), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2527), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -107954,411 +108532,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1858), - [anon_sym_export] = ACTIONS(1858), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_type] = ACTIONS(1858), - [anon_sym_namespace] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1858), - [anon_sym_import] = ACTIONS(1858), - [anon_sym_with] = ACTIONS(1858), - [anon_sym_var] = ACTIONS(1858), - [anon_sym_let] = ACTIONS(1858), - [anon_sym_const] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_else] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_switch] = ACTIONS(1858), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_await] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_do] = ACTIONS(1858), - [anon_sym_try] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_debugger] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_throw] = ACTIONS(1858), - [anon_sym_case] = ACTIONS(1858), - [anon_sym_yield] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_class] = ACTIONS(1858), - [anon_sym_async] = ACTIONS(1858), - [anon_sym_function] = ACTIONS(1858), - [anon_sym_new] = ACTIONS(1858), - [anon_sym_using] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_SLASH] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_void] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(1858), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1856), - [sym_number] = ACTIONS(1856), - [sym_private_property_identifier] = ACTIONS(1856), - [sym_this] = ACTIONS(1858), - [sym_super] = ACTIONS(1858), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_undefined] = ACTIONS(1858), - [anon_sym_AT] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_readonly] = ACTIONS(1858), - [anon_sym_get] = ACTIONS(1858), - [anon_sym_set] = ACTIONS(1858), - [anon_sym_declare] = ACTIONS(1858), - [anon_sym_public] = ACTIONS(1858), - [anon_sym_private] = ACTIONS(1858), - [anon_sym_protected] = ACTIONS(1858), - [anon_sym_override] = ACTIONS(1858), - [anon_sym_module] = ACTIONS(1858), - [anon_sym_any] = ACTIONS(1858), - [anon_sym_number] = ACTIONS(1858), - [anon_sym_boolean] = ACTIONS(1858), - [anon_sym_string] = ACTIONS(1858), - [anon_sym_symbol] = ACTIONS(1858), - [anon_sym_object] = ACTIONS(1858), - [anon_sym_abstract] = ACTIONS(1858), - [anon_sym_interface] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [sym__automatic_semicolon] = ACTIONS(1864), - [sym_html_comment] = ACTIONS(5), - }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [sym_identifier] = ACTIONS(1894), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_default] = ACTIONS(1894), - [anon_sym_type] = ACTIONS(1894), - [anon_sym_namespace] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1894), - [anon_sym_import] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_var] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_await] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_debugger] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_throw] = ACTIONS(1894), - [anon_sym_case] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1894), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_function] = ACTIONS(1894), - [anon_sym_new] = ACTIONS(1894), - [anon_sym_using] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_SLASH] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_void] = ACTIONS(1894), - [anon_sym_delete] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1892), - [sym_number] = ACTIONS(1892), - [sym_private_property_identifier] = ACTIONS(1892), - [sym_this] = ACTIONS(1894), - [sym_super] = ACTIONS(1894), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_null] = ACTIONS(1894), - [sym_undefined] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_readonly] = ACTIONS(1894), - [anon_sym_get] = ACTIONS(1894), - [anon_sym_set] = ACTIONS(1894), - [anon_sym_declare] = ACTIONS(1894), - [anon_sym_public] = ACTIONS(1894), - [anon_sym_private] = ACTIONS(1894), - [anon_sym_protected] = ACTIONS(1894), - [anon_sym_override] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_any] = ACTIONS(1894), - [anon_sym_number] = ACTIONS(1894), - [anon_sym_boolean] = ACTIONS(1894), - [anon_sym_string] = ACTIONS(1894), - [anon_sym_symbol] = ACTIONS(1894), - [anon_sym_object] = ACTIONS(1894), - [anon_sym_abstract] = ACTIONS(1894), - [anon_sym_interface] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [sym_html_comment] = ACTIONS(5), - }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(2529), - [sym_identifier] = ACTIONS(2531), - [anon_sym_export] = ACTIONS(2531), - [anon_sym_default] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2531), - [anon_sym_namespace] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_RBRACE] = ACTIONS(2529), - [anon_sym_typeof] = ACTIONS(2531), - [anon_sym_import] = ACTIONS(2531), - [anon_sym_with] = ACTIONS(2531), - [anon_sym_var] = ACTIONS(2531), - [anon_sym_let] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_switch] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_do] = ACTIONS(2531), - [anon_sym_try] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_debugger] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_throw] = ACTIONS(2531), - [anon_sym_case] = ACTIONS(2531), - [anon_sym_yield] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2531), - [anon_sym_async] = ACTIONS(2531), - [anon_sym_function] = ACTIONS(2531), - [anon_sym_new] = ACTIONS(2531), - [anon_sym_using] = ACTIONS(2531), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_TILDE] = ACTIONS(2529), - [anon_sym_void] = ACTIONS(2531), - [anon_sym_delete] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2529), - [sym_number] = ACTIONS(2529), - [sym_private_property_identifier] = ACTIONS(2529), - [sym_this] = ACTIONS(2531), - [sym_super] = ACTIONS(2531), - [sym_true] = ACTIONS(2531), - [sym_false] = ACTIONS(2531), - [sym_null] = ACTIONS(2531), - [sym_undefined] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2529), - [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), - [anon_sym_abstract] = ACTIONS(2531), - [anon_sym_interface] = ACTIONS(2531), - [anon_sym_enum] = ACTIONS(2531), - [sym__automatic_semicolon] = ACTIONS(2529), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [804] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_export] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_namespace] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_typeof] = ACTIONS(1792), - [anon_sym_import] = ACTIONS(1792), - [anon_sym_with] = ACTIONS(1792), - [anon_sym_var] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_switch] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_await] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_do] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_debugger] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_case] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_class] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_function] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_using] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_void] = ACTIONS(1792), - [anon_sym_delete] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1790), - [sym_number] = ACTIONS(1790), - [sym_private_property_identifier] = ACTIONS(1790), - [sym_this] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_true] = ACTIONS(1792), - [sym_false] = ACTIONS(1792), - [sym_null] = ACTIONS(1792), - [sym_undefined] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_readonly] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1792), - [anon_sym_set] = ACTIONS(1792), - [anon_sym_declare] = ACTIONS(1792), - [anon_sym_public] = ACTIONS(1792), - [anon_sym_private] = ACTIONS(1792), - [anon_sym_protected] = ACTIONS(1792), - [anon_sym_override] = ACTIONS(1792), - [anon_sym_module] = ACTIONS(1792), - [anon_sym_any] = ACTIONS(1792), - [anon_sym_number] = ACTIONS(1792), - [anon_sym_boolean] = ACTIONS(1792), - [anon_sym_string] = ACTIONS(1792), - [anon_sym_symbol] = ACTIONS(1792), - [anon_sym_object] = ACTIONS(1792), - [anon_sym_abstract] = ACTIONS(1792), - [anon_sym_interface] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1798), + [807] = { + [ts_builtin_sym_end] = ACTIONS(2533), + [sym_identifier] = ACTIONS(2535), + [anon_sym_export] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_typeof] = ACTIONS(2535), + [anon_sym_import] = ACTIONS(2535), + [anon_sym_with] = ACTIONS(2535), + [anon_sym_var] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_await] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_debugger] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_case] = ACTIONS(2535), + [anon_sym_yield] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_async] = ACTIONS(2535), + [anon_sym_function] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_SLASH] = ACTIONS(2535), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_void] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2533), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2533), + [sym_number] = ACTIONS(2533), + [sym_private_property_identifier] = ACTIONS(2533), + [sym_this] = ACTIONS(2535), + [sym_super] = ACTIONS(2535), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_undefined] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_readonly] = ACTIONS(2535), + [anon_sym_get] = ACTIONS(2535), + [anon_sym_set] = ACTIONS(2535), + [anon_sym_declare] = ACTIONS(2535), + [anon_sym_public] = ACTIONS(2535), + [anon_sym_private] = ACTIONS(2535), + [anon_sym_protected] = ACTIONS(2535), + [anon_sym_override] = ACTIONS(2535), + [anon_sym_module] = ACTIONS(2535), + [anon_sym_any] = ACTIONS(2535), + [anon_sym_number] = ACTIONS(2535), + [anon_sym_boolean] = ACTIONS(2535), + [anon_sym_string] = ACTIONS(2535), + [anon_sym_symbol] = ACTIONS(2535), + [anon_sym_object] = ACTIONS(2535), + [anon_sym_abstract] = ACTIONS(2535), + [anon_sym_interface] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [sym__automatic_semicolon] = ACTIONS(2533), [sym_html_comment] = ACTIONS(5), }, - [805] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(4568), - [sym_optional_tuple_parameter] = STATE(4568), - [sym_optional_type] = STATE(4568), - [sym_rest_type] = STATE(4568), - [sym__tuple_type_member] = STATE(4568), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [808] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4627), + [sym_optional_tuple_parameter] = STATE(4627), + [sym_optional_type] = STATE(4627), + [sym_rest_type] = STATE(4627), + [sym__tuple_type_member] = STATE(4627), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_COMMA] = ACTIONS(2537), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2535), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -108369,190 +108698,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [806] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_export] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_namespace] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_typeof] = ACTIONS(1868), - [anon_sym_import] = ACTIONS(1868), - [anon_sym_with] = ACTIONS(1868), - [anon_sym_var] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_switch] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_await] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_do] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_debugger] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_throw] = ACTIONS(1868), - [anon_sym_case] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_class] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_function] = ACTIONS(1868), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_using] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_void] = ACTIONS(1868), - [anon_sym_delete] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1866), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1866), - [sym_number] = ACTIONS(1866), - [sym_private_property_identifier] = ACTIONS(1866), - [sym_this] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_true] = ACTIONS(1868), - [sym_false] = ACTIONS(1868), - [sym_null] = ACTIONS(1868), - [sym_undefined] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_readonly] = ACTIONS(1868), - [anon_sym_get] = ACTIONS(1868), - [anon_sym_set] = ACTIONS(1868), - [anon_sym_declare] = ACTIONS(1868), - [anon_sym_public] = ACTIONS(1868), - [anon_sym_private] = ACTIONS(1868), - [anon_sym_protected] = ACTIONS(1868), - [anon_sym_override] = ACTIONS(1868), - [anon_sym_module] = ACTIONS(1868), - [anon_sym_any] = ACTIONS(1868), - [anon_sym_number] = ACTIONS(1868), - [anon_sym_boolean] = ACTIONS(1868), - [anon_sym_string] = ACTIONS(1868), - [anon_sym_symbol] = ACTIONS(1868), - [anon_sym_object] = ACTIONS(1868), - [anon_sym_abstract] = ACTIONS(1868), - [anon_sym_interface] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [sym__automatic_semicolon] = ACTIONS(1874), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(2537), - [sym_identifier] = ACTIONS(2539), - [anon_sym_export] = ACTIONS(2539), - [anon_sym_default] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2539), - [anon_sym_namespace] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_typeof] = ACTIONS(2539), - [anon_sym_import] = ACTIONS(2539), - [anon_sym_with] = ACTIONS(2539), - [anon_sym_var] = ACTIONS(2539), - [anon_sym_let] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_switch] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_await] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_debugger] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_throw] = ACTIONS(2539), - [anon_sym_case] = ACTIONS(2539), - [anon_sym_finally] = ACTIONS(2539), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_class] = ACTIONS(2539), - [anon_sym_async] = ACTIONS(2539), - [anon_sym_function] = ACTIONS(2539), - [anon_sym_new] = ACTIONS(2539), - [anon_sym_using] = ACTIONS(2539), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_SLASH] = ACTIONS(2539), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_TILDE] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2539), - [anon_sym_delete] = ACTIONS(2539), - [anon_sym_PLUS_PLUS] = ACTIONS(2537), - [anon_sym_DASH_DASH] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2537), - [sym_number] = ACTIONS(2537), - [sym_private_property_identifier] = ACTIONS(2537), - [sym_this] = ACTIONS(2539), - [sym_super] = ACTIONS(2539), - [sym_true] = ACTIONS(2539), - [sym_false] = ACTIONS(2539), - [sym_null] = ACTIONS(2539), - [sym_undefined] = ACTIONS(2539), - [anon_sym_AT] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2539), - [anon_sym_readonly] = ACTIONS(2539), - [anon_sym_get] = ACTIONS(2539), - [anon_sym_set] = ACTIONS(2539), - [anon_sym_declare] = ACTIONS(2539), - [anon_sym_public] = ACTIONS(2539), - [anon_sym_private] = ACTIONS(2539), - [anon_sym_protected] = ACTIONS(2539), - [anon_sym_override] = ACTIONS(2539), - [anon_sym_module] = ACTIONS(2539), - [anon_sym_any] = ACTIONS(2539), - [anon_sym_number] = ACTIONS(2539), - [anon_sym_boolean] = ACTIONS(2539), - [anon_sym_string] = ACTIONS(2539), - [anon_sym_symbol] = ACTIONS(2539), - [anon_sym_object] = ACTIONS(2539), - [anon_sym_abstract] = ACTIONS(2539), - [anon_sym_interface] = ACTIONS(2539), - [anon_sym_enum] = ACTIONS(2539), - [sym_html_comment] = ACTIONS(5), - }, - [808] = { + [809] = { [ts_builtin_sym_end] = ACTIONS(2541), [sym_identifier] = ACTIONS(2543), [anon_sym_export] = ACTIONS(2543), @@ -108635,90 +108798,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2543), [sym_html_comment] = ACTIONS(5), }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_identifier] = ACTIONS(2547), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_default] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2547), - [anon_sym_namespace] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_typeof] = ACTIONS(2547), - [anon_sym_import] = ACTIONS(2547), - [anon_sym_with] = ACTIONS(2547), - [anon_sym_var] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_else] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_switch] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym_await] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_debugger] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_throw] = ACTIONS(2547), - [anon_sym_case] = ACTIONS(2547), - [anon_sym_finally] = ACTIONS(2547), - [anon_sym_yield] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_async] = ACTIONS(2547), - [anon_sym_function] = ACTIONS(2547), - [anon_sym_new] = ACTIONS(2547), - [anon_sym_using] = ACTIONS(2547), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_SLASH] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2545), - [anon_sym_void] = ACTIONS(2547), - [anon_sym_delete] = ACTIONS(2547), - [anon_sym_PLUS_PLUS] = ACTIONS(2545), - [anon_sym_DASH_DASH] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2545), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2545), - [sym_number] = ACTIONS(2545), - [sym_private_property_identifier] = ACTIONS(2545), - [sym_this] = ACTIONS(2547), - [sym_super] = ACTIONS(2547), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [sym_null] = ACTIONS(2547), - [sym_undefined] = ACTIONS(2547), - [anon_sym_AT] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_readonly] = ACTIONS(2547), - [anon_sym_get] = ACTIONS(2547), - [anon_sym_set] = ACTIONS(2547), - [anon_sym_declare] = ACTIONS(2547), - [anon_sym_public] = ACTIONS(2547), - [anon_sym_private] = ACTIONS(2547), - [anon_sym_protected] = ACTIONS(2547), - [anon_sym_override] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_any] = ACTIONS(2547), - [anon_sym_number] = ACTIONS(2547), - [anon_sym_boolean] = ACTIONS(2547), - [anon_sym_string] = ACTIONS(2547), - [anon_sym_symbol] = ACTIONS(2547), - [anon_sym_object] = ACTIONS(2547), - [anon_sym_abstract] = ACTIONS(2547), - [anon_sym_interface] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), + [810] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(4715), + [sym_optional_tuple_parameter] = STATE(4715), + [sym_optional_type] = STATE(4715), + [sym_rest_type] = STATE(4715), + [sym__tuple_type_member] = STATE(4715), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2545), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [810] = { + [811] = { [ts_builtin_sym_end] = ACTIONS(2549), [sym_identifier] = ACTIONS(2551), [anon_sym_export] = ACTIONS(2551), @@ -108740,7 +108903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2551), [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_RPAREN] = ACTIONS(2549), [anon_sym_await] = ACTIONS(2551), [anon_sym_while] = ACTIONS(2551), [anon_sym_do] = ACTIONS(2551), @@ -108751,6 +108913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2551), [anon_sym_throw] = ACTIONS(2551), [anon_sym_case] = ACTIONS(2551), + [anon_sym_finally] = ACTIONS(2551), [anon_sym_yield] = ACTIONS(2551), [anon_sym_LBRACK] = ACTIONS(2549), [anon_sym_class] = ACTIONS(2551), @@ -108801,89 +108964,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2551), [sym_html_comment] = ACTIONS(5), }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_type] = ACTIONS(1802), - [anon_sym_namespace] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym_import] = ACTIONS(1802), - [anon_sym_with] = ACTIONS(1802), - [anon_sym_var] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_await] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_debugger] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_throw] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_yield] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_class] = ACTIONS(1802), - [anon_sym_async] = ACTIONS(1802), - [anon_sym_function] = ACTIONS(1802), - [anon_sym_new] = ACTIONS(1802), - [anon_sym_using] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_void] = ACTIONS(1802), - [anon_sym_delete] = ACTIONS(1802), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1800), - [sym_number] = ACTIONS(1800), - [sym_private_property_identifier] = ACTIONS(1800), - [sym_this] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_undefined] = ACTIONS(1802), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_readonly] = ACTIONS(1802), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1802), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1802), - [anon_sym_private] = ACTIONS(1802), - [anon_sym_protected] = ACTIONS(1802), - [anon_sym_override] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_any] = ACTIONS(1802), - [anon_sym_number] = ACTIONS(1802), - [anon_sym_boolean] = ACTIONS(1802), - [anon_sym_string] = ACTIONS(1802), - [anon_sym_symbol] = ACTIONS(1802), - [anon_sym_object] = ACTIONS(1802), - [anon_sym_abstract] = ACTIONS(1802), - [anon_sym_interface] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [sym__automatic_semicolon] = ACTIONS(1808), - [sym_html_comment] = ACTIONS(5), - }, [812] = { [ts_builtin_sym_end] = ACTIONS(2553), [sym_identifier] = ACTIONS(2555), @@ -109213,88 +109293,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [816] = { - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_export] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_typeof] = ACTIONS(2563), - [anon_sym_import] = ACTIONS(2563), - [anon_sym_with] = ACTIONS(2563), - [anon_sym_var] = ACTIONS(2563), - [anon_sym_let] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_await] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_debugger] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_async] = ACTIONS(2563), - [anon_sym_function] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2563), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_void] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2561), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2561), - [sym_number] = ACTIONS(2561), - [sym_private_property_identifier] = ACTIONS(2561), - [sym_this] = ACTIONS(2563), - [sym_super] = ACTIONS(2563), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_undefined] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_readonly] = ACTIONS(2563), - [anon_sym_get] = ACTIONS(2563), - [anon_sym_set] = ACTIONS(2563), - [anon_sym_declare] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_override] = ACTIONS(2563), - [anon_sym_module] = ACTIONS(2563), - [anon_sym_any] = ACTIONS(2563), - [anon_sym_number] = ACTIONS(2563), - [anon_sym_boolean] = ACTIONS(2563), - [anon_sym_string] = ACTIONS(2563), - [anon_sym_symbol] = ACTIONS(2563), - [anon_sym_object] = ACTIONS(2563), - [anon_sym_abstract] = ACTIONS(2563), - [anon_sym_interface] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [sym_html_comment] = ACTIONS(5), - }, - [817] = { [ts_builtin_sym_end] = ACTIONS(2569), [sym_identifier] = ACTIONS(2571), [anon_sym_export] = ACTIONS(2571), @@ -109376,225 +109374,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2571), [sym_html_comment] = ACTIONS(5), }, - [818] = { - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_export] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_typeof] = ACTIONS(2563), - [anon_sym_import] = ACTIONS(2563), - [anon_sym_with] = ACTIONS(2563), - [anon_sym_var] = ACTIONS(2563), - [anon_sym_let] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_await] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_debugger] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_async] = ACTIONS(2563), - [anon_sym_function] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2563), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_void] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2561), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2561), - [sym_number] = ACTIONS(2561), - [sym_private_property_identifier] = ACTIONS(2561), - [sym_this] = ACTIONS(2563), - [sym_super] = ACTIONS(2563), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_undefined] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_readonly] = ACTIONS(2563), - [anon_sym_get] = ACTIONS(2563), - [anon_sym_set] = ACTIONS(2563), - [anon_sym_declare] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_override] = ACTIONS(2563), - [anon_sym_module] = ACTIONS(2563), - [anon_sym_any] = ACTIONS(2563), - [anon_sym_number] = ACTIONS(2563), - [anon_sym_boolean] = ACTIONS(2563), - [anon_sym_string] = ACTIONS(2563), - [anon_sym_symbol] = ACTIONS(2563), - [anon_sym_object] = ACTIONS(2563), - [anon_sym_abstract] = ACTIONS(2563), - [anon_sym_interface] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [sym_html_comment] = ACTIONS(5), - }, - [819] = { - [ts_builtin_sym_end] = ACTIONS(2573), - [sym_identifier] = ACTIONS(2575), - [anon_sym_export] = ACTIONS(2575), - [anon_sym_default] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_namespace] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_RBRACE] = ACTIONS(2573), - [anon_sym_typeof] = ACTIONS(2575), - [anon_sym_import] = ACTIONS(2575), - [anon_sym_with] = ACTIONS(2575), - [anon_sym_var] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_const] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_switch] = ACTIONS(2575), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2573), - [anon_sym_SEMI] = ACTIONS(2573), - [anon_sym_await] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_do] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_break] = ACTIONS(2575), - [anon_sym_continue] = ACTIONS(2575), - [anon_sym_debugger] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_throw] = ACTIONS(2575), - [anon_sym_case] = ACTIONS(2575), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_class] = ACTIONS(2575), - [anon_sym_async] = ACTIONS(2575), - [anon_sym_function] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2575), - [anon_sym_using] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2575), - [anon_sym_SLASH] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2573), - [anon_sym_void] = ACTIONS(2575), - [anon_sym_delete] = ACTIONS(2575), - [anon_sym_PLUS_PLUS] = ACTIONS(2573), - [anon_sym_DASH_DASH] = ACTIONS(2573), - [anon_sym_DQUOTE] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2573), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2573), - [sym_number] = ACTIONS(2573), - [sym_private_property_identifier] = ACTIONS(2573), - [sym_this] = ACTIONS(2575), - [sym_super] = ACTIONS(2575), - [sym_true] = ACTIONS(2575), - [sym_false] = ACTIONS(2575), - [sym_null] = ACTIONS(2575), - [sym_undefined] = ACTIONS(2575), - [anon_sym_AT] = ACTIONS(2573), - [anon_sym_static] = ACTIONS(2575), - [anon_sym_readonly] = ACTIONS(2575), - [anon_sym_get] = ACTIONS(2575), - [anon_sym_set] = ACTIONS(2575), - [anon_sym_declare] = ACTIONS(2575), - [anon_sym_public] = ACTIONS(2575), - [anon_sym_private] = ACTIONS(2575), - [anon_sym_protected] = ACTIONS(2575), - [anon_sym_override] = ACTIONS(2575), - [anon_sym_module] = ACTIONS(2575), - [anon_sym_any] = ACTIONS(2575), - [anon_sym_number] = ACTIONS(2575), - [anon_sym_boolean] = ACTIONS(2575), - [anon_sym_string] = ACTIONS(2575), - [anon_sym_symbol] = ACTIONS(2575), - [anon_sym_object] = ACTIONS(2575), - [anon_sym_abstract] = ACTIONS(2575), - [anon_sym_interface] = ACTIONS(2575), - [anon_sym_enum] = ACTIONS(2575), - [sym_html_comment] = ACTIONS(5), - }, - [820] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [817] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -109605,78 +109439,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [818] = { + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2577), + [anon_sym_export] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_typeof] = ACTIONS(2577), + [anon_sym_import] = ACTIONS(2577), + [anon_sym_with] = ACTIONS(2577), + [anon_sym_var] = ACTIONS(2577), + [anon_sym_let] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_await] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_debugger] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_function] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_SLASH] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_void] = ACTIONS(2577), + [anon_sym_delete] = ACTIONS(2577), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2575), + [sym_number] = ACTIONS(2575), + [sym_private_property_identifier] = ACTIONS(2575), + [sym_this] = ACTIONS(2577), + [sym_super] = ACTIONS(2577), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_undefined] = ACTIONS(2577), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_readonly] = ACTIONS(2577), + [anon_sym_get] = ACTIONS(2577), + [anon_sym_set] = ACTIONS(2577), + [anon_sym_declare] = ACTIONS(2577), + [anon_sym_public] = ACTIONS(2577), + [anon_sym_private] = ACTIONS(2577), + [anon_sym_protected] = ACTIONS(2577), + [anon_sym_override] = ACTIONS(2577), + [anon_sym_module] = ACTIONS(2577), + [anon_sym_any] = ACTIONS(2577), + [anon_sym_number] = ACTIONS(2577), + [anon_sym_boolean] = ACTIONS(2577), + [anon_sym_string] = ACTIONS(2577), + [anon_sym_symbol] = ACTIONS(2577), + [anon_sym_object] = ACTIONS(2577), + [anon_sym_abstract] = ACTIONS(2577), + [anon_sym_interface] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [sym_html_comment] = ACTIONS(5), + }, + [819] = { + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2581), + [anon_sym_export] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2581), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_typeof] = ACTIONS(2581), + [anon_sym_import] = ACTIONS(2581), + [anon_sym_with] = ACTIONS(2581), + [anon_sym_var] = ACTIONS(2581), + [anon_sym_let] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_switch] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_await] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_do] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_debugger] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_throw] = ACTIONS(2581), + [anon_sym_case] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_function] = ACTIONS(2581), + [anon_sym_new] = ACTIONS(2581), + [anon_sym_using] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [anon_sym_SLASH] = ACTIONS(2581), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_void] = ACTIONS(2581), + [anon_sym_delete] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2579), + [sym_number] = ACTIONS(2579), + [sym_private_property_identifier] = ACTIONS(2579), + [sym_this] = ACTIONS(2581), + [sym_super] = ACTIONS(2581), + [sym_true] = ACTIONS(2581), + [sym_false] = ACTIONS(2581), + [sym_null] = ACTIONS(2581), + [sym_undefined] = ACTIONS(2581), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_readonly] = ACTIONS(2581), + [anon_sym_get] = ACTIONS(2581), + [anon_sym_set] = ACTIONS(2581), + [anon_sym_declare] = ACTIONS(2581), + [anon_sym_public] = ACTIONS(2581), + [anon_sym_private] = ACTIONS(2581), + [anon_sym_protected] = ACTIONS(2581), + [anon_sym_override] = ACTIONS(2581), + [anon_sym_module] = ACTIONS(2581), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), + [anon_sym_abstract] = ACTIONS(2581), + [anon_sym_interface] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [sym_html_comment] = ACTIONS(5), + }, + [820] = { + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [anon_sym_export] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_namespace] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_typeof] = ACTIONS(2585), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_with] = ACTIONS(2585), + [anon_sym_var] = ACTIONS(2585), + [anon_sym_let] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_switch] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_await] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_do] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_debugger] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_throw] = ACTIONS(2585), + [anon_sym_case] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(2585), + [anon_sym_new] = ACTIONS(2585), + [anon_sym_using] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_SLASH] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_void] = ACTIONS(2585), + [anon_sym_delete] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2583), + [sym_number] = ACTIONS(2583), + [sym_private_property_identifier] = ACTIONS(2583), + [sym_this] = ACTIONS(2585), + [sym_super] = ACTIONS(2585), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_null] = ACTIONS(2585), + [sym_undefined] = ACTIONS(2585), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_readonly] = ACTIONS(2585), + [anon_sym_get] = ACTIONS(2585), + [anon_sym_set] = ACTIONS(2585), + [anon_sym_declare] = ACTIONS(2585), + [anon_sym_public] = ACTIONS(2585), + [anon_sym_private] = ACTIONS(2585), + [anon_sym_protected] = ACTIONS(2585), + [anon_sym_override] = ACTIONS(2585), + [anon_sym_module] = ACTIONS(2585), + [anon_sym_any] = ACTIONS(2585), + [anon_sym_number] = ACTIONS(2585), + [anon_sym_boolean] = ACTIONS(2585), + [anon_sym_string] = ACTIONS(2585), + [anon_sym_symbol] = ACTIONS(2585), + [anon_sym_object] = ACTIONS(2585), + [anon_sym_abstract] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), [sym_html_comment] = ACTIONS(5), }, [821] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2579), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -109687,352 +109767,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [822] = { - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_export] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_typeof] = ACTIONS(2563), - [anon_sym_import] = ACTIONS(2563), - [anon_sym_with] = ACTIONS(2563), - [anon_sym_var] = ACTIONS(2563), - [anon_sym_let] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_await] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_debugger] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_async] = ACTIONS(2563), - [anon_sym_function] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2563), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_void] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2561), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2561), - [sym_number] = ACTIONS(2561), - [sym_private_property_identifier] = ACTIONS(2561), - [sym_this] = ACTIONS(2563), - [sym_super] = ACTIONS(2563), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_undefined] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_readonly] = ACTIONS(2563), - [anon_sym_get] = ACTIONS(2563), - [anon_sym_set] = ACTIONS(2563), - [anon_sym_declare] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_override] = ACTIONS(2563), - [anon_sym_module] = ACTIONS(2563), - [anon_sym_any] = ACTIONS(2563), - [anon_sym_number] = ACTIONS(2563), - [anon_sym_boolean] = ACTIONS(2563), - [anon_sym_string] = ACTIONS(2563), - [anon_sym_symbol] = ACTIONS(2563), - [anon_sym_object] = ACTIONS(2563), - [anon_sym_abstract] = ACTIONS(2563), - [anon_sym_interface] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [sym_html_comment] = ACTIONS(5), - }, - [823] = { - [ts_builtin_sym_end] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2583), - [anon_sym_export] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_typeof] = ACTIONS(2583), - [anon_sym_import] = ACTIONS(2583), - [anon_sym_with] = ACTIONS(2583), - [anon_sym_var] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_BANG] = ACTIONS(2581), - [anon_sym_else] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [anon_sym_await] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_debugger] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2583), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_async] = ACTIONS(2583), - [anon_sym_function] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_SLASH] = ACTIONS(2583), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_TILDE] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_PLUS_PLUS] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2581), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2581), - [sym_number] = ACTIONS(2581), - [sym_private_property_identifier] = ACTIONS(2581), - [sym_this] = ACTIONS(2583), - [sym_super] = ACTIONS(2583), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), - [sym_undefined] = ACTIONS(2583), - [anon_sym_AT] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_readonly] = ACTIONS(2583), - [anon_sym_get] = ACTIONS(2583), - [anon_sym_set] = ACTIONS(2583), - [anon_sym_declare] = ACTIONS(2583), - [anon_sym_public] = ACTIONS(2583), - [anon_sym_private] = ACTIONS(2583), - [anon_sym_protected] = ACTIONS(2583), - [anon_sym_override] = ACTIONS(2583), - [anon_sym_module] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2583), - [anon_sym_number] = ACTIONS(2583), - [anon_sym_boolean] = ACTIONS(2583), - [anon_sym_string] = ACTIONS(2583), - [anon_sym_symbol] = ACTIONS(2583), - [anon_sym_object] = ACTIONS(2583), - [anon_sym_abstract] = ACTIONS(2583), - [anon_sym_interface] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [sym_html_comment] = ACTIONS(5), - }, - [824] = { - [ts_builtin_sym_end] = ACTIONS(1730), - [sym_identifier] = ACTIONS(1732), - [anon_sym_export] = ACTIONS(1732), - [anon_sym_default] = ACTIONS(1732), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_namespace] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_typeof] = ACTIONS(1732), - [anon_sym_import] = ACTIONS(1732), - [anon_sym_with] = ACTIONS(1732), - [anon_sym_var] = ACTIONS(1732), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_switch] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_await] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_do] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_debugger] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_case] = ACTIONS(1732), - [anon_sym_yield] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(1732), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(1732), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_using] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_void] = ACTIONS(1732), - [anon_sym_delete] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1730), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1730), - [sym_number] = ACTIONS(1730), - [sym_private_property_identifier] = ACTIONS(1730), - [sym_this] = ACTIONS(1732), - [sym_super] = ACTIONS(1732), - [sym_true] = ACTIONS(1732), - [sym_false] = ACTIONS(1732), - [sym_null] = ACTIONS(1732), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_readonly] = ACTIONS(1732), - [anon_sym_get] = ACTIONS(1732), - [anon_sym_set] = ACTIONS(1732), - [anon_sym_declare] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_protected] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(1732), - [anon_sym_module] = ACTIONS(1732), - [anon_sym_any] = ACTIONS(1732), - [anon_sym_number] = ACTIONS(1732), - [anon_sym_boolean] = ACTIONS(1732), - [anon_sym_string] = ACTIONS(1732), - [anon_sym_symbol] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_abstract] = ACTIONS(1732), - [anon_sym_interface] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [sym_html_comment] = ACTIONS(5), - }, - [825] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2587), - [anon_sym_export] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_typeof] = ACTIONS(2587), - [anon_sym_import] = ACTIONS(2587), - [anon_sym_with] = ACTIONS(2587), - [anon_sym_var] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_else] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_await] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_debugger] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2587), - [anon_sym_function] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_SLASH] = ACTIONS(2587), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_void] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2585), - [sym_number] = ACTIONS(2585), - [sym_private_property_identifier] = ACTIONS(2585), - [sym_this] = ACTIONS(2587), - [sym_super] = ACTIONS(2587), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_undefined] = ACTIONS(2587), - [anon_sym_AT] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_readonly] = ACTIONS(2587), - [anon_sym_get] = ACTIONS(2587), - [anon_sym_set] = ACTIONS(2587), - [anon_sym_declare] = ACTIONS(2587), - [anon_sym_public] = ACTIONS(2587), - [anon_sym_private] = ACTIONS(2587), - [anon_sym_protected] = ACTIONS(2587), - [anon_sym_override] = ACTIONS(2587), - [anon_sym_module] = ACTIONS(2587), - [anon_sym_any] = ACTIONS(2587), - [anon_sym_number] = ACTIONS(2587), - [anon_sym_boolean] = ACTIONS(2587), - [anon_sym_string] = ACTIONS(2587), - [anon_sym_symbol] = ACTIONS(2587), - [anon_sym_object] = ACTIONS(2587), - [anon_sym_abstract] = ACTIONS(2587), - [anon_sym_interface] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [sym_html_comment] = ACTIONS(5), - }, - [826] = { [ts_builtin_sym_end] = ACTIONS(2589), [sym_identifier] = ACTIONS(2591), [anon_sym_export] = ACTIONS(2591), @@ -110114,7 +109866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2591), [sym_html_comment] = ACTIONS(5), }, - [827] = { + [823] = { [ts_builtin_sym_end] = ACTIONS(2593), [sym_identifier] = ACTIONS(2595), [anon_sym_export] = ACTIONS(2595), @@ -110196,7 +109948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2595), [sym_html_comment] = ACTIONS(5), }, - [828] = { + [824] = { [ts_builtin_sym_end] = ACTIONS(2597), [sym_identifier] = ACTIONS(2599), [anon_sym_export] = ACTIONS(2599), @@ -110278,89 +110030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2599), [sym_html_comment] = ACTIONS(5), }, - [829] = { - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2571), - [anon_sym_export] = ACTIONS(2571), - [anon_sym_default] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_namespace] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_typeof] = ACTIONS(2571), - [anon_sym_import] = ACTIONS(2571), - [anon_sym_with] = ACTIONS(2571), - [anon_sym_var] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_else] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_switch] = ACTIONS(2571), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_await] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_debugger] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_throw] = ACTIONS(2571), - [anon_sym_case] = ACTIONS(2571), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_class] = ACTIONS(2571), - [anon_sym_async] = ACTIONS(2571), - [anon_sym_function] = ACTIONS(2571), - [anon_sym_new] = ACTIONS(2571), - [anon_sym_using] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2571), - [anon_sym_SLASH] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2569), - [anon_sym_void] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(2571), - [anon_sym_PLUS_PLUS] = ACTIONS(2569), - [anon_sym_DASH_DASH] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2569), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2569), - [sym_number] = ACTIONS(2569), - [sym_private_property_identifier] = ACTIONS(2569), - [sym_this] = ACTIONS(2571), - [sym_super] = ACTIONS(2571), - [sym_true] = ACTIONS(2571), - [sym_false] = ACTIONS(2571), - [sym_null] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [anon_sym_AT] = ACTIONS(2569), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_readonly] = ACTIONS(2571), - [anon_sym_get] = ACTIONS(2571), - [anon_sym_set] = ACTIONS(2571), - [anon_sym_declare] = ACTIONS(2571), - [anon_sym_public] = ACTIONS(2571), - [anon_sym_private] = ACTIONS(2571), - [anon_sym_protected] = ACTIONS(2571), - [anon_sym_override] = ACTIONS(2571), - [anon_sym_module] = ACTIONS(2571), - [anon_sym_any] = ACTIONS(2571), - [anon_sym_number] = ACTIONS(2571), - [anon_sym_boolean] = ACTIONS(2571), - [anon_sym_string] = ACTIONS(2571), - [anon_sym_symbol] = ACTIONS(2571), - [anon_sym_object] = ACTIONS(2571), - [anon_sym_abstract] = ACTIONS(2571), - [anon_sym_interface] = ACTIONS(2571), - [anon_sym_enum] = ACTIONS(2571), - [sym_html_comment] = ACTIONS(5), - }, - [830] = { + [825] = { [ts_builtin_sym_end] = ACTIONS(2601), [sym_identifier] = ACTIONS(2603), [anon_sym_export] = ACTIONS(2603), @@ -110442,89 +110112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2603), [sym_html_comment] = ACTIONS(5), }, - [831] = { - [ts_builtin_sym_end] = ACTIONS(1730), - [sym_identifier] = ACTIONS(1732), - [anon_sym_export] = ACTIONS(1732), - [anon_sym_default] = ACTIONS(1732), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_namespace] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_typeof] = ACTIONS(1732), - [anon_sym_import] = ACTIONS(1732), - [anon_sym_with] = ACTIONS(1732), - [anon_sym_var] = ACTIONS(1732), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_else] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_switch] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_await] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_do] = ACTIONS(1732), - [anon_sym_try] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_debugger] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_case] = ACTIONS(1732), - [anon_sym_yield] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(1732), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(1732), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_using] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_void] = ACTIONS(1732), - [anon_sym_delete] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1730), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1730), - [sym_number] = ACTIONS(1730), - [sym_private_property_identifier] = ACTIONS(1730), - [sym_this] = ACTIONS(1732), - [sym_super] = ACTIONS(1732), - [sym_true] = ACTIONS(1732), - [sym_false] = ACTIONS(1732), - [sym_null] = ACTIONS(1732), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_readonly] = ACTIONS(1732), - [anon_sym_get] = ACTIONS(1732), - [anon_sym_set] = ACTIONS(1732), - [anon_sym_declare] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_protected] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(1732), - [anon_sym_module] = ACTIONS(1732), - [anon_sym_any] = ACTIONS(1732), - [anon_sym_number] = ACTIONS(1732), - [anon_sym_boolean] = ACTIONS(1732), - [anon_sym_string] = ACTIONS(1732), - [anon_sym_symbol] = ACTIONS(1732), - [anon_sym_object] = ACTIONS(1732), - [anon_sym_abstract] = ACTIONS(1732), - [anon_sym_interface] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [sym_html_comment] = ACTIONS(5), - }, - [832] = { + [826] = { [ts_builtin_sym_end] = ACTIONS(2605), [sym_identifier] = ACTIONS(2607), [anon_sym_export] = ACTIONS(2607), @@ -110606,7 +110194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2607), [sym_html_comment] = ACTIONS(5), }, - [833] = { + [827] = { [ts_builtin_sym_end] = ACTIONS(2609), [sym_identifier] = ACTIONS(2611), [anon_sym_export] = ACTIONS(2611), @@ -110688,7 +110276,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2611), [sym_html_comment] = ACTIONS(5), }, - [834] = { + [828] = { + [ts_builtin_sym_end] = ACTIONS(2609), + [sym_identifier] = ACTIONS(2611), + [anon_sym_export] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_typeof] = ACTIONS(2611), + [anon_sym_import] = ACTIONS(2611), + [anon_sym_with] = ACTIONS(2611), + [anon_sym_var] = ACTIONS(2611), + [anon_sym_let] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_await] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_debugger] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_yield] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_async] = ACTIONS(2611), + [anon_sym_function] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_void] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2609), + [sym_number] = ACTIONS(2609), + [sym_private_property_identifier] = ACTIONS(2609), + [sym_this] = ACTIONS(2611), + [sym_super] = ACTIONS(2611), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_undefined] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_readonly] = ACTIONS(2611), + [anon_sym_get] = ACTIONS(2611), + [anon_sym_set] = ACTIONS(2611), + [anon_sym_declare] = ACTIONS(2611), + [anon_sym_public] = ACTIONS(2611), + [anon_sym_private] = ACTIONS(2611), + [anon_sym_protected] = ACTIONS(2611), + [anon_sym_override] = ACTIONS(2611), + [anon_sym_module] = ACTIONS(2611), + [anon_sym_any] = ACTIONS(2611), + [anon_sym_number] = ACTIONS(2611), + [anon_sym_boolean] = ACTIONS(2611), + [anon_sym_string] = ACTIONS(2611), + [anon_sym_symbol] = ACTIONS(2611), + [anon_sym_object] = ACTIONS(2611), + [anon_sym_abstract] = ACTIONS(2611), + [anon_sym_interface] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [sym_html_comment] = ACTIONS(5), + }, + [829] = { [ts_builtin_sym_end] = ACTIONS(2613), [sym_identifier] = ACTIONS(2615), [anon_sym_export] = ACTIONS(2615), @@ -110770,89 +110440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2615), [sym_html_comment] = ACTIONS(5), }, - [835] = { - [ts_builtin_sym_end] = ACTIONS(2617), - [sym_identifier] = ACTIONS(2619), - [anon_sym_export] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_type] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_typeof] = ACTIONS(2619), - [anon_sym_import] = ACTIONS(2619), - [anon_sym_with] = ACTIONS(2619), - [anon_sym_var] = ACTIONS(2619), - [anon_sym_let] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_switch] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_await] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_do] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_debugger] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_throw] = ACTIONS(2619), - [anon_sym_case] = ACTIONS(2619), - [anon_sym_yield] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_class] = ACTIONS(2619), - [anon_sym_async] = ACTIONS(2619), - [anon_sym_function] = ACTIONS(2619), - [anon_sym_new] = ACTIONS(2619), - [anon_sym_using] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2619), - [anon_sym_SLASH] = ACTIONS(2619), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_void] = ACTIONS(2619), - [anon_sym_delete] = ACTIONS(2619), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2617), - [sym_number] = ACTIONS(2617), - [sym_private_property_identifier] = ACTIONS(2617), - [sym_this] = ACTIONS(2619), - [sym_super] = ACTIONS(2619), - [sym_true] = ACTIONS(2619), - [sym_false] = ACTIONS(2619), - [sym_null] = ACTIONS(2619), - [sym_undefined] = ACTIONS(2619), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_readonly] = ACTIONS(2619), - [anon_sym_get] = ACTIONS(2619), - [anon_sym_set] = ACTIONS(2619), - [anon_sym_declare] = ACTIONS(2619), - [anon_sym_public] = ACTIONS(2619), - [anon_sym_private] = ACTIONS(2619), - [anon_sym_protected] = ACTIONS(2619), - [anon_sym_override] = ACTIONS(2619), - [anon_sym_module] = ACTIONS(2619), - [anon_sym_any] = ACTIONS(2619), - [anon_sym_number] = ACTIONS(2619), - [anon_sym_boolean] = ACTIONS(2619), - [anon_sym_string] = ACTIONS(2619), - [anon_sym_symbol] = ACTIONS(2619), - [anon_sym_object] = ACTIONS(2619), - [anon_sym_abstract] = ACTIONS(2619), - [anon_sym_interface] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [sym_html_comment] = ACTIONS(5), - }, - [836] = { + [830] = { [ts_builtin_sym_end] = ACTIONS(2617), [sym_identifier] = ACTIONS(2619), [anon_sym_export] = ACTIONS(2619), @@ -110934,7 +110522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2619), [sym_html_comment] = ACTIONS(5), }, - [837] = { + [831] = { [ts_builtin_sym_end] = ACTIONS(2621), [sym_identifier] = ACTIONS(2623), [anon_sym_export] = ACTIONS(2623), @@ -111016,7 +110604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2623), [sym_html_comment] = ACTIONS(5), }, - [838] = { + [832] = { [ts_builtin_sym_end] = ACTIONS(2625), [sym_identifier] = ACTIONS(2627), [anon_sym_export] = ACTIONS(2627), @@ -111098,7 +110686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2627), [sym_html_comment] = ACTIONS(5), }, - [839] = { + [833] = { [ts_builtin_sym_end] = ACTIONS(2629), [sym_identifier] = ACTIONS(2631), [anon_sym_export] = ACTIONS(2631), @@ -111180,7 +110768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2631), [sym_html_comment] = ACTIONS(5), }, - [840] = { + [834] = { [ts_builtin_sym_end] = ACTIONS(2633), [sym_identifier] = ACTIONS(2635), [anon_sym_export] = ACTIONS(2635), @@ -111262,7 +110850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2635), [sym_html_comment] = ACTIONS(5), }, - [841] = { + [835] = { [ts_builtin_sym_end] = ACTIONS(2637), [sym_identifier] = ACTIONS(2639), [anon_sym_export] = ACTIONS(2639), @@ -111344,7 +110932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2639), [sym_html_comment] = ACTIONS(5), }, - [842] = { + [836] = { [ts_builtin_sym_end] = ACTIONS(2641), [sym_identifier] = ACTIONS(2643), [anon_sym_export] = ACTIONS(2643), @@ -111426,7 +111014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2643), [sym_html_comment] = ACTIONS(5), }, - [843] = { + [837] = { [ts_builtin_sym_end] = ACTIONS(2645), [sym_identifier] = ACTIONS(2647), [anon_sym_export] = ACTIONS(2647), @@ -111508,7 +111096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2647), [sym_html_comment] = ACTIONS(5), }, - [844] = { + [838] = { [ts_builtin_sym_end] = ACTIONS(2649), [sym_identifier] = ACTIONS(2651), [anon_sym_export] = ACTIONS(2651), @@ -111590,7 +111178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2651), [sym_html_comment] = ACTIONS(5), }, - [845] = { + [839] = { [ts_builtin_sym_end] = ACTIONS(2653), [sym_identifier] = ACTIONS(2655), [anon_sym_export] = ACTIONS(2655), @@ -111672,7 +111260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2655), [sym_html_comment] = ACTIONS(5), }, - [846] = { + [840] = { [ts_builtin_sym_end] = ACTIONS(2657), [sym_identifier] = ACTIONS(2659), [anon_sym_export] = ACTIONS(2659), @@ -111754,7 +111342,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2659), [sym_html_comment] = ACTIONS(5), }, - [847] = { + [841] = { + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_export] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_typeof] = ACTIONS(2659), + [anon_sym_import] = ACTIONS(2659), + [anon_sym_with] = ACTIONS(2659), + [anon_sym_var] = ACTIONS(2659), + [anon_sym_let] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_await] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_debugger] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_function] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2657), + [sym_number] = ACTIONS(2657), + [sym_private_property_identifier] = ACTIONS(2657), + [sym_this] = ACTIONS(2659), + [sym_super] = ACTIONS(2659), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [sym_null] = ACTIONS(2659), + [sym_undefined] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_readonly] = ACTIONS(2659), + [anon_sym_get] = ACTIONS(2659), + [anon_sym_set] = ACTIONS(2659), + [anon_sym_declare] = ACTIONS(2659), + [anon_sym_public] = ACTIONS(2659), + [anon_sym_private] = ACTIONS(2659), + [anon_sym_protected] = ACTIONS(2659), + [anon_sym_override] = ACTIONS(2659), + [anon_sym_module] = ACTIONS(2659), + [anon_sym_any] = ACTIONS(2659), + [anon_sym_number] = ACTIONS(2659), + [anon_sym_boolean] = ACTIONS(2659), + [anon_sym_string] = ACTIONS(2659), + [anon_sym_symbol] = ACTIONS(2659), + [anon_sym_object] = ACTIONS(2659), + [anon_sym_abstract] = ACTIONS(2659), + [anon_sym_interface] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [sym_html_comment] = ACTIONS(5), + }, + [842] = { [ts_builtin_sym_end] = ACTIONS(2661), [sym_identifier] = ACTIONS(2663), [anon_sym_export] = ACTIONS(2663), @@ -111836,61 +111506,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2663), [sym_html_comment] = ACTIONS(5), }, - [848] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [843] = { + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2667), + [anon_sym_export] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_type] = ACTIONS(2667), + [anon_sym_namespace] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_typeof] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2667), + [anon_sym_with] = ACTIONS(2667), + [anon_sym_var] = ACTIONS(2667), + [anon_sym_let] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_await] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_debugger] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_case] = ACTIONS(2667), + [anon_sym_yield] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_async] = ACTIONS(2667), + [anon_sym_function] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_void] = ACTIONS(2667), + [anon_sym_delete] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2665), + [sym_number] = ACTIONS(2665), + [sym_private_property_identifier] = ACTIONS(2665), + [sym_this] = ACTIONS(2667), + [sym_super] = ACTIONS(2667), + [sym_true] = ACTIONS(2667), + [sym_false] = ACTIONS(2667), + [sym_null] = ACTIONS(2667), + [sym_undefined] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_readonly] = ACTIONS(2667), + [anon_sym_get] = ACTIONS(2667), + [anon_sym_set] = ACTIONS(2667), + [anon_sym_declare] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_protected] = ACTIONS(2667), + [anon_sym_override] = ACTIONS(2667), + [anon_sym_module] = ACTIONS(2667), + [anon_sym_any] = ACTIONS(2667), + [anon_sym_number] = ACTIONS(2667), + [anon_sym_boolean] = ACTIONS(2667), + [anon_sym_string] = ACTIONS(2667), + [anon_sym_symbol] = ACTIONS(2667), + [anon_sym_object] = ACTIONS(2667), + [anon_sym_abstract] = ACTIONS(2667), + [anon_sym_interface] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [sym_html_comment] = ACTIONS(5), + }, + [844] = { + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2671), + [anon_sym_export] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_type] = ACTIONS(2671), + [anon_sym_namespace] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_typeof] = ACTIONS(2671), + [anon_sym_import] = ACTIONS(2671), + [anon_sym_with] = ACTIONS(2671), + [anon_sym_var] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_await] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_debugger] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_case] = ACTIONS(2671), + [anon_sym_yield] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_async] = ACTIONS(2671), + [anon_sym_function] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_SLASH] = ACTIONS(2671), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_void] = ACTIONS(2671), + [anon_sym_delete] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2669), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2669), + [sym_number] = ACTIONS(2669), + [sym_private_property_identifier] = ACTIONS(2669), + [sym_this] = ACTIONS(2671), + [sym_super] = ACTIONS(2671), + [sym_true] = ACTIONS(2671), + [sym_false] = ACTIONS(2671), + [sym_null] = ACTIONS(2671), + [sym_undefined] = ACTIONS(2671), + [anon_sym_AT] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_readonly] = ACTIONS(2671), + [anon_sym_get] = ACTIONS(2671), + [anon_sym_set] = ACTIONS(2671), + [anon_sym_declare] = ACTIONS(2671), + [anon_sym_public] = ACTIONS(2671), + [anon_sym_private] = ACTIONS(2671), + [anon_sym_protected] = ACTIONS(2671), + [anon_sym_override] = ACTIONS(2671), + [anon_sym_module] = ACTIONS(2671), + [anon_sym_any] = ACTIONS(2671), + [anon_sym_number] = ACTIONS(2671), + [anon_sym_boolean] = ACTIONS(2671), + [anon_sym_string] = ACTIONS(2671), + [anon_sym_symbol] = ACTIONS(2671), + [anon_sym_object] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2671), + [anon_sym_interface] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [sym_html_comment] = ACTIONS(5), + }, + [845] = { + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2675), + [anon_sym_export] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_typeof] = ACTIONS(2675), + [anon_sym_import] = ACTIONS(2675), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_var] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_else] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_switch] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_await] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_debugger] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_throw] = ACTIONS(2675), + [anon_sym_case] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_async] = ACTIONS(2675), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_using] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_SLASH] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_void] = ACTIONS(2675), + [anon_sym_delete] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2673), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2673), + [sym_private_property_identifier] = ACTIONS(2673), + [sym_this] = ACTIONS(2675), + [sym_super] = ACTIONS(2675), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [sym_null] = ACTIONS(2675), + [sym_undefined] = ACTIONS(2675), + [anon_sym_AT] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_readonly] = ACTIONS(2675), + [anon_sym_get] = ACTIONS(2675), + [anon_sym_set] = ACTIONS(2675), + [anon_sym_declare] = ACTIONS(2675), + [anon_sym_public] = ACTIONS(2675), + [anon_sym_private] = ACTIONS(2675), + [anon_sym_protected] = ACTIONS(2675), + [anon_sym_override] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2675), + [anon_sym_any] = ACTIONS(2675), + [anon_sym_number] = ACTIONS(2675), + [anon_sym_boolean] = ACTIONS(2675), + [anon_sym_string] = ACTIONS(2675), + [anon_sym_symbol] = ACTIONS(2675), + [anon_sym_object] = ACTIONS(2675), + [anon_sym_abstract] = ACTIONS(2675), + [anon_sym_interface] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [sym_html_comment] = ACTIONS(5), + }, + [846] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -111901,270 +111817,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [849] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_export] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_type] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_typeof] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2669), - [anon_sym_let] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_await] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_debugger] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_void] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2667), - [sym_number] = ACTIONS(2667), - [sym_private_property_identifier] = ACTIONS(2667), - [sym_this] = ACTIONS(2669), - [sym_super] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_undefined] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_readonly] = ACTIONS(2669), - [anon_sym_get] = ACTIONS(2669), - [anon_sym_set] = ACTIONS(2669), - [anon_sym_declare] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_protected] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_module] = ACTIONS(2669), - [anon_sym_any] = ACTIONS(2669), - [anon_sym_number] = ACTIONS(2669), - [anon_sym_boolean] = ACTIONS(2669), - [anon_sym_string] = ACTIONS(2669), - [anon_sym_symbol] = ACTIONS(2669), - [anon_sym_object] = ACTIONS(2669), - [anon_sym_abstract] = ACTIONS(2669), - [anon_sym_interface] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [sym_html_comment] = ACTIONS(5), - }, - [850] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [sym_html_comment] = ACTIONS(5), - }, - [851] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2677), - [anon_sym_export] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_type] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_typeof] = ACTIONS(2677), - [anon_sym_import] = ACTIONS(2677), - [anon_sym_with] = ACTIONS(2677), - [anon_sym_var] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_await] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_debugger] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_async] = ACTIONS(2677), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_SLASH] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_void] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2675), - [sym_number] = ACTIONS(2675), - [sym_private_property_identifier] = ACTIONS(2675), - [sym_this] = ACTIONS(2677), - [sym_super] = ACTIONS(2677), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_undefined] = ACTIONS(2677), - [anon_sym_AT] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_readonly] = ACTIONS(2677), - [anon_sym_get] = ACTIONS(2677), - [anon_sym_set] = ACTIONS(2677), - [anon_sym_declare] = ACTIONS(2677), - [anon_sym_public] = ACTIONS(2677), - [anon_sym_private] = ACTIONS(2677), - [anon_sym_protected] = ACTIONS(2677), - [anon_sym_override] = ACTIONS(2677), - [anon_sym_module] = ACTIONS(2677), - [anon_sym_any] = ACTIONS(2677), - [anon_sym_number] = ACTIONS(2677), - [anon_sym_boolean] = ACTIONS(2677), - [anon_sym_string] = ACTIONS(2677), - [anon_sym_symbol] = ACTIONS(2677), - [anon_sym_object] = ACTIONS(2677), - [anon_sym_abstract] = ACTIONS(2677), - [anon_sym_interface] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), + [847] = { + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2675), + [anon_sym_export] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_typeof] = ACTIONS(2675), + [anon_sym_import] = ACTIONS(2675), + [anon_sym_with] = ACTIONS(2675), + [anon_sym_var] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_else] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_switch] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_await] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_do] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_debugger] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_throw] = ACTIONS(2675), + [anon_sym_case] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2675), + [anon_sym_async] = ACTIONS(2675), + [anon_sym_function] = ACTIONS(2675), + [anon_sym_new] = ACTIONS(2675), + [anon_sym_using] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_SLASH] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2673), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_void] = ACTIONS(2675), + [anon_sym_delete] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2673), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2673), + [sym_number] = ACTIONS(2673), + [sym_private_property_identifier] = ACTIONS(2673), + [sym_this] = ACTIONS(2675), + [sym_super] = ACTIONS(2675), + [sym_true] = ACTIONS(2675), + [sym_false] = ACTIONS(2675), + [sym_null] = ACTIONS(2675), + [sym_undefined] = ACTIONS(2675), + [anon_sym_AT] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_readonly] = ACTIONS(2675), + [anon_sym_get] = ACTIONS(2675), + [anon_sym_set] = ACTIONS(2675), + [anon_sym_declare] = ACTIONS(2675), + [anon_sym_public] = ACTIONS(2675), + [anon_sym_private] = ACTIONS(2675), + [anon_sym_protected] = ACTIONS(2675), + [anon_sym_override] = ACTIONS(2675), + [anon_sym_module] = ACTIONS(2675), + [anon_sym_any] = ACTIONS(2675), + [anon_sym_number] = ACTIONS(2675), + [anon_sym_boolean] = ACTIONS(2675), + [anon_sym_string] = ACTIONS(2675), + [anon_sym_symbol] = ACTIONS(2675), + [anon_sym_object] = ACTIONS(2675), + [anon_sym_abstract] = ACTIONS(2675), + [anon_sym_interface] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), [sym_html_comment] = ACTIONS(5), }, - [852] = { + [848] = { [ts_builtin_sym_end] = ACTIONS(2679), [sym_identifier] = ACTIONS(2681), [anon_sym_export] = ACTIONS(2681), @@ -112246,7 +111998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2681), [sym_html_comment] = ACTIONS(5), }, - [853] = { + [849] = { [ts_builtin_sym_end] = ACTIONS(2683), [sym_identifier] = ACTIONS(2685), [anon_sym_export] = ACTIONS(2685), @@ -112328,7 +112080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2685), [sym_html_comment] = ACTIONS(5), }, - [854] = { + [850] = { [ts_builtin_sym_end] = ACTIONS(2687), [sym_identifier] = ACTIONS(2689), [anon_sym_export] = ACTIONS(2689), @@ -112410,7 +112162,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2689), [sym_html_comment] = ACTIONS(5), }, - [855] = { + [851] = { + [ts_builtin_sym_end] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_type] = ACTIONS(1742), + [anon_sym_namespace] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(1742), + [anon_sym_import] = ACTIONS(1742), + [anon_sym_with] = ACTIONS(1742), + [anon_sym_var] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_await] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_try] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_debugger] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_throw] = ACTIONS(1742), + [anon_sym_case] = ACTIONS(1742), + [anon_sym_yield] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(1742), + [anon_sym_new] = ACTIONS(1742), + [anon_sym_using] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_SLASH] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_void] = ACTIONS(1742), + [anon_sym_delete] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1740), + [sym_number] = ACTIONS(1740), + [sym_private_property_identifier] = ACTIONS(1740), + [sym_this] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_true] = ACTIONS(1742), + [sym_false] = ACTIONS(1742), + [sym_null] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_readonly] = ACTIONS(1742), + [anon_sym_get] = ACTIONS(1742), + [anon_sym_set] = ACTIONS(1742), + [anon_sym_declare] = ACTIONS(1742), + [anon_sym_public] = ACTIONS(1742), + [anon_sym_private] = ACTIONS(1742), + [anon_sym_protected] = ACTIONS(1742), + [anon_sym_override] = ACTIONS(1742), + [anon_sym_module] = ACTIONS(1742), + [anon_sym_any] = ACTIONS(1742), + [anon_sym_number] = ACTIONS(1742), + [anon_sym_boolean] = ACTIONS(1742), + [anon_sym_string] = ACTIONS(1742), + [anon_sym_symbol] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1742), + [anon_sym_abstract] = ACTIONS(1742), + [anon_sym_interface] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), + [sym_html_comment] = ACTIONS(5), + }, + [852] = { [ts_builtin_sym_end] = ACTIONS(2691), [sym_identifier] = ACTIONS(2693), [anon_sym_export] = ACTIONS(2693), @@ -112492,663 +112326,991 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2693), [sym_html_comment] = ACTIONS(5), }, + [853] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2695), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [854] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_export] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_type] = ACTIONS(1784), + [anon_sym_namespace] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1784), + [anon_sym_import] = ACTIONS(1784), + [anon_sym_with] = ACTIONS(1784), + [anon_sym_var] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_await] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_try] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_debugger] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_throw] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_yield] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_class] = ACTIONS(1784), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_function] = ACTIONS(1784), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_using] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_void] = ACTIONS(1784), + [anon_sym_delete] = ACTIONS(1784), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1782), + [sym_number] = ACTIONS(1782), + [sym_private_property_identifier] = ACTIONS(1782), + [sym_this] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_undefined] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_readonly] = ACTIONS(1784), + [anon_sym_get] = ACTIONS(1784), + [anon_sym_set] = ACTIONS(1784), + [anon_sym_declare] = ACTIONS(1784), + [anon_sym_public] = ACTIONS(1784), + [anon_sym_private] = ACTIONS(1784), + [anon_sym_protected] = ACTIONS(1784), + [anon_sym_override] = ACTIONS(1784), + [anon_sym_module] = ACTIONS(1784), + [anon_sym_any] = ACTIONS(1784), + [anon_sym_number] = ACTIONS(1784), + [anon_sym_boolean] = ACTIONS(1784), + [anon_sym_string] = ACTIONS(1784), + [anon_sym_symbol] = ACTIONS(1784), + [anon_sym_object] = ACTIONS(1784), + [anon_sym_abstract] = ACTIONS(1784), + [anon_sym_interface] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [sym_html_comment] = ACTIONS(5), + }, + [855] = { + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_identifier] = ACTIONS(2699), + [anon_sym_export] = ACTIONS(2699), + [anon_sym_default] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_namespace] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_typeof] = ACTIONS(2699), + [anon_sym_import] = ACTIONS(2699), + [anon_sym_with] = ACTIONS(2699), + [anon_sym_var] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_switch] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_await] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_do] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_debugger] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_throw] = ACTIONS(2699), + [anon_sym_case] = ACTIONS(2699), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2699), + [anon_sym_async] = ACTIONS(2699), + [anon_sym_function] = ACTIONS(2699), + [anon_sym_new] = ACTIONS(2699), + [anon_sym_using] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_SLASH] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2697), + [anon_sym_void] = ACTIONS(2699), + [anon_sym_delete] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2697), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2697), + [sym_number] = ACTIONS(2697), + [sym_private_property_identifier] = ACTIONS(2697), + [sym_this] = ACTIONS(2699), + [sym_super] = ACTIONS(2699), + [sym_true] = ACTIONS(2699), + [sym_false] = ACTIONS(2699), + [sym_null] = ACTIONS(2699), + [sym_undefined] = ACTIONS(2699), + [anon_sym_AT] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_readonly] = ACTIONS(2699), + [anon_sym_get] = ACTIONS(2699), + [anon_sym_set] = ACTIONS(2699), + [anon_sym_declare] = ACTIONS(2699), + [anon_sym_public] = ACTIONS(2699), + [anon_sym_private] = ACTIONS(2699), + [anon_sym_protected] = ACTIONS(2699), + [anon_sym_override] = ACTIONS(2699), + [anon_sym_module] = ACTIONS(2699), + [anon_sym_any] = ACTIONS(2699), + [anon_sym_number] = ACTIONS(2699), + [anon_sym_boolean] = ACTIONS(2699), + [anon_sym_string] = ACTIONS(2699), + [anon_sym_symbol] = ACTIONS(2699), + [anon_sym_object] = ACTIONS(2699), + [anon_sym_abstract] = ACTIONS(2699), + [anon_sym_interface] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [sym_html_comment] = ACTIONS(5), + }, [856] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [sym_identifier] = ACTIONS(2697), - [anon_sym_export] = ACTIONS(2697), - [anon_sym_default] = ACTIONS(2697), - [anon_sym_type] = ACTIONS(2697), - [anon_sym_namespace] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_typeof] = ACTIONS(2697), - [anon_sym_import] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_var] = ACTIONS(2697), - [anon_sym_let] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_switch] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_await] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_debugger] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_throw] = ACTIONS(2697), - [anon_sym_case] = ACTIONS(2697), - [anon_sym_yield] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2697), - [anon_sym_async] = ACTIONS(2697), - [anon_sym_function] = ACTIONS(2697), - [anon_sym_new] = ACTIONS(2697), - [anon_sym_using] = ACTIONS(2697), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_SLASH] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2695), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_void] = ACTIONS(2697), - [anon_sym_delete] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2695), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [sym_this] = ACTIONS(2697), - [sym_super] = ACTIONS(2697), - [sym_true] = ACTIONS(2697), - [sym_false] = ACTIONS(2697), - [sym_null] = ACTIONS(2697), - [sym_undefined] = ACTIONS(2697), - [anon_sym_AT] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2697), - [anon_sym_get] = ACTIONS(2697), - [anon_sym_set] = ACTIONS(2697), - [anon_sym_declare] = ACTIONS(2697), - [anon_sym_public] = ACTIONS(2697), - [anon_sym_private] = ACTIONS(2697), - [anon_sym_protected] = ACTIONS(2697), - [anon_sym_override] = ACTIONS(2697), - [anon_sym_module] = ACTIONS(2697), - [anon_sym_any] = ACTIONS(2697), - [anon_sym_number] = ACTIONS(2697), - [anon_sym_boolean] = ACTIONS(2697), - [anon_sym_string] = ACTIONS(2697), - [anon_sym_symbol] = ACTIONS(2697), - [anon_sym_object] = ACTIONS(2697), - [anon_sym_abstract] = ACTIONS(2697), - [anon_sym_interface] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_namespace] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1708), + [anon_sym_with] = ACTIONS(1708), + [anon_sym_var] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_else] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_await] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_debugger] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_throw] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_class] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_function] = ACTIONS(1708), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_using] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1708), + [anon_sym_delete] = ACTIONS(1708), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1706), + [sym_number] = ACTIONS(1706), + [sym_private_property_identifier] = ACTIONS(1706), + [sym_this] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_undefined] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1706), + [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_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), [sym_html_comment] = ACTIONS(5), }, [857] = { - [ts_builtin_sym_end] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2701), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_typeof] = ACTIONS(2701), - [anon_sym_import] = ACTIONS(2701), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_var] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_await] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_debugger] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_async] = ACTIONS(2701), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_SLASH] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_void] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2699), - [sym_number] = ACTIONS(2699), - [sym_private_property_identifier] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_super] = ACTIONS(2701), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_undefined] = ACTIONS(2701), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_readonly] = ACTIONS(2701), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2701), - [anon_sym_public] = ACTIONS(2701), - [anon_sym_private] = ACTIONS(2701), - [anon_sym_protected] = ACTIONS(2701), - [anon_sym_override] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_any] = ACTIONS(2701), - [anon_sym_number] = ACTIONS(2701), - [anon_sym_boolean] = ACTIONS(2701), - [anon_sym_string] = ACTIONS(2701), - [anon_sym_symbol] = ACTIONS(2701), - [anon_sym_object] = ACTIONS(2701), - [anon_sym_abstract] = ACTIONS(2701), - [anon_sym_interface] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_export] = ACTIONS(2703), + [anon_sym_default] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_namespace] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_typeof] = ACTIONS(2703), + [anon_sym_import] = ACTIONS(2703), + [anon_sym_with] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(2703), + [anon_sym_let] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_switch] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_await] = ACTIONS(2703), + [anon_sym_while] = ACTIONS(2703), + [anon_sym_do] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_debugger] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_throw] = ACTIONS(2703), + [anon_sym_case] = ACTIONS(2703), + [anon_sym_yield] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2703), + [anon_sym_async] = ACTIONS(2703), + [anon_sym_function] = ACTIONS(2703), + [anon_sym_new] = ACTIONS(2703), + [anon_sym_using] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_void] = ACTIONS(2703), + [anon_sym_delete] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_DQUOTE] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2701), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2701), + [sym_number] = ACTIONS(2701), + [sym_private_property_identifier] = ACTIONS(2701), + [sym_this] = ACTIONS(2703), + [sym_super] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_null] = ACTIONS(2703), + [sym_undefined] = ACTIONS(2703), + [anon_sym_AT] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_readonly] = ACTIONS(2703), + [anon_sym_get] = ACTIONS(2703), + [anon_sym_set] = ACTIONS(2703), + [anon_sym_declare] = ACTIONS(2703), + [anon_sym_public] = ACTIONS(2703), + [anon_sym_private] = ACTIONS(2703), + [anon_sym_protected] = ACTIONS(2703), + [anon_sym_override] = ACTIONS(2703), + [anon_sym_module] = ACTIONS(2703), + [anon_sym_any] = ACTIONS(2703), + [anon_sym_number] = ACTIONS(2703), + [anon_sym_boolean] = ACTIONS(2703), + [anon_sym_string] = ACTIONS(2703), + [anon_sym_symbol] = ACTIONS(2703), + [anon_sym_object] = ACTIONS(2703), + [anon_sym_abstract] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), [sym_html_comment] = ACTIONS(5), }, [858] = { - [ts_builtin_sym_end] = ACTIONS(2703), - [sym_identifier] = ACTIONS(2705), - [anon_sym_export] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_type] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_typeof] = ACTIONS(2705), - [anon_sym_import] = ACTIONS(2705), - [anon_sym_with] = ACTIONS(2705), - [anon_sym_var] = ACTIONS(2705), - [anon_sym_let] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_await] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_debugger] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_yield] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_async] = ACTIONS(2705), - [anon_sym_function] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2703), - [anon_sym_TILDE] = ACTIONS(2703), - [anon_sym_void] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2703), - [sym_number] = ACTIONS(2703), - [sym_private_property_identifier] = ACTIONS(2703), - [sym_this] = ACTIONS(2705), - [sym_super] = ACTIONS(2705), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_undefined] = ACTIONS(2705), - [anon_sym_AT] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_get] = ACTIONS(2705), - [anon_sym_set] = ACTIONS(2705), - [anon_sym_declare] = ACTIONS(2705), - [anon_sym_public] = ACTIONS(2705), - [anon_sym_private] = ACTIONS(2705), - [anon_sym_protected] = ACTIONS(2705), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_module] = ACTIONS(2705), - [anon_sym_any] = ACTIONS(2705), - [anon_sym_number] = ACTIONS(2705), - [anon_sym_boolean] = ACTIONS(2705), - [anon_sym_string] = ACTIONS(2705), - [anon_sym_symbol] = ACTIONS(2705), - [anon_sym_object] = ACTIONS(2705), - [anon_sym_abstract] = ACTIONS(2705), - [anon_sym_interface] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_export] = ACTIONS(2707), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_type] = ACTIONS(2707), + [anon_sym_namespace] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_typeof] = ACTIONS(2707), + [anon_sym_import] = ACTIONS(2707), + [anon_sym_with] = ACTIONS(2707), + [anon_sym_var] = ACTIONS(2707), + [anon_sym_let] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_switch] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_await] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_do] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_debugger] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_throw] = ACTIONS(2707), + [anon_sym_case] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2707), + [anon_sym_async] = ACTIONS(2707), + [anon_sym_function] = ACTIONS(2707), + [anon_sym_new] = ACTIONS(2707), + [anon_sym_using] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_void] = ACTIONS(2707), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2705), + [sym_number] = ACTIONS(2705), + [sym_private_property_identifier] = ACTIONS(2705), + [sym_this] = ACTIONS(2707), + [sym_super] = ACTIONS(2707), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [sym_null] = ACTIONS(2707), + [sym_undefined] = ACTIONS(2707), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_readonly] = ACTIONS(2707), + [anon_sym_get] = ACTIONS(2707), + [anon_sym_set] = ACTIONS(2707), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_public] = ACTIONS(2707), + [anon_sym_private] = ACTIONS(2707), + [anon_sym_protected] = ACTIONS(2707), + [anon_sym_override] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2707), + [anon_sym_any] = ACTIONS(2707), + [anon_sym_number] = ACTIONS(2707), + [anon_sym_boolean] = ACTIONS(2707), + [anon_sym_string] = ACTIONS(2707), + [anon_sym_symbol] = ACTIONS(2707), + [anon_sym_object] = ACTIONS(2707), + [anon_sym_abstract] = ACTIONS(2707), + [anon_sym_interface] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), [sym_html_comment] = ACTIONS(5), }, [859] = { - [ts_builtin_sym_end] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2709), - [anon_sym_export] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_type] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_typeof] = ACTIONS(2709), - [anon_sym_import] = ACTIONS(2709), - [anon_sym_with] = ACTIONS(2709), - [anon_sym_var] = ACTIONS(2709), - [anon_sym_let] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_await] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_debugger] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_yield] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_async] = ACTIONS(2709), - [anon_sym_function] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_void] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2707), - [sym_number] = ACTIONS(2707), - [sym_private_property_identifier] = ACTIONS(2707), - [sym_this] = ACTIONS(2709), - [sym_super] = ACTIONS(2709), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_undefined] = ACTIONS(2709), - [anon_sym_AT] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_readonly] = ACTIONS(2709), - [anon_sym_get] = ACTIONS(2709), - [anon_sym_set] = ACTIONS(2709), - [anon_sym_declare] = ACTIONS(2709), - [anon_sym_public] = ACTIONS(2709), - [anon_sym_private] = ACTIONS(2709), - [anon_sym_protected] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2709), - [anon_sym_module] = ACTIONS(2709), - [anon_sym_any] = ACTIONS(2709), - [anon_sym_number] = ACTIONS(2709), - [anon_sym_boolean] = ACTIONS(2709), - [anon_sym_string] = ACTIONS(2709), - [anon_sym_symbol] = ACTIONS(2709), - [anon_sym_object] = ACTIONS(2709), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_interface] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), + [ts_builtin_sym_end] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2711), + [anon_sym_export] = ACTIONS(2711), + [anon_sym_default] = ACTIONS(2711), + [anon_sym_type] = ACTIONS(2711), + [anon_sym_namespace] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_typeof] = ACTIONS(2711), + [anon_sym_import] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2711), + [anon_sym_var] = ACTIONS(2711), + [anon_sym_let] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_switch] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_await] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_do] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2711), + [anon_sym_break] = ACTIONS(2711), + [anon_sym_continue] = ACTIONS(2711), + [anon_sym_debugger] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_throw] = ACTIONS(2711), + [anon_sym_case] = ACTIONS(2711), + [anon_sym_yield] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2711), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_function] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2711), + [anon_sym_PLUS] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_SLASH] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2709), + [anon_sym_void] = ACTIONS(2711), + [anon_sym_delete] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2709), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2709), + [sym_number] = ACTIONS(2709), + [sym_private_property_identifier] = ACTIONS(2709), + [sym_this] = ACTIONS(2711), + [sym_super] = ACTIONS(2711), + [sym_true] = ACTIONS(2711), + [sym_false] = ACTIONS(2711), + [sym_null] = ACTIONS(2711), + [sym_undefined] = ACTIONS(2711), + [anon_sym_AT] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2711), + [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_get] = ACTIONS(2711), + [anon_sym_set] = ACTIONS(2711), + [anon_sym_declare] = ACTIONS(2711), + [anon_sym_public] = ACTIONS(2711), + [anon_sym_private] = ACTIONS(2711), + [anon_sym_protected] = ACTIONS(2711), + [anon_sym_override] = ACTIONS(2711), + [anon_sym_module] = ACTIONS(2711), + [anon_sym_any] = ACTIONS(2711), + [anon_sym_number] = ACTIONS(2711), + [anon_sym_boolean] = ACTIONS(2711), + [anon_sym_string] = ACTIONS(2711), + [anon_sym_symbol] = ACTIONS(2711), + [anon_sym_object] = ACTIONS(2711), + [anon_sym_abstract] = ACTIONS(2711), + [anon_sym_interface] = ACTIONS(2711), + [anon_sym_enum] = ACTIONS(2711), [sym_html_comment] = ACTIONS(5), }, [860] = { - [ts_builtin_sym_end] = ACTIONS(2711), - [sym_identifier] = ACTIONS(2713), - [anon_sym_export] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_type] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_typeof] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2713), - [anon_sym_with] = ACTIONS(2713), - [anon_sym_var] = ACTIONS(2713), - [anon_sym_let] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_await] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_debugger] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_yield] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_async] = ACTIONS(2713), - [anon_sym_function] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_SLASH] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_void] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2711), - [sym_number] = ACTIONS(2711), - [sym_private_property_identifier] = ACTIONS(2711), - [sym_this] = ACTIONS(2713), - [sym_super] = ACTIONS(2713), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_undefined] = ACTIONS(2713), - [anon_sym_AT] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_readonly] = ACTIONS(2713), - [anon_sym_get] = ACTIONS(2713), - [anon_sym_set] = ACTIONS(2713), - [anon_sym_declare] = ACTIONS(2713), - [anon_sym_public] = ACTIONS(2713), - [anon_sym_private] = ACTIONS(2713), - [anon_sym_protected] = ACTIONS(2713), - [anon_sym_override] = ACTIONS(2713), - [anon_sym_module] = ACTIONS(2713), - [anon_sym_any] = ACTIONS(2713), - [anon_sym_number] = ACTIONS(2713), - [anon_sym_boolean] = ACTIONS(2713), - [anon_sym_string] = ACTIONS(2713), - [anon_sym_symbol] = ACTIONS(2713), - [anon_sym_object] = ACTIONS(2713), - [anon_sym_abstract] = ACTIONS(2713), - [anon_sym_interface] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_export] = ACTIONS(2715), + [anon_sym_default] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_namespace] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_typeof] = ACTIONS(2715), + [anon_sym_import] = ACTIONS(2715), + [anon_sym_with] = ACTIONS(2715), + [anon_sym_var] = ACTIONS(2715), + [anon_sym_let] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2713), + [anon_sym_else] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_switch] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_await] = ACTIONS(2715), + [anon_sym_while] = ACTIONS(2715), + [anon_sym_do] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_debugger] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_throw] = ACTIONS(2715), + [anon_sym_case] = ACTIONS(2715), + [anon_sym_yield] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2715), + [anon_sym_async] = ACTIONS(2715), + [anon_sym_function] = ACTIONS(2715), + [anon_sym_new] = ACTIONS(2715), + [anon_sym_using] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_void] = ACTIONS(2715), + [anon_sym_delete] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_SQUOTE] = ACTIONS(2713), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2713), + [sym_number] = ACTIONS(2713), + [sym_private_property_identifier] = ACTIONS(2713), + [sym_this] = ACTIONS(2715), + [sym_super] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_null] = ACTIONS(2715), + [sym_undefined] = ACTIONS(2715), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2715), + [anon_sym_readonly] = ACTIONS(2715), + [anon_sym_get] = ACTIONS(2715), + [anon_sym_set] = ACTIONS(2715), + [anon_sym_declare] = ACTIONS(2715), + [anon_sym_public] = ACTIONS(2715), + [anon_sym_private] = ACTIONS(2715), + [anon_sym_protected] = ACTIONS(2715), + [anon_sym_override] = ACTIONS(2715), + [anon_sym_module] = ACTIONS(2715), + [anon_sym_any] = ACTIONS(2715), + [anon_sym_number] = ACTIONS(2715), + [anon_sym_boolean] = ACTIONS(2715), + [anon_sym_string] = ACTIONS(2715), + [anon_sym_symbol] = ACTIONS(2715), + [anon_sym_object] = ACTIONS(2715), + [anon_sym_abstract] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), [sym_html_comment] = ACTIONS(5), }, [861] = { - [ts_builtin_sym_end] = ACTIONS(2715), - [sym_identifier] = ACTIONS(2717), - [anon_sym_export] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_type] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_typeof] = ACTIONS(2717), - [anon_sym_import] = ACTIONS(2717), - [anon_sym_with] = ACTIONS(2717), - [anon_sym_var] = ACTIONS(2717), - [anon_sym_let] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_await] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_debugger] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_yield] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_async] = ACTIONS(2717), - [anon_sym_function] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_void] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2715), - [sym_number] = ACTIONS(2715), - [sym_private_property_identifier] = ACTIONS(2715), - [sym_this] = ACTIONS(2717), - [sym_super] = ACTIONS(2717), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_undefined] = ACTIONS(2717), - [anon_sym_AT] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_readonly] = ACTIONS(2717), - [anon_sym_get] = ACTIONS(2717), - [anon_sym_set] = ACTIONS(2717), - [anon_sym_declare] = ACTIONS(2717), - [anon_sym_public] = ACTIONS(2717), - [anon_sym_private] = ACTIONS(2717), - [anon_sym_protected] = ACTIONS(2717), - [anon_sym_override] = ACTIONS(2717), - [anon_sym_module] = ACTIONS(2717), - [anon_sym_any] = ACTIONS(2717), - [anon_sym_number] = ACTIONS(2717), - [anon_sym_boolean] = ACTIONS(2717), - [anon_sym_string] = ACTIONS(2717), - [anon_sym_symbol] = ACTIONS(2717), - [anon_sym_object] = ACTIONS(2717), - [anon_sym_abstract] = ACTIONS(2717), - [anon_sym_interface] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_export] = ACTIONS(2707), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_type] = ACTIONS(2707), + [anon_sym_namespace] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_typeof] = ACTIONS(2707), + [anon_sym_import] = ACTIONS(2707), + [anon_sym_with] = ACTIONS(2707), + [anon_sym_var] = ACTIONS(2707), + [anon_sym_let] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_switch] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_await] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_do] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_debugger] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_throw] = ACTIONS(2707), + [anon_sym_case] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2707), + [anon_sym_async] = ACTIONS(2707), + [anon_sym_function] = ACTIONS(2707), + [anon_sym_new] = ACTIONS(2707), + [anon_sym_using] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_void] = ACTIONS(2707), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2705), + [sym_number] = ACTIONS(2705), + [sym_private_property_identifier] = ACTIONS(2705), + [sym_this] = ACTIONS(2707), + [sym_super] = ACTIONS(2707), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [sym_null] = ACTIONS(2707), + [sym_undefined] = ACTIONS(2707), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_readonly] = ACTIONS(2707), + [anon_sym_get] = ACTIONS(2707), + [anon_sym_set] = ACTIONS(2707), + [anon_sym_declare] = ACTIONS(2707), + [anon_sym_public] = ACTIONS(2707), + [anon_sym_private] = ACTIONS(2707), + [anon_sym_protected] = ACTIONS(2707), + [anon_sym_override] = ACTIONS(2707), + [anon_sym_module] = ACTIONS(2707), + [anon_sym_any] = ACTIONS(2707), + [anon_sym_number] = ACTIONS(2707), + [anon_sym_boolean] = ACTIONS(2707), + [anon_sym_string] = ACTIONS(2707), + [anon_sym_symbol] = ACTIONS(2707), + [anon_sym_object] = ACTIONS(2707), + [anon_sym_abstract] = ACTIONS(2707), + [anon_sym_interface] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), [sym_html_comment] = ACTIONS(5), }, [862] = { - [ts_builtin_sym_end] = ACTIONS(2719), - [sym_identifier] = ACTIONS(2721), - [anon_sym_export] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_type] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_typeof] = ACTIONS(2721), - [anon_sym_import] = ACTIONS(2721), - [anon_sym_with] = ACTIONS(2721), - [anon_sym_var] = ACTIONS(2721), - [anon_sym_let] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_await] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_debugger] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_yield] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_async] = ACTIONS(2721), - [anon_sym_function] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_SLASH] = ACTIONS(2721), - [anon_sym_LT] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_void] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2719), - [sym_number] = ACTIONS(2719), - [sym_private_property_identifier] = ACTIONS(2719), - [sym_this] = ACTIONS(2721), - [sym_super] = ACTIONS(2721), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_undefined] = ACTIONS(2721), - [anon_sym_AT] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_readonly] = ACTIONS(2721), - [anon_sym_get] = ACTIONS(2721), - [anon_sym_set] = ACTIONS(2721), - [anon_sym_declare] = ACTIONS(2721), - [anon_sym_public] = ACTIONS(2721), - [anon_sym_private] = ACTIONS(2721), - [anon_sym_protected] = ACTIONS(2721), - [anon_sym_override] = ACTIONS(2721), - [anon_sym_module] = ACTIONS(2721), - [anon_sym_any] = ACTIONS(2721), - [anon_sym_number] = ACTIONS(2721), - [anon_sym_boolean] = ACTIONS(2721), - [anon_sym_string] = ACTIONS(2721), - [anon_sym_symbol] = ACTIONS(2721), - [anon_sym_object] = ACTIONS(2721), - [anon_sym_abstract] = ACTIONS(2721), - [anon_sym_interface] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_identifier] = ACTIONS(2719), + [anon_sym_export] = ACTIONS(2719), + [anon_sym_default] = ACTIONS(2719), + [anon_sym_type] = ACTIONS(2719), + [anon_sym_namespace] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2717), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_typeof] = ACTIONS(2719), + [anon_sym_import] = ACTIONS(2719), + [anon_sym_with] = ACTIONS(2719), + [anon_sym_var] = ACTIONS(2719), + [anon_sym_let] = ACTIONS(2719), + [anon_sym_const] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2719), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_switch] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2717), + [anon_sym_await] = ACTIONS(2719), + [anon_sym_while] = ACTIONS(2719), + [anon_sym_do] = ACTIONS(2719), + [anon_sym_try] = ACTIONS(2719), + [anon_sym_break] = ACTIONS(2719), + [anon_sym_continue] = ACTIONS(2719), + [anon_sym_debugger] = ACTIONS(2719), + [anon_sym_return] = ACTIONS(2719), + [anon_sym_throw] = ACTIONS(2719), + [anon_sym_case] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_function] = ACTIONS(2719), + [anon_sym_new] = ACTIONS(2719), + [anon_sym_using] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2717), + [anon_sym_TILDE] = ACTIONS(2717), + [anon_sym_void] = ACTIONS(2719), + [anon_sym_delete] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2717), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2717), + [sym_number] = ACTIONS(2717), + [sym_private_property_identifier] = ACTIONS(2717), + [sym_this] = ACTIONS(2719), + [sym_super] = ACTIONS(2719), + [sym_true] = ACTIONS(2719), + [sym_false] = ACTIONS(2719), + [sym_null] = ACTIONS(2719), + [sym_undefined] = ACTIONS(2719), + [anon_sym_AT] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2719), + [anon_sym_readonly] = ACTIONS(2719), + [anon_sym_get] = ACTIONS(2719), + [anon_sym_set] = ACTIONS(2719), + [anon_sym_declare] = ACTIONS(2719), + [anon_sym_public] = ACTIONS(2719), + [anon_sym_private] = ACTIONS(2719), + [anon_sym_protected] = ACTIONS(2719), + [anon_sym_override] = ACTIONS(2719), + [anon_sym_module] = ACTIONS(2719), + [anon_sym_any] = ACTIONS(2719), + [anon_sym_number] = ACTIONS(2719), + [anon_sym_boolean] = ACTIONS(2719), + [anon_sym_string] = ACTIONS(2719), + [anon_sym_symbol] = ACTIONS(2719), + [anon_sym_object] = ACTIONS(2719), + [anon_sym_abstract] = ACTIONS(2719), + [anon_sym_interface] = ACTIONS(2719), + [anon_sym_enum] = ACTIONS(2719), [sym_html_comment] = ACTIONS(5), }, [863] = { - [ts_builtin_sym_end] = ACTIONS(2723), - [sym_identifier] = ACTIONS(2725), - [anon_sym_export] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_type] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_typeof] = ACTIONS(2725), - [anon_sym_import] = ACTIONS(2725), - [anon_sym_with] = ACTIONS(2725), - [anon_sym_var] = ACTIONS(2725), - [anon_sym_let] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_await] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_debugger] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_yield] = ACTIONS(2725), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_async] = ACTIONS(2725), - [anon_sym_function] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_LT] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_void] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2723), - [sym_number] = ACTIONS(2723), - [sym_private_property_identifier] = ACTIONS(2723), - [sym_this] = ACTIONS(2725), - [sym_super] = ACTIONS(2725), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_undefined] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_readonly] = ACTIONS(2725), - [anon_sym_get] = ACTIONS(2725), - [anon_sym_set] = ACTIONS(2725), - [anon_sym_declare] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_protected] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_module] = ACTIONS(2725), - [anon_sym_any] = ACTIONS(2725), - [anon_sym_number] = ACTIONS(2725), - [anon_sym_boolean] = ACTIONS(2725), - [anon_sym_string] = ACTIONS(2725), - [anon_sym_symbol] = ACTIONS(2725), - [anon_sym_object] = ACTIONS(2725), - [anon_sym_abstract] = ACTIONS(2725), - [anon_sym_interface] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), + [ts_builtin_sym_end] = ACTIONS(2721), + [sym_identifier] = ACTIONS(2723), + [anon_sym_export] = ACTIONS(2723), + [anon_sym_default] = ACTIONS(2723), + [anon_sym_type] = ACTIONS(2723), + [anon_sym_namespace] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2721), + [anon_sym_RBRACE] = ACTIONS(2721), + [anon_sym_typeof] = ACTIONS(2723), + [anon_sym_import] = ACTIONS(2723), + [anon_sym_with] = ACTIONS(2723), + [anon_sym_var] = ACTIONS(2723), + [anon_sym_let] = ACTIONS(2723), + [anon_sym_const] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2723), + [anon_sym_if] = ACTIONS(2723), + [anon_sym_switch] = ACTIONS(2723), + [anon_sym_for] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2721), + [anon_sym_await] = ACTIONS(2723), + [anon_sym_while] = ACTIONS(2723), + [anon_sym_do] = ACTIONS(2723), + [anon_sym_try] = ACTIONS(2723), + [anon_sym_break] = ACTIONS(2723), + [anon_sym_continue] = ACTIONS(2723), + [anon_sym_debugger] = ACTIONS(2723), + [anon_sym_return] = ACTIONS(2723), + [anon_sym_throw] = ACTIONS(2723), + [anon_sym_case] = ACTIONS(2723), + [anon_sym_yield] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2723), + [anon_sym_async] = ACTIONS(2723), + [anon_sym_function] = ACTIONS(2723), + [anon_sym_new] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2721), + [anon_sym_TILDE] = ACTIONS(2721), + [anon_sym_void] = ACTIONS(2723), + [anon_sym_delete] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2721), + [anon_sym_DQUOTE] = ACTIONS(2721), + [anon_sym_SQUOTE] = ACTIONS(2721), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2721), + [sym_number] = ACTIONS(2721), + [sym_private_property_identifier] = ACTIONS(2721), + [sym_this] = ACTIONS(2723), + [sym_super] = ACTIONS(2723), + [sym_true] = ACTIONS(2723), + [sym_false] = ACTIONS(2723), + [sym_null] = ACTIONS(2723), + [sym_undefined] = ACTIONS(2723), + [anon_sym_AT] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2723), + [anon_sym_readonly] = ACTIONS(2723), + [anon_sym_get] = ACTIONS(2723), + [anon_sym_set] = ACTIONS(2723), + [anon_sym_declare] = ACTIONS(2723), + [anon_sym_public] = ACTIONS(2723), + [anon_sym_private] = ACTIONS(2723), + [anon_sym_protected] = ACTIONS(2723), + [anon_sym_override] = ACTIONS(2723), + [anon_sym_module] = ACTIONS(2723), + [anon_sym_any] = ACTIONS(2723), + [anon_sym_number] = ACTIONS(2723), + [anon_sym_boolean] = ACTIONS(2723), + [anon_sym_string] = ACTIONS(2723), + [anon_sym_symbol] = ACTIONS(2723), + [anon_sym_object] = ACTIONS(2723), + [anon_sym_abstract] = ACTIONS(2723), + [anon_sym_interface] = ACTIONS(2723), + [anon_sym_enum] = ACTIONS(2723), [sym_html_comment] = ACTIONS(5), }, [864] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [865] = { [ts_builtin_sym_end] = ACTIONS(2727), [sym_identifier] = ACTIONS(2729), [anon_sym_export] = ACTIONS(2729), @@ -113230,171 +113392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2729), [sym_html_comment] = ACTIONS(5), }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_identifier] = ACTIONS(1886), - [anon_sym_export] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_type] = ACTIONS(1886), - [anon_sym_namespace] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_typeof] = ACTIONS(1886), - [anon_sym_import] = ACTIONS(1886), - [anon_sym_with] = ACTIONS(1886), - [anon_sym_var] = ACTIONS(1886), - [anon_sym_let] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_else] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_switch] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_await] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_try] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_debugger] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_throw] = ACTIONS(1886), - [anon_sym_case] = ACTIONS(1886), - [anon_sym_yield] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1886), - [anon_sym_async] = ACTIONS(1886), - [anon_sym_function] = ACTIONS(1886), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_using] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_void] = ACTIONS(1886), - [anon_sym_delete] = ACTIONS(1886), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_number] = ACTIONS(1884), - [sym_private_property_identifier] = ACTIONS(1884), - [sym_this] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_true] = ACTIONS(1886), - [sym_false] = ACTIONS(1886), - [sym_null] = ACTIONS(1886), - [sym_undefined] = ACTIONS(1886), - [anon_sym_AT] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_readonly] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(1886), - [anon_sym_set] = ACTIONS(1886), - [anon_sym_declare] = ACTIONS(1886), - [anon_sym_public] = ACTIONS(1886), - [anon_sym_private] = ACTIONS(1886), - [anon_sym_protected] = ACTIONS(1886), - [anon_sym_override] = ACTIONS(1886), - [anon_sym_module] = ACTIONS(1886), - [anon_sym_any] = ACTIONS(1886), - [anon_sym_number] = ACTIONS(1886), - [anon_sym_boolean] = ACTIONS(1886), - [anon_sym_string] = ACTIONS(1886), - [anon_sym_symbol] = ACTIONS(1886), - [anon_sym_object] = ACTIONS(1886), - [anon_sym_abstract] = ACTIONS(1886), - [anon_sym_interface] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [sym_html_comment] = ACTIONS(5), - }, [866] = { - [ts_builtin_sym_end] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2701), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_typeof] = ACTIONS(2701), - [anon_sym_import] = ACTIONS(2701), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_var] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_await] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_debugger] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_async] = ACTIONS(2701), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_SLASH] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_void] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2699), - [sym_number] = ACTIONS(2699), - [sym_private_property_identifier] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_super] = ACTIONS(2701), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_undefined] = ACTIONS(2701), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_readonly] = ACTIONS(2701), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2701), - [anon_sym_public] = ACTIONS(2701), - [anon_sym_private] = ACTIONS(2701), - [anon_sym_protected] = ACTIONS(2701), - [anon_sym_override] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_any] = ACTIONS(2701), - [anon_sym_number] = ACTIONS(2701), - [anon_sym_boolean] = ACTIONS(2701), - [anon_sym_string] = ACTIONS(2701), - [anon_sym_symbol] = ACTIONS(2701), - [anon_sym_object] = ACTIONS(2701), - [anon_sym_abstract] = ACTIONS(2701), - [anon_sym_interface] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), - [sym_html_comment] = ACTIONS(5), - }, - [867] = { [ts_builtin_sym_end] = ACTIONS(2731), [sym_identifier] = ACTIONS(2733), [anon_sym_export] = ACTIONS(2733), @@ -113476,742 +113474,824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2733), [sym_html_comment] = ACTIONS(5), }, + [867] = { + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2737), + [anon_sym_export] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_typeof] = ACTIONS(2737), + [anon_sym_import] = ACTIONS(2737), + [anon_sym_with] = ACTIONS(2737), + [anon_sym_var] = ACTIONS(2737), + [anon_sym_let] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_else] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2735), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_await] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_debugger] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_yield] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_function] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_SLASH] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_void] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2735), + [sym_number] = ACTIONS(2735), + [sym_private_property_identifier] = ACTIONS(2735), + [sym_this] = ACTIONS(2737), + [sym_super] = ACTIONS(2737), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_undefined] = ACTIONS(2737), + [anon_sym_AT] = ACTIONS(2735), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_readonly] = ACTIONS(2737), + [anon_sym_get] = ACTIONS(2737), + [anon_sym_set] = ACTIONS(2737), + [anon_sym_declare] = ACTIONS(2737), + [anon_sym_public] = ACTIONS(2737), + [anon_sym_private] = ACTIONS(2737), + [anon_sym_protected] = ACTIONS(2737), + [anon_sym_override] = ACTIONS(2737), + [anon_sym_module] = ACTIONS(2737), + [anon_sym_any] = ACTIONS(2737), + [anon_sym_number] = ACTIONS(2737), + [anon_sym_boolean] = ACTIONS(2737), + [anon_sym_string] = ACTIONS(2737), + [anon_sym_symbol] = ACTIONS(2737), + [anon_sym_object] = ACTIONS(2737), + [anon_sym_abstract] = ACTIONS(2737), + [anon_sym_interface] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [sym_html_comment] = ACTIONS(5), + }, [868] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2735), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_type] = ACTIONS(1742), + [anon_sym_namespace] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(1742), + [anon_sym_import] = ACTIONS(1742), + [anon_sym_with] = ACTIONS(1742), + [anon_sym_var] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_await] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_try] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_debugger] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_throw] = ACTIONS(1742), + [anon_sym_case] = ACTIONS(1742), + [anon_sym_yield] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_class] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(1742), + [anon_sym_new] = ACTIONS(1742), + [anon_sym_using] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_SLASH] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_void] = ACTIONS(1742), + [anon_sym_delete] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1740), + [sym_number] = ACTIONS(1740), + [sym_private_property_identifier] = ACTIONS(1740), + [sym_this] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_true] = ACTIONS(1742), + [sym_false] = ACTIONS(1742), + [sym_null] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_readonly] = ACTIONS(1742), + [anon_sym_get] = ACTIONS(1742), + [anon_sym_set] = ACTIONS(1742), + [anon_sym_declare] = ACTIONS(1742), + [anon_sym_public] = ACTIONS(1742), + [anon_sym_private] = ACTIONS(1742), + [anon_sym_protected] = ACTIONS(1742), + [anon_sym_override] = ACTIONS(1742), + [anon_sym_module] = ACTIONS(1742), + [anon_sym_any] = ACTIONS(1742), + [anon_sym_number] = ACTIONS(1742), + [anon_sym_boolean] = ACTIONS(1742), + [anon_sym_string] = ACTIONS(1742), + [anon_sym_symbol] = ACTIONS(1742), + [anon_sym_object] = ACTIONS(1742), + [anon_sym_abstract] = ACTIONS(1742), + [anon_sym_interface] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), [sym_html_comment] = ACTIONS(5), }, [869] = { - [ts_builtin_sym_end] = ACTIONS(2737), - [sym_identifier] = ACTIONS(2739), - [anon_sym_export] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_type] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_typeof] = ACTIONS(2739), - [anon_sym_import] = ACTIONS(2739), - [anon_sym_with] = ACTIONS(2739), - [anon_sym_var] = ACTIONS(2739), - [anon_sym_let] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(2737), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym_await] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_debugger] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_yield] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_async] = ACTIONS(2739), - [anon_sym_function] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_SLASH] = ACTIONS(2739), - [anon_sym_LT] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2737), - [anon_sym_void] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2737), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2737), - [sym_number] = ACTIONS(2737), - [sym_private_property_identifier] = ACTIONS(2737), - [sym_this] = ACTIONS(2739), - [sym_super] = ACTIONS(2739), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_null] = ACTIONS(2739), - [sym_undefined] = ACTIONS(2739), - [anon_sym_AT] = ACTIONS(2737), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_readonly] = ACTIONS(2739), - [anon_sym_get] = ACTIONS(2739), - [anon_sym_set] = ACTIONS(2739), - [anon_sym_declare] = ACTIONS(2739), - [anon_sym_public] = ACTIONS(2739), - [anon_sym_private] = ACTIONS(2739), - [anon_sym_protected] = ACTIONS(2739), - [anon_sym_override] = ACTIONS(2739), - [anon_sym_module] = ACTIONS(2739), - [anon_sym_any] = ACTIONS(2739), - [anon_sym_number] = ACTIONS(2739), - [anon_sym_boolean] = ACTIONS(2739), - [anon_sym_string] = ACTIONS(2739), - [anon_sym_symbol] = ACTIONS(2739), - [anon_sym_object] = ACTIONS(2739), - [anon_sym_abstract] = ACTIONS(2739), - [anon_sym_interface] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_export] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_typeof] = ACTIONS(2741), + [anon_sym_import] = ACTIONS(2741), + [anon_sym_with] = ACTIONS(2741), + [anon_sym_var] = ACTIONS(2741), + [anon_sym_let] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_await] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_debugger] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_yield] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_async] = ACTIONS(2741), + [anon_sym_function] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_void] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2739), + [sym_number] = ACTIONS(2739), + [sym_private_property_identifier] = ACTIONS(2739), + [sym_this] = ACTIONS(2741), + [sym_super] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_undefined] = ACTIONS(2741), + [anon_sym_AT] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_readonly] = ACTIONS(2741), + [anon_sym_get] = ACTIONS(2741), + [anon_sym_set] = ACTIONS(2741), + [anon_sym_declare] = ACTIONS(2741), + [anon_sym_public] = ACTIONS(2741), + [anon_sym_private] = ACTIONS(2741), + [anon_sym_protected] = ACTIONS(2741), + [anon_sym_override] = ACTIONS(2741), + [anon_sym_module] = ACTIONS(2741), + [anon_sym_any] = ACTIONS(2741), + [anon_sym_number] = ACTIONS(2741), + [anon_sym_boolean] = ACTIONS(2741), + [anon_sym_string] = ACTIONS(2741), + [anon_sym_symbol] = ACTIONS(2741), + [anon_sym_object] = ACTIONS(2741), + [anon_sym_abstract] = ACTIONS(2741), + [anon_sym_interface] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), [sym_html_comment] = ACTIONS(5), }, [870] = { - [ts_builtin_sym_end] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2743), - [anon_sym_export] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_type] = ACTIONS(2743), - [anon_sym_namespace] = ACTIONS(2743), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_typeof] = ACTIONS(2743), - [anon_sym_import] = ACTIONS(2743), - [anon_sym_with] = ACTIONS(2743), - [anon_sym_var] = ACTIONS(2743), - [anon_sym_let] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_switch] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_await] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_debugger] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_throw] = ACTIONS(2743), - [anon_sym_case] = ACTIONS(2743), - [anon_sym_yield] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_class] = ACTIONS(2743), - [anon_sym_async] = ACTIONS(2743), - [anon_sym_function] = ACTIONS(2743), - [anon_sym_new] = ACTIONS(2743), - [anon_sym_using] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_SLASH] = ACTIONS(2743), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_void] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2743), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2741), - [sym_number] = ACTIONS(2741), - [sym_private_property_identifier] = ACTIONS(2741), - [sym_this] = ACTIONS(2743), - [sym_super] = ACTIONS(2743), - [sym_true] = ACTIONS(2743), - [sym_false] = ACTIONS(2743), - [sym_null] = ACTIONS(2743), - [sym_undefined] = ACTIONS(2743), - [anon_sym_AT] = ACTIONS(2741), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_readonly] = ACTIONS(2743), - [anon_sym_get] = ACTIONS(2743), - [anon_sym_set] = ACTIONS(2743), - [anon_sym_declare] = ACTIONS(2743), - [anon_sym_public] = ACTIONS(2743), - [anon_sym_private] = ACTIONS(2743), - [anon_sym_protected] = ACTIONS(2743), - [anon_sym_override] = ACTIONS(2743), - [anon_sym_module] = ACTIONS(2743), - [anon_sym_any] = ACTIONS(2743), - [anon_sym_number] = ACTIONS(2743), - [anon_sym_boolean] = ACTIONS(2743), - [anon_sym_string] = ACTIONS(2743), - [anon_sym_symbol] = ACTIONS(2743), - [anon_sym_object] = ACTIONS(2743), - [anon_sym_abstract] = ACTIONS(2743), - [anon_sym_interface] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1840), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_type] = ACTIONS(1840), + [anon_sym_namespace] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym_import] = ACTIONS(1840), + [anon_sym_with] = ACTIONS(1840), + [anon_sym_var] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_await] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_debugger] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_throw] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_yield] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_class] = ACTIONS(1840), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(1840), + [anon_sym_new] = ACTIONS(1840), + [anon_sym_using] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_SLASH] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1838), + [anon_sym_void] = ACTIONS(1840), + [anon_sym_delete] = ACTIONS(1840), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1838), + [sym_number] = ACTIONS(1838), + [sym_private_property_identifier] = ACTIONS(1838), + [sym_this] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_undefined] = ACTIONS(1840), + [anon_sym_AT] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_readonly] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1840), + [anon_sym_set] = ACTIONS(1840), + [anon_sym_declare] = ACTIONS(1840), + [anon_sym_public] = ACTIONS(1840), + [anon_sym_private] = ACTIONS(1840), + [anon_sym_protected] = ACTIONS(1840), + [anon_sym_override] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_any] = ACTIONS(1840), + [anon_sym_number] = ACTIONS(1840), + [anon_sym_boolean] = ACTIONS(1840), + [anon_sym_string] = ACTIONS(1840), + [anon_sym_symbol] = ACTIONS(1840), + [anon_sym_object] = ACTIONS(1840), + [anon_sym_abstract] = ACTIONS(1840), + [anon_sym_interface] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), [sym_html_comment] = ACTIONS(5), }, [871] = { - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_export] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_typeof] = ACTIONS(2747), - [anon_sym_import] = ACTIONS(2747), - [anon_sym_with] = ACTIONS(2747), - [anon_sym_var] = ACTIONS(2747), - [anon_sym_let] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_debugger] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_yield] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_async] = ACTIONS(2747), - [anon_sym_function] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_void] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2745), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2745), - [sym_number] = ACTIONS(2745), - [sym_private_property_identifier] = ACTIONS(2745), - [sym_this] = ACTIONS(2747), - [sym_super] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_null] = ACTIONS(2747), - [sym_undefined] = ACTIONS(2747), - [anon_sym_AT] = ACTIONS(2745), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_readonly] = ACTIONS(2747), - [anon_sym_get] = ACTIONS(2747), - [anon_sym_set] = ACTIONS(2747), - [anon_sym_declare] = ACTIONS(2747), - [anon_sym_public] = ACTIONS(2747), - [anon_sym_private] = ACTIONS(2747), - [anon_sym_protected] = ACTIONS(2747), - [anon_sym_override] = ACTIONS(2747), - [anon_sym_module] = ACTIONS(2747), - [anon_sym_any] = ACTIONS(2747), - [anon_sym_number] = ACTIONS(2747), - [anon_sym_boolean] = ACTIONS(2747), - [anon_sym_string] = ACTIONS(2747), - [anon_sym_symbol] = ACTIONS(2747), - [anon_sym_object] = ACTIONS(2747), - [anon_sym_abstract] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_export] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_typeof] = ACTIONS(2745), + [anon_sym_import] = ACTIONS(2745), + [anon_sym_with] = ACTIONS(2745), + [anon_sym_var] = ACTIONS(2745), + [anon_sym_let] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_else] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_await] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_debugger] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_yield] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_function] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_void] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2743), + [sym_number] = ACTIONS(2743), + [sym_private_property_identifier] = ACTIONS(2743), + [sym_this] = ACTIONS(2745), + [sym_super] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_undefined] = ACTIONS(2745), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_readonly] = ACTIONS(2745), + [anon_sym_get] = ACTIONS(2745), + [anon_sym_set] = ACTIONS(2745), + [anon_sym_declare] = ACTIONS(2745), + [anon_sym_public] = ACTIONS(2745), + [anon_sym_private] = ACTIONS(2745), + [anon_sym_protected] = ACTIONS(2745), + [anon_sym_override] = ACTIONS(2745), + [anon_sym_module] = ACTIONS(2745), + [anon_sym_any] = ACTIONS(2745), + [anon_sym_number] = ACTIONS(2745), + [anon_sym_boolean] = ACTIONS(2745), + [anon_sym_string] = ACTIONS(2745), + [anon_sym_symbol] = ACTIONS(2745), + [anon_sym_object] = ACTIONS(2745), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_interface] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), [sym_html_comment] = ACTIONS(5), }, [872] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym_import] = ACTIONS(1722), - [anon_sym_with] = ACTIONS(1722), - [anon_sym_var] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_else] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_await] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_debugger] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_throw] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_class] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_function] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_using] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_TILDE] = ACTIONS(1720), - [anon_sym_void] = ACTIONS(1722), - [anon_sym_delete] = ACTIONS(1722), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1720), - [sym_number] = ACTIONS(1720), - [sym_private_property_identifier] = ACTIONS(1720), - [sym_this] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_undefined] = ACTIONS(1722), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_protected] = ACTIONS(1722), - [anon_sym_override] = ACTIONS(1722), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1722), - [anon_sym_number] = ACTIONS(1722), - [anon_sym_boolean] = ACTIONS(1722), - [anon_sym_string] = ACTIONS(1722), - [anon_sym_symbol] = ACTIONS(1722), - [anon_sym_object] = ACTIONS(1722), - [anon_sym_abstract] = ACTIONS(1722), - [anon_sym_interface] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), + [anon_sym_namespace] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_typeof] = ACTIONS(1794), + [anon_sym_import] = ACTIONS(1794), + [anon_sym_with] = ACTIONS(1794), + [anon_sym_var] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_await] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_try] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_debugger] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_throw] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1794), + [anon_sym_yield] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_class] = ACTIONS(1794), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_function] = ACTIONS(1794), + [anon_sym_new] = ACTIONS(1794), + [anon_sym_using] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_void] = ACTIONS(1794), + [anon_sym_delete] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1792), + [anon_sym_DQUOTE] = ACTIONS(1792), + [anon_sym_SQUOTE] = ACTIONS(1792), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1792), + [sym_number] = ACTIONS(1792), + [sym_private_property_identifier] = ACTIONS(1792), + [sym_this] = ACTIONS(1794), + [sym_super] = ACTIONS(1794), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [sym_null] = ACTIONS(1794), + [sym_undefined] = ACTIONS(1794), + [anon_sym_AT] = ACTIONS(1792), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_readonly] = ACTIONS(1794), + [anon_sym_get] = ACTIONS(1794), + [anon_sym_set] = ACTIONS(1794), + [anon_sym_declare] = ACTIONS(1794), + [anon_sym_public] = ACTIONS(1794), + [anon_sym_private] = ACTIONS(1794), + [anon_sym_protected] = ACTIONS(1794), + [anon_sym_override] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1794), + [anon_sym_any] = ACTIONS(1794), + [anon_sym_number] = ACTIONS(1794), + [anon_sym_boolean] = ACTIONS(1794), + [anon_sym_string] = ACTIONS(1794), + [anon_sym_symbol] = ACTIONS(1794), + [anon_sym_object] = ACTIONS(1794), + [anon_sym_abstract] = ACTIONS(1794), + [anon_sym_interface] = ACTIONS(1794), + [anon_sym_enum] = ACTIONS(1794), [sym_html_comment] = ACTIONS(5), }, [873] = { - [ts_builtin_sym_end] = ACTIONS(2749), - [sym_identifier] = ACTIONS(2751), - [anon_sym_export] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_type] = ACTIONS(2751), - [anon_sym_namespace] = ACTIONS(2751), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_typeof] = ACTIONS(2751), - [anon_sym_import] = ACTIONS(2751), - [anon_sym_with] = ACTIONS(2751), - [anon_sym_var] = ACTIONS(2751), - [anon_sym_let] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_switch] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_await] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_debugger] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_throw] = ACTIONS(2751), - [anon_sym_case] = ACTIONS(2751), - [anon_sym_yield] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_async] = ACTIONS(2751), - [anon_sym_function] = ACTIONS(2751), - [anon_sym_new] = ACTIONS(2751), - [anon_sym_using] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_SLASH] = ACTIONS(2751), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_void] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2751), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2749), - [sym_number] = ACTIONS(2749), - [sym_private_property_identifier] = ACTIONS(2749), - [sym_this] = ACTIONS(2751), - [sym_super] = ACTIONS(2751), - [sym_true] = ACTIONS(2751), - [sym_false] = ACTIONS(2751), - [sym_null] = ACTIONS(2751), - [sym_undefined] = ACTIONS(2751), - [anon_sym_AT] = ACTIONS(2749), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_readonly] = ACTIONS(2751), - [anon_sym_get] = ACTIONS(2751), - [anon_sym_set] = ACTIONS(2751), - [anon_sym_declare] = ACTIONS(2751), - [anon_sym_public] = ACTIONS(2751), - [anon_sym_private] = ACTIONS(2751), - [anon_sym_protected] = ACTIONS(2751), - [anon_sym_override] = ACTIONS(2751), - [anon_sym_module] = ACTIONS(2751), - [anon_sym_any] = ACTIONS(2751), - [anon_sym_number] = ACTIONS(2751), - [anon_sym_boolean] = ACTIONS(2751), - [anon_sym_string] = ACTIONS(2751), - [anon_sym_symbol] = ACTIONS(2751), - [anon_sym_object] = ACTIONS(2751), - [anon_sym_abstract] = ACTIONS(2751), - [anon_sym_interface] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2749), + [anon_sym_export] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_type] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_typeof] = ACTIONS(2749), + [anon_sym_import] = ACTIONS(2749), + [anon_sym_with] = ACTIONS(2749), + [anon_sym_var] = ACTIONS(2749), + [anon_sym_let] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_else] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_await] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_debugger] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_yield] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_async] = ACTIONS(2749), + [anon_sym_function] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_void] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2747), + [sym_number] = ACTIONS(2747), + [sym_private_property_identifier] = ACTIONS(2747), + [sym_this] = ACTIONS(2749), + [sym_super] = ACTIONS(2749), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_undefined] = ACTIONS(2749), + [anon_sym_AT] = ACTIONS(2747), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_readonly] = ACTIONS(2749), + [anon_sym_get] = ACTIONS(2749), + [anon_sym_set] = ACTIONS(2749), + [anon_sym_declare] = ACTIONS(2749), + [anon_sym_public] = ACTIONS(2749), + [anon_sym_private] = ACTIONS(2749), + [anon_sym_protected] = ACTIONS(2749), + [anon_sym_override] = ACTIONS(2749), + [anon_sym_module] = ACTIONS(2749), + [anon_sym_any] = ACTIONS(2749), + [anon_sym_number] = ACTIONS(2749), + [anon_sym_boolean] = ACTIONS(2749), + [anon_sym_string] = ACTIONS(2749), + [anon_sym_symbol] = ACTIONS(2749), + [anon_sym_object] = ACTIONS(2749), + [anon_sym_abstract] = ACTIONS(2749), + [anon_sym_interface] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), [sym_html_comment] = ACTIONS(5), }, [874] = { - [ts_builtin_sym_end] = ACTIONS(2753), - [sym_identifier] = ACTIONS(2755), - [anon_sym_export] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_type] = ACTIONS(2755), - [anon_sym_namespace] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_typeof] = ACTIONS(2755), - [anon_sym_import] = ACTIONS(2755), - [anon_sym_with] = ACTIONS(2755), - [anon_sym_var] = ACTIONS(2755), - [anon_sym_let] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_switch] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_await] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_do] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_debugger] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_throw] = ACTIONS(2755), - [anon_sym_case] = ACTIONS(2755), - [anon_sym_yield] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2755), - [anon_sym_async] = ACTIONS(2755), - [anon_sym_function] = ACTIONS(2755), - [anon_sym_new] = ACTIONS(2755), - [anon_sym_using] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2755), - [anon_sym_SLASH] = ACTIONS(2755), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_void] = ACTIONS(2755), - [anon_sym_delete] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2753), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2753), - [sym_number] = ACTIONS(2753), - [sym_private_property_identifier] = ACTIONS(2753), - [sym_this] = ACTIONS(2755), - [sym_super] = ACTIONS(2755), - [sym_true] = ACTIONS(2755), - [sym_false] = ACTIONS(2755), - [sym_null] = ACTIONS(2755), - [sym_undefined] = ACTIONS(2755), - [anon_sym_AT] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_readonly] = ACTIONS(2755), - [anon_sym_get] = ACTIONS(2755), - [anon_sym_set] = ACTIONS(2755), - [anon_sym_declare] = ACTIONS(2755), - [anon_sym_public] = ACTIONS(2755), - [anon_sym_private] = ACTIONS(2755), - [anon_sym_protected] = ACTIONS(2755), - [anon_sym_override] = ACTIONS(2755), - [anon_sym_module] = ACTIONS(2755), - [anon_sym_any] = ACTIONS(2755), - [anon_sym_number] = ACTIONS(2755), - [anon_sym_boolean] = ACTIONS(2755), - [anon_sym_string] = ACTIONS(2755), - [anon_sym_symbol] = ACTIONS(2755), - [anon_sym_object] = ACTIONS(2755), - [anon_sym_abstract] = ACTIONS(2755), - [anon_sym_interface] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2753), + [anon_sym_export] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_typeof] = ACTIONS(2753), + [anon_sym_import] = ACTIONS(2753), + [anon_sym_with] = ACTIONS(2753), + [anon_sym_var] = ACTIONS(2753), + [anon_sym_let] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_else] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_await] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_debugger] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_yield] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_function] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_SLASH] = ACTIONS(2753), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_void] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2751), + [sym_number] = ACTIONS(2751), + [sym_private_property_identifier] = ACTIONS(2751), + [sym_this] = ACTIONS(2753), + [sym_super] = ACTIONS(2753), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), + [sym_undefined] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_readonly] = ACTIONS(2753), + [anon_sym_get] = ACTIONS(2753), + [anon_sym_set] = ACTIONS(2753), + [anon_sym_declare] = ACTIONS(2753), + [anon_sym_public] = ACTIONS(2753), + [anon_sym_private] = ACTIONS(2753), + [anon_sym_protected] = ACTIONS(2753), + [anon_sym_override] = ACTIONS(2753), + [anon_sym_module] = ACTIONS(2753), + [anon_sym_any] = ACTIONS(2753), + [anon_sym_number] = ACTIONS(2753), + [anon_sym_boolean] = ACTIONS(2753), + [anon_sym_string] = ACTIONS(2753), + [anon_sym_symbol] = ACTIONS(2753), + [anon_sym_object] = ACTIONS(2753), + [anon_sym_abstract] = ACTIONS(2753), + [anon_sym_interface] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), [sym_html_comment] = ACTIONS(5), }, [875] = { - [ts_builtin_sym_end] = ACTIONS(2719), - [sym_identifier] = ACTIONS(2721), - [anon_sym_export] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_type] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_typeof] = ACTIONS(2721), - [anon_sym_import] = ACTIONS(2721), - [anon_sym_with] = ACTIONS(2721), - [anon_sym_var] = ACTIONS(2721), - [anon_sym_let] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_await] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_debugger] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_yield] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_async] = ACTIONS(2721), - [anon_sym_function] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_SLASH] = ACTIONS(2721), - [anon_sym_LT] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_void] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2719), - [sym_number] = ACTIONS(2719), - [sym_private_property_identifier] = ACTIONS(2719), - [sym_this] = ACTIONS(2721), - [sym_super] = ACTIONS(2721), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_undefined] = ACTIONS(2721), - [anon_sym_AT] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_readonly] = ACTIONS(2721), - [anon_sym_get] = ACTIONS(2721), - [anon_sym_set] = ACTIONS(2721), - [anon_sym_declare] = ACTIONS(2721), - [anon_sym_public] = ACTIONS(2721), - [anon_sym_private] = ACTIONS(2721), - [anon_sym_protected] = ACTIONS(2721), - [anon_sym_override] = ACTIONS(2721), - [anon_sym_module] = ACTIONS(2721), - [anon_sym_any] = ACTIONS(2721), - [anon_sym_number] = ACTIONS(2721), - [anon_sym_boolean] = ACTIONS(2721), - [anon_sym_string] = ACTIONS(2721), - [anon_sym_symbol] = ACTIONS(2721), - [anon_sym_object] = ACTIONS(2721), - [anon_sym_abstract] = ACTIONS(2721), - [anon_sym_interface] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2753), + [anon_sym_export] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_typeof] = ACTIONS(2753), + [anon_sym_import] = ACTIONS(2753), + [anon_sym_with] = ACTIONS(2753), + [anon_sym_var] = ACTIONS(2753), + [anon_sym_let] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_else] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_await] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_debugger] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_yield] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_function] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_SLASH] = ACTIONS(2753), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_void] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2751), + [sym_number] = ACTIONS(2751), + [sym_private_property_identifier] = ACTIONS(2751), + [sym_this] = ACTIONS(2753), + [sym_super] = ACTIONS(2753), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), + [sym_undefined] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_readonly] = ACTIONS(2753), + [anon_sym_get] = ACTIONS(2753), + [anon_sym_set] = ACTIONS(2753), + [anon_sym_declare] = ACTIONS(2753), + [anon_sym_public] = ACTIONS(2753), + [anon_sym_private] = ACTIONS(2753), + [anon_sym_protected] = ACTIONS(2753), + [anon_sym_override] = ACTIONS(2753), + [anon_sym_module] = ACTIONS(2753), + [anon_sym_any] = ACTIONS(2753), + [anon_sym_number] = ACTIONS(2753), + [anon_sym_boolean] = ACTIONS(2753), + [anon_sym_string] = ACTIONS(2753), + [anon_sym_symbol] = ACTIONS(2753), + [anon_sym_object] = ACTIONS(2753), + [anon_sym_abstract] = ACTIONS(2753), + [anon_sym_interface] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), [sym_html_comment] = ACTIONS(5), }, [876] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2757), + [anon_sym_export] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_type] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_typeof] = ACTIONS(2757), + [anon_sym_import] = ACTIONS(2757), + [anon_sym_with] = ACTIONS(2757), + [anon_sym_var] = ACTIONS(2757), + [anon_sym_let] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_else] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_await] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_debugger] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_yield] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_async] = ACTIONS(2757), + [anon_sym_function] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_SLASH] = ACTIONS(2757), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_void] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2755), + [sym_number] = ACTIONS(2755), + [sym_private_property_identifier] = ACTIONS(2755), + [sym_this] = ACTIONS(2757), + [sym_super] = ACTIONS(2757), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), + [sym_undefined] = ACTIONS(2757), + [anon_sym_AT] = ACTIONS(2755), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_readonly] = ACTIONS(2757), + [anon_sym_get] = ACTIONS(2757), + [anon_sym_set] = ACTIONS(2757), + [anon_sym_declare] = ACTIONS(2757), + [anon_sym_public] = ACTIONS(2757), + [anon_sym_private] = ACTIONS(2757), + [anon_sym_protected] = ACTIONS(2757), + [anon_sym_override] = ACTIONS(2757), + [anon_sym_module] = ACTIONS(2757), + [anon_sym_any] = ACTIONS(2757), + [anon_sym_number] = ACTIONS(2757), + [anon_sym_boolean] = ACTIONS(2757), + [anon_sym_string] = ACTIONS(2757), + [anon_sym_symbol] = ACTIONS(2757), + [anon_sym_object] = ACTIONS(2757), + [anon_sym_abstract] = ACTIONS(2757), + [anon_sym_interface] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), [sym_html_comment] = ACTIONS(5), }, [877] = { @@ -114297,6 +114377,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [878] = { + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2753), + [anon_sym_export] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_typeof] = ACTIONS(2753), + [anon_sym_import] = ACTIONS(2753), + [anon_sym_with] = ACTIONS(2753), + [anon_sym_var] = ACTIONS(2753), + [anon_sym_let] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_else] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_await] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_debugger] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_yield] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_function] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_SLASH] = ACTIONS(2753), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_void] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2751), + [sym_number] = ACTIONS(2751), + [sym_private_property_identifier] = ACTIONS(2751), + [sym_this] = ACTIONS(2753), + [sym_super] = ACTIONS(2753), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), + [sym_undefined] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2751), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_readonly] = ACTIONS(2753), + [anon_sym_get] = ACTIONS(2753), + [anon_sym_set] = ACTIONS(2753), + [anon_sym_declare] = ACTIONS(2753), + [anon_sym_public] = ACTIONS(2753), + [anon_sym_private] = ACTIONS(2753), + [anon_sym_protected] = ACTIONS(2753), + [anon_sym_override] = ACTIONS(2753), + [anon_sym_module] = ACTIONS(2753), + [anon_sym_any] = ACTIONS(2753), + [anon_sym_number] = ACTIONS(2753), + [anon_sym_boolean] = ACTIONS(2753), + [anon_sym_string] = ACTIONS(2753), + [anon_sym_symbol] = ACTIONS(2753), + [anon_sym_object] = ACTIONS(2753), + [anon_sym_abstract] = ACTIONS(2753), + [anon_sym_interface] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [sym_html_comment] = ACTIONS(5), + }, + [879] = { [ts_builtin_sym_end] = ACTIONS(2763), [sym_identifier] = ACTIONS(2765), [anon_sym_export] = ACTIONS(2765), @@ -114378,88 +114540,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2765), [sym_html_comment] = ACTIONS(5), }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2701), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_typeof] = ACTIONS(2701), - [anon_sym_import] = ACTIONS(2701), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_var] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_await] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_debugger] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_async] = ACTIONS(2701), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_SLASH] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_void] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2699), - [sym_number] = ACTIONS(2699), - [sym_private_property_identifier] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_super] = ACTIONS(2701), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_undefined] = ACTIONS(2701), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_readonly] = ACTIONS(2701), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2701), - [anon_sym_public] = ACTIONS(2701), - [anon_sym_private] = ACTIONS(2701), - [anon_sym_protected] = ACTIONS(2701), - [anon_sym_override] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_any] = ACTIONS(2701), - [anon_sym_number] = ACTIONS(2701), - [anon_sym_boolean] = ACTIONS(2701), - [anon_sym_string] = ACTIONS(2701), - [anon_sym_symbol] = ACTIONS(2701), - [anon_sym_object] = ACTIONS(2701), - [anon_sym_abstract] = ACTIONS(2701), - [anon_sym_interface] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), - [sym_html_comment] = ACTIONS(5), - }, [880] = { [ts_builtin_sym_end] = ACTIONS(2767), [sym_identifier] = ACTIONS(2769), @@ -114625,88 +114705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [882] = { - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1752), - [anon_sym_export] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_namespace] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_typeof] = ACTIONS(1752), - [anon_sym_import] = ACTIONS(1752), - [anon_sym_with] = ACTIONS(1752), - [anon_sym_var] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_else] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_switch] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_do] = ACTIONS(1752), - [anon_sym_try] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_debugger] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_case] = ACTIONS(1752), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_class] = ACTIONS(1752), - [anon_sym_async] = ACTIONS(1752), - [anon_sym_function] = ACTIONS(1752), - [anon_sym_new] = ACTIONS(1752), - [anon_sym_using] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_void] = ACTIONS(1752), - [anon_sym_delete] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1750), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1750), - [sym_number] = ACTIONS(1750), - [sym_private_property_identifier] = ACTIONS(1750), - [sym_this] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_true] = ACTIONS(1752), - [sym_false] = ACTIONS(1752), - [sym_null] = ACTIONS(1752), - [sym_undefined] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_readonly] = ACTIONS(1752), - [anon_sym_get] = ACTIONS(1752), - [anon_sym_set] = ACTIONS(1752), - [anon_sym_declare] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_protected] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_module] = ACTIONS(1752), - [anon_sym_any] = ACTIONS(1752), - [anon_sym_number] = ACTIONS(1752), - [anon_sym_boolean] = ACTIONS(1752), - [anon_sym_string] = ACTIONS(1752), - [anon_sym_symbol] = ACTIONS(1752), - [anon_sym_object] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_interface] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [sym_html_comment] = ACTIONS(5), - }, - [883] = { [ts_builtin_sym_end] = ACTIONS(2775), [sym_identifier] = ACTIONS(2777), [anon_sym_export] = ACTIONS(2777), @@ -114788,7 +114786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2777), [sym_html_comment] = ACTIONS(5), }, - [884] = { + [883] = { [ts_builtin_sym_end] = ACTIONS(2779), [sym_identifier] = ACTIONS(2781), [anon_sym_export] = ACTIONS(2781), @@ -114870,7 +114868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2781), [sym_html_comment] = ACTIONS(5), }, - [885] = { + [884] = { [ts_builtin_sym_end] = ACTIONS(2783), [sym_identifier] = ACTIONS(2785), [anon_sym_export] = ACTIONS(2785), @@ -114952,7 +114950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2785), [sym_html_comment] = ACTIONS(5), }, - [886] = { + [885] = { [ts_builtin_sym_end] = ACTIONS(2787), [sym_identifier] = ACTIONS(2789), [anon_sym_export] = ACTIONS(2789), @@ -115034,89 +115032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2789), [sym_html_comment] = ACTIONS(5), }, - [887] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_type] = ACTIONS(1854), - [anon_sym_namespace] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym_import] = ACTIONS(1854), - [anon_sym_with] = ACTIONS(1854), - [anon_sym_var] = ACTIONS(1854), - [anon_sym_let] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_else] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_await] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_try] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_debugger] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_throw] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_yield] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_class] = ACTIONS(1854), - [anon_sym_async] = ACTIONS(1854), - [anon_sym_function] = ACTIONS(1854), - [anon_sym_new] = ACTIONS(1854), - [anon_sym_using] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_SLASH] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_void] = ACTIONS(1854), - [anon_sym_delete] = ACTIONS(1854), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1852), - [sym_number] = ACTIONS(1852), - [sym_private_property_identifier] = ACTIONS(1852), - [sym_this] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_undefined] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_readonly] = ACTIONS(1854), - [anon_sym_get] = ACTIONS(1854), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_declare] = ACTIONS(1854), - [anon_sym_public] = ACTIONS(1854), - [anon_sym_private] = ACTIONS(1854), - [anon_sym_protected] = ACTIONS(1854), - [anon_sym_override] = ACTIONS(1854), - [anon_sym_module] = ACTIONS(1854), - [anon_sym_any] = ACTIONS(1854), - [anon_sym_number] = ACTIONS(1854), - [anon_sym_boolean] = ACTIONS(1854), - [anon_sym_string] = ACTIONS(1854), - [anon_sym_symbol] = ACTIONS(1854), - [anon_sym_object] = ACTIONS(1854), - [anon_sym_abstract] = ACTIONS(1854), - [anon_sym_interface] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [sym_html_comment] = ACTIONS(5), - }, - [888] = { + [886] = { [ts_builtin_sym_end] = ACTIONS(2791), [sym_identifier] = ACTIONS(2793), [anon_sym_export] = ACTIONS(2793), @@ -115198,61 +115114,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2793), [sym_html_comment] = ACTIONS(5), }, + [887] = { + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2797), + [anon_sym_export] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_type] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2795), + [anon_sym_typeof] = ACTIONS(2797), + [anon_sym_import] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2797), + [anon_sym_var] = ACTIONS(2797), + [anon_sym_let] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_else] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_await] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_debugger] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_async] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_SLASH] = ACTIONS(2797), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_void] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2795), + [sym_number] = ACTIONS(2795), + [sym_private_property_identifier] = ACTIONS(2795), + [sym_this] = ACTIONS(2797), + [sym_super] = ACTIONS(2797), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), + [sym_undefined] = ACTIONS(2797), + [anon_sym_AT] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_readonly] = ACTIONS(2797), + [anon_sym_get] = ACTIONS(2797), + [anon_sym_set] = ACTIONS(2797), + [anon_sym_declare] = ACTIONS(2797), + [anon_sym_public] = ACTIONS(2797), + [anon_sym_private] = ACTIONS(2797), + [anon_sym_protected] = ACTIONS(2797), + [anon_sym_override] = ACTIONS(2797), + [anon_sym_module] = ACTIONS(2797), + [anon_sym_any] = ACTIONS(2797), + [anon_sym_number] = ACTIONS(2797), + [anon_sym_boolean] = ACTIONS(2797), + [anon_sym_string] = ACTIONS(2797), + [anon_sym_symbol] = ACTIONS(2797), + [anon_sym_object] = ACTIONS(2797), + [anon_sym_abstract] = ACTIONS(2797), + [anon_sym_interface] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [sym_html_comment] = ACTIONS(5), + }, + [888] = { + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2801), + [anon_sym_export] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_typeof] = ACTIONS(2801), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_var] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_else] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_await] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_debugger] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_async] = ACTIONS(2801), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_void] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2799), + [sym_number] = ACTIONS(2799), + [sym_private_property_identifier] = ACTIONS(2799), + [sym_this] = ACTIONS(2801), + [sym_super] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), + [sym_undefined] = ACTIONS(2801), + [anon_sym_AT] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_readonly] = ACTIONS(2801), + [anon_sym_get] = ACTIONS(2801), + [anon_sym_set] = ACTIONS(2801), + [anon_sym_declare] = ACTIONS(2801), + [anon_sym_public] = ACTIONS(2801), + [anon_sym_private] = ACTIONS(2801), + [anon_sym_protected] = ACTIONS(2801), + [anon_sym_override] = ACTIONS(2801), + [anon_sym_module] = ACTIONS(2801), + [anon_sym_any] = ACTIONS(2801), + [anon_sym_number] = ACTIONS(2801), + [anon_sym_boolean] = ACTIONS(2801), + [anon_sym_string] = ACTIONS(2801), + [anon_sym_symbol] = ACTIONS(2801), + [anon_sym_object] = ACTIONS(2801), + [anon_sym_abstract] = ACTIONS(2801), + [anon_sym_interface] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [sym_html_comment] = ACTIONS(5), + }, [889] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2805), + [anon_sym_export] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_type] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_typeof] = ACTIONS(2805), + [anon_sym_import] = ACTIONS(2805), + [anon_sym_with] = ACTIONS(2805), + [anon_sym_var] = ACTIONS(2805), + [anon_sym_let] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_else] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_await] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_debugger] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_yield] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_async] = ACTIONS(2805), + [anon_sym_function] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_SLASH] = ACTIONS(2805), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_void] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2803), + [sym_number] = ACTIONS(2803), + [sym_private_property_identifier] = ACTIONS(2803), + [sym_this] = ACTIONS(2805), + [sym_super] = ACTIONS(2805), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_undefined] = ACTIONS(2805), + [anon_sym_AT] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_readonly] = ACTIONS(2805), + [anon_sym_get] = ACTIONS(2805), + [anon_sym_set] = ACTIONS(2805), + [anon_sym_declare] = ACTIONS(2805), + [anon_sym_public] = ACTIONS(2805), + [anon_sym_private] = ACTIONS(2805), + [anon_sym_protected] = ACTIONS(2805), + [anon_sym_override] = ACTIONS(2805), + [anon_sym_module] = ACTIONS(2805), + [anon_sym_any] = ACTIONS(2805), + [anon_sym_number] = ACTIONS(2805), + [anon_sym_boolean] = ACTIONS(2805), + [anon_sym_string] = ACTIONS(2805), + [anon_sym_symbol] = ACTIONS(2805), + [anon_sym_object] = ACTIONS(2805), + [anon_sym_abstract] = ACTIONS(2805), + [anon_sym_interface] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [sym_html_comment] = ACTIONS(5), + }, + [890] = { + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2809), + [anon_sym_export] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_type] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_typeof] = ACTIONS(2809), + [anon_sym_import] = ACTIONS(2809), + [anon_sym_with] = ACTIONS(2809), + [anon_sym_var] = ACTIONS(2809), + [anon_sym_let] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_else] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_await] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_debugger] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_async] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_void] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2807), + [sym_number] = ACTIONS(2807), + [sym_private_property_identifier] = ACTIONS(2807), + [sym_this] = ACTIONS(2809), + [sym_super] = ACTIONS(2809), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_undefined] = ACTIONS(2809), + [anon_sym_AT] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_readonly] = ACTIONS(2809), + [anon_sym_get] = ACTIONS(2809), + [anon_sym_set] = ACTIONS(2809), + [anon_sym_declare] = ACTIONS(2809), + [anon_sym_public] = ACTIONS(2809), + [anon_sym_private] = ACTIONS(2809), + [anon_sym_protected] = ACTIONS(2809), + [anon_sym_override] = ACTIONS(2809), + [anon_sym_module] = ACTIONS(2809), + [anon_sym_any] = ACTIONS(2809), + [anon_sym_number] = ACTIONS(2809), + [anon_sym_boolean] = ACTIONS(2809), + [anon_sym_string] = ACTIONS(2809), + [anon_sym_symbol] = ACTIONS(2809), + [anon_sym_object] = ACTIONS(2809), + [anon_sym_abstract] = ACTIONS(2809), + [anon_sym_interface] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [sym_html_comment] = ACTIONS(5), + }, + [891] = { + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2813), + [anon_sym_export] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_type] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_typeof] = ACTIONS(2813), + [anon_sym_import] = ACTIONS(2813), + [anon_sym_with] = ACTIONS(2813), + [anon_sym_var] = ACTIONS(2813), + [anon_sym_let] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_else] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_await] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_debugger] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_yield] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_function] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_SLASH] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_void] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2811), + [sym_number] = ACTIONS(2811), + [sym_private_property_identifier] = ACTIONS(2811), + [sym_this] = ACTIONS(2813), + [sym_super] = ACTIONS(2813), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_undefined] = ACTIONS(2813), + [anon_sym_AT] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_readonly] = ACTIONS(2813), + [anon_sym_get] = ACTIONS(2813), + [anon_sym_set] = ACTIONS(2813), + [anon_sym_declare] = ACTIONS(2813), + [anon_sym_public] = ACTIONS(2813), + [anon_sym_private] = ACTIONS(2813), + [anon_sym_protected] = ACTIONS(2813), + [anon_sym_override] = ACTIONS(2813), + [anon_sym_module] = ACTIONS(2813), + [anon_sym_any] = ACTIONS(2813), + [anon_sym_number] = ACTIONS(2813), + [anon_sym_boolean] = ACTIONS(2813), + [anon_sym_string] = ACTIONS(2813), + [anon_sym_symbol] = ACTIONS(2813), + [anon_sym_object] = ACTIONS(2813), + [anon_sym_abstract] = ACTIONS(2813), + [anon_sym_interface] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [sym_html_comment] = ACTIONS(5), + }, + [892] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -115263,898 +115589,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(2797), - [sym_identifier] = ACTIONS(2799), - [anon_sym_export] = ACTIONS(2799), - [anon_sym_default] = ACTIONS(2799), - [anon_sym_type] = ACTIONS(2799), - [anon_sym_namespace] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2797), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_typeof] = ACTIONS(2799), - [anon_sym_import] = ACTIONS(2799), - [anon_sym_with] = ACTIONS(2799), - [anon_sym_var] = ACTIONS(2799), - [anon_sym_let] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_else] = ACTIONS(2799), - [anon_sym_if] = ACTIONS(2799), - [anon_sym_switch] = ACTIONS(2799), - [anon_sym_for] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym_await] = ACTIONS(2799), - [anon_sym_while] = ACTIONS(2799), - [anon_sym_do] = ACTIONS(2799), - [anon_sym_try] = ACTIONS(2799), - [anon_sym_break] = ACTIONS(2799), - [anon_sym_continue] = ACTIONS(2799), - [anon_sym_debugger] = ACTIONS(2799), - [anon_sym_return] = ACTIONS(2799), - [anon_sym_throw] = ACTIONS(2799), - [anon_sym_case] = ACTIONS(2799), - [anon_sym_yield] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_async] = ACTIONS(2799), - [anon_sym_function] = ACTIONS(2799), - [anon_sym_new] = ACTIONS(2799), - [anon_sym_using] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_TILDE] = ACTIONS(2797), - [anon_sym_void] = ACTIONS(2799), - [anon_sym_delete] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_DQUOTE] = ACTIONS(2797), - [anon_sym_SQUOTE] = ACTIONS(2797), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2797), - [sym_number] = ACTIONS(2797), - [sym_private_property_identifier] = ACTIONS(2797), - [sym_this] = ACTIONS(2799), - [sym_super] = ACTIONS(2799), - [sym_true] = ACTIONS(2799), - [sym_false] = ACTIONS(2799), - [sym_null] = ACTIONS(2799), - [sym_undefined] = ACTIONS(2799), - [anon_sym_AT] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_readonly] = ACTIONS(2799), - [anon_sym_get] = ACTIONS(2799), - [anon_sym_set] = ACTIONS(2799), - [anon_sym_declare] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_protected] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2799), - [anon_sym_module] = ACTIONS(2799), - [anon_sym_any] = ACTIONS(2799), - [anon_sym_number] = ACTIONS(2799), - [anon_sym_boolean] = ACTIONS(2799), - [anon_sym_string] = ACTIONS(2799), - [anon_sym_symbol] = ACTIONS(2799), - [anon_sym_object] = ACTIONS(2799), - [anon_sym_abstract] = ACTIONS(2799), - [anon_sym_interface] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [sym_html_comment] = ACTIONS(5), - }, - [891] = { - [ts_builtin_sym_end] = ACTIONS(2801), - [sym_identifier] = ACTIONS(2803), - [anon_sym_export] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_type] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_typeof] = ACTIONS(2803), - [anon_sym_import] = ACTIONS(2803), - [anon_sym_with] = ACTIONS(2803), - [anon_sym_var] = ACTIONS(2803), - [anon_sym_let] = ACTIONS(2803), - [anon_sym_const] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_else] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_await] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_debugger] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_yield] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_async] = ACTIONS(2803), - [anon_sym_function] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_SLASH] = ACTIONS(2803), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_void] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2801), - [sym_number] = ACTIONS(2801), - [sym_private_property_identifier] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), - [sym_super] = ACTIONS(2803), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [sym_null] = ACTIONS(2803), - [sym_undefined] = ACTIONS(2803), - [anon_sym_AT] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_readonly] = ACTIONS(2803), - [anon_sym_get] = ACTIONS(2803), - [anon_sym_set] = ACTIONS(2803), - [anon_sym_declare] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_override] = ACTIONS(2803), - [anon_sym_module] = ACTIONS(2803), - [anon_sym_any] = ACTIONS(2803), - [anon_sym_number] = ACTIONS(2803), - [anon_sym_boolean] = ACTIONS(2803), - [anon_sym_string] = ACTIONS(2803), - [anon_sym_symbol] = ACTIONS(2803), - [anon_sym_object] = ACTIONS(2803), - [anon_sym_abstract] = ACTIONS(2803), - [anon_sym_interface] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [sym_html_comment] = ACTIONS(5), - }, - [892] = { - [ts_builtin_sym_end] = ACTIONS(2805), - [sym_identifier] = ACTIONS(2807), - [anon_sym_export] = ACTIONS(2807), - [anon_sym_default] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2807), - [anon_sym_namespace] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_RBRACE] = ACTIONS(2805), - [anon_sym_typeof] = ACTIONS(2807), - [anon_sym_import] = ACTIONS(2807), - [anon_sym_with] = ACTIONS(2807), - [anon_sym_var] = ACTIONS(2807), - [anon_sym_let] = ACTIONS(2807), - [anon_sym_const] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_else] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2807), - [anon_sym_switch] = ACTIONS(2807), - [anon_sym_for] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_SEMI] = ACTIONS(2805), - [anon_sym_await] = ACTIONS(2807), - [anon_sym_while] = ACTIONS(2807), - [anon_sym_do] = ACTIONS(2807), - [anon_sym_try] = ACTIONS(2807), - [anon_sym_break] = ACTIONS(2807), - [anon_sym_continue] = ACTIONS(2807), - [anon_sym_debugger] = ACTIONS(2807), - [anon_sym_return] = ACTIONS(2807), - [anon_sym_throw] = ACTIONS(2807), - [anon_sym_case] = ACTIONS(2807), - [anon_sym_yield] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2805), - [anon_sym_class] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_function] = ACTIONS(2807), - [anon_sym_new] = ACTIONS(2807), - [anon_sym_using] = ACTIONS(2807), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_SLASH] = ACTIONS(2807), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2805), - [anon_sym_void] = ACTIONS(2807), - [anon_sym_delete] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2805), - [anon_sym_DASH_DASH] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2805), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2805), - [sym_number] = ACTIONS(2805), - [sym_private_property_identifier] = ACTIONS(2805), - [sym_this] = ACTIONS(2807), - [sym_super] = ACTIONS(2807), - [sym_true] = ACTIONS(2807), - [sym_false] = ACTIONS(2807), - [sym_null] = ACTIONS(2807), - [sym_undefined] = ACTIONS(2807), - [anon_sym_AT] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2807), - [anon_sym_readonly] = ACTIONS(2807), - [anon_sym_get] = ACTIONS(2807), - [anon_sym_set] = ACTIONS(2807), - [anon_sym_declare] = ACTIONS(2807), - [anon_sym_public] = ACTIONS(2807), - [anon_sym_private] = ACTIONS(2807), - [anon_sym_protected] = ACTIONS(2807), - [anon_sym_override] = ACTIONS(2807), - [anon_sym_module] = ACTIONS(2807), - [anon_sym_any] = ACTIONS(2807), - [anon_sym_number] = ACTIONS(2807), - [anon_sym_boolean] = ACTIONS(2807), - [anon_sym_string] = ACTIONS(2807), - [anon_sym_symbol] = ACTIONS(2807), - [anon_sym_object] = ACTIONS(2807), - [anon_sym_abstract] = ACTIONS(2807), - [anon_sym_interface] = ACTIONS(2807), - [anon_sym_enum] = ACTIONS(2807), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [893] = { - [ts_builtin_sym_end] = ACTIONS(2809), - [sym_identifier] = ACTIONS(2811), - [anon_sym_export] = ACTIONS(2811), - [anon_sym_default] = ACTIONS(2811), - [anon_sym_type] = ACTIONS(2811), - [anon_sym_namespace] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_typeof] = ACTIONS(2811), - [anon_sym_import] = ACTIONS(2811), - [anon_sym_with] = ACTIONS(2811), - [anon_sym_var] = ACTIONS(2811), - [anon_sym_let] = ACTIONS(2811), - [anon_sym_const] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_else] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2811), - [anon_sym_switch] = ACTIONS(2811), - [anon_sym_for] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_while] = ACTIONS(2811), - [anon_sym_do] = ACTIONS(2811), - [anon_sym_try] = ACTIONS(2811), - [anon_sym_break] = ACTIONS(2811), - [anon_sym_continue] = ACTIONS(2811), - [anon_sym_debugger] = ACTIONS(2811), - [anon_sym_return] = ACTIONS(2811), - [anon_sym_throw] = ACTIONS(2811), - [anon_sym_case] = ACTIONS(2811), - [anon_sym_yield] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_class] = ACTIONS(2811), - [anon_sym_async] = ACTIONS(2811), - [anon_sym_function] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_using] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_SLASH] = ACTIONS(2811), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_delete] = ACTIONS(2811), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2809), - [sym_number] = ACTIONS(2809), - [sym_private_property_identifier] = ACTIONS(2809), - [sym_this] = ACTIONS(2811), - [sym_super] = ACTIONS(2811), - [sym_true] = ACTIONS(2811), - [sym_false] = ACTIONS(2811), - [sym_null] = ACTIONS(2811), - [sym_undefined] = ACTIONS(2811), - [anon_sym_AT] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2811), - [anon_sym_readonly] = ACTIONS(2811), - [anon_sym_get] = ACTIONS(2811), - [anon_sym_set] = ACTIONS(2811), - [anon_sym_declare] = ACTIONS(2811), - [anon_sym_public] = ACTIONS(2811), - [anon_sym_private] = ACTIONS(2811), - [anon_sym_protected] = ACTIONS(2811), - [anon_sym_override] = ACTIONS(2811), - [anon_sym_module] = ACTIONS(2811), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2811), - [anon_sym_interface] = ACTIONS(2811), - [anon_sym_enum] = ACTIONS(2811), - [sym_html_comment] = ACTIONS(5), - }, - [894] = { - [ts_builtin_sym_end] = ACTIONS(2813), - [sym_identifier] = ACTIONS(2815), - [anon_sym_export] = ACTIONS(2815), - [anon_sym_default] = ACTIONS(2815), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_namespace] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_typeof] = ACTIONS(2815), - [anon_sym_import] = ACTIONS(2815), - [anon_sym_with] = ACTIONS(2815), - [anon_sym_var] = ACTIONS(2815), - [anon_sym_let] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_switch] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym_await] = ACTIONS(2815), - [anon_sym_while] = ACTIONS(2815), - [anon_sym_do] = ACTIONS(2815), - [anon_sym_try] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_debugger] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_throw] = ACTIONS(2815), - [anon_sym_case] = ACTIONS(2815), - [anon_sym_yield] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2815), - [anon_sym_async] = ACTIONS(2815), - [anon_sym_function] = ACTIONS(2815), - [anon_sym_new] = ACTIONS(2815), - [anon_sym_using] = ACTIONS(2815), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_SLASH] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2813), - [anon_sym_void] = ACTIONS(2815), - [anon_sym_delete] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2813), - [sym_number] = ACTIONS(2813), - [sym_private_property_identifier] = ACTIONS(2813), - [sym_this] = ACTIONS(2815), - [sym_super] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_null] = ACTIONS(2815), - [sym_undefined] = ACTIONS(2815), - [anon_sym_AT] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2815), - [anon_sym_readonly] = ACTIONS(2815), - [anon_sym_get] = ACTIONS(2815), - [anon_sym_set] = ACTIONS(2815), - [anon_sym_declare] = ACTIONS(2815), - [anon_sym_public] = ACTIONS(2815), - [anon_sym_private] = ACTIONS(2815), - [anon_sym_protected] = ACTIONS(2815), - [anon_sym_override] = ACTIONS(2815), - [anon_sym_module] = ACTIONS(2815), - [anon_sym_any] = ACTIONS(2815), - [anon_sym_number] = ACTIONS(2815), - [anon_sym_boolean] = ACTIONS(2815), - [anon_sym_string] = ACTIONS(2815), - [anon_sym_symbol] = ACTIONS(2815), - [anon_sym_object] = ACTIONS(2815), - [anon_sym_abstract] = ACTIONS(2815), - [anon_sym_interface] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [sym_html_comment] = ACTIONS(5), - }, - [895] = { - [ts_builtin_sym_end] = ACTIONS(2817), - [sym_identifier] = ACTIONS(2819), - [anon_sym_export] = ACTIONS(2819), - [anon_sym_default] = ACTIONS(2819), - [anon_sym_type] = ACTIONS(2819), - [anon_sym_namespace] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_RBRACE] = ACTIONS(2817), - [anon_sym_typeof] = ACTIONS(2819), - [anon_sym_import] = ACTIONS(2819), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_var] = ACTIONS(2819), - [anon_sym_let] = ACTIONS(2819), - [anon_sym_const] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_else] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_switch] = ACTIONS(2819), - [anon_sym_for] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym_await] = ACTIONS(2819), - [anon_sym_while] = ACTIONS(2819), - [anon_sym_do] = ACTIONS(2819), - [anon_sym_try] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_debugger] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_throw] = ACTIONS(2819), - [anon_sym_case] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_class] = ACTIONS(2819), - [anon_sym_async] = ACTIONS(2819), - [anon_sym_function] = ACTIONS(2819), - [anon_sym_new] = ACTIONS(2819), - [anon_sym_using] = ACTIONS(2819), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_SLASH] = ACTIONS(2819), - [anon_sym_LT] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_void] = ACTIONS(2819), - [anon_sym_delete] = ACTIONS(2819), - [anon_sym_PLUS_PLUS] = ACTIONS(2817), - [anon_sym_DASH_DASH] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2817), - [sym_number] = ACTIONS(2817), - [sym_private_property_identifier] = ACTIONS(2817), - [sym_this] = ACTIONS(2819), - [sym_super] = ACTIONS(2819), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [anon_sym_AT] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2819), - [anon_sym_readonly] = ACTIONS(2819), - [anon_sym_get] = ACTIONS(2819), - [anon_sym_set] = ACTIONS(2819), - [anon_sym_declare] = ACTIONS(2819), - [anon_sym_public] = ACTIONS(2819), - [anon_sym_private] = ACTIONS(2819), - [anon_sym_protected] = ACTIONS(2819), - [anon_sym_override] = ACTIONS(2819), - [anon_sym_module] = ACTIONS(2819), - [anon_sym_any] = ACTIONS(2819), - [anon_sym_number] = ACTIONS(2819), - [anon_sym_boolean] = ACTIONS(2819), - [anon_sym_string] = ACTIONS(2819), - [anon_sym_symbol] = ACTIONS(2819), - [anon_sym_object] = ACTIONS(2819), - [anon_sym_abstract] = ACTIONS(2819), - [anon_sym_interface] = ACTIONS(2819), - [anon_sym_enum] = ACTIONS(2819), - [sym_html_comment] = ACTIONS(5), - }, - [896] = { - [ts_builtin_sym_end] = ACTIONS(2809), - [sym_identifier] = ACTIONS(2811), - [anon_sym_export] = ACTIONS(2811), - [anon_sym_default] = ACTIONS(2811), - [anon_sym_type] = ACTIONS(2811), - [anon_sym_namespace] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_typeof] = ACTIONS(2811), - [anon_sym_import] = ACTIONS(2811), - [anon_sym_with] = ACTIONS(2811), - [anon_sym_var] = ACTIONS(2811), - [anon_sym_let] = ACTIONS(2811), - [anon_sym_const] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_else] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2811), - [anon_sym_switch] = ACTIONS(2811), - [anon_sym_for] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_while] = ACTIONS(2811), - [anon_sym_do] = ACTIONS(2811), - [anon_sym_try] = ACTIONS(2811), - [anon_sym_break] = ACTIONS(2811), - [anon_sym_continue] = ACTIONS(2811), - [anon_sym_debugger] = ACTIONS(2811), - [anon_sym_return] = ACTIONS(2811), - [anon_sym_throw] = ACTIONS(2811), - [anon_sym_case] = ACTIONS(2811), - [anon_sym_yield] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_class] = ACTIONS(2811), - [anon_sym_async] = ACTIONS(2811), - [anon_sym_function] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_using] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_SLASH] = ACTIONS(2811), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_delete] = ACTIONS(2811), - [anon_sym_PLUS_PLUS] = ACTIONS(2809), - [anon_sym_DASH_DASH] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2809), - [sym_number] = ACTIONS(2809), - [sym_private_property_identifier] = ACTIONS(2809), - [sym_this] = ACTIONS(2811), - [sym_super] = ACTIONS(2811), - [sym_true] = ACTIONS(2811), - [sym_false] = ACTIONS(2811), - [sym_null] = ACTIONS(2811), - [sym_undefined] = ACTIONS(2811), - [anon_sym_AT] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2811), - [anon_sym_readonly] = ACTIONS(2811), - [anon_sym_get] = ACTIONS(2811), - [anon_sym_set] = ACTIONS(2811), - [anon_sym_declare] = ACTIONS(2811), - [anon_sym_public] = ACTIONS(2811), - [anon_sym_private] = ACTIONS(2811), - [anon_sym_protected] = ACTIONS(2811), - [anon_sym_override] = ACTIONS(2811), - [anon_sym_module] = ACTIONS(2811), - [anon_sym_any] = ACTIONS(2811), - [anon_sym_number] = ACTIONS(2811), - [anon_sym_boolean] = ACTIONS(2811), - [anon_sym_string] = ACTIONS(2811), - [anon_sym_symbol] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_abstract] = ACTIONS(2811), - [anon_sym_interface] = ACTIONS(2811), - [anon_sym_enum] = ACTIONS(2811), - [sym_html_comment] = ACTIONS(5), - }, - [897] = { - [ts_builtin_sym_end] = ACTIONS(2821), - [sym_identifier] = ACTIONS(2823), - [anon_sym_export] = ACTIONS(2823), - [anon_sym_default] = ACTIONS(2823), - [anon_sym_type] = ACTIONS(2823), - [anon_sym_namespace] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2821), - [anon_sym_RBRACE] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_import] = ACTIONS(2823), - [anon_sym_with] = ACTIONS(2823), - [anon_sym_var] = ACTIONS(2823), - [anon_sym_let] = ACTIONS(2823), - [anon_sym_const] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2821), - [anon_sym_else] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_switch] = ACTIONS(2823), - [anon_sym_for] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_await] = ACTIONS(2823), - [anon_sym_while] = ACTIONS(2823), - [anon_sym_do] = ACTIONS(2823), - [anon_sym_try] = ACTIONS(2823), - [anon_sym_break] = ACTIONS(2823), - [anon_sym_continue] = ACTIONS(2823), - [anon_sym_debugger] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2823), - [anon_sym_throw] = ACTIONS(2823), - [anon_sym_case] = ACTIONS(2823), - [anon_sym_yield] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_class] = ACTIONS(2823), - [anon_sym_async] = ACTIONS(2823), - [anon_sym_function] = ACTIONS(2823), - [anon_sym_new] = ACTIONS(2823), - [anon_sym_using] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_SLASH] = ACTIONS(2823), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_TILDE] = ACTIONS(2821), - [anon_sym_void] = ACTIONS(2823), - [anon_sym_delete] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2821), - [anon_sym_DASH_DASH] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2821), - [sym_number] = ACTIONS(2821), - [sym_private_property_identifier] = ACTIONS(2821), - [sym_this] = ACTIONS(2823), - [sym_super] = ACTIONS(2823), - [sym_true] = ACTIONS(2823), - [sym_false] = ACTIONS(2823), - [sym_null] = ACTIONS(2823), - [sym_undefined] = ACTIONS(2823), - [anon_sym_AT] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2823), - [anon_sym_readonly] = ACTIONS(2823), - [anon_sym_get] = ACTIONS(2823), - [anon_sym_set] = ACTIONS(2823), - [anon_sym_declare] = ACTIONS(2823), - [anon_sym_public] = ACTIONS(2823), - [anon_sym_private] = ACTIONS(2823), - [anon_sym_protected] = ACTIONS(2823), - [anon_sym_override] = ACTIONS(2823), - [anon_sym_module] = ACTIONS(2823), - [anon_sym_any] = ACTIONS(2823), - [anon_sym_number] = ACTIONS(2823), - [anon_sym_boolean] = ACTIONS(2823), - [anon_sym_string] = ACTIONS(2823), - [anon_sym_symbol] = ACTIONS(2823), - [anon_sym_object] = ACTIONS(2823), - [anon_sym_abstract] = ACTIONS(2823), - [anon_sym_interface] = ACTIONS(2823), - [anon_sym_enum] = ACTIONS(2823), - [sym_html_comment] = ACTIONS(5), - }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(2825), - [sym_identifier] = ACTIONS(2827), - [anon_sym_export] = ACTIONS(2827), - [anon_sym_default] = ACTIONS(2827), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_namespace] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2825), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_typeof] = ACTIONS(2827), - [anon_sym_import] = ACTIONS(2827), - [anon_sym_with] = ACTIONS(2827), - [anon_sym_var] = ACTIONS(2827), - [anon_sym_let] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2825), - [anon_sym_else] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_switch] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym_await] = ACTIONS(2827), - [anon_sym_while] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_try] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_debugger] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_throw] = ACTIONS(2827), - [anon_sym_case] = ACTIONS(2827), - [anon_sym_yield] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_class] = ACTIONS(2827), - [anon_sym_async] = ACTIONS(2827), - [anon_sym_function] = ACTIONS(2827), - [anon_sym_new] = ACTIONS(2827), - [anon_sym_using] = ACTIONS(2827), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2825), - [anon_sym_TILDE] = ACTIONS(2825), - [anon_sym_void] = ACTIONS(2827), - [anon_sym_delete] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2825), - [anon_sym_DASH_DASH] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2825), - [sym_number] = ACTIONS(2825), - [sym_private_property_identifier] = ACTIONS(2825), - [sym_this] = ACTIONS(2827), - [sym_super] = ACTIONS(2827), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_null] = ACTIONS(2827), - [sym_undefined] = ACTIONS(2827), - [anon_sym_AT] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_readonly] = ACTIONS(2827), - [anon_sym_get] = ACTIONS(2827), - [anon_sym_set] = ACTIONS(2827), - [anon_sym_declare] = ACTIONS(2827), - [anon_sym_public] = ACTIONS(2827), - [anon_sym_private] = ACTIONS(2827), - [anon_sym_protected] = ACTIONS(2827), - [anon_sym_override] = ACTIONS(2827), - [anon_sym_module] = ACTIONS(2827), - [anon_sym_any] = ACTIONS(2827), - [anon_sym_number] = ACTIONS(2827), - [anon_sym_boolean] = ACTIONS(2827), - [anon_sym_string] = ACTIONS(2827), - [anon_sym_symbol] = ACTIONS(2827), - [anon_sym_object] = ACTIONS(2827), - [anon_sym_abstract] = ACTIONS(2827), - [anon_sym_interface] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [sym_html_comment] = ACTIONS(5), - }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(2829), - [sym_identifier] = ACTIONS(2831), - [anon_sym_export] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2831), - [anon_sym_type] = ACTIONS(2831), - [anon_sym_namespace] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_typeof] = ACTIONS(2831), - [anon_sym_import] = ACTIONS(2831), - [anon_sym_with] = ACTIONS(2831), - [anon_sym_var] = ACTIONS(2831), - [anon_sym_let] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_else] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_switch] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym_await] = ACTIONS(2831), - [anon_sym_while] = ACTIONS(2831), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_try] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_debugger] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_throw] = ACTIONS(2831), - [anon_sym_case] = ACTIONS(2831), - [anon_sym_yield] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_class] = ACTIONS(2831), - [anon_sym_async] = ACTIONS(2831), - [anon_sym_function] = ACTIONS(2831), - [anon_sym_new] = ACTIONS(2831), - [anon_sym_using] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_void] = ACTIONS(2831), - [anon_sym_delete] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2829), - [sym_number] = ACTIONS(2829), - [sym_private_property_identifier] = ACTIONS(2829), - [sym_this] = ACTIONS(2831), - [sym_super] = ACTIONS(2831), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_null] = ACTIONS(2831), - [sym_undefined] = ACTIONS(2831), - [anon_sym_AT] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2831), - [anon_sym_readonly] = ACTIONS(2831), - [anon_sym_get] = ACTIONS(2831), - [anon_sym_set] = ACTIONS(2831), - [anon_sym_declare] = ACTIONS(2831), - [anon_sym_public] = ACTIONS(2831), - [anon_sym_private] = ACTIONS(2831), - [anon_sym_protected] = ACTIONS(2831), - [anon_sym_override] = ACTIONS(2831), - [anon_sym_module] = ACTIONS(2831), - [anon_sym_any] = ACTIONS(2831), - [anon_sym_number] = ACTIONS(2831), - [anon_sym_boolean] = ACTIONS(2831), - [anon_sym_string] = ACTIONS(2831), - [anon_sym_symbol] = ACTIONS(2831), - [anon_sym_object] = ACTIONS(2831), - [anon_sym_abstract] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [sym_html_comment] = ACTIONS(5), - }, - [900] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2833), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -116165,24 +115671,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [901] = { + [894] = { + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2821), + [anon_sym_export] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_type] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_typeof] = ACTIONS(2821), + [anon_sym_import] = ACTIONS(2821), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_var] = ACTIONS(2821), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_else] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_await] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_debugger] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_async] = ACTIONS(2821), + [anon_sym_function] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_void] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2819), + [sym_number] = ACTIONS(2819), + [sym_private_property_identifier] = ACTIONS(2819), + [sym_this] = ACTIONS(2821), + [sym_super] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_undefined] = ACTIONS(2821), + [anon_sym_AT] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_readonly] = ACTIONS(2821), + [anon_sym_get] = ACTIONS(2821), + [anon_sym_set] = ACTIONS(2821), + [anon_sym_declare] = ACTIONS(2821), + [anon_sym_public] = ACTIONS(2821), + [anon_sym_private] = ACTIONS(2821), + [anon_sym_protected] = ACTIONS(2821), + [anon_sym_override] = ACTIONS(2821), + [anon_sym_module] = ACTIONS(2821), + [anon_sym_any] = ACTIONS(2821), + [anon_sym_number] = ACTIONS(2821), + [anon_sym_boolean] = ACTIONS(2821), + [anon_sym_string] = ACTIONS(2821), + [anon_sym_symbol] = ACTIONS(2821), + [anon_sym_object] = ACTIONS(2821), + [anon_sym_abstract] = ACTIONS(2821), + [anon_sym_interface] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [sym_html_comment] = ACTIONS(5), + }, + [895] = { + [ts_builtin_sym_end] = ACTIONS(2823), + [sym_identifier] = ACTIONS(2825), + [anon_sym_export] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_type] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_import] = ACTIONS(2825), + [anon_sym_with] = ACTIONS(2825), + [anon_sym_var] = ACTIONS(2825), + [anon_sym_let] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_else] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_await] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_debugger] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_yield] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_async] = ACTIONS(2825), + [anon_sym_function] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_SLASH] = ACTIONS(2825), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_void] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2823), + [sym_number] = ACTIONS(2823), + [sym_private_property_identifier] = ACTIONS(2823), + [sym_this] = ACTIONS(2825), + [sym_super] = ACTIONS(2825), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_undefined] = ACTIONS(2825), + [anon_sym_AT] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_readonly] = ACTIONS(2825), + [anon_sym_get] = ACTIONS(2825), + [anon_sym_set] = ACTIONS(2825), + [anon_sym_declare] = ACTIONS(2825), + [anon_sym_public] = ACTIONS(2825), + [anon_sym_private] = ACTIONS(2825), + [anon_sym_protected] = ACTIONS(2825), + [anon_sym_override] = ACTIONS(2825), + [anon_sym_module] = ACTIONS(2825), + [anon_sym_any] = ACTIONS(2825), + [anon_sym_number] = ACTIONS(2825), + [anon_sym_boolean] = ACTIONS(2825), + [anon_sym_string] = ACTIONS(2825), + [anon_sym_symbol] = ACTIONS(2825), + [anon_sym_object] = ACTIONS(2825), + [anon_sym_abstract] = ACTIONS(2825), + [anon_sym_interface] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [sym_html_comment] = ACTIONS(5), + }, + [896] = { + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_export] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_typeof] = ACTIONS(2829), + [anon_sym_import] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2829), + [anon_sym_var] = ACTIONS(2829), + [anon_sym_let] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_await] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_debugger] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_yield] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_async] = ACTIONS(2829), + [anon_sym_function] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_void] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2827), + [sym_number] = ACTIONS(2827), + [sym_private_property_identifier] = ACTIONS(2827), + [sym_this] = ACTIONS(2829), + [sym_super] = ACTIONS(2829), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_undefined] = ACTIONS(2829), + [anon_sym_AT] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_readonly] = ACTIONS(2829), + [anon_sym_get] = ACTIONS(2829), + [anon_sym_set] = ACTIONS(2829), + [anon_sym_declare] = ACTIONS(2829), + [anon_sym_public] = ACTIONS(2829), + [anon_sym_private] = ACTIONS(2829), + [anon_sym_protected] = ACTIONS(2829), + [anon_sym_override] = ACTIONS(2829), + [anon_sym_module] = ACTIONS(2829), + [anon_sym_any] = ACTIONS(2829), + [anon_sym_number] = ACTIONS(2829), + [anon_sym_boolean] = ACTIONS(2829), + [anon_sym_string] = ACTIONS(2829), + [anon_sym_symbol] = ACTIONS(2829), + [anon_sym_object] = ACTIONS(2829), + [anon_sym_abstract] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [sym_html_comment] = ACTIONS(5), + }, + [897] = { + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_export] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_typeof] = ACTIONS(2833), + [anon_sym_import] = ACTIONS(2833), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_var] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_else] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_await] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_debugger] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_async] = ACTIONS(2833), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_void] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2831), + [sym_number] = ACTIONS(2831), + [sym_private_property_identifier] = ACTIONS(2831), + [sym_this] = ACTIONS(2833), + [sym_super] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_undefined] = ACTIONS(2833), + [anon_sym_AT] = ACTIONS(2831), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_get] = ACTIONS(2833), + [anon_sym_set] = ACTIONS(2833), + [anon_sym_declare] = ACTIONS(2833), + [anon_sym_public] = ACTIONS(2833), + [anon_sym_private] = ACTIONS(2833), + [anon_sym_protected] = ACTIONS(2833), + [anon_sym_override] = ACTIONS(2833), + [anon_sym_module] = ACTIONS(2833), + [anon_sym_any] = ACTIONS(2833), + [anon_sym_number] = ACTIONS(2833), + [anon_sym_boolean] = ACTIONS(2833), + [anon_sym_string] = ACTIONS(2833), + [anon_sym_symbol] = ACTIONS(2833), + [anon_sym_object] = ACTIONS(2833), + [anon_sym_abstract] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [sym_html_comment] = ACTIONS(5), + }, + [898] = { + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_export] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_typeof] = ACTIONS(2833), + [anon_sym_import] = ACTIONS(2833), + [anon_sym_with] = ACTIONS(2833), + [anon_sym_var] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_else] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_await] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_debugger] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_async] = ACTIONS(2833), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_void] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2831), + [sym_number] = ACTIONS(2831), + [sym_private_property_identifier] = ACTIONS(2831), + [sym_this] = ACTIONS(2833), + [sym_super] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_undefined] = ACTIONS(2833), + [anon_sym_AT] = ACTIONS(2831), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_readonly] = ACTIONS(2833), + [anon_sym_get] = ACTIONS(2833), + [anon_sym_set] = ACTIONS(2833), + [anon_sym_declare] = ACTIONS(2833), + [anon_sym_public] = ACTIONS(2833), + [anon_sym_private] = ACTIONS(2833), + [anon_sym_protected] = ACTIONS(2833), + [anon_sym_override] = ACTIONS(2833), + [anon_sym_module] = ACTIONS(2833), + [anon_sym_any] = ACTIONS(2833), + [anon_sym_number] = ACTIONS(2833), + [anon_sym_boolean] = ACTIONS(2833), + [anon_sym_string] = ACTIONS(2833), + [anon_sym_symbol] = ACTIONS(2833), + [anon_sym_object] = ACTIONS(2833), + [anon_sym_abstract] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [sym_html_comment] = ACTIONS(5), + }, + [899] = { [ts_builtin_sym_end] = ACTIONS(2835), [sym_identifier] = ACTIONS(2837), [anon_sym_export] = ACTIONS(2837), @@ -116264,171 +116180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2837), [sym_html_comment] = ACTIONS(5), }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_export] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_typeof] = ACTIONS(2841), - [anon_sym_import] = ACTIONS(2841), - [anon_sym_with] = ACTIONS(2841), - [anon_sym_var] = ACTIONS(2841), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_await] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_debugger] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_throw] = ACTIONS(2841), - [anon_sym_case] = ACTIONS(2841), - [anon_sym_yield] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_function] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_using] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_void] = ACTIONS(2841), - [anon_sym_delete] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2839), - [sym_number] = ACTIONS(2839), - [sym_private_property_identifier] = ACTIONS(2839), - [sym_this] = ACTIONS(2841), - [sym_super] = ACTIONS(2841), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_null] = ACTIONS(2841), - [sym_undefined] = ACTIONS(2841), - [anon_sym_AT] = ACTIONS(2839), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_readonly] = ACTIONS(2841), - [anon_sym_get] = ACTIONS(2841), - [anon_sym_set] = ACTIONS(2841), - [anon_sym_declare] = ACTIONS(2841), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_override] = ACTIONS(2841), - [anon_sym_module] = ACTIONS(2841), - [anon_sym_any] = ACTIONS(2841), - [anon_sym_number] = ACTIONS(2841), - [anon_sym_boolean] = ACTIONS(2841), - [anon_sym_string] = ACTIONS(2841), - [anon_sym_symbol] = ACTIONS(2841), - [anon_sym_object] = ACTIONS(2841), - [anon_sym_abstract] = ACTIONS(2841), - [anon_sym_interface] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [sym_html_comment] = ACTIONS(5), - }, - [903] = { - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_export] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_typeof] = ACTIONS(2841), - [anon_sym_import] = ACTIONS(2841), - [anon_sym_with] = ACTIONS(2841), - [anon_sym_var] = ACTIONS(2841), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_await] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_debugger] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_throw] = ACTIONS(2841), - [anon_sym_case] = ACTIONS(2841), - [anon_sym_yield] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_function] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_using] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_void] = ACTIONS(2841), - [anon_sym_delete] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2839), - [sym_number] = ACTIONS(2839), - [sym_private_property_identifier] = ACTIONS(2839), - [sym_this] = ACTIONS(2841), - [sym_super] = ACTIONS(2841), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_null] = ACTIONS(2841), - [sym_undefined] = ACTIONS(2841), - [anon_sym_AT] = ACTIONS(2839), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_readonly] = ACTIONS(2841), - [anon_sym_get] = ACTIONS(2841), - [anon_sym_set] = ACTIONS(2841), - [anon_sym_declare] = ACTIONS(2841), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_override] = ACTIONS(2841), - [anon_sym_module] = ACTIONS(2841), - [anon_sym_any] = ACTIONS(2841), - [anon_sym_number] = ACTIONS(2841), - [anon_sym_boolean] = ACTIONS(2841), - [anon_sym_string] = ACTIONS(2841), - [anon_sym_symbol] = ACTIONS(2841), - [anon_sym_object] = ACTIONS(2841), - [anon_sym_abstract] = ACTIONS(2841), - [anon_sym_interface] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [sym_html_comment] = ACTIONS(5), - }, - [904] = { + [900] = { [ts_builtin_sym_end] = ACTIONS(2839), [sym_identifier] = ACTIONS(2841), [anon_sym_export] = ACTIONS(2841), @@ -116510,7 +116262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2841), [sym_html_comment] = ACTIONS(5), }, - [905] = { + [901] = { [ts_builtin_sym_end] = ACTIONS(2843), [sym_identifier] = ACTIONS(2845), [anon_sym_export] = ACTIONS(2845), @@ -116592,2303 +116344,2303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2845), [sym_html_comment] = ACTIONS(5), }, + [902] = { + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2849), + [anon_sym_export] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_type] = ACTIONS(2849), + [anon_sym_namespace] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_typeof] = ACTIONS(2849), + [anon_sym_import] = ACTIONS(2849), + [anon_sym_with] = ACTIONS(2849), + [anon_sym_var] = ACTIONS(2849), + [anon_sym_let] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_else] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_debugger] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_yield] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_async] = ACTIONS(2849), + [anon_sym_function] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_using] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_void] = ACTIONS(2849), + [anon_sym_delete] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2847), + [sym_number] = ACTIONS(2847), + [sym_private_property_identifier] = ACTIONS(2847), + [sym_this] = ACTIONS(2849), + [sym_super] = ACTIONS(2849), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_null] = ACTIONS(2849), + [sym_undefined] = ACTIONS(2849), + [anon_sym_AT] = ACTIONS(2847), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_readonly] = ACTIONS(2849), + [anon_sym_get] = ACTIONS(2849), + [anon_sym_set] = ACTIONS(2849), + [anon_sym_declare] = ACTIONS(2849), + [anon_sym_public] = ACTIONS(2849), + [anon_sym_private] = ACTIONS(2849), + [anon_sym_protected] = ACTIONS(2849), + [anon_sym_override] = ACTIONS(2849), + [anon_sym_module] = ACTIONS(2849), + [anon_sym_any] = ACTIONS(2849), + [anon_sym_number] = ACTIONS(2849), + [anon_sym_boolean] = ACTIONS(2849), + [anon_sym_string] = ACTIONS(2849), + [anon_sym_symbol] = ACTIONS(2849), + [anon_sym_object] = ACTIONS(2849), + [anon_sym_abstract] = ACTIONS(2849), + [anon_sym_interface] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [sym_html_comment] = ACTIONS(5), + }, + [903] = { + [ts_builtin_sym_end] = ACTIONS(2851), + [sym_identifier] = ACTIONS(2853), + [anon_sym_export] = ACTIONS(2853), + [anon_sym_default] = ACTIONS(2853), + [anon_sym_type] = ACTIONS(2853), + [anon_sym_namespace] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_typeof] = ACTIONS(2853), + [anon_sym_import] = ACTIONS(2853), + [anon_sym_with] = ACTIONS(2853), + [anon_sym_var] = ACTIONS(2853), + [anon_sym_let] = ACTIONS(2853), + [anon_sym_const] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_else] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_switch] = ACTIONS(2853), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_await] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_do] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_debugger] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_throw] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2853), + [anon_sym_yield] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_async] = ACTIONS(2853), + [anon_sym_function] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_using] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_SLASH] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_void] = ACTIONS(2853), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2851), + [sym_number] = ACTIONS(2851), + [sym_private_property_identifier] = ACTIONS(2851), + [sym_this] = ACTIONS(2853), + [sym_super] = ACTIONS(2853), + [sym_true] = ACTIONS(2853), + [sym_false] = ACTIONS(2853), + [sym_null] = ACTIONS(2853), + [sym_undefined] = ACTIONS(2853), + [anon_sym_AT] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2853), + [anon_sym_readonly] = ACTIONS(2853), + [anon_sym_get] = ACTIONS(2853), + [anon_sym_set] = ACTIONS(2853), + [anon_sym_declare] = ACTIONS(2853), + [anon_sym_public] = ACTIONS(2853), + [anon_sym_private] = ACTIONS(2853), + [anon_sym_protected] = ACTIONS(2853), + [anon_sym_override] = ACTIONS(2853), + [anon_sym_module] = ACTIONS(2853), + [anon_sym_any] = ACTIONS(2853), + [anon_sym_number] = ACTIONS(2853), + [anon_sym_boolean] = ACTIONS(2853), + [anon_sym_string] = ACTIONS(2853), + [anon_sym_symbol] = ACTIONS(2853), + [anon_sym_object] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2853), + [anon_sym_interface] = ACTIONS(2853), + [anon_sym_enum] = ACTIONS(2853), + [sym_html_comment] = ACTIONS(5), + }, + [904] = { + [ts_builtin_sym_end] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), + [anon_sym_export] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_type] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_typeof] = ACTIONS(2857), + [anon_sym_import] = ACTIONS(2857), + [anon_sym_with] = ACTIONS(2857), + [anon_sym_var] = ACTIONS(2857), + [anon_sym_let] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_else] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2855), + [anon_sym_await] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_debugger] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_yield] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_async] = ACTIONS(2857), + [anon_sym_function] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_SLASH] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_void] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2855), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2855), + [sym_number] = ACTIONS(2855), + [sym_private_property_identifier] = ACTIONS(2855), + [sym_this] = ACTIONS(2857), + [sym_super] = ACTIONS(2857), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [sym_null] = ACTIONS(2857), + [sym_undefined] = ACTIONS(2857), + [anon_sym_AT] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_readonly] = ACTIONS(2857), + [anon_sym_get] = ACTIONS(2857), + [anon_sym_set] = ACTIONS(2857), + [anon_sym_declare] = ACTIONS(2857), + [anon_sym_public] = ACTIONS(2857), + [anon_sym_private] = ACTIONS(2857), + [anon_sym_protected] = ACTIONS(2857), + [anon_sym_override] = ACTIONS(2857), + [anon_sym_module] = ACTIONS(2857), + [anon_sym_any] = ACTIONS(2857), + [anon_sym_number] = ACTIONS(2857), + [anon_sym_boolean] = ACTIONS(2857), + [anon_sym_string] = ACTIONS(2857), + [anon_sym_symbol] = ACTIONS(2857), + [anon_sym_object] = ACTIONS(2857), + [anon_sym_abstract] = ACTIONS(2857), + [anon_sym_interface] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [sym_html_comment] = ACTIONS(5), + }, + [905] = { + [ts_builtin_sym_end] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2861), + [anon_sym_export] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_type] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_typeof] = ACTIONS(2861), + [anon_sym_import] = ACTIONS(2861), + [anon_sym_with] = ACTIONS(2861), + [anon_sym_var] = ACTIONS(2861), + [anon_sym_let] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_else] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_await] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_debugger] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_yield] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_async] = ACTIONS(2861), + [anon_sym_function] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_SLASH] = ACTIONS(2861), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_void] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2859), + [sym_number] = ACTIONS(2859), + [sym_private_property_identifier] = ACTIONS(2859), + [sym_this] = ACTIONS(2861), + [sym_super] = ACTIONS(2861), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_undefined] = ACTIONS(2861), + [anon_sym_AT] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_readonly] = ACTIONS(2861), + [anon_sym_get] = ACTIONS(2861), + [anon_sym_set] = ACTIONS(2861), + [anon_sym_declare] = ACTIONS(2861), + [anon_sym_public] = ACTIONS(2861), + [anon_sym_private] = ACTIONS(2861), + [anon_sym_protected] = ACTIONS(2861), + [anon_sym_override] = ACTIONS(2861), + [anon_sym_module] = ACTIONS(2861), + [anon_sym_any] = ACTIONS(2861), + [anon_sym_number] = ACTIONS(2861), + [anon_sym_boolean] = ACTIONS(2861), + [anon_sym_string] = ACTIONS(2861), + [anon_sym_symbol] = ACTIONS(2861), + [anon_sym_object] = ACTIONS(2861), + [anon_sym_abstract] = ACTIONS(2861), + [anon_sym_interface] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [sym_html_comment] = ACTIONS(5), + }, [906] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [ts_builtin_sym_end] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2865), + [anon_sym_export] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_type] = ACTIONS(2865), + [anon_sym_namespace] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_typeof] = ACTIONS(2865), + [anon_sym_import] = ACTIONS(2865), + [anon_sym_with] = ACTIONS(2865), + [anon_sym_var] = ACTIONS(2865), + [anon_sym_let] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_else] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_await] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_debugger] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_throw] = ACTIONS(2865), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_yield] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_async] = ACTIONS(2865), + [anon_sym_function] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), + [anon_sym_using] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_void] = ACTIONS(2865), + [anon_sym_delete] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2863), + [sym_number] = ACTIONS(2863), + [sym_private_property_identifier] = ACTIONS(2863), + [sym_this] = ACTIONS(2865), + [sym_super] = ACTIONS(2865), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_null] = ACTIONS(2865), + [sym_undefined] = ACTIONS(2865), + [anon_sym_AT] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_readonly] = ACTIONS(2865), + [anon_sym_get] = ACTIONS(2865), + [anon_sym_set] = ACTIONS(2865), + [anon_sym_declare] = ACTIONS(2865), + [anon_sym_public] = ACTIONS(2865), + [anon_sym_private] = ACTIONS(2865), + [anon_sym_protected] = ACTIONS(2865), + [anon_sym_override] = ACTIONS(2865), + [anon_sym_module] = ACTIONS(2865), + [anon_sym_any] = ACTIONS(2865), + [anon_sym_number] = ACTIONS(2865), + [anon_sym_boolean] = ACTIONS(2865), + [anon_sym_string] = ACTIONS(2865), + [anon_sym_symbol] = ACTIONS(2865), + [anon_sym_object] = ACTIONS(2865), + [anon_sym_abstract] = ACTIONS(2865), + [anon_sym_interface] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), [sym_html_comment] = ACTIONS(5), }, [907] = { - [ts_builtin_sym_end] = ACTIONS(2849), - [sym_identifier] = ACTIONS(2851), - [anon_sym_export] = ACTIONS(2851), - [anon_sym_default] = ACTIONS(2851), - [anon_sym_type] = ACTIONS(2851), - [anon_sym_namespace] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_typeof] = ACTIONS(2851), - [anon_sym_import] = ACTIONS(2851), - [anon_sym_with] = ACTIONS(2851), - [anon_sym_var] = ACTIONS(2851), - [anon_sym_let] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_else] = ACTIONS(2851), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_switch] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym_await] = ACTIONS(2851), - [anon_sym_while] = ACTIONS(2851), - [anon_sym_do] = ACTIONS(2851), - [anon_sym_try] = ACTIONS(2851), - [anon_sym_break] = ACTIONS(2851), - [anon_sym_continue] = ACTIONS(2851), - [anon_sym_debugger] = ACTIONS(2851), - [anon_sym_return] = ACTIONS(2851), - [anon_sym_throw] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2851), - [anon_sym_yield] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_async] = ACTIONS(2851), - [anon_sym_function] = ACTIONS(2851), - [anon_sym_new] = ACTIONS(2851), - [anon_sym_using] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2849), - [anon_sym_void] = ACTIONS(2851), - [anon_sym_delete] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [anon_sym_SQUOTE] = ACTIONS(2849), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2849), - [sym_number] = ACTIONS(2849), - [sym_private_property_identifier] = ACTIONS(2849), - [sym_this] = ACTIONS(2851), - [sym_super] = ACTIONS(2851), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [sym_null] = ACTIONS(2851), - [sym_undefined] = ACTIONS(2851), - [anon_sym_AT] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_readonly] = ACTIONS(2851), - [anon_sym_get] = ACTIONS(2851), - [anon_sym_set] = ACTIONS(2851), - [anon_sym_declare] = ACTIONS(2851), - [anon_sym_public] = ACTIONS(2851), - [anon_sym_private] = ACTIONS(2851), - [anon_sym_protected] = ACTIONS(2851), - [anon_sym_override] = ACTIONS(2851), - [anon_sym_module] = ACTIONS(2851), - [anon_sym_any] = ACTIONS(2851), - [anon_sym_number] = ACTIONS(2851), - [anon_sym_boolean] = ACTIONS(2851), - [anon_sym_string] = ACTIONS(2851), - [anon_sym_symbol] = ACTIONS(2851), - [anon_sym_object] = ACTIONS(2851), - [anon_sym_abstract] = ACTIONS(2851), - [anon_sym_interface] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(2867), + [sym_identifier] = ACTIONS(2869), + [anon_sym_export] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2869), + [anon_sym_type] = ACTIONS(2869), + [anon_sym_namespace] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_typeof] = ACTIONS(2869), + [anon_sym_import] = ACTIONS(2869), + [anon_sym_with] = ACTIONS(2869), + [anon_sym_var] = ACTIONS(2869), + [anon_sym_let] = ACTIONS(2869), + [anon_sym_const] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_switch] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_await] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_do] = ACTIONS(2869), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_debugger] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_throw] = ACTIONS(2869), + [anon_sym_case] = ACTIONS(2869), + [anon_sym_yield] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_async] = ACTIONS(2869), + [anon_sym_function] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_using] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_SLASH] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_void] = ACTIONS(2869), + [anon_sym_delete] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2867), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2867), + [sym_number] = ACTIONS(2867), + [sym_private_property_identifier] = ACTIONS(2867), + [sym_this] = ACTIONS(2869), + [sym_super] = ACTIONS(2869), + [sym_true] = ACTIONS(2869), + [sym_false] = ACTIONS(2869), + [sym_null] = ACTIONS(2869), + [sym_undefined] = ACTIONS(2869), + [anon_sym_AT] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2869), + [anon_sym_readonly] = ACTIONS(2869), + [anon_sym_get] = ACTIONS(2869), + [anon_sym_set] = ACTIONS(2869), + [anon_sym_declare] = ACTIONS(2869), + [anon_sym_public] = ACTIONS(2869), + [anon_sym_private] = ACTIONS(2869), + [anon_sym_protected] = ACTIONS(2869), + [anon_sym_override] = ACTIONS(2869), + [anon_sym_module] = ACTIONS(2869), + [anon_sym_any] = ACTIONS(2869), + [anon_sym_number] = ACTIONS(2869), + [anon_sym_boolean] = ACTIONS(2869), + [anon_sym_string] = ACTIONS(2869), + [anon_sym_symbol] = ACTIONS(2869), + [anon_sym_object] = ACTIONS(2869), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_interface] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2869), [sym_html_comment] = ACTIONS(5), }, [908] = { - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_export] = ACTIONS(2855), - [anon_sym_default] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_namespace] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_typeof] = ACTIONS(2855), - [anon_sym_import] = ACTIONS(2855), - [anon_sym_with] = ACTIONS(2855), - [anon_sym_var] = ACTIONS(2855), - [anon_sym_let] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_switch] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym_await] = ACTIONS(2855), - [anon_sym_while] = ACTIONS(2855), - [anon_sym_do] = ACTIONS(2855), - [anon_sym_try] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_debugger] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_throw] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_yield] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2855), - [anon_sym_function] = ACTIONS(2855), - [anon_sym_new] = ACTIONS(2855), - [anon_sym_using] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_delete] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2853), - [sym_number] = ACTIONS(2853), - [sym_private_property_identifier] = ACTIONS(2853), - [sym_this] = ACTIONS(2855), - [sym_super] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_null] = ACTIONS(2855), - [sym_undefined] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_readonly] = ACTIONS(2855), - [anon_sym_get] = ACTIONS(2855), - [anon_sym_set] = ACTIONS(2855), - [anon_sym_declare] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_protected] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_module] = ACTIONS(2855), - [anon_sym_any] = ACTIONS(2855), - [anon_sym_number] = ACTIONS(2855), - [anon_sym_boolean] = ACTIONS(2855), - [anon_sym_string] = ACTIONS(2855), - [anon_sym_symbol] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_abstract] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_export] = ACTIONS(2873), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_namespace] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_typeof] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_with] = ACTIONS(2873), + [anon_sym_var] = ACTIONS(2873), + [anon_sym_let] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_switch] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_await] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_debugger] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_throw] = ACTIONS(2873), + [anon_sym_case] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_function] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_using] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_void] = ACTIONS(2873), + [anon_sym_delete] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2871), + [sym_number] = ACTIONS(2871), + [sym_private_property_identifier] = ACTIONS(2871), + [sym_this] = ACTIONS(2873), + [sym_super] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_null] = ACTIONS(2873), + [sym_undefined] = ACTIONS(2873), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_readonly] = ACTIONS(2873), + [anon_sym_get] = ACTIONS(2873), + [anon_sym_set] = ACTIONS(2873), + [anon_sym_declare] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_private] = ACTIONS(2873), + [anon_sym_protected] = ACTIONS(2873), + [anon_sym_override] = ACTIONS(2873), + [anon_sym_module] = ACTIONS(2873), + [anon_sym_any] = ACTIONS(2873), + [anon_sym_number] = ACTIONS(2873), + [anon_sym_boolean] = ACTIONS(2873), + [anon_sym_string] = ACTIONS(2873), + [anon_sym_symbol] = ACTIONS(2873), + [anon_sym_object] = ACTIONS(2873), + [anon_sym_abstract] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), [sym_html_comment] = ACTIONS(5), }, [909] = { - [ts_builtin_sym_end] = ACTIONS(2857), - [sym_identifier] = ACTIONS(2859), - [anon_sym_export] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_type] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_typeof] = ACTIONS(2859), - [anon_sym_import] = ACTIONS(2859), - [anon_sym_with] = ACTIONS(2859), - [anon_sym_var] = ACTIONS(2859), - [anon_sym_let] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_await] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_debugger] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_yield] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_async] = ACTIONS(2859), - [anon_sym_function] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_SLASH] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2857), - [anon_sym_void] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_PLUS_PLUS] = ACTIONS(2857), - [anon_sym_DASH_DASH] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2857), - [sym_number] = ACTIONS(2857), - [sym_private_property_identifier] = ACTIONS(2857), - [sym_this] = ACTIONS(2859), - [sym_super] = ACTIONS(2859), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [sym_null] = ACTIONS(2859), - [sym_undefined] = ACTIONS(2859), - [anon_sym_AT] = ACTIONS(2857), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_readonly] = ACTIONS(2859), - [anon_sym_get] = ACTIONS(2859), - [anon_sym_set] = ACTIONS(2859), - [anon_sym_declare] = ACTIONS(2859), - [anon_sym_public] = ACTIONS(2859), - [anon_sym_private] = ACTIONS(2859), - [anon_sym_protected] = ACTIONS(2859), - [anon_sym_override] = ACTIONS(2859), - [anon_sym_module] = ACTIONS(2859), - [anon_sym_any] = ACTIONS(2859), - [anon_sym_number] = ACTIONS(2859), - [anon_sym_boolean] = ACTIONS(2859), - [anon_sym_string] = ACTIONS(2859), - [anon_sym_symbol] = ACTIONS(2859), - [anon_sym_object] = ACTIONS(2859), - [anon_sym_abstract] = ACTIONS(2859), - [anon_sym_interface] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2877), + [anon_sym_export] = ACTIONS(2877), + [anon_sym_default] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_namespace] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_typeof] = ACTIONS(2877), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_with] = ACTIONS(2877), + [anon_sym_var] = ACTIONS(2877), + [anon_sym_let] = ACTIONS(2877), + [anon_sym_const] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2875), + [anon_sym_else] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_switch] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2875), + [anon_sym_await] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2877), + [anon_sym_do] = ACTIONS(2877), + [anon_sym_try] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_debugger] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_throw] = ACTIONS(2877), + [anon_sym_case] = ACTIONS(2877), + [anon_sym_yield] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2877), + [anon_sym_async] = ACTIONS(2877), + [anon_sym_function] = ACTIONS(2877), + [anon_sym_new] = ACTIONS(2877), + [anon_sym_using] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2875), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_void] = ACTIONS(2877), + [anon_sym_delete] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2875), + [anon_sym_DQUOTE] = ACTIONS(2875), + [anon_sym_SQUOTE] = ACTIONS(2875), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2875), + [sym_number] = ACTIONS(2875), + [sym_private_property_identifier] = ACTIONS(2875), + [sym_this] = ACTIONS(2877), + [sym_super] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_null] = ACTIONS(2877), + [sym_undefined] = ACTIONS(2877), + [anon_sym_AT] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2877), + [anon_sym_readonly] = ACTIONS(2877), + [anon_sym_get] = ACTIONS(2877), + [anon_sym_set] = ACTIONS(2877), + [anon_sym_declare] = ACTIONS(2877), + [anon_sym_public] = ACTIONS(2877), + [anon_sym_private] = ACTIONS(2877), + [anon_sym_protected] = ACTIONS(2877), + [anon_sym_override] = ACTIONS(2877), + [anon_sym_module] = ACTIONS(2877), + [anon_sym_any] = ACTIONS(2877), + [anon_sym_number] = ACTIONS(2877), + [anon_sym_boolean] = ACTIONS(2877), + [anon_sym_string] = ACTIONS(2877), + [anon_sym_symbol] = ACTIONS(2877), + [anon_sym_object] = ACTIONS(2877), + [anon_sym_abstract] = ACTIONS(2877), + [anon_sym_interface] = ACTIONS(2877), + [anon_sym_enum] = ACTIONS(2877), [sym_html_comment] = ACTIONS(5), }, [910] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2863), - [anon_sym_export] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_type] = ACTIONS(2863), - [anon_sym_namespace] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_typeof] = ACTIONS(2863), - [anon_sym_import] = ACTIONS(2863), - [anon_sym_with] = ACTIONS(2863), - [anon_sym_var] = ACTIONS(2863), - [anon_sym_let] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_else] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_switch] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym_await] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_do] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_debugger] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_throw] = ACTIONS(2863), - [anon_sym_case] = ACTIONS(2863), - [anon_sym_yield] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_async] = ACTIONS(2863), - [anon_sym_function] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_SLASH] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_void] = ACTIONS(2863), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2861), - [sym_number] = ACTIONS(2861), - [sym_private_property_identifier] = ACTIONS(2861), - [sym_this] = ACTIONS(2863), - [sym_super] = ACTIONS(2863), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [sym_null] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [anon_sym_AT] = ACTIONS(2861), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_readonly] = ACTIONS(2863), - [anon_sym_get] = ACTIONS(2863), - [anon_sym_set] = ACTIONS(2863), - [anon_sym_declare] = ACTIONS(2863), - [anon_sym_public] = ACTIONS(2863), - [anon_sym_private] = ACTIONS(2863), - [anon_sym_protected] = ACTIONS(2863), - [anon_sym_override] = ACTIONS(2863), - [anon_sym_module] = ACTIONS(2863), - [anon_sym_any] = ACTIONS(2863), - [anon_sym_number] = ACTIONS(2863), - [anon_sym_boolean] = ACTIONS(2863), - [anon_sym_string] = ACTIONS(2863), - [anon_sym_symbol] = ACTIONS(2863), - [anon_sym_object] = ACTIONS(2863), - [anon_sym_abstract] = ACTIONS(2863), - [anon_sym_interface] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), + [ts_builtin_sym_end] = ACTIONS(2879), + [sym_identifier] = ACTIONS(2881), + [anon_sym_export] = ACTIONS(2881), + [anon_sym_default] = ACTIONS(2881), + [anon_sym_type] = ACTIONS(2881), + [anon_sym_namespace] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_RBRACE] = ACTIONS(2879), + [anon_sym_typeof] = ACTIONS(2881), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_with] = ACTIONS(2881), + [anon_sym_var] = ACTIONS(2881), + [anon_sym_let] = ACTIONS(2881), + [anon_sym_const] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2879), + [anon_sym_else] = ACTIONS(2881), + [anon_sym_if] = ACTIONS(2881), + [anon_sym_switch] = ACTIONS(2881), + [anon_sym_for] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2879), + [anon_sym_await] = ACTIONS(2881), + [anon_sym_while] = ACTIONS(2881), + [anon_sym_do] = ACTIONS(2881), + [anon_sym_try] = ACTIONS(2881), + [anon_sym_break] = ACTIONS(2881), + [anon_sym_continue] = ACTIONS(2881), + [anon_sym_debugger] = ACTIONS(2881), + [anon_sym_return] = ACTIONS(2881), + [anon_sym_throw] = ACTIONS(2881), + [anon_sym_case] = ACTIONS(2881), + [anon_sym_yield] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2881), + [anon_sym_async] = ACTIONS(2881), + [anon_sym_function] = ACTIONS(2881), + [anon_sym_new] = ACTIONS(2881), + [anon_sym_using] = ACTIONS(2881), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_TILDE] = ACTIONS(2879), + [anon_sym_void] = ACTIONS(2881), + [anon_sym_delete] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2879), + [anon_sym_DQUOTE] = ACTIONS(2879), + [anon_sym_SQUOTE] = ACTIONS(2879), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2879), + [sym_number] = ACTIONS(2879), + [sym_private_property_identifier] = ACTIONS(2879), + [sym_this] = ACTIONS(2881), + [sym_super] = ACTIONS(2881), + [sym_true] = ACTIONS(2881), + [sym_false] = ACTIONS(2881), + [sym_null] = ACTIONS(2881), + [sym_undefined] = ACTIONS(2881), + [anon_sym_AT] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2881), + [anon_sym_readonly] = ACTIONS(2881), + [anon_sym_get] = ACTIONS(2881), + [anon_sym_set] = ACTIONS(2881), + [anon_sym_declare] = ACTIONS(2881), + [anon_sym_public] = ACTIONS(2881), + [anon_sym_private] = ACTIONS(2881), + [anon_sym_protected] = ACTIONS(2881), + [anon_sym_override] = ACTIONS(2881), + [anon_sym_module] = ACTIONS(2881), + [anon_sym_any] = ACTIONS(2881), + [anon_sym_number] = ACTIONS(2881), + [anon_sym_boolean] = ACTIONS(2881), + [anon_sym_string] = ACTIONS(2881), + [anon_sym_symbol] = ACTIONS(2881), + [anon_sym_object] = ACTIONS(2881), + [anon_sym_abstract] = ACTIONS(2881), + [anon_sym_interface] = ACTIONS(2881), + [anon_sym_enum] = ACTIONS(2881), [sym_html_comment] = ACTIONS(5), }, [911] = { - [ts_builtin_sym_end] = ACTIONS(2865), - [sym_identifier] = ACTIONS(2867), - [anon_sym_export] = ACTIONS(2867), - [anon_sym_default] = ACTIONS(2867), - [anon_sym_type] = ACTIONS(2867), - [anon_sym_namespace] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_typeof] = ACTIONS(2867), - [anon_sym_import] = ACTIONS(2867), - [anon_sym_with] = ACTIONS(2867), - [anon_sym_var] = ACTIONS(2867), - [anon_sym_let] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_else] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_switch] = ACTIONS(2867), - [anon_sym_for] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym_await] = ACTIONS(2867), - [anon_sym_while] = ACTIONS(2867), - [anon_sym_do] = ACTIONS(2867), - [anon_sym_try] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2867), - [anon_sym_continue] = ACTIONS(2867), - [anon_sym_debugger] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_throw] = ACTIONS(2867), - [anon_sym_case] = ACTIONS(2867), - [anon_sym_yield] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2867), - [anon_sym_async] = ACTIONS(2867), - [anon_sym_function] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2867), - [anon_sym_using] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_SLASH] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_void] = ACTIONS(2867), - [anon_sym_delete] = ACTIONS(2867), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2865), - [sym_number] = ACTIONS(2865), - [sym_private_property_identifier] = ACTIONS(2865), - [sym_this] = ACTIONS(2867), - [sym_super] = ACTIONS(2867), - [sym_true] = ACTIONS(2867), - [sym_false] = ACTIONS(2867), - [sym_null] = ACTIONS(2867), - [sym_undefined] = ACTIONS(2867), - [anon_sym_AT] = ACTIONS(2865), - [anon_sym_static] = ACTIONS(2867), - [anon_sym_readonly] = ACTIONS(2867), - [anon_sym_get] = ACTIONS(2867), - [anon_sym_set] = ACTIONS(2867), - [anon_sym_declare] = ACTIONS(2867), - [anon_sym_public] = ACTIONS(2867), - [anon_sym_private] = ACTIONS(2867), - [anon_sym_protected] = ACTIONS(2867), - [anon_sym_override] = ACTIONS(2867), - [anon_sym_module] = ACTIONS(2867), - [anon_sym_any] = ACTIONS(2867), - [anon_sym_number] = ACTIONS(2867), - [anon_sym_boolean] = ACTIONS(2867), - [anon_sym_string] = ACTIONS(2867), - [anon_sym_symbol] = ACTIONS(2867), - [anon_sym_object] = ACTIONS(2867), - [anon_sym_abstract] = ACTIONS(2867), - [anon_sym_interface] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_export] = ACTIONS(2873), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_namespace] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_typeof] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_with] = ACTIONS(2873), + [anon_sym_var] = ACTIONS(2873), + [anon_sym_let] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_switch] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_await] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_debugger] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_throw] = ACTIONS(2873), + [anon_sym_case] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_function] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_using] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_void] = ACTIONS(2873), + [anon_sym_delete] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2871), + [sym_number] = ACTIONS(2871), + [sym_private_property_identifier] = ACTIONS(2871), + [sym_this] = ACTIONS(2873), + [sym_super] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_null] = ACTIONS(2873), + [sym_undefined] = ACTIONS(2873), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_readonly] = ACTIONS(2873), + [anon_sym_get] = ACTIONS(2873), + [anon_sym_set] = ACTIONS(2873), + [anon_sym_declare] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_private] = ACTIONS(2873), + [anon_sym_protected] = ACTIONS(2873), + [anon_sym_override] = ACTIONS(2873), + [anon_sym_module] = ACTIONS(2873), + [anon_sym_any] = ACTIONS(2873), + [anon_sym_number] = ACTIONS(2873), + [anon_sym_boolean] = ACTIONS(2873), + [anon_sym_string] = ACTIONS(2873), + [anon_sym_symbol] = ACTIONS(2873), + [anon_sym_object] = ACTIONS(2873), + [anon_sym_abstract] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), [sym_html_comment] = ACTIONS(5), }, [912] = { - [ts_builtin_sym_end] = ACTIONS(2869), - [sym_identifier] = ACTIONS(2871), - [anon_sym_export] = ACTIONS(2871), - [anon_sym_default] = ACTIONS(2871), - [anon_sym_type] = ACTIONS(2871), - [anon_sym_namespace] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_typeof] = ACTIONS(2871), - [anon_sym_import] = ACTIONS(2871), - [anon_sym_with] = ACTIONS(2871), - [anon_sym_var] = ACTIONS(2871), - [anon_sym_let] = ACTIONS(2871), - [anon_sym_const] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2871), - [anon_sym_if] = ACTIONS(2871), - [anon_sym_switch] = ACTIONS(2871), - [anon_sym_for] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_await] = ACTIONS(2871), - [anon_sym_while] = ACTIONS(2871), - [anon_sym_do] = ACTIONS(2871), - [anon_sym_try] = ACTIONS(2871), - [anon_sym_break] = ACTIONS(2871), - [anon_sym_continue] = ACTIONS(2871), - [anon_sym_debugger] = ACTIONS(2871), - [anon_sym_return] = ACTIONS(2871), - [anon_sym_throw] = ACTIONS(2871), - [anon_sym_case] = ACTIONS(2871), - [anon_sym_yield] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2871), - [anon_sym_async] = ACTIONS(2871), - [anon_sym_function] = ACTIONS(2871), - [anon_sym_new] = ACTIONS(2871), - [anon_sym_using] = ACTIONS(2871), - [anon_sym_PLUS] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_SLASH] = ACTIONS(2871), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_void] = ACTIONS(2871), - [anon_sym_delete] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2869), - [sym_number] = ACTIONS(2869), - [sym_private_property_identifier] = ACTIONS(2869), - [sym_this] = ACTIONS(2871), - [sym_super] = ACTIONS(2871), - [sym_true] = ACTIONS(2871), - [sym_false] = ACTIONS(2871), - [sym_null] = ACTIONS(2871), - [sym_undefined] = ACTIONS(2871), - [anon_sym_AT] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2871), - [anon_sym_readonly] = ACTIONS(2871), - [anon_sym_get] = ACTIONS(2871), - [anon_sym_set] = ACTIONS(2871), - [anon_sym_declare] = ACTIONS(2871), - [anon_sym_public] = ACTIONS(2871), - [anon_sym_private] = ACTIONS(2871), - [anon_sym_protected] = ACTIONS(2871), - [anon_sym_override] = ACTIONS(2871), - [anon_sym_module] = ACTIONS(2871), - [anon_sym_any] = ACTIONS(2871), - [anon_sym_number] = ACTIONS(2871), - [anon_sym_boolean] = ACTIONS(2871), - [anon_sym_string] = ACTIONS(2871), - [anon_sym_symbol] = ACTIONS(2871), - [anon_sym_object] = ACTIONS(2871), - [anon_sym_abstract] = ACTIONS(2871), - [anon_sym_interface] = ACTIONS(2871), - [anon_sym_enum] = ACTIONS(2871), + [ts_builtin_sym_end] = ACTIONS(2883), + [sym_identifier] = ACTIONS(2885), + [anon_sym_export] = ACTIONS(2885), + [anon_sym_default] = ACTIONS(2885), + [anon_sym_type] = ACTIONS(2885), + [anon_sym_namespace] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_RBRACE] = ACTIONS(2883), + [anon_sym_typeof] = ACTIONS(2885), + [anon_sym_import] = ACTIONS(2885), + [anon_sym_with] = ACTIONS(2885), + [anon_sym_var] = ACTIONS(2885), + [anon_sym_let] = ACTIONS(2885), + [anon_sym_const] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2883), + [anon_sym_else] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2885), + [anon_sym_switch] = ACTIONS(2885), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2883), + [anon_sym_await] = ACTIONS(2885), + [anon_sym_while] = ACTIONS(2885), + [anon_sym_do] = ACTIONS(2885), + [anon_sym_try] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(2885), + [anon_sym_continue] = ACTIONS(2885), + [anon_sym_debugger] = ACTIONS(2885), + [anon_sym_return] = ACTIONS(2885), + [anon_sym_throw] = ACTIONS(2885), + [anon_sym_case] = ACTIONS(2885), + [anon_sym_yield] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2885), + [anon_sym_async] = ACTIONS(2885), + [anon_sym_function] = ACTIONS(2885), + [anon_sym_new] = ACTIONS(2885), + [anon_sym_using] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_void] = ACTIONS(2885), + [anon_sym_delete] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [anon_sym_DQUOTE] = ACTIONS(2883), + [anon_sym_SQUOTE] = ACTIONS(2883), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2883), + [sym_number] = ACTIONS(2883), + [sym_private_property_identifier] = ACTIONS(2883), + [sym_this] = ACTIONS(2885), + [sym_super] = ACTIONS(2885), + [sym_true] = ACTIONS(2885), + [sym_false] = ACTIONS(2885), + [sym_null] = ACTIONS(2885), + [sym_undefined] = ACTIONS(2885), + [anon_sym_AT] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2885), + [anon_sym_readonly] = ACTIONS(2885), + [anon_sym_get] = ACTIONS(2885), + [anon_sym_set] = ACTIONS(2885), + [anon_sym_declare] = ACTIONS(2885), + [anon_sym_public] = ACTIONS(2885), + [anon_sym_private] = ACTIONS(2885), + [anon_sym_protected] = ACTIONS(2885), + [anon_sym_override] = ACTIONS(2885), + [anon_sym_module] = ACTIONS(2885), + [anon_sym_any] = ACTIONS(2885), + [anon_sym_number] = ACTIONS(2885), + [anon_sym_boolean] = ACTIONS(2885), + [anon_sym_string] = ACTIONS(2885), + [anon_sym_symbol] = ACTIONS(2885), + [anon_sym_object] = ACTIONS(2885), + [anon_sym_abstract] = ACTIONS(2885), + [anon_sym_interface] = ACTIONS(2885), + [anon_sym_enum] = ACTIONS(2885), [sym_html_comment] = ACTIONS(5), }, [913] = { - [ts_builtin_sym_end] = ACTIONS(2873), - [sym_identifier] = ACTIONS(2875), - [anon_sym_export] = ACTIONS(2875), - [anon_sym_default] = ACTIONS(2875), - [anon_sym_type] = ACTIONS(2875), - [anon_sym_namespace] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_typeof] = ACTIONS(2875), - [anon_sym_import] = ACTIONS(2875), - [anon_sym_with] = ACTIONS(2875), - [anon_sym_var] = ACTIONS(2875), - [anon_sym_let] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2875), - [anon_sym_switch] = ACTIONS(2875), - [anon_sym_for] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym_await] = ACTIONS(2875), - [anon_sym_while] = ACTIONS(2875), - [anon_sym_do] = ACTIONS(2875), - [anon_sym_try] = ACTIONS(2875), - [anon_sym_break] = ACTIONS(2875), - [anon_sym_continue] = ACTIONS(2875), - [anon_sym_debugger] = ACTIONS(2875), - [anon_sym_return] = ACTIONS(2875), - [anon_sym_throw] = ACTIONS(2875), - [anon_sym_case] = ACTIONS(2875), - [anon_sym_yield] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2875), - [anon_sym_async] = ACTIONS(2875), - [anon_sym_function] = ACTIONS(2875), - [anon_sym_new] = ACTIONS(2875), - [anon_sym_using] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_void] = ACTIONS(2875), - [anon_sym_delete] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [anon_sym_SQUOTE] = ACTIONS(2873), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2873), - [sym_number] = ACTIONS(2873), - [sym_private_property_identifier] = ACTIONS(2873), - [sym_this] = ACTIONS(2875), - [sym_super] = ACTIONS(2875), - [sym_true] = ACTIONS(2875), - [sym_false] = ACTIONS(2875), - [sym_null] = ACTIONS(2875), - [sym_undefined] = ACTIONS(2875), - [anon_sym_AT] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2875), - [anon_sym_readonly] = ACTIONS(2875), - [anon_sym_get] = ACTIONS(2875), - [anon_sym_set] = ACTIONS(2875), - [anon_sym_declare] = ACTIONS(2875), - [anon_sym_public] = ACTIONS(2875), - [anon_sym_private] = ACTIONS(2875), - [anon_sym_protected] = ACTIONS(2875), - [anon_sym_override] = ACTIONS(2875), - [anon_sym_module] = ACTIONS(2875), - [anon_sym_any] = ACTIONS(2875), - [anon_sym_number] = ACTIONS(2875), - [anon_sym_boolean] = ACTIONS(2875), - [anon_sym_string] = ACTIONS(2875), - [anon_sym_symbol] = ACTIONS(2875), - [anon_sym_object] = ACTIONS(2875), - [anon_sym_abstract] = ACTIONS(2875), - [anon_sym_interface] = ACTIONS(2875), - [anon_sym_enum] = ACTIONS(2875), + [ts_builtin_sym_end] = ACTIONS(2887), + [sym_identifier] = ACTIONS(2889), + [anon_sym_export] = ACTIONS(2889), + [anon_sym_default] = ACTIONS(2889), + [anon_sym_type] = ACTIONS(2889), + [anon_sym_namespace] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_RBRACE] = ACTIONS(2887), + [anon_sym_typeof] = ACTIONS(2889), + [anon_sym_import] = ACTIONS(2889), + [anon_sym_with] = ACTIONS(2889), + [anon_sym_var] = ACTIONS(2889), + [anon_sym_let] = ACTIONS(2889), + [anon_sym_const] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_else] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_switch] = ACTIONS(2889), + [anon_sym_for] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2887), + [anon_sym_await] = ACTIONS(2889), + [anon_sym_while] = ACTIONS(2889), + [anon_sym_do] = ACTIONS(2889), + [anon_sym_try] = ACTIONS(2889), + [anon_sym_break] = ACTIONS(2889), + [anon_sym_continue] = ACTIONS(2889), + [anon_sym_debugger] = ACTIONS(2889), + [anon_sym_return] = ACTIONS(2889), + [anon_sym_throw] = ACTIONS(2889), + [anon_sym_case] = ACTIONS(2889), + [anon_sym_yield] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2889), + [anon_sym_async] = ACTIONS(2889), + [anon_sym_function] = ACTIONS(2889), + [anon_sym_new] = ACTIONS(2889), + [anon_sym_using] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_void] = ACTIONS(2889), + [anon_sym_delete] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2887), + [sym_number] = ACTIONS(2887), + [sym_private_property_identifier] = ACTIONS(2887), + [sym_this] = ACTIONS(2889), + [sym_super] = ACTIONS(2889), + [sym_true] = ACTIONS(2889), + [sym_false] = ACTIONS(2889), + [sym_null] = ACTIONS(2889), + [sym_undefined] = ACTIONS(2889), + [anon_sym_AT] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2889), + [anon_sym_readonly] = ACTIONS(2889), + [anon_sym_get] = ACTIONS(2889), + [anon_sym_set] = ACTIONS(2889), + [anon_sym_declare] = ACTIONS(2889), + [anon_sym_public] = ACTIONS(2889), + [anon_sym_private] = ACTIONS(2889), + [anon_sym_protected] = ACTIONS(2889), + [anon_sym_override] = ACTIONS(2889), + [anon_sym_module] = ACTIONS(2889), + [anon_sym_any] = ACTIONS(2889), + [anon_sym_number] = ACTIONS(2889), + [anon_sym_boolean] = ACTIONS(2889), + [anon_sym_string] = ACTIONS(2889), + [anon_sym_symbol] = ACTIONS(2889), + [anon_sym_object] = ACTIONS(2889), + [anon_sym_abstract] = ACTIONS(2889), + [anon_sym_interface] = ACTIONS(2889), + [anon_sym_enum] = ACTIONS(2889), [sym_html_comment] = ACTIONS(5), }, [914] = { - [ts_builtin_sym_end] = ACTIONS(2877), - [sym_identifier] = ACTIONS(2879), - [anon_sym_export] = ACTIONS(2879), - [anon_sym_default] = ACTIONS(2879), - [anon_sym_type] = ACTIONS(2879), - [anon_sym_namespace] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_typeof] = ACTIONS(2879), - [anon_sym_import] = ACTIONS(2879), - [anon_sym_with] = ACTIONS(2879), - [anon_sym_var] = ACTIONS(2879), - [anon_sym_let] = ACTIONS(2879), - [anon_sym_const] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_else] = ACTIONS(2879), - [anon_sym_if] = ACTIONS(2879), - [anon_sym_switch] = ACTIONS(2879), - [anon_sym_for] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym_await] = ACTIONS(2879), - [anon_sym_while] = ACTIONS(2879), - [anon_sym_do] = ACTIONS(2879), - [anon_sym_try] = ACTIONS(2879), - [anon_sym_break] = ACTIONS(2879), - [anon_sym_continue] = ACTIONS(2879), - [anon_sym_debugger] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2879), - [anon_sym_throw] = ACTIONS(2879), - [anon_sym_case] = ACTIONS(2879), - [anon_sym_yield] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2879), - [anon_sym_async] = ACTIONS(2879), - [anon_sym_function] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(2879), - [anon_sym_using] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_SLASH] = ACTIONS(2879), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2877), - [anon_sym_void] = ACTIONS(2879), - [anon_sym_delete] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2877), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2877), - [sym_number] = ACTIONS(2877), - [sym_private_property_identifier] = ACTIONS(2877), - [sym_this] = ACTIONS(2879), - [sym_super] = ACTIONS(2879), - [sym_true] = ACTIONS(2879), - [sym_false] = ACTIONS(2879), - [sym_null] = ACTIONS(2879), - [sym_undefined] = ACTIONS(2879), - [anon_sym_AT] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2879), - [anon_sym_readonly] = ACTIONS(2879), - [anon_sym_get] = ACTIONS(2879), - [anon_sym_set] = ACTIONS(2879), - [anon_sym_declare] = ACTIONS(2879), - [anon_sym_public] = ACTIONS(2879), - [anon_sym_private] = ACTIONS(2879), - [anon_sym_protected] = ACTIONS(2879), - [anon_sym_override] = ACTIONS(2879), - [anon_sym_module] = ACTIONS(2879), - [anon_sym_any] = ACTIONS(2879), - [anon_sym_number] = ACTIONS(2879), - [anon_sym_boolean] = ACTIONS(2879), - [anon_sym_string] = ACTIONS(2879), - [anon_sym_symbol] = ACTIONS(2879), - [anon_sym_object] = ACTIONS(2879), - [anon_sym_abstract] = ACTIONS(2879), - [anon_sym_interface] = ACTIONS(2879), - [anon_sym_enum] = ACTIONS(2879), + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2893), + [anon_sym_export] = ACTIONS(2893), + [anon_sym_default] = ACTIONS(2893), + [anon_sym_type] = ACTIONS(2893), + [anon_sym_namespace] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym_typeof] = ACTIONS(2893), + [anon_sym_import] = ACTIONS(2893), + [anon_sym_with] = ACTIONS(2893), + [anon_sym_var] = ACTIONS(2893), + [anon_sym_let] = ACTIONS(2893), + [anon_sym_const] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_else] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_switch] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2891), + [anon_sym_await] = ACTIONS(2893), + [anon_sym_while] = ACTIONS(2893), + [anon_sym_do] = ACTIONS(2893), + [anon_sym_try] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_debugger] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_throw] = ACTIONS(2893), + [anon_sym_case] = ACTIONS(2893), + [anon_sym_yield] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2893), + [anon_sym_async] = ACTIONS(2893), + [anon_sym_function] = ACTIONS(2893), + [anon_sym_new] = ACTIONS(2893), + [anon_sym_using] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_void] = ACTIONS(2893), + [anon_sym_delete] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(2891), + [anon_sym_SQUOTE] = ACTIONS(2891), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2891), + [sym_number] = ACTIONS(2891), + [sym_private_property_identifier] = ACTIONS(2891), + [sym_this] = ACTIONS(2893), + [sym_super] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_null] = ACTIONS(2893), + [sym_undefined] = ACTIONS(2893), + [anon_sym_AT] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2893), + [anon_sym_readonly] = ACTIONS(2893), + [anon_sym_get] = ACTIONS(2893), + [anon_sym_set] = ACTIONS(2893), + [anon_sym_declare] = ACTIONS(2893), + [anon_sym_public] = ACTIONS(2893), + [anon_sym_private] = ACTIONS(2893), + [anon_sym_protected] = ACTIONS(2893), + [anon_sym_override] = ACTIONS(2893), + [anon_sym_module] = ACTIONS(2893), + [anon_sym_any] = ACTIONS(2893), + [anon_sym_number] = ACTIONS(2893), + [anon_sym_boolean] = ACTIONS(2893), + [anon_sym_string] = ACTIONS(2893), + [anon_sym_symbol] = ACTIONS(2893), + [anon_sym_object] = ACTIONS(2893), + [anon_sym_abstract] = ACTIONS(2893), + [anon_sym_interface] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(2893), [sym_html_comment] = ACTIONS(5), }, [915] = { - [ts_builtin_sym_end] = ACTIONS(2881), - [sym_identifier] = ACTIONS(2883), - [anon_sym_export] = ACTIONS(2883), - [anon_sym_default] = ACTIONS(2883), - [anon_sym_type] = ACTIONS(2883), - [anon_sym_namespace] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_typeof] = ACTIONS(2883), - [anon_sym_import] = ACTIONS(2883), - [anon_sym_with] = ACTIONS(2883), - [anon_sym_var] = ACTIONS(2883), - [anon_sym_let] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_switch] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_await] = ACTIONS(2883), - [anon_sym_while] = ACTIONS(2883), - [anon_sym_do] = ACTIONS(2883), - [anon_sym_try] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_debugger] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_throw] = ACTIONS(2883), - [anon_sym_case] = ACTIONS(2883), - [anon_sym_yield] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2883), - [anon_sym_async] = ACTIONS(2883), - [anon_sym_function] = ACTIONS(2883), - [anon_sym_new] = ACTIONS(2883), - [anon_sym_using] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2881), - [anon_sym_void] = ACTIONS(2883), - [anon_sym_delete] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2881), - [sym_number] = ACTIONS(2881), - [sym_private_property_identifier] = ACTIONS(2881), - [sym_this] = ACTIONS(2883), - [sym_super] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_null] = ACTIONS(2883), - [sym_undefined] = ACTIONS(2883), - [anon_sym_AT] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2883), - [anon_sym_readonly] = ACTIONS(2883), - [anon_sym_get] = ACTIONS(2883), - [anon_sym_set] = ACTIONS(2883), - [anon_sym_declare] = ACTIONS(2883), - [anon_sym_public] = ACTIONS(2883), - [anon_sym_private] = ACTIONS(2883), - [anon_sym_protected] = ACTIONS(2883), - [anon_sym_override] = ACTIONS(2883), - [anon_sym_module] = ACTIONS(2883), - [anon_sym_any] = ACTIONS(2883), - [anon_sym_number] = ACTIONS(2883), - [anon_sym_boolean] = ACTIONS(2883), - [anon_sym_string] = ACTIONS(2883), - [anon_sym_symbol] = ACTIONS(2883), - [anon_sym_object] = ACTIONS(2883), - [anon_sym_abstract] = ACTIONS(2883), - [anon_sym_interface] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), + [ts_builtin_sym_end] = ACTIONS(2895), + [sym_identifier] = ACTIONS(2897), + [anon_sym_export] = ACTIONS(2897), + [anon_sym_default] = ACTIONS(2897), + [anon_sym_type] = ACTIONS(2897), + [anon_sym_namespace] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym_typeof] = ACTIONS(2897), + [anon_sym_import] = ACTIONS(2897), + [anon_sym_with] = ACTIONS(2897), + [anon_sym_var] = ACTIONS(2897), + [anon_sym_let] = ACTIONS(2897), + [anon_sym_const] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2895), + [anon_sym_else] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2895), + [anon_sym_await] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_try] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_debugger] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_throw] = ACTIONS(2897), + [anon_sym_case] = ACTIONS(2897), + [anon_sym_yield] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2897), + [anon_sym_async] = ACTIONS(2897), + [anon_sym_function] = ACTIONS(2897), + [anon_sym_new] = ACTIONS(2897), + [anon_sym_using] = ACTIONS(2897), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_SLASH] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_TILDE] = ACTIONS(2895), + [anon_sym_void] = ACTIONS(2897), + [anon_sym_delete] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(2895), + [anon_sym_SQUOTE] = ACTIONS(2895), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2895), + [sym_number] = ACTIONS(2895), + [sym_private_property_identifier] = ACTIONS(2895), + [sym_this] = ACTIONS(2897), + [sym_super] = ACTIONS(2897), + [sym_true] = ACTIONS(2897), + [sym_false] = ACTIONS(2897), + [sym_null] = ACTIONS(2897), + [sym_undefined] = ACTIONS(2897), + [anon_sym_AT] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_readonly] = ACTIONS(2897), + [anon_sym_get] = ACTIONS(2897), + [anon_sym_set] = ACTIONS(2897), + [anon_sym_declare] = ACTIONS(2897), + [anon_sym_public] = ACTIONS(2897), + [anon_sym_private] = ACTIONS(2897), + [anon_sym_protected] = ACTIONS(2897), + [anon_sym_override] = ACTIONS(2897), + [anon_sym_module] = ACTIONS(2897), + [anon_sym_any] = ACTIONS(2897), + [anon_sym_number] = ACTIONS(2897), + [anon_sym_boolean] = ACTIONS(2897), + [anon_sym_string] = ACTIONS(2897), + [anon_sym_symbol] = ACTIONS(2897), + [anon_sym_object] = ACTIONS(2897), + [anon_sym_abstract] = ACTIONS(2897), + [anon_sym_interface] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), [sym_html_comment] = ACTIONS(5), }, [916] = { - [ts_builtin_sym_end] = ACTIONS(2873), - [sym_identifier] = ACTIONS(2875), - [anon_sym_export] = ACTIONS(2875), - [anon_sym_default] = ACTIONS(2875), - [anon_sym_type] = ACTIONS(2875), - [anon_sym_namespace] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_typeof] = ACTIONS(2875), - [anon_sym_import] = ACTIONS(2875), - [anon_sym_with] = ACTIONS(2875), - [anon_sym_var] = ACTIONS(2875), - [anon_sym_let] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2875), - [anon_sym_switch] = ACTIONS(2875), - [anon_sym_for] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym_await] = ACTIONS(2875), - [anon_sym_while] = ACTIONS(2875), - [anon_sym_do] = ACTIONS(2875), - [anon_sym_try] = ACTIONS(2875), - [anon_sym_break] = ACTIONS(2875), - [anon_sym_continue] = ACTIONS(2875), - [anon_sym_debugger] = ACTIONS(2875), - [anon_sym_return] = ACTIONS(2875), - [anon_sym_throw] = ACTIONS(2875), - [anon_sym_case] = ACTIONS(2875), - [anon_sym_yield] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2875), - [anon_sym_async] = ACTIONS(2875), - [anon_sym_function] = ACTIONS(2875), - [anon_sym_new] = ACTIONS(2875), - [anon_sym_using] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_void] = ACTIONS(2875), - [anon_sym_delete] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [anon_sym_SQUOTE] = ACTIONS(2873), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2873), - [sym_number] = ACTIONS(2873), - [sym_private_property_identifier] = ACTIONS(2873), - [sym_this] = ACTIONS(2875), - [sym_super] = ACTIONS(2875), - [sym_true] = ACTIONS(2875), - [sym_false] = ACTIONS(2875), - [sym_null] = ACTIONS(2875), - [sym_undefined] = ACTIONS(2875), - [anon_sym_AT] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2875), - [anon_sym_readonly] = ACTIONS(2875), - [anon_sym_get] = ACTIONS(2875), - [anon_sym_set] = ACTIONS(2875), - [anon_sym_declare] = ACTIONS(2875), - [anon_sym_public] = ACTIONS(2875), - [anon_sym_private] = ACTIONS(2875), - [anon_sym_protected] = ACTIONS(2875), - [anon_sym_override] = ACTIONS(2875), - [anon_sym_module] = ACTIONS(2875), - [anon_sym_any] = ACTIONS(2875), - [anon_sym_number] = ACTIONS(2875), - [anon_sym_boolean] = ACTIONS(2875), - [anon_sym_string] = ACTIONS(2875), - [anon_sym_symbol] = ACTIONS(2875), - [anon_sym_object] = ACTIONS(2875), - [anon_sym_abstract] = ACTIONS(2875), - [anon_sym_interface] = ACTIONS(2875), - [anon_sym_enum] = ACTIONS(2875), + [ts_builtin_sym_end] = ACTIONS(2899), + [sym_identifier] = ACTIONS(2901), + [anon_sym_export] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_type] = ACTIONS(2901), + [anon_sym_namespace] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_typeof] = ACTIONS(2901), + [anon_sym_import] = ACTIONS(2901), + [anon_sym_with] = ACTIONS(2901), + [anon_sym_var] = ACTIONS(2901), + [anon_sym_let] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_await] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_debugger] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_yield] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_async] = ACTIONS(2901), + [anon_sym_function] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_using] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_void] = ACTIONS(2901), + [anon_sym_delete] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [anon_sym_SQUOTE] = ACTIONS(2899), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2899), + [sym_number] = ACTIONS(2899), + [sym_private_property_identifier] = ACTIONS(2899), + [sym_this] = ACTIONS(2901), + [sym_super] = ACTIONS(2901), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_null] = ACTIONS(2901), + [sym_undefined] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_readonly] = ACTIONS(2901), + [anon_sym_get] = ACTIONS(2901), + [anon_sym_set] = ACTIONS(2901), + [anon_sym_declare] = ACTIONS(2901), + [anon_sym_public] = ACTIONS(2901), + [anon_sym_private] = ACTIONS(2901), + [anon_sym_protected] = ACTIONS(2901), + [anon_sym_override] = ACTIONS(2901), + [anon_sym_module] = ACTIONS(2901), + [anon_sym_any] = ACTIONS(2901), + [anon_sym_number] = ACTIONS(2901), + [anon_sym_boolean] = ACTIONS(2901), + [anon_sym_string] = ACTIONS(2901), + [anon_sym_symbol] = ACTIONS(2901), + [anon_sym_object] = ACTIONS(2901), + [anon_sym_abstract] = ACTIONS(2901), + [anon_sym_interface] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), [sym_html_comment] = ACTIONS(5), }, [917] = { - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_export] = ACTIONS(2887), - [anon_sym_default] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_namespace] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_typeof] = ACTIONS(2887), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_with] = ACTIONS(2887), - [anon_sym_var] = ACTIONS(2887), - [anon_sym_let] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_switch] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_await] = ACTIONS(2887), - [anon_sym_while] = ACTIONS(2887), - [anon_sym_do] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_debugger] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_throw] = ACTIONS(2887), - [anon_sym_case] = ACTIONS(2887), - [anon_sym_yield] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2887), - [anon_sym_async] = ACTIONS(2887), - [anon_sym_function] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2887), - [anon_sym_using] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_void] = ACTIONS(2887), - [anon_sym_delete] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2885), - [sym_number] = ACTIONS(2885), - [sym_private_property_identifier] = ACTIONS(2885), - [sym_this] = ACTIONS(2887), - [sym_super] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_null] = ACTIONS(2887), - [sym_undefined] = ACTIONS(2887), - [anon_sym_AT] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2887), - [anon_sym_readonly] = ACTIONS(2887), - [anon_sym_get] = ACTIONS(2887), - [anon_sym_set] = ACTIONS(2887), - [anon_sym_declare] = ACTIONS(2887), - [anon_sym_public] = ACTIONS(2887), - [anon_sym_private] = ACTIONS(2887), - [anon_sym_protected] = ACTIONS(2887), - [anon_sym_override] = ACTIONS(2887), - [anon_sym_module] = ACTIONS(2887), - [anon_sym_any] = ACTIONS(2887), - [anon_sym_number] = ACTIONS(2887), - [anon_sym_boolean] = ACTIONS(2887), - [anon_sym_string] = ACTIONS(2887), - [anon_sym_symbol] = ACTIONS(2887), - [anon_sym_object] = ACTIONS(2887), - [anon_sym_abstract] = ACTIONS(2887), - [anon_sym_interface] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), + [ts_builtin_sym_end] = ACTIONS(2903), + [sym_identifier] = ACTIONS(2905), + [anon_sym_export] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_type] = ACTIONS(2905), + [anon_sym_namespace] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_typeof] = ACTIONS(2905), + [anon_sym_import] = ACTIONS(2905), + [anon_sym_with] = ACTIONS(2905), + [anon_sym_var] = ACTIONS(2905), + [anon_sym_let] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym_await] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_debugger] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_yield] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_async] = ACTIONS(2905), + [anon_sym_function] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_SLASH] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_void] = ACTIONS(2905), + [anon_sym_delete] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [anon_sym_SQUOTE] = ACTIONS(2903), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2903), + [sym_number] = ACTIONS(2903), + [sym_private_property_identifier] = ACTIONS(2903), + [sym_this] = ACTIONS(2905), + [sym_super] = ACTIONS(2905), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_null] = ACTIONS(2905), + [sym_undefined] = ACTIONS(2905), + [anon_sym_AT] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_readonly] = ACTIONS(2905), + [anon_sym_get] = ACTIONS(2905), + [anon_sym_set] = ACTIONS(2905), + [anon_sym_declare] = ACTIONS(2905), + [anon_sym_public] = ACTIONS(2905), + [anon_sym_private] = ACTIONS(2905), + [anon_sym_protected] = ACTIONS(2905), + [anon_sym_override] = ACTIONS(2905), + [anon_sym_module] = ACTIONS(2905), + [anon_sym_any] = ACTIONS(2905), + [anon_sym_number] = ACTIONS(2905), + [anon_sym_boolean] = ACTIONS(2905), + [anon_sym_string] = ACTIONS(2905), + [anon_sym_symbol] = ACTIONS(2905), + [anon_sym_object] = ACTIONS(2905), + [anon_sym_abstract] = ACTIONS(2905), + [anon_sym_interface] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), [sym_html_comment] = ACTIONS(5), }, [918] = { - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_export] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_namespace] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_typeof] = ACTIONS(2891), - [anon_sym_import] = ACTIONS(2891), - [anon_sym_with] = ACTIONS(2891), - [anon_sym_var] = ACTIONS(2891), - [anon_sym_let] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_switch] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym_await] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_debugger] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_case] = ACTIONS(2891), - [anon_sym_yield] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_async] = ACTIONS(2891), - [anon_sym_function] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_using] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_void] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2889), - [sym_number] = ACTIONS(2889), - [sym_private_property_identifier] = ACTIONS(2889), - [sym_this] = ACTIONS(2891), - [sym_super] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_null] = ACTIONS(2891), - [sym_undefined] = ACTIONS(2891), - [anon_sym_AT] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_readonly] = ACTIONS(2891), - [anon_sym_get] = ACTIONS(2891), - [anon_sym_set] = ACTIONS(2891), - [anon_sym_declare] = ACTIONS(2891), - [anon_sym_public] = ACTIONS(2891), - [anon_sym_private] = ACTIONS(2891), - [anon_sym_protected] = ACTIONS(2891), - [anon_sym_override] = ACTIONS(2891), - [anon_sym_module] = ACTIONS(2891), - [anon_sym_any] = ACTIONS(2891), - [anon_sym_number] = ACTIONS(2891), - [anon_sym_boolean] = ACTIONS(2891), - [anon_sym_string] = ACTIONS(2891), - [anon_sym_symbol] = ACTIONS(2891), - [anon_sym_object] = ACTIONS(2891), - [anon_sym_abstract] = ACTIONS(2891), - [anon_sym_interface] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), + [ts_builtin_sym_end] = ACTIONS(2899), + [sym_identifier] = ACTIONS(2901), + [anon_sym_export] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_type] = ACTIONS(2901), + [anon_sym_namespace] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_typeof] = ACTIONS(2901), + [anon_sym_import] = ACTIONS(2901), + [anon_sym_with] = ACTIONS(2901), + [anon_sym_var] = ACTIONS(2901), + [anon_sym_let] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_await] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_debugger] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_yield] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_async] = ACTIONS(2901), + [anon_sym_function] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_using] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_void] = ACTIONS(2901), + [anon_sym_delete] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2899), + [anon_sym_SQUOTE] = ACTIONS(2899), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2899), + [sym_number] = ACTIONS(2899), + [sym_private_property_identifier] = ACTIONS(2899), + [sym_this] = ACTIONS(2901), + [sym_super] = ACTIONS(2901), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_null] = ACTIONS(2901), + [sym_undefined] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_readonly] = ACTIONS(2901), + [anon_sym_get] = ACTIONS(2901), + [anon_sym_set] = ACTIONS(2901), + [anon_sym_declare] = ACTIONS(2901), + [anon_sym_public] = ACTIONS(2901), + [anon_sym_private] = ACTIONS(2901), + [anon_sym_protected] = ACTIONS(2901), + [anon_sym_override] = ACTIONS(2901), + [anon_sym_module] = ACTIONS(2901), + [anon_sym_any] = ACTIONS(2901), + [anon_sym_number] = ACTIONS(2901), + [anon_sym_boolean] = ACTIONS(2901), + [anon_sym_string] = ACTIONS(2901), + [anon_sym_symbol] = ACTIONS(2901), + [anon_sym_object] = ACTIONS(2901), + [anon_sym_abstract] = ACTIONS(2901), + [anon_sym_interface] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), [sym_html_comment] = ACTIONS(5), }, [919] = { - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_export] = ACTIONS(2895), - [anon_sym_default] = ACTIONS(2895), - [anon_sym_type] = ACTIONS(2895), - [anon_sym_namespace] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_typeof] = ACTIONS(2895), - [anon_sym_import] = ACTIONS(2895), - [anon_sym_with] = ACTIONS(2895), - [anon_sym_var] = ACTIONS(2895), - [anon_sym_let] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_switch] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym_await] = ACTIONS(2895), - [anon_sym_while] = ACTIONS(2895), - [anon_sym_do] = ACTIONS(2895), - [anon_sym_try] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_debugger] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_throw] = ACTIONS(2895), - [anon_sym_case] = ACTIONS(2895), - [anon_sym_yield] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2895), - [anon_sym_async] = ACTIONS(2895), - [anon_sym_function] = ACTIONS(2895), - [anon_sym_new] = ACTIONS(2895), - [anon_sym_using] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_void] = ACTIONS(2895), - [anon_sym_delete] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2893), - [sym_number] = ACTIONS(2893), - [sym_private_property_identifier] = ACTIONS(2893), - [sym_this] = ACTIONS(2895), - [sym_super] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_null] = ACTIONS(2895), - [sym_undefined] = ACTIONS(2895), - [anon_sym_AT] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2895), - [anon_sym_readonly] = ACTIONS(2895), - [anon_sym_get] = ACTIONS(2895), - [anon_sym_set] = ACTIONS(2895), - [anon_sym_declare] = ACTIONS(2895), - [anon_sym_public] = ACTIONS(2895), - [anon_sym_private] = ACTIONS(2895), - [anon_sym_protected] = ACTIONS(2895), - [anon_sym_override] = ACTIONS(2895), - [anon_sym_module] = ACTIONS(2895), - [anon_sym_any] = ACTIONS(2895), - [anon_sym_number] = ACTIONS(2895), - [anon_sym_boolean] = ACTIONS(2895), - [anon_sym_string] = ACTIONS(2895), - [anon_sym_symbol] = ACTIONS(2895), - [anon_sym_object] = ACTIONS(2895), - [anon_sym_abstract] = ACTIONS(2895), - [anon_sym_interface] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2909), + [anon_sym_export] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2909), + [anon_sym_type] = ACTIONS(2909), + [anon_sym_namespace] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_RBRACE] = ACTIONS(2907), + [anon_sym_typeof] = ACTIONS(2909), + [anon_sym_import] = ACTIONS(2909), + [anon_sym_with] = ACTIONS(2909), + [anon_sym_var] = ACTIONS(2909), + [anon_sym_let] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_switch] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_await] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_do] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_debugger] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_yield] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_async] = ACTIONS(2909), + [anon_sym_function] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_using] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_SLASH] = ACTIONS(2909), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_void] = ACTIONS(2909), + [anon_sym_delete] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2907), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2907), + [sym_number] = ACTIONS(2907), + [sym_private_property_identifier] = ACTIONS(2907), + [sym_this] = ACTIONS(2909), + [sym_super] = ACTIONS(2909), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [sym_null] = ACTIONS(2909), + [sym_undefined] = ACTIONS(2909), + [anon_sym_AT] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_readonly] = ACTIONS(2909), + [anon_sym_get] = ACTIONS(2909), + [anon_sym_set] = ACTIONS(2909), + [anon_sym_declare] = ACTIONS(2909), + [anon_sym_public] = ACTIONS(2909), + [anon_sym_private] = ACTIONS(2909), + [anon_sym_protected] = ACTIONS(2909), + [anon_sym_override] = ACTIONS(2909), + [anon_sym_module] = ACTIONS(2909), + [anon_sym_any] = ACTIONS(2909), + [anon_sym_number] = ACTIONS(2909), + [anon_sym_boolean] = ACTIONS(2909), + [anon_sym_string] = ACTIONS(2909), + [anon_sym_symbol] = ACTIONS(2909), + [anon_sym_object] = ACTIONS(2909), + [anon_sym_abstract] = ACTIONS(2909), + [anon_sym_interface] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), [sym_html_comment] = ACTIONS(5), }, [920] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_export] = ACTIONS(2899), - [anon_sym_default] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_namespace] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_typeof] = ACTIONS(2899), - [anon_sym_import] = ACTIONS(2899), - [anon_sym_with] = ACTIONS(2899), - [anon_sym_var] = ACTIONS(2899), - [anon_sym_let] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_switch] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_await] = ACTIONS(2899), - [anon_sym_while] = ACTIONS(2899), - [anon_sym_do] = ACTIONS(2899), - [anon_sym_try] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_debugger] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_throw] = ACTIONS(2899), - [anon_sym_case] = ACTIONS(2899), - [anon_sym_yield] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2899), - [anon_sym_async] = ACTIONS(2899), - [anon_sym_function] = ACTIONS(2899), - [anon_sym_new] = ACTIONS(2899), - [anon_sym_using] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_TILDE] = ACTIONS(2897), - [anon_sym_void] = ACTIONS(2899), - [anon_sym_delete] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [anon_sym_SQUOTE] = ACTIONS(2897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2897), - [sym_number] = ACTIONS(2897), - [sym_private_property_identifier] = ACTIONS(2897), - [sym_this] = ACTIONS(2899), - [sym_super] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_null] = ACTIONS(2899), - [sym_undefined] = ACTIONS(2899), - [anon_sym_AT] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2899), - [anon_sym_readonly] = ACTIONS(2899), - [anon_sym_get] = ACTIONS(2899), - [anon_sym_set] = ACTIONS(2899), - [anon_sym_declare] = ACTIONS(2899), - [anon_sym_public] = ACTIONS(2899), - [anon_sym_private] = ACTIONS(2899), - [anon_sym_protected] = ACTIONS(2899), - [anon_sym_override] = ACTIONS(2899), - [anon_sym_module] = ACTIONS(2899), - [anon_sym_any] = ACTIONS(2899), - [anon_sym_number] = ACTIONS(2899), - [anon_sym_boolean] = ACTIONS(2899), - [anon_sym_string] = ACTIONS(2899), - [anon_sym_symbol] = ACTIONS(2899), - [anon_sym_object] = ACTIONS(2899), - [anon_sym_abstract] = ACTIONS(2899), - [anon_sym_interface] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2913), + [anon_sym_export] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_type] = ACTIONS(2913), + [anon_sym_namespace] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_typeof] = ACTIONS(2913), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_with] = ACTIONS(2913), + [anon_sym_var] = ACTIONS(2913), + [anon_sym_let] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym_await] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_debugger] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_async] = ACTIONS(2913), + [anon_sym_function] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_void] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(2911), + [anon_sym_SQUOTE] = ACTIONS(2911), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2911), + [sym_number] = ACTIONS(2911), + [sym_private_property_identifier] = ACTIONS(2911), + [sym_this] = ACTIONS(2913), + [sym_super] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_null] = ACTIONS(2913), + [sym_undefined] = ACTIONS(2913), + [anon_sym_AT] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_readonly] = ACTIONS(2913), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_declare] = ACTIONS(2913), + [anon_sym_public] = ACTIONS(2913), + [anon_sym_private] = ACTIONS(2913), + [anon_sym_protected] = ACTIONS(2913), + [anon_sym_override] = ACTIONS(2913), + [anon_sym_module] = ACTIONS(2913), + [anon_sym_any] = ACTIONS(2913), + [anon_sym_number] = ACTIONS(2913), + [anon_sym_boolean] = ACTIONS(2913), + [anon_sym_string] = ACTIONS(2913), + [anon_sym_symbol] = ACTIONS(2913), + [anon_sym_object] = ACTIONS(2913), + [anon_sym_abstract] = ACTIONS(2913), + [anon_sym_interface] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), [sym_html_comment] = ACTIONS(5), }, [921] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_export] = ACTIONS(2903), - [anon_sym_default] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_namespace] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_typeof] = ACTIONS(2903), - [anon_sym_import] = ACTIONS(2903), - [anon_sym_with] = ACTIONS(2903), - [anon_sym_var] = ACTIONS(2903), - [anon_sym_let] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2901), - [anon_sym_await] = ACTIONS(2903), - [anon_sym_while] = ACTIONS(2903), - [anon_sym_do] = ACTIONS(2903), - [anon_sym_try] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_debugger] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_throw] = ACTIONS(2903), - [anon_sym_case] = ACTIONS(2903), - [anon_sym_yield] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_async] = ACTIONS(2903), - [anon_sym_function] = ACTIONS(2903), - [anon_sym_new] = ACTIONS(2903), - [anon_sym_using] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2901), - [anon_sym_void] = ACTIONS(2903), - [anon_sym_delete] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2901), - [sym_number] = ACTIONS(2901), - [sym_private_property_identifier] = ACTIONS(2901), - [sym_this] = ACTIONS(2903), - [sym_super] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_null] = ACTIONS(2903), - [sym_undefined] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2903), - [anon_sym_readonly] = ACTIONS(2903), - [anon_sym_get] = ACTIONS(2903), - [anon_sym_set] = ACTIONS(2903), - [anon_sym_declare] = ACTIONS(2903), - [anon_sym_public] = ACTIONS(2903), - [anon_sym_private] = ACTIONS(2903), - [anon_sym_protected] = ACTIONS(2903), - [anon_sym_override] = ACTIONS(2903), - [anon_sym_module] = ACTIONS(2903), - [anon_sym_any] = ACTIONS(2903), - [anon_sym_number] = ACTIONS(2903), - [anon_sym_boolean] = ACTIONS(2903), - [anon_sym_string] = ACTIONS(2903), - [anon_sym_symbol] = ACTIONS(2903), - [anon_sym_object] = ACTIONS(2903), - [anon_sym_abstract] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), + [ts_builtin_sym_end] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2917), + [anon_sym_export] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_type] = ACTIONS(2917), + [anon_sym_namespace] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_typeof] = ACTIONS(2917), + [anon_sym_import] = ACTIONS(2917), + [anon_sym_with] = ACTIONS(2917), + [anon_sym_var] = ACTIONS(2917), + [anon_sym_let] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_else] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_await] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_try] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_debugger] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_throw] = ACTIONS(2917), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_yield] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_function] = ACTIONS(2917), + [anon_sym_new] = ACTIONS(2917), + [anon_sym_using] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_void] = ACTIONS(2917), + [anon_sym_delete] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2915), + [anon_sym_SQUOTE] = ACTIONS(2915), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2915), + [sym_number] = ACTIONS(2915), + [sym_private_property_identifier] = ACTIONS(2915), + [sym_this] = ACTIONS(2917), + [sym_super] = ACTIONS(2917), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_null] = ACTIONS(2917), + [sym_undefined] = ACTIONS(2917), + [anon_sym_AT] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_readonly] = ACTIONS(2917), + [anon_sym_get] = ACTIONS(2917), + [anon_sym_set] = ACTIONS(2917), + [anon_sym_declare] = ACTIONS(2917), + [anon_sym_public] = ACTIONS(2917), + [anon_sym_private] = ACTIONS(2917), + [anon_sym_protected] = ACTIONS(2917), + [anon_sym_override] = ACTIONS(2917), + [anon_sym_module] = ACTIONS(2917), + [anon_sym_any] = ACTIONS(2917), + [anon_sym_number] = ACTIONS(2917), + [anon_sym_boolean] = ACTIONS(2917), + [anon_sym_string] = ACTIONS(2917), + [anon_sym_symbol] = ACTIONS(2917), + [anon_sym_object] = ACTIONS(2917), + [anon_sym_abstract] = ACTIONS(2917), + [anon_sym_interface] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), [sym_html_comment] = ACTIONS(5), }, [922] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_export] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_namespace] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_typeof] = ACTIONS(2907), - [anon_sym_import] = ACTIONS(2907), - [anon_sym_with] = ACTIONS(2907), - [anon_sym_var] = ACTIONS(2907), - [anon_sym_let] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_switch] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_await] = ACTIONS(2907), - [anon_sym_while] = ACTIONS(2907), - [anon_sym_do] = ACTIONS(2907), - [anon_sym_try] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_debugger] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_throw] = ACTIONS(2907), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_yield] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2907), - [anon_sym_async] = ACTIONS(2907), - [anon_sym_function] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2907), - [anon_sym_using] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_void] = ACTIONS(2907), - [anon_sym_delete] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2905), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2905), - [sym_number] = ACTIONS(2905), - [sym_private_property_identifier] = ACTIONS(2905), - [sym_this] = ACTIONS(2907), - [sym_super] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_null] = ACTIONS(2907), - [sym_undefined] = ACTIONS(2907), - [anon_sym_AT] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2907), - [anon_sym_readonly] = ACTIONS(2907), - [anon_sym_get] = ACTIONS(2907), - [anon_sym_set] = ACTIONS(2907), - [anon_sym_declare] = ACTIONS(2907), - [anon_sym_public] = ACTIONS(2907), - [anon_sym_private] = ACTIONS(2907), - [anon_sym_protected] = ACTIONS(2907), - [anon_sym_override] = ACTIONS(2907), - [anon_sym_module] = ACTIONS(2907), - [anon_sym_any] = ACTIONS(2907), - [anon_sym_number] = ACTIONS(2907), - [anon_sym_boolean] = ACTIONS(2907), - [anon_sym_string] = ACTIONS(2907), - [anon_sym_symbol] = ACTIONS(2907), - [anon_sym_object] = ACTIONS(2907), - [anon_sym_abstract] = ACTIONS(2907), - [anon_sym_interface] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2913), + [anon_sym_export] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_type] = ACTIONS(2913), + [anon_sym_namespace] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_typeof] = ACTIONS(2913), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_with] = ACTIONS(2913), + [anon_sym_var] = ACTIONS(2913), + [anon_sym_let] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym_await] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_debugger] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_async] = ACTIONS(2913), + [anon_sym_function] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_void] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(2911), + [anon_sym_SQUOTE] = ACTIONS(2911), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2911), + [sym_number] = ACTIONS(2911), + [sym_private_property_identifier] = ACTIONS(2911), + [sym_this] = ACTIONS(2913), + [sym_super] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_null] = ACTIONS(2913), + [sym_undefined] = ACTIONS(2913), + [anon_sym_AT] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_readonly] = ACTIONS(2913), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_declare] = ACTIONS(2913), + [anon_sym_public] = ACTIONS(2913), + [anon_sym_private] = ACTIONS(2913), + [anon_sym_protected] = ACTIONS(2913), + [anon_sym_override] = ACTIONS(2913), + [anon_sym_module] = ACTIONS(2913), + [anon_sym_any] = ACTIONS(2913), + [anon_sym_number] = ACTIONS(2913), + [anon_sym_boolean] = ACTIONS(2913), + [anon_sym_string] = ACTIONS(2913), + [anon_sym_symbol] = ACTIONS(2913), + [anon_sym_object] = ACTIONS(2913), + [anon_sym_abstract] = ACTIONS(2913), + [anon_sym_interface] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), [sym_html_comment] = ACTIONS(5), }, [923] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_export] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_namespace] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_typeof] = ACTIONS(2911), - [anon_sym_import] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [anon_sym_var] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_await] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_debugger] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_throw] = ACTIONS(2911), - [anon_sym_case] = ACTIONS(2911), - [anon_sym_yield] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_async] = ACTIONS(2911), - [anon_sym_function] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_using] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_void] = ACTIONS(2911), - [anon_sym_delete] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2909), - [sym_number] = ACTIONS(2909), - [sym_private_property_identifier] = ACTIONS(2909), - [sym_this] = ACTIONS(2911), - [sym_super] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_null] = ACTIONS(2911), - [sym_undefined] = ACTIONS(2911), - [anon_sym_AT] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_readonly] = ACTIONS(2911), - [anon_sym_get] = ACTIONS(2911), - [anon_sym_set] = ACTIONS(2911), - [anon_sym_declare] = ACTIONS(2911), - [anon_sym_public] = ACTIONS(2911), - [anon_sym_private] = ACTIONS(2911), - [anon_sym_protected] = ACTIONS(2911), - [anon_sym_override] = ACTIONS(2911), - [anon_sym_module] = ACTIONS(2911), - [anon_sym_any] = ACTIONS(2911), - [anon_sym_number] = ACTIONS(2911), - [anon_sym_boolean] = ACTIONS(2911), - [anon_sym_string] = ACTIONS(2911), - [anon_sym_symbol] = ACTIONS(2911), - [anon_sym_object] = ACTIONS(2911), - [anon_sym_abstract] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2913), + [anon_sym_export] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_type] = ACTIONS(2913), + [anon_sym_namespace] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_typeof] = ACTIONS(2913), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_with] = ACTIONS(2913), + [anon_sym_var] = ACTIONS(2913), + [anon_sym_let] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym_await] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_debugger] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_yield] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_async] = ACTIONS(2913), + [anon_sym_function] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_void] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(2911), + [anon_sym_SQUOTE] = ACTIONS(2911), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2911), + [sym_number] = ACTIONS(2911), + [sym_private_property_identifier] = ACTIONS(2911), + [sym_this] = ACTIONS(2913), + [sym_super] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_null] = ACTIONS(2913), + [sym_undefined] = ACTIONS(2913), + [anon_sym_AT] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_readonly] = ACTIONS(2913), + [anon_sym_get] = ACTIONS(2913), + [anon_sym_set] = ACTIONS(2913), + [anon_sym_declare] = ACTIONS(2913), + [anon_sym_public] = ACTIONS(2913), + [anon_sym_private] = ACTIONS(2913), + [anon_sym_protected] = ACTIONS(2913), + [anon_sym_override] = ACTIONS(2913), + [anon_sym_module] = ACTIONS(2913), + [anon_sym_any] = ACTIONS(2913), + [anon_sym_number] = ACTIONS(2913), + [anon_sym_boolean] = ACTIONS(2913), + [anon_sym_string] = ACTIONS(2913), + [anon_sym_symbol] = ACTIONS(2913), + [anon_sym_object] = ACTIONS(2913), + [anon_sym_abstract] = ACTIONS(2913), + [anon_sym_interface] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), [sym_html_comment] = ACTIONS(5), }, [924] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_typeof] = ACTIONS(2915), - [anon_sym_import] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), - [anon_sym_var] = ACTIONS(2915), - [anon_sym_let] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_await] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_debugger] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_async] = ACTIONS(2915), - [anon_sym_function] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2913), - [sym_number] = ACTIONS(2913), - [sym_private_property_identifier] = ACTIONS(2913), - [sym_this] = ACTIONS(2915), - [sym_super] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_null] = ACTIONS(2915), - [sym_undefined] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_readonly] = ACTIONS(2915), - [anon_sym_get] = ACTIONS(2915), - [anon_sym_set] = ACTIONS(2915), - [anon_sym_declare] = ACTIONS(2915), - [anon_sym_public] = ACTIONS(2915), - [anon_sym_private] = ACTIONS(2915), - [anon_sym_protected] = ACTIONS(2915), - [anon_sym_override] = ACTIONS(2915), - [anon_sym_module] = ACTIONS(2915), - [anon_sym_any] = ACTIONS(2915), - [anon_sym_number] = ACTIONS(2915), - [anon_sym_boolean] = ACTIONS(2915), - [anon_sym_string] = ACTIONS(2915), - [anon_sym_symbol] = ACTIONS(2915), - [anon_sym_object] = ACTIONS(2915), - [anon_sym_abstract] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), + [ts_builtin_sym_end] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2921), + [anon_sym_export] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_type] = ACTIONS(2921), + [anon_sym_namespace] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_typeof] = ACTIONS(2921), + [anon_sym_import] = ACTIONS(2921), + [anon_sym_with] = ACTIONS(2921), + [anon_sym_var] = ACTIONS(2921), + [anon_sym_let] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_else] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_debugger] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_throw] = ACTIONS(2921), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_yield] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2921), + [anon_sym_async] = ACTIONS(2921), + [anon_sym_function] = ACTIONS(2921), + [anon_sym_new] = ACTIONS(2921), + [anon_sym_using] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_void] = ACTIONS(2921), + [anon_sym_delete] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2919), + [sym_number] = ACTIONS(2919), + [sym_private_property_identifier] = ACTIONS(2919), + [sym_this] = ACTIONS(2921), + [sym_super] = ACTIONS(2921), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [sym_null] = ACTIONS(2921), + [sym_undefined] = ACTIONS(2921), + [anon_sym_AT] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_readonly] = ACTIONS(2921), + [anon_sym_get] = ACTIONS(2921), + [anon_sym_set] = ACTIONS(2921), + [anon_sym_declare] = ACTIONS(2921), + [anon_sym_public] = ACTIONS(2921), + [anon_sym_private] = ACTIONS(2921), + [anon_sym_protected] = ACTIONS(2921), + [anon_sym_override] = ACTIONS(2921), + [anon_sym_module] = ACTIONS(2921), + [anon_sym_any] = ACTIONS(2921), + [anon_sym_number] = ACTIONS(2921), + [anon_sym_boolean] = ACTIONS(2921), + [anon_sym_string] = ACTIONS(2921), + [anon_sym_symbol] = ACTIONS(2921), + [anon_sym_object] = ACTIONS(2921), + [anon_sym_abstract] = ACTIONS(2921), + [anon_sym_interface] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), [sym_html_comment] = ACTIONS(5), }, [925] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_export] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_namespace] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_typeof] = ACTIONS(2919), - [anon_sym_import] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2919), - [anon_sym_var] = ACTIONS(2919), - [anon_sym_let] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_switch] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_await] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_debugger] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_throw] = ACTIONS(2919), - [anon_sym_case] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_async] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_using] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2919), - [anon_sym_delete] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2917), - [sym_number] = ACTIONS(2917), - [sym_private_property_identifier] = ACTIONS(2917), - [sym_this] = ACTIONS(2919), - [sym_super] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_null] = ACTIONS(2919), - [sym_undefined] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_get] = ACTIONS(2919), - [anon_sym_set] = ACTIONS(2919), - [anon_sym_declare] = ACTIONS(2919), - [anon_sym_public] = ACTIONS(2919), - [anon_sym_private] = ACTIONS(2919), - [anon_sym_protected] = ACTIONS(2919), - [anon_sym_override] = ACTIONS(2919), - [anon_sym_module] = ACTIONS(2919), - [anon_sym_any] = ACTIONS(2919), - [anon_sym_number] = ACTIONS(2919), - [anon_sym_boolean] = ACTIONS(2919), - [anon_sym_string] = ACTIONS(2919), - [anon_sym_symbol] = ACTIONS(2919), - [anon_sym_object] = ACTIONS(2919), - [anon_sym_abstract] = ACTIONS(2919), - [anon_sym_interface] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_identifier] = ACTIONS(2925), + [anon_sym_export] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_type] = ACTIONS(2925), + [anon_sym_namespace] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_typeof] = ACTIONS(2925), + [anon_sym_import] = ACTIONS(2925), + [anon_sym_with] = ACTIONS(2925), + [anon_sym_var] = ACTIONS(2925), + [anon_sym_let] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_await] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_debugger] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_yield] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_async] = ACTIONS(2925), + [anon_sym_function] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_using] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_void] = ACTIONS(2925), + [anon_sym_delete] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2923), + [sym_number] = ACTIONS(2923), + [sym_private_property_identifier] = ACTIONS(2923), + [sym_this] = ACTIONS(2925), + [sym_super] = ACTIONS(2925), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [sym_null] = ACTIONS(2925), + [sym_undefined] = ACTIONS(2925), + [anon_sym_AT] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_readonly] = ACTIONS(2925), + [anon_sym_get] = ACTIONS(2925), + [anon_sym_set] = ACTIONS(2925), + [anon_sym_declare] = ACTIONS(2925), + [anon_sym_public] = ACTIONS(2925), + [anon_sym_private] = ACTIONS(2925), + [anon_sym_protected] = ACTIONS(2925), + [anon_sym_override] = ACTIONS(2925), + [anon_sym_module] = ACTIONS(2925), + [anon_sym_any] = ACTIONS(2925), + [anon_sym_number] = ACTIONS(2925), + [anon_sym_boolean] = ACTIONS(2925), + [anon_sym_string] = ACTIONS(2925), + [anon_sym_symbol] = ACTIONS(2925), + [anon_sym_object] = ACTIONS(2925), + [anon_sym_abstract] = ACTIONS(2925), + [anon_sym_interface] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), [sym_html_comment] = ACTIONS(5), }, [926] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_export] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_namespace] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_typeof] = ACTIONS(2915), - [anon_sym_import] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), - [anon_sym_var] = ACTIONS(2915), - [anon_sym_let] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_await] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_debugger] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_throw] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2915), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_async] = ACTIONS(2915), - [anon_sym_function] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_using] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_delete] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2913), - [sym_number] = ACTIONS(2913), - [sym_private_property_identifier] = ACTIONS(2913), - [sym_this] = ACTIONS(2915), - [sym_super] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_null] = ACTIONS(2915), - [sym_undefined] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_readonly] = ACTIONS(2915), - [anon_sym_get] = ACTIONS(2915), - [anon_sym_set] = ACTIONS(2915), - [anon_sym_declare] = ACTIONS(2915), - [anon_sym_public] = ACTIONS(2915), - [anon_sym_private] = ACTIONS(2915), - [anon_sym_protected] = ACTIONS(2915), - [anon_sym_override] = ACTIONS(2915), - [anon_sym_module] = ACTIONS(2915), - [anon_sym_any] = ACTIONS(2915), - [anon_sym_number] = ACTIONS(2915), - [anon_sym_boolean] = ACTIONS(2915), - [anon_sym_string] = ACTIONS(2915), - [anon_sym_symbol] = ACTIONS(2915), - [anon_sym_object] = ACTIONS(2915), - [anon_sym_abstract] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_export] = ACTIONS(2929), + [anon_sym_default] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_namespace] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_typeof] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2929), + [anon_sym_with] = ACTIONS(2929), + [anon_sym_var] = ACTIONS(2929), + [anon_sym_let] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_else] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_switch] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_await] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_do] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_debugger] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_throw] = ACTIONS(2929), + [anon_sym_case] = ACTIONS(2929), + [anon_sym_yield] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_async] = ACTIONS(2929), + [anon_sym_function] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_using] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_void] = ACTIONS(2929), + [anon_sym_delete] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2927), + [sym_number] = ACTIONS(2927), + [sym_private_property_identifier] = ACTIONS(2927), + [sym_this] = ACTIONS(2929), + [sym_super] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_null] = ACTIONS(2929), + [sym_undefined] = ACTIONS(2929), + [anon_sym_AT] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2929), + [anon_sym_readonly] = ACTIONS(2929), + [anon_sym_get] = ACTIONS(2929), + [anon_sym_set] = ACTIONS(2929), + [anon_sym_declare] = ACTIONS(2929), + [anon_sym_public] = ACTIONS(2929), + [anon_sym_private] = ACTIONS(2929), + [anon_sym_protected] = ACTIONS(2929), + [anon_sym_override] = ACTIONS(2929), + [anon_sym_module] = ACTIONS(2929), + [anon_sym_any] = ACTIONS(2929), + [anon_sym_number] = ACTIONS(2929), + [anon_sym_boolean] = ACTIONS(2929), + [anon_sym_string] = ACTIONS(2929), + [anon_sym_symbol] = ACTIONS(2929), + [anon_sym_object] = ACTIONS(2929), + [anon_sym_abstract] = ACTIONS(2929), + [anon_sym_interface] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), [sym_html_comment] = ACTIONS(5), }, [927] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2923), - [anon_sym_export] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_typeof] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2923), - [anon_sym_with] = ACTIONS(2923), - [anon_sym_var] = ACTIONS(2923), - [anon_sym_let] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_switch] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_await] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_debugger] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_case] = ACTIONS(2923), - [anon_sym_yield] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_async] = ACTIONS(2923), - [anon_sym_function] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_void] = ACTIONS(2923), - [anon_sym_delete] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2921), - [sym_number] = ACTIONS(2921), - [sym_private_property_identifier] = ACTIONS(2921), - [sym_this] = ACTIONS(2923), - [sym_super] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_null] = ACTIONS(2923), - [sym_undefined] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_readonly] = ACTIONS(2923), - [anon_sym_get] = ACTIONS(2923), - [anon_sym_set] = ACTIONS(2923), - [anon_sym_declare] = ACTIONS(2923), - [anon_sym_public] = ACTIONS(2923), - [anon_sym_private] = ACTIONS(2923), - [anon_sym_protected] = ACTIONS(2923), - [anon_sym_override] = ACTIONS(2923), - [anon_sym_module] = ACTIONS(2923), - [anon_sym_any] = ACTIONS(2923), - [anon_sym_number] = ACTIONS(2923), - [anon_sym_boolean] = ACTIONS(2923), - [anon_sym_string] = ACTIONS(2923), - [anon_sym_symbol] = ACTIONS(2923), - [anon_sym_object] = ACTIONS(2923), - [anon_sym_abstract] = ACTIONS(2923), - [anon_sym_interface] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2933), + [anon_sym_export] = ACTIONS(2933), + [anon_sym_default] = ACTIONS(2933), + [anon_sym_type] = ACTIONS(2933), + [anon_sym_namespace] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_RBRACE] = ACTIONS(2931), + [anon_sym_typeof] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(2933), + [anon_sym_with] = ACTIONS(2933), + [anon_sym_var] = ACTIONS(2933), + [anon_sym_let] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2931), + [anon_sym_await] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_do] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_debugger] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_case] = ACTIONS(2933), + [anon_sym_yield] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_async] = ACTIONS(2933), + [anon_sym_function] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_using] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_SLASH] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_void] = ACTIONS(2933), + [anon_sym_delete] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_DQUOTE] = ACTIONS(2931), + [anon_sym_SQUOTE] = ACTIONS(2931), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2931), + [sym_number] = ACTIONS(2931), + [sym_private_property_identifier] = ACTIONS(2931), + [sym_this] = ACTIONS(2933), + [sym_super] = ACTIONS(2933), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [sym_null] = ACTIONS(2933), + [sym_undefined] = ACTIONS(2933), + [anon_sym_AT] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_readonly] = ACTIONS(2933), + [anon_sym_get] = ACTIONS(2933), + [anon_sym_set] = ACTIONS(2933), + [anon_sym_declare] = ACTIONS(2933), + [anon_sym_public] = ACTIONS(2933), + [anon_sym_private] = ACTIONS(2933), + [anon_sym_protected] = ACTIONS(2933), + [anon_sym_override] = ACTIONS(2933), + [anon_sym_module] = ACTIONS(2933), + [anon_sym_any] = ACTIONS(2933), + [anon_sym_number] = ACTIONS(2933), + [anon_sym_boolean] = ACTIONS(2933), + [anon_sym_string] = ACTIONS(2933), + [anon_sym_symbol] = ACTIONS(2933), + [anon_sym_object] = ACTIONS(2933), + [anon_sym_abstract] = ACTIONS(2933), + [anon_sym_interface] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), [sym_html_comment] = ACTIONS(5), }, [928] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_export] = ACTIONS(2927), - [anon_sym_default] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_namespace] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_typeof] = ACTIONS(2927), - [anon_sym_import] = ACTIONS(2927), - [anon_sym_with] = ACTIONS(2927), - [anon_sym_var] = ACTIONS(2927), - [anon_sym_let] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_switch] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_await] = ACTIONS(2927), - [anon_sym_while] = ACTIONS(2927), - [anon_sym_do] = ACTIONS(2927), - [anon_sym_try] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_debugger] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_throw] = ACTIONS(2927), - [anon_sym_case] = ACTIONS(2927), - [anon_sym_yield] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2927), - [anon_sym_async] = ACTIONS(2927), - [anon_sym_function] = ACTIONS(2927), - [anon_sym_new] = ACTIONS(2927), - [anon_sym_using] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_void] = ACTIONS(2927), - [anon_sym_delete] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2925), - [sym_number] = ACTIONS(2925), - [sym_private_property_identifier] = ACTIONS(2925), - [sym_this] = ACTIONS(2927), - [sym_super] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_null] = ACTIONS(2927), - [sym_undefined] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2927), - [anon_sym_readonly] = ACTIONS(2927), - [anon_sym_get] = ACTIONS(2927), - [anon_sym_set] = ACTIONS(2927), - [anon_sym_declare] = ACTIONS(2927), - [anon_sym_public] = ACTIONS(2927), - [anon_sym_private] = ACTIONS(2927), - [anon_sym_protected] = ACTIONS(2927), - [anon_sym_override] = ACTIONS(2927), - [anon_sym_module] = ACTIONS(2927), - [anon_sym_any] = ACTIONS(2927), - [anon_sym_number] = ACTIONS(2927), - [anon_sym_boolean] = ACTIONS(2927), - [anon_sym_string] = ACTIONS(2927), - [anon_sym_symbol] = ACTIONS(2927), - [anon_sym_object] = ACTIONS(2927), - [anon_sym_abstract] = ACTIONS(2927), - [anon_sym_interface] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2937), + [anon_sym_export] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_namespace] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_typeof] = ACTIONS(2937), + [anon_sym_import] = ACTIONS(2937), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_var] = ACTIONS(2937), + [anon_sym_let] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_switch] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym_await] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_do] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_debugger] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_function] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_using] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_void] = ACTIONS(2937), + [anon_sym_delete] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2935), + [sym_number] = ACTIONS(2935), + [sym_private_property_identifier] = ACTIONS(2935), + [sym_this] = ACTIONS(2937), + [sym_super] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_null] = ACTIONS(2937), + [sym_undefined] = ACTIONS(2937), + [anon_sym_AT] = ACTIONS(2935), + [anon_sym_static] = ACTIONS(2937), + [anon_sym_readonly] = ACTIONS(2937), + [anon_sym_get] = ACTIONS(2937), + [anon_sym_set] = ACTIONS(2937), + [anon_sym_declare] = ACTIONS(2937), + [anon_sym_public] = ACTIONS(2937), + [anon_sym_private] = ACTIONS(2937), + [anon_sym_protected] = ACTIONS(2937), + [anon_sym_override] = ACTIONS(2937), + [anon_sym_module] = ACTIONS(2937), + [anon_sym_any] = ACTIONS(2937), + [anon_sym_number] = ACTIONS(2937), + [anon_sym_boolean] = ACTIONS(2937), + [anon_sym_string] = ACTIONS(2937), + [anon_sym_symbol] = ACTIONS(2937), + [anon_sym_object] = ACTIONS(2937), + [anon_sym_abstract] = ACTIONS(2937), + [anon_sym_interface] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), [sym_html_comment] = ACTIONS(5), }, [929] = { - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_export] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_typeof] = ACTIONS(2563), - [anon_sym_import] = ACTIONS(2563), - [anon_sym_with] = ACTIONS(2563), - [anon_sym_var] = ACTIONS(2563), - [anon_sym_let] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_await] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_debugger] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_async] = ACTIONS(2563), - [anon_sym_function] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2563), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_void] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2561), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2561), - [sym_number] = ACTIONS(2561), - [sym_private_property_identifier] = ACTIONS(2561), - [sym_this] = ACTIONS(2563), - [sym_super] = ACTIONS(2563), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_undefined] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_readonly] = ACTIONS(2563), - [anon_sym_get] = ACTIONS(2563), - [anon_sym_set] = ACTIONS(2563), - [anon_sym_declare] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_override] = ACTIONS(2563), - [anon_sym_module] = ACTIONS(2563), - [anon_sym_any] = ACTIONS(2563), - [anon_sym_number] = ACTIONS(2563), - [anon_sym_boolean] = ACTIONS(2563), - [anon_sym_string] = ACTIONS(2563), - [anon_sym_symbol] = ACTIONS(2563), - [anon_sym_object] = ACTIONS(2563), - [anon_sym_abstract] = ACTIONS(2563), - [anon_sym_interface] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2941), + [anon_sym_export] = ACTIONS(2941), + [anon_sym_default] = ACTIONS(2941), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_namespace] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_import] = ACTIONS(2941), + [anon_sym_with] = ACTIONS(2941), + [anon_sym_var] = ACTIONS(2941), + [anon_sym_let] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2939), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_switch] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym_await] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_debugger] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_throw] = ACTIONS(2941), + [anon_sym_case] = ACTIONS(2941), + [anon_sym_yield] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_async] = ACTIONS(2941), + [anon_sym_function] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_SLASH] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_void] = ACTIONS(2941), + [anon_sym_delete] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2939), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2939), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2939), + [sym_number] = ACTIONS(2939), + [sym_private_property_identifier] = ACTIONS(2939), + [sym_this] = ACTIONS(2941), + [sym_super] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_null] = ACTIONS(2941), + [sym_undefined] = ACTIONS(2941), + [anon_sym_AT] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_get] = ACTIONS(2941), + [anon_sym_set] = ACTIONS(2941), + [anon_sym_declare] = ACTIONS(2941), + [anon_sym_public] = ACTIONS(2941), + [anon_sym_private] = ACTIONS(2941), + [anon_sym_protected] = ACTIONS(2941), + [anon_sym_override] = ACTIONS(2941), + [anon_sym_module] = ACTIONS(2941), + [anon_sym_any] = ACTIONS(2941), + [anon_sym_number] = ACTIONS(2941), + [anon_sym_boolean] = ACTIONS(2941), + [anon_sym_string] = ACTIONS(2941), + [anon_sym_symbol] = ACTIONS(2941), + [anon_sym_object] = ACTIONS(2941), + [anon_sym_abstract] = ACTIONS(2941), + [anon_sym_interface] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), [sym_html_comment] = ACTIONS(5), }, [930] = { - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_export] = ACTIONS(2931), - [anon_sym_default] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2929), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_typeof] = ACTIONS(2931), - [anon_sym_import] = ACTIONS(2931), - [anon_sym_with] = ACTIONS(2931), - [anon_sym_var] = ACTIONS(2931), - [anon_sym_let] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_switch] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym_await] = ACTIONS(2931), - [anon_sym_while] = ACTIONS(2931), - [anon_sym_do] = ACTIONS(2931), - [anon_sym_try] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_debugger] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_throw] = ACTIONS(2931), - [anon_sym_case] = ACTIONS(2931), - [anon_sym_yield] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2931), - [anon_sym_async] = ACTIONS(2931), - [anon_sym_function] = ACTIONS(2931), - [anon_sym_new] = ACTIONS(2931), - [anon_sym_using] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_void] = ACTIONS(2931), - [anon_sym_delete] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2929), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2929), - [sym_number] = ACTIONS(2929), - [sym_private_property_identifier] = ACTIONS(2929), - [sym_this] = ACTIONS(2931), - [sym_super] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_null] = ACTIONS(2931), - [sym_undefined] = ACTIONS(2931), - [anon_sym_AT] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2931), - [anon_sym_readonly] = ACTIONS(2931), - [anon_sym_get] = ACTIONS(2931), - [anon_sym_set] = ACTIONS(2931), - [anon_sym_declare] = ACTIONS(2931), - [anon_sym_public] = ACTIONS(2931), - [anon_sym_private] = ACTIONS(2931), - [anon_sym_protected] = ACTIONS(2931), - [anon_sym_override] = ACTIONS(2931), - [anon_sym_module] = ACTIONS(2931), - [anon_sym_any] = ACTIONS(2931), - [anon_sym_number] = ACTIONS(2931), - [anon_sym_boolean] = ACTIONS(2931), - [anon_sym_string] = ACTIONS(2931), - [anon_sym_symbol] = ACTIONS(2931), - [anon_sym_object] = ACTIONS(2931), - [anon_sym_abstract] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [sym_html_comment] = ACTIONS(5), - }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_export] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_namespace] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_typeof] = ACTIONS(2935), - [anon_sym_import] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_var] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_switch] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2933), - [anon_sym_await] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_debugger] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_throw] = ACTIONS(2935), - [anon_sym_case] = ACTIONS(2935), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_async] = ACTIONS(2935), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_using] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2933), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_void] = ACTIONS(2935), - [anon_sym_delete] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2933), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2933), - [sym_number] = ACTIONS(2933), - [sym_private_property_identifier] = ACTIONS(2933), - [sym_this] = ACTIONS(2935), - [sym_super] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_null] = ACTIONS(2935), - [sym_undefined] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_readonly] = ACTIONS(2935), - [anon_sym_get] = ACTIONS(2935), - [anon_sym_set] = ACTIONS(2935), - [anon_sym_declare] = ACTIONS(2935), - [anon_sym_public] = ACTIONS(2935), - [anon_sym_private] = ACTIONS(2935), - [anon_sym_protected] = ACTIONS(2935), - [anon_sym_override] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_any] = ACTIONS(2935), - [anon_sym_number] = ACTIONS(2935), - [anon_sym_boolean] = ACTIONS(2935), - [anon_sym_string] = ACTIONS(2935), - [anon_sym_symbol] = ACTIONS(2935), - [anon_sym_object] = ACTIONS(2935), - [anon_sym_abstract] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [sym_html_comment] = ACTIONS(5), - }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_export] = ACTIONS(2939), - [anon_sym_default] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_namespace] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_typeof] = ACTIONS(2939), - [anon_sym_import] = ACTIONS(2939), - [anon_sym_with] = ACTIONS(2939), - [anon_sym_var] = ACTIONS(2939), - [anon_sym_let] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_switch] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym_await] = ACTIONS(2939), - [anon_sym_while] = ACTIONS(2939), - [anon_sym_do] = ACTIONS(2939), - [anon_sym_try] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_debugger] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_throw] = ACTIONS(2939), - [anon_sym_case] = ACTIONS(2939), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2939), - [anon_sym_async] = ACTIONS(2939), - [anon_sym_function] = ACTIONS(2939), - [anon_sym_new] = ACTIONS(2939), - [anon_sym_using] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [anon_sym_void] = ACTIONS(2939), - [anon_sym_delete] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2937), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2937), - [sym_number] = ACTIONS(2937), - [sym_private_property_identifier] = ACTIONS(2937), - [sym_this] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_null] = ACTIONS(2939), - [sym_undefined] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2939), - [anon_sym_readonly] = ACTIONS(2939), - [anon_sym_get] = ACTIONS(2939), - [anon_sym_set] = ACTIONS(2939), - [anon_sym_declare] = ACTIONS(2939), - [anon_sym_public] = ACTIONS(2939), - [anon_sym_private] = ACTIONS(2939), - [anon_sym_protected] = ACTIONS(2939), - [anon_sym_override] = ACTIONS(2939), - [anon_sym_module] = ACTIONS(2939), - [anon_sym_any] = ACTIONS(2939), - [anon_sym_number] = ACTIONS(2939), - [anon_sym_boolean] = ACTIONS(2939), - [anon_sym_string] = ACTIONS(2939), - [anon_sym_symbol] = ACTIONS(2939), - [anon_sym_object] = ACTIONS(2939), - [anon_sym_abstract] = ACTIONS(2939), - [anon_sym_interface] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [sym_html_comment] = ACTIONS(5), - }, - [933] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [934] = { [ts_builtin_sym_end] = ACTIONS(2943), [sym_identifier] = ACTIONS(2945), [anon_sym_export] = ACTIONS(2945), @@ -118970,61 +118722,635 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2945), [sym_html_comment] = ACTIONS(5), }, + [931] = { + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2949), + [anon_sym_export] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2947), + [anon_sym_typeof] = ACTIONS(2949), + [anon_sym_import] = ACTIONS(2949), + [anon_sym_with] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [anon_sym_let] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym_await] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_debugger] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_case] = ACTIONS(2949), + [anon_sym_yield] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_async] = ACTIONS(2949), + [anon_sym_function] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_void] = ACTIONS(2949), + [anon_sym_delete] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2947), + [sym_number] = ACTIONS(2947), + [sym_private_property_identifier] = ACTIONS(2947), + [sym_this] = ACTIONS(2949), + [sym_super] = ACTIONS(2949), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_null] = ACTIONS(2949), + [sym_undefined] = ACTIONS(2949), + [anon_sym_AT] = ACTIONS(2947), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_readonly] = ACTIONS(2949), + [anon_sym_get] = ACTIONS(2949), + [anon_sym_set] = ACTIONS(2949), + [anon_sym_declare] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_module] = ACTIONS(2949), + [anon_sym_any] = ACTIONS(2949), + [anon_sym_number] = ACTIONS(2949), + [anon_sym_boolean] = ACTIONS(2949), + [anon_sym_string] = ACTIONS(2949), + [anon_sym_symbol] = ACTIONS(2949), + [anon_sym_object] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [sym_html_comment] = ACTIONS(5), + }, + [932] = { + [ts_builtin_sym_end] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2953), + [anon_sym_export] = ACTIONS(2953), + [anon_sym_default] = ACTIONS(2953), + [anon_sym_type] = ACTIONS(2953), + [anon_sym_namespace] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_typeof] = ACTIONS(2953), + [anon_sym_import] = ACTIONS(2953), + [anon_sym_with] = ACTIONS(2953), + [anon_sym_var] = ACTIONS(2953), + [anon_sym_let] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_await] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_do] = ACTIONS(2953), + [anon_sym_try] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_debugger] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_case] = ACTIONS(2953), + [anon_sym_yield] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_class] = ACTIONS(2953), + [anon_sym_async] = ACTIONS(2953), + [anon_sym_function] = ACTIONS(2953), + [anon_sym_new] = ACTIONS(2953), + [anon_sym_using] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_void] = ACTIONS(2953), + [anon_sym_delete] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2951), + [sym_number] = ACTIONS(2951), + [sym_private_property_identifier] = ACTIONS(2951), + [sym_this] = ACTIONS(2953), + [sym_super] = ACTIONS(2953), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [sym_null] = ACTIONS(2953), + [sym_undefined] = ACTIONS(2953), + [anon_sym_AT] = ACTIONS(2951), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_readonly] = ACTIONS(2953), + [anon_sym_get] = ACTIONS(2953), + [anon_sym_set] = ACTIONS(2953), + [anon_sym_declare] = ACTIONS(2953), + [anon_sym_public] = ACTIONS(2953), + [anon_sym_private] = ACTIONS(2953), + [anon_sym_protected] = ACTIONS(2953), + [anon_sym_override] = ACTIONS(2953), + [anon_sym_module] = ACTIONS(2953), + [anon_sym_any] = ACTIONS(2953), + [anon_sym_number] = ACTIONS(2953), + [anon_sym_boolean] = ACTIONS(2953), + [anon_sym_string] = ACTIONS(2953), + [anon_sym_symbol] = ACTIONS(2953), + [anon_sym_object] = ACTIONS(2953), + [anon_sym_abstract] = ACTIONS(2953), + [anon_sym_interface] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [sym_html_comment] = ACTIONS(5), + }, + [933] = { + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2957), + [anon_sym_export] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_type] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_typeof] = ACTIONS(2957), + [anon_sym_import] = ACTIONS(2957), + [anon_sym_with] = ACTIONS(2957), + [anon_sym_var] = ACTIONS(2957), + [anon_sym_let] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_await] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_debugger] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_function] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_void] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2955), + [sym_number] = ACTIONS(2955), + [sym_private_property_identifier] = ACTIONS(2955), + [sym_this] = ACTIONS(2957), + [sym_super] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_undefined] = ACTIONS(2957), + [anon_sym_AT] = ACTIONS(2955), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2957), + [anon_sym_get] = ACTIONS(2957), + [anon_sym_set] = ACTIONS(2957), + [anon_sym_declare] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_private] = ACTIONS(2957), + [anon_sym_protected] = ACTIONS(2957), + [anon_sym_override] = ACTIONS(2957), + [anon_sym_module] = ACTIONS(2957), + [anon_sym_any] = ACTIONS(2957), + [anon_sym_number] = ACTIONS(2957), + [anon_sym_boolean] = ACTIONS(2957), + [anon_sym_string] = ACTIONS(2957), + [anon_sym_symbol] = ACTIONS(2957), + [anon_sym_object] = ACTIONS(2957), + [anon_sym_abstract] = ACTIONS(2957), + [anon_sym_interface] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [sym_html_comment] = ACTIONS(5), + }, + [934] = { + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_export] = ACTIONS(2873), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_namespace] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_typeof] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_with] = ACTIONS(2873), + [anon_sym_var] = ACTIONS(2873), + [anon_sym_let] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_switch] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_await] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_debugger] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_throw] = ACTIONS(2873), + [anon_sym_case] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_function] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_using] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_void] = ACTIONS(2873), + [anon_sym_delete] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2871), + [sym_number] = ACTIONS(2871), + [sym_private_property_identifier] = ACTIONS(2871), + [sym_this] = ACTIONS(2873), + [sym_super] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_null] = ACTIONS(2873), + [sym_undefined] = ACTIONS(2873), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_readonly] = ACTIONS(2873), + [anon_sym_get] = ACTIONS(2873), + [anon_sym_set] = ACTIONS(2873), + [anon_sym_declare] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_private] = ACTIONS(2873), + [anon_sym_protected] = ACTIONS(2873), + [anon_sym_override] = ACTIONS(2873), + [anon_sym_module] = ACTIONS(2873), + [anon_sym_any] = ACTIONS(2873), + [anon_sym_number] = ACTIONS(2873), + [anon_sym_boolean] = ACTIONS(2873), + [anon_sym_string] = ACTIONS(2873), + [anon_sym_symbol] = ACTIONS(2873), + [anon_sym_object] = ACTIONS(2873), + [anon_sym_abstract] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [sym_html_comment] = ACTIONS(5), + }, [935] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_export] = ACTIONS(2873), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_namespace] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_typeof] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_with] = ACTIONS(2873), + [anon_sym_var] = ACTIONS(2873), + [anon_sym_let] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_switch] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_await] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_debugger] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_throw] = ACTIONS(2873), + [anon_sym_case] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_function] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_using] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_void] = ACTIONS(2873), + [anon_sym_delete] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2871), + [sym_number] = ACTIONS(2871), + [sym_private_property_identifier] = ACTIONS(2871), + [sym_this] = ACTIONS(2873), + [sym_super] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_null] = ACTIONS(2873), + [sym_undefined] = ACTIONS(2873), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_readonly] = ACTIONS(2873), + [anon_sym_get] = ACTIONS(2873), + [anon_sym_set] = ACTIONS(2873), + [anon_sym_declare] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_private] = ACTIONS(2873), + [anon_sym_protected] = ACTIONS(2873), + [anon_sym_override] = ACTIONS(2873), + [anon_sym_module] = ACTIONS(2873), + [anon_sym_any] = ACTIONS(2873), + [anon_sym_number] = ACTIONS(2873), + [anon_sym_boolean] = ACTIONS(2873), + [anon_sym_string] = ACTIONS(2873), + [anon_sym_symbol] = ACTIONS(2873), + [anon_sym_object] = ACTIONS(2873), + [anon_sym_abstract] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [sym_html_comment] = ACTIONS(5), + }, + [936] = { + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_export] = ACTIONS(2873), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_namespace] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_typeof] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_with] = ACTIONS(2873), + [anon_sym_var] = ACTIONS(2873), + [anon_sym_let] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_switch] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_await] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_debugger] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_throw] = ACTIONS(2873), + [anon_sym_case] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_function] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_using] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_void] = ACTIONS(2873), + [anon_sym_delete] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2871), + [sym_number] = ACTIONS(2871), + [sym_private_property_identifier] = ACTIONS(2871), + [sym_this] = ACTIONS(2873), + [sym_super] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_null] = ACTIONS(2873), + [sym_undefined] = ACTIONS(2873), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_readonly] = ACTIONS(2873), + [anon_sym_get] = ACTIONS(2873), + [anon_sym_set] = ACTIONS(2873), + [anon_sym_declare] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_private] = ACTIONS(2873), + [anon_sym_protected] = ACTIONS(2873), + [anon_sym_override] = ACTIONS(2873), + [anon_sym_module] = ACTIONS(2873), + [anon_sym_any] = ACTIONS(2873), + [anon_sym_number] = ACTIONS(2873), + [anon_sym_boolean] = ACTIONS(2873), + [anon_sym_string] = ACTIONS(2873), + [anon_sym_symbol] = ACTIONS(2873), + [anon_sym_object] = ACTIONS(2873), + [anon_sym_abstract] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [sym_html_comment] = ACTIONS(5), + }, + [937] = { + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2961), + [anon_sym_export] = ACTIONS(2961), + [anon_sym_default] = ACTIONS(2961), + [anon_sym_type] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_typeof] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2961), + [anon_sym_with] = ACTIONS(2961), + [anon_sym_var] = ACTIONS(2961), + [anon_sym_let] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_else] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym_await] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_do] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_debugger] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_case] = ACTIONS(2961), + [anon_sym_yield] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_async] = ACTIONS(2961), + [anon_sym_function] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_void] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_number] = ACTIONS(2959), + [sym_private_property_identifier] = ACTIONS(2959), + [sym_this] = ACTIONS(2961), + [sym_super] = ACTIONS(2961), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_null] = ACTIONS(2961), + [sym_undefined] = ACTIONS(2961), + [anon_sym_AT] = ACTIONS(2959), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_readonly] = ACTIONS(2961), + [anon_sym_get] = ACTIONS(2961), + [anon_sym_set] = ACTIONS(2961), + [anon_sym_declare] = ACTIONS(2961), + [anon_sym_public] = ACTIONS(2961), + [anon_sym_private] = ACTIONS(2961), + [anon_sym_protected] = ACTIONS(2961), + [anon_sym_override] = ACTIONS(2961), + [anon_sym_module] = ACTIONS(2961), + [anon_sym_any] = ACTIONS(2961), + [anon_sym_number] = ACTIONS(2961), + [anon_sym_boolean] = ACTIONS(2961), + [anon_sym_string] = ACTIONS(2961), + [anon_sym_symbol] = ACTIONS(2961), + [anon_sym_object] = ACTIONS(2961), + [anon_sym_abstract] = ACTIONS(2961), + [anon_sym_interface] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [sym_html_comment] = ACTIONS(5), + }, + [938] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -119035,434 +119361,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(2949), - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_case] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2949), - [sym_number] = ACTIONS(2949), - [sym_private_property_identifier] = ACTIONS(2949), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [sym_html_comment] = ACTIONS(5), - }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(2953), - [sym_identifier] = ACTIONS(2955), - [anon_sym_export] = ACTIONS(2955), - [anon_sym_default] = ACTIONS(2955), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2955), - [anon_sym_import] = ACTIONS(2955), - [anon_sym_with] = ACTIONS(2955), - [anon_sym_var] = ACTIONS(2955), - [anon_sym_let] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_debugger] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_case] = ACTIONS(2955), - [anon_sym_yield] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_async] = ACTIONS(2955), - [anon_sym_function] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2955), - [sym_super] = ACTIONS(2955), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [sym_null] = ACTIONS(2955), - [sym_undefined] = ACTIONS(2955), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_readonly] = ACTIONS(2955), - [anon_sym_get] = ACTIONS(2955), - [anon_sym_set] = ACTIONS(2955), - [anon_sym_declare] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_override] = ACTIONS(2955), - [anon_sym_module] = ACTIONS(2955), - [anon_sym_any] = ACTIONS(2955), - [anon_sym_number] = ACTIONS(2955), - [anon_sym_boolean] = ACTIONS(2955), - [anon_sym_string] = ACTIONS(2955), - [anon_sym_symbol] = ACTIONS(2955), - [anon_sym_object] = ACTIONS(2955), - [anon_sym_abstract] = ACTIONS(2955), - [anon_sym_interface] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [sym_html_comment] = ACTIONS(5), - }, - [938] = { - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_export] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_typeof] = ACTIONS(2563), - [anon_sym_import] = ACTIONS(2563), - [anon_sym_with] = ACTIONS(2563), - [anon_sym_var] = ACTIONS(2563), - [anon_sym_let] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_switch] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_await] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_do] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_debugger] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_throw] = ACTIONS(2563), - [anon_sym_case] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_class] = ACTIONS(2563), - [anon_sym_async] = ACTIONS(2563), - [anon_sym_function] = ACTIONS(2563), - [anon_sym_new] = ACTIONS(2563), - [anon_sym_using] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2563), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_void] = ACTIONS(2563), - [anon_sym_delete] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2561), - [anon_sym_DASH_DASH] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2561), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2561), - [sym_number] = ACTIONS(2561), - [sym_private_property_identifier] = ACTIONS(2561), - [sym_this] = ACTIONS(2563), - [sym_super] = ACTIONS(2563), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_undefined] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2561), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_readonly] = ACTIONS(2563), - [anon_sym_get] = ACTIONS(2563), - [anon_sym_set] = ACTIONS(2563), - [anon_sym_declare] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_override] = ACTIONS(2563), - [anon_sym_module] = ACTIONS(2563), - [anon_sym_any] = ACTIONS(2563), - [anon_sym_number] = ACTIONS(2563), - [anon_sym_boolean] = ACTIONS(2563), - [anon_sym_string] = ACTIONS(2563), - [anon_sym_symbol] = ACTIONS(2563), - [anon_sym_object] = ACTIONS(2563), - [anon_sym_abstract] = ACTIONS(2563), - [anon_sym_interface] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [939] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_export] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_typeof] = ACTIONS(2959), - [anon_sym_import] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_var] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_switch] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_await] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_debugger] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_throw] = ACTIONS(2959), - [anon_sym_case] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_using] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_void] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2957), - [sym_number] = ACTIONS(2957), - [sym_private_property_identifier] = ACTIONS(2957), - [sym_this] = ACTIONS(2959), - [sym_super] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_null] = ACTIONS(2959), - [sym_undefined] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_get] = ACTIONS(2959), - [anon_sym_set] = ACTIONS(2959), - [anon_sym_declare] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_protected] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_any] = ACTIONS(2959), - [anon_sym_number] = ACTIONS(2959), - [anon_sym_boolean] = ACTIONS(2959), - [anon_sym_string] = ACTIONS(2959), - [anon_sym_symbol] = ACTIONS(2959), - [anon_sym_object] = ACTIONS(2959), - [anon_sym_abstract] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [sym_html_comment] = ACTIONS(5), - }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(2961), - [sym_identifier] = ACTIONS(2963), - [anon_sym_export] = ACTIONS(2963), - [anon_sym_default] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_namespace] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_typeof] = ACTIONS(2963), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_const] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_switch] = ACTIONS(2963), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_debugger] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_throw] = ACTIONS(2963), - [anon_sym_case] = ACTIONS(2963), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2963), - [anon_sym_async] = ACTIONS(2963), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_using] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_void] = ACTIONS(2963), - [anon_sym_delete] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2961), - [sym_number] = ACTIONS(2961), - [sym_private_property_identifier] = ACTIONS(2961), - [sym_this] = ACTIONS(2963), - [sym_super] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_null] = ACTIONS(2963), - [sym_undefined] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2963), - [anon_sym_readonly] = ACTIONS(2963), - [anon_sym_get] = ACTIONS(2963), - [anon_sym_set] = ACTIONS(2963), - [anon_sym_declare] = ACTIONS(2963), - [anon_sym_public] = ACTIONS(2963), - [anon_sym_private] = ACTIONS(2963), - [anon_sym_protected] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(2963), - [anon_sym_module] = ACTIONS(2963), - [anon_sym_any] = ACTIONS(2963), - [anon_sym_number] = ACTIONS(2963), - [anon_sym_boolean] = ACTIONS(2963), - [anon_sym_string] = ACTIONS(2963), - [anon_sym_symbol] = ACTIONS(2963), - [anon_sym_object] = ACTIONS(2963), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_interface] = ACTIONS(2963), - [anon_sym_enum] = ACTIONS(2963), - [sym_html_comment] = ACTIONS(5), - }, - [941] = { [ts_builtin_sym_end] = ACTIONS(2965), [sym_identifier] = ACTIONS(2967), [anon_sym_export] = ACTIONS(2967), @@ -119544,7 +119460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2967), [sym_html_comment] = ACTIONS(5), }, - [942] = { + [940] = { [ts_builtin_sym_end] = ACTIONS(2969), [sym_identifier] = ACTIONS(2971), [anon_sym_export] = ACTIONS(2971), @@ -119626,7 +119542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2971), [sym_html_comment] = ACTIONS(5), }, - [943] = { + [941] = { [ts_builtin_sym_end] = ACTIONS(2973), [sym_identifier] = ACTIONS(2975), [anon_sym_export] = ACTIONS(2975), @@ -119708,142 +119624,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2975), [sym_html_comment] = ACTIONS(5), }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(2977), - [sym_identifier] = ACTIONS(2979), - [anon_sym_export] = ACTIONS(2979), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_type] = ACTIONS(2979), - [anon_sym_namespace] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_typeof] = ACTIONS(2979), - [anon_sym_import] = ACTIONS(2979), - [anon_sym_with] = ACTIONS(2979), - [anon_sym_var] = ACTIONS(2979), - [anon_sym_let] = ACTIONS(2979), - [anon_sym_const] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2979), - [anon_sym_if] = ACTIONS(2979), - [anon_sym_switch] = ACTIONS(2979), - [anon_sym_for] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_await] = ACTIONS(2979), - [anon_sym_while] = ACTIONS(2979), - [anon_sym_do] = ACTIONS(2979), - [anon_sym_try] = ACTIONS(2979), - [anon_sym_break] = ACTIONS(2979), - [anon_sym_continue] = ACTIONS(2979), - [anon_sym_debugger] = ACTIONS(2979), - [anon_sym_return] = ACTIONS(2979), - [anon_sym_throw] = ACTIONS(2979), - [anon_sym_case] = ACTIONS(2979), - [anon_sym_yield] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2979), - [anon_sym_async] = ACTIONS(2979), - [anon_sym_function] = ACTIONS(2979), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_using] = ACTIONS(2979), - [anon_sym_PLUS] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_void] = ACTIONS(2979), - [anon_sym_delete] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2977), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2977), - [sym_number] = ACTIONS(2977), - [sym_private_property_identifier] = ACTIONS(2977), - [sym_this] = ACTIONS(2979), - [sym_super] = ACTIONS(2979), - [sym_true] = ACTIONS(2979), - [sym_false] = ACTIONS(2979), - [sym_null] = ACTIONS(2979), - [sym_undefined] = ACTIONS(2979), - [anon_sym_AT] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2979), - [anon_sym_readonly] = ACTIONS(2979), - [anon_sym_get] = ACTIONS(2979), - [anon_sym_set] = ACTIONS(2979), - [anon_sym_declare] = ACTIONS(2979), - [anon_sym_public] = ACTIONS(2979), - [anon_sym_private] = ACTIONS(2979), - [anon_sym_protected] = ACTIONS(2979), - [anon_sym_override] = ACTIONS(2979), - [anon_sym_module] = ACTIONS(2979), - [anon_sym_any] = ACTIONS(2979), - [anon_sym_number] = ACTIONS(2979), - [anon_sym_boolean] = ACTIONS(2979), - [anon_sym_string] = ACTIONS(2979), - [anon_sym_symbol] = ACTIONS(2979), - [anon_sym_object] = ACTIONS(2979), - [anon_sym_abstract] = ACTIONS(2979), - [anon_sym_interface] = ACTIONS(2979), - [anon_sym_enum] = ACTIONS(2979), + [942] = { + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_export] = ACTIONS(2873), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_namespace] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_typeof] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_with] = ACTIONS(2873), + [anon_sym_var] = ACTIONS(2873), + [anon_sym_let] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_switch] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_await] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_debugger] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_throw] = ACTIONS(2873), + [anon_sym_case] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_function] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_using] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_void] = ACTIONS(2873), + [anon_sym_delete] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2871), + [sym_number] = ACTIONS(2871), + [sym_private_property_identifier] = ACTIONS(2871), + [sym_this] = ACTIONS(2873), + [sym_super] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_null] = ACTIONS(2873), + [sym_undefined] = ACTIONS(2873), + [anon_sym_AT] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_readonly] = ACTIONS(2873), + [anon_sym_get] = ACTIONS(2873), + [anon_sym_set] = ACTIONS(2873), + [anon_sym_declare] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_private] = ACTIONS(2873), + [anon_sym_protected] = ACTIONS(2873), + [anon_sym_override] = ACTIONS(2873), + [anon_sym_module] = ACTIONS(2873), + [anon_sym_any] = ACTIONS(2873), + [anon_sym_number] = ACTIONS(2873), + [anon_sym_boolean] = ACTIONS(2873), + [anon_sym_string] = ACTIONS(2873), + [anon_sym_symbol] = ACTIONS(2873), + [anon_sym_object] = ACTIONS(2873), + [anon_sym_abstract] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), [sym_html_comment] = ACTIONS(5), }, - [945] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_rest_pattern] = STATE(5165), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3773), - [sym_tuple_parameter] = STATE(5278), - [sym_optional_tuple_parameter] = STATE(5278), - [sym_optional_type] = STATE(5278), - [sym_rest_type] = STATE(5278), - [sym__tuple_type_member] = STATE(5278), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(2489), + [943] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_RBRACK] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -119854,2257 +119771,2112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [946] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_asserts] = STATE(3229), - [sym_type] = STATE(3242), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_predicate] = STATE(3229), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3212), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(2985), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_asserts] = ACTIONS(2987), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [947] = { - [sym_identifier] = ACTIONS(2989), - [anon_sym_export] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_typeof] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(2989), - [anon_sym_with] = ACTIONS(2989), - [anon_sym_var] = ACTIONS(2989), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_await] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_debugger] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_yield] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_function] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_void] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2991), - [sym_number] = ACTIONS(2991), - [sym_private_property_identifier] = ACTIONS(2991), - [sym_this] = ACTIONS(2989), - [sym_super] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_null] = ACTIONS(2989), - [sym_undefined] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2991), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2989), - [anon_sym_set] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_override] = ACTIONS(2989), - [anon_sym_module] = ACTIONS(2989), - [anon_sym_any] = ACTIONS(2989), - [anon_sym_number] = ACTIONS(2989), - [anon_sym_boolean] = ACTIONS(2989), - [anon_sym_string] = ACTIONS(2989), - [anon_sym_symbol] = ACTIONS(2989), - [anon_sym_object] = ACTIONS(2989), - [anon_sym_abstract] = ACTIONS(2989), - [anon_sym_interface] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [sym_html_comment] = ACTIONS(5), - }, - [948] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_asserts] = STATE(3445), - [sym_type] = STATE(3447), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_predicate] = STATE(3445), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3305), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_asserts] = ACTIONS(3035), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [949] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_asserts] = STATE(1991), - [sym_type] = STATE(1992), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_predicate] = STATE(1991), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1822), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [944] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3073), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_asserts] = ACTIONS(3083), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), - [sym_html_comment] = ACTIONS(5), - }, - [950] = { - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_typeof] = ACTIONS(3093), - [anon_sym_import] = ACTIONS(3093), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_var] = ACTIONS(3093), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_switch] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_await] = ACTIONS(3093), - [anon_sym_while] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_try] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_debugger] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_throw] = ACTIONS(3093), - [anon_sym_yield] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_async] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_using] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_void] = ACTIONS(3093), - [anon_sym_delete] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3095), - [sym_number] = ACTIONS(3095), - [sym_private_property_identifier] = ACTIONS(3095), - [sym_this] = ACTIONS(3093), - [sym_super] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_get] = ACTIONS(3093), - [anon_sym_set] = ACTIONS(3093), - [anon_sym_declare] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_override] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_any] = ACTIONS(3093), - [anon_sym_number] = ACTIONS(3093), - [anon_sym_boolean] = ACTIONS(3093), - [anon_sym_string] = ACTIONS(3093), - [anon_sym_symbol] = ACTIONS(3093), - [anon_sym_object] = ACTIONS(3093), - [anon_sym_abstract] = ACTIONS(3093), - [anon_sym_interface] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [951] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_asserts] = STATE(3018), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_predicate] = STATE(3018), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3697), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3097), + [945] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5485), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3921), + [sym_tuple_parameter] = STATE(5502), + [sym_optional_tuple_parameter] = STATE(5502), + [sym_optional_type] = STATE(5502), + [sym_rest_type] = STATE(5502), + [sym__tuple_type_member] = STATE(5502), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2505), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(3113), + [sym_this] = ACTIONS(1558), [sym_true] = ACTIONS(1560), [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_asserts] = ACTIONS(3121), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), - [sym_html_comment] = ACTIONS(5), - }, - [952] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_debugger] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_delete] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3131), - [sym_number] = ACTIONS(3131), - [sym_private_property_identifier] = ACTIONS(3131), - [sym_this] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_null] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_get] = ACTIONS(3129), - [anon_sym_set] = ACTIONS(3129), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_any] = ACTIONS(3129), - [anon_sym_number] = ACTIONS(3129), - [anon_sym_boolean] = ACTIONS(3129), - [anon_sym_string] = ACTIONS(3129), - [anon_sym_symbol] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [953] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_asserts] = STATE(3023), - [sym_type] = STATE(3095), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_predicate] = STATE(3023), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3056), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3133), + [946] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_asserts] = STATE(3034), + [sym_type] = STATE(3121), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_predicate] = STATE(3034), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(3088), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2981), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(3135), + [sym_this] = ACTIONS(2983), [sym_true] = ACTIONS(1560), [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(3137), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2985), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [954] = { - [sym_identifier] = ACTIONS(2531), - [anon_sym_export] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2531), - [anon_sym_namespace] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_typeof] = ACTIONS(2531), - [anon_sym_import] = ACTIONS(2531), - [anon_sym_with] = ACTIONS(2531), - [anon_sym_var] = ACTIONS(2531), - [anon_sym_let] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_switch] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_do] = ACTIONS(2531), - [anon_sym_try] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_debugger] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_throw] = ACTIONS(2531), - [anon_sym_yield] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_class] = ACTIONS(2531), - [anon_sym_async] = ACTIONS(2531), - [anon_sym_function] = ACTIONS(2531), - [anon_sym_new] = ACTIONS(2531), - [anon_sym_using] = ACTIONS(2531), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_TILDE] = ACTIONS(2529), - [anon_sym_void] = ACTIONS(2531), - [anon_sym_delete] = ACTIONS(2531), - [anon_sym_PLUS_PLUS] = ACTIONS(2529), - [anon_sym_DASH_DASH] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2529), - [sym_number] = ACTIONS(2529), - [sym_private_property_identifier] = ACTIONS(2529), - [sym_this] = ACTIONS(2531), - [sym_super] = ACTIONS(2531), - [sym_true] = ACTIONS(2531), - [sym_false] = ACTIONS(2531), - [sym_null] = ACTIONS(2531), - [sym_undefined] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2529), - [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), - [anon_sym_abstract] = ACTIONS(2531), - [anon_sym_interface] = ACTIONS(2531), - [anon_sym_enum] = ACTIONS(2531), - [sym_html_comment] = ACTIONS(5), - }, - [955] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_debugger] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_delete] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3131), - [sym_number] = ACTIONS(3131), - [sym_private_property_identifier] = ACTIONS(3131), - [sym_this] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_null] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_get] = ACTIONS(3129), - [anon_sym_set] = ACTIONS(3129), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_any] = ACTIONS(3129), - [anon_sym_number] = ACTIONS(3129), - [anon_sym_boolean] = ACTIONS(3129), - [anon_sym_string] = ACTIONS(3129), - [anon_sym_symbol] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [sym_html_comment] = ACTIONS(5), - }, - [956] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_debugger] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_delete] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3131), - [sym_number] = ACTIONS(3131), - [sym_private_property_identifier] = ACTIONS(3131), - [sym_this] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_null] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_get] = ACTIONS(3129), - [anon_sym_set] = ACTIONS(3129), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_any] = ACTIONS(3129), - [anon_sym_number] = ACTIONS(3129), - [anon_sym_boolean] = ACTIONS(3129), - [anon_sym_string] = ACTIONS(3129), - [anon_sym_symbol] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [sym_html_comment] = ACTIONS(5), - }, - [957] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_asserts] = STATE(2039), - [sym_type] = STATE(2040), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_predicate] = STATE(2039), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1822), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [947] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_asserts] = STATE(3869), + [sym_type] = STATE(3341), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_predicate] = STATE(3871), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3204), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3073), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_asserts] = ACTIONS(3083), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), - [sym_html_comment] = ACTIONS(5), - }, - [958] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_debugger] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_delete] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3131), - [sym_number] = ACTIONS(3131), - [sym_private_property_identifier] = ACTIONS(3131), - [sym_this] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_null] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_get] = ACTIONS(3129), - [anon_sym_set] = ACTIONS(3129), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_any] = ACTIONS(3129), - [anon_sym_number] = ACTIONS(3129), - [anon_sym_boolean] = ACTIONS(3129), - [anon_sym_string] = ACTIONS(3129), - [anon_sym_symbol] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(2991), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_asserts] = ACTIONS(2993), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [959] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_asserts] = STATE(3918), - [sym_type] = STATE(3502), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_predicate] = STATE(3919), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3305), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), + [948] = { + [sym_identifier] = ACTIONS(2995), + [anon_sym_export] = ACTIONS(2995), + [anon_sym_type] = ACTIONS(2995), + [anon_sym_namespace] = ACTIONS(2995), [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_asserts] = ACTIONS(3035), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [960] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_debugger] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_delete] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3131), - [sym_number] = ACTIONS(3131), - [sym_private_property_identifier] = ACTIONS(3131), - [sym_this] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_null] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_get] = ACTIONS(3129), - [anon_sym_set] = ACTIONS(3129), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_any] = ACTIONS(3129), - [anon_sym_number] = ACTIONS(3129), - [anon_sym_boolean] = ACTIONS(3129), - [anon_sym_string] = ACTIONS(3129), - [anon_sym_symbol] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), + [anon_sym_typeof] = ACTIONS(2995), + [anon_sym_import] = ACTIONS(2995), + [anon_sym_with] = ACTIONS(2995), + [anon_sym_var] = ACTIONS(2995), + [anon_sym_let] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_switch] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_await] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_do] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_debugger] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_throw] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2995), + [anon_sym_async] = ACTIONS(2995), + [anon_sym_function] = ACTIONS(2995), + [anon_sym_new] = ACTIONS(2995), + [anon_sym_using] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_SLASH] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_void] = ACTIONS(2995), + [anon_sym_delete] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2997), + [anon_sym_SQUOTE] = ACTIONS(2997), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2997), + [sym_number] = ACTIONS(2997), + [sym_private_property_identifier] = ACTIONS(2997), + [sym_this] = ACTIONS(2995), + [sym_super] = ACTIONS(2995), + [sym_true] = ACTIONS(2995), + [sym_false] = ACTIONS(2995), + [sym_null] = ACTIONS(2995), + [sym_undefined] = ACTIONS(2995), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_readonly] = ACTIONS(2995), + [anon_sym_get] = ACTIONS(2995), + [anon_sym_set] = ACTIONS(2995), + [anon_sym_declare] = ACTIONS(2995), + [anon_sym_public] = ACTIONS(2995), + [anon_sym_private] = ACTIONS(2995), + [anon_sym_protected] = ACTIONS(2995), + [anon_sym_override] = ACTIONS(2995), + [anon_sym_module] = ACTIONS(2995), + [anon_sym_any] = ACTIONS(2995), + [anon_sym_number] = ACTIONS(2995), + [anon_sym_boolean] = ACTIONS(2995), + [anon_sym_string] = ACTIONS(2995), + [anon_sym_symbol] = ACTIONS(2995), + [anon_sym_object] = ACTIONS(2995), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_interface] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), [sym_html_comment] = ACTIONS(5), }, - [961] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_asserts] = STATE(3811), - [sym_type] = STATE(3302), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_predicate] = STATE(3862), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3212), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(2985), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_asserts] = ACTIONS(2987), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [949] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_export] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_namespace] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_var] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_debugger] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_throw] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_void] = ACTIONS(2999), + [anon_sym_delete] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3001), + [sym_number] = ACTIONS(3001), + [sym_private_property_identifier] = ACTIONS(3001), + [sym_this] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [sym_undefined] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_get] = ACTIONS(2999), + [anon_sym_set] = ACTIONS(2999), + [anon_sym_declare] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_private] = ACTIONS(2999), + [anon_sym_protected] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2999), + [anon_sym_module] = ACTIONS(2999), + [anon_sym_any] = ACTIONS(2999), + [anon_sym_number] = ACTIONS(2999), + [anon_sym_boolean] = ACTIONS(2999), + [anon_sym_string] = ACTIONS(2999), + [anon_sym_symbol] = ACTIONS(2999), + [anon_sym_object] = ACTIONS(2999), + [anon_sym_abstract] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), [sym_html_comment] = ACTIONS(5), }, - [962] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_asserts] = STATE(3023), - [sym_type] = STATE(3711), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_predicate] = STATE(3023), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3494), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3139), + [950] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_asserts] = STATE(3034), + [sym_type] = STATE(3686), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_predicate] = STATE(3034), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(3529), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3003), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(3141), + [sym_this] = ACTIONS(3005), [sym_true] = ACTIONS(1560), [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), - [anon_sym_asserts] = ACTIONS(3143), + [anon_sym_asserts] = ACTIONS(3007), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [963] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_asserts] = STATE(5193), - [sym_type] = STATE(3340), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_predicate] = STATE(5196), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3056), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3133), + [951] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_export] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_namespace] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_var] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_debugger] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_throw] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_void] = ACTIONS(2999), + [anon_sym_delete] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3001), + [sym_number] = ACTIONS(3001), + [sym_private_property_identifier] = ACTIONS(3001), + [sym_this] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [sym_undefined] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_get] = ACTIONS(2999), + [anon_sym_set] = ACTIONS(2999), + [anon_sym_declare] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_private] = ACTIONS(2999), + [anon_sym_protected] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2999), + [anon_sym_module] = ACTIONS(2999), + [anon_sym_any] = ACTIONS(2999), + [anon_sym_number] = ACTIONS(2999), + [anon_sym_boolean] = ACTIONS(2999), + [anon_sym_string] = ACTIONS(2999), + [anon_sym_symbol] = ACTIONS(2999), + [anon_sym_object] = ACTIONS(2999), + [anon_sym_abstract] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [sym_html_comment] = ACTIONS(5), + }, + [952] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_asserts] = STATE(2967), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_predicate] = STATE(2967), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(3088), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2981), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(3135), + [sym_this] = ACTIONS(2983), [sym_true] = ACTIONS(1560), [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(3137), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2985), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [964] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_asserts] = STATE(3270), - [sym_type] = STATE(3275), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_predicate] = STATE(3270), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3212), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [953] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_asserts] = STATE(1594), + [sym_type] = STATE(1608), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_predicate] = STATE(1594), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1532), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(2985), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_asserts] = ACTIONS(2987), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3037), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_asserts] = ACTIONS(3047), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, - [965] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_debugger] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_delete] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3131), - [sym_number] = ACTIONS(3131), - [sym_private_property_identifier] = ACTIONS(3131), - [sym_this] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_null] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_get] = ACTIONS(3129), - [anon_sym_set] = ACTIONS(3129), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_any] = ACTIONS(3129), - [anon_sym_number] = ACTIONS(3129), - [anon_sym_boolean] = ACTIONS(3129), - [anon_sym_string] = ACTIONS(3129), - [anon_sym_symbol] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), + [954] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_asserts] = STATE(2967), + [sym_type] = STATE(3891), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_predicate] = STATE(2967), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(3685), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3073), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_asserts] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [966] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_debugger] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_delete] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3131), - [sym_number] = ACTIONS(3131), - [sym_private_property_identifier] = ACTIONS(3131), - [sym_this] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_null] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_get] = ACTIONS(3129), - [anon_sym_set] = ACTIONS(3129), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_any] = ACTIONS(3129), - [anon_sym_number] = ACTIONS(3129), - [anon_sym_boolean] = ACTIONS(3129), - [anon_sym_string] = ACTIONS(3129), - [anon_sym_symbol] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), + [955] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_asserts] = STATE(4329), + [sym_type] = STATE(3536), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_predicate] = STATE(4335), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3342), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3121), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), + [anon_sym_asserts] = ACTIONS(3131), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [967] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_asserts] = STATE(3018), - [sym_type] = STATE(3731), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_predicate] = STATE(3018), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3494), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3139), + [956] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_asserts] = STATE(1639), + [sym_type] = STATE(1642), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_predicate] = STATE(1639), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1532), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3037), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_asserts] = ACTIONS(3047), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), + [sym_html_comment] = ACTIONS(5), + }, + [957] = { + [sym_identifier] = ACTIONS(2523), + [anon_sym_export] = ACTIONS(2523), + [anon_sym_type] = ACTIONS(2523), + [anon_sym_namespace] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_typeof] = ACTIONS(2523), + [anon_sym_import] = ACTIONS(2523), + [anon_sym_with] = ACTIONS(2523), + [anon_sym_var] = ACTIONS(2523), + [anon_sym_let] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_await] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_debugger] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_throw] = ACTIONS(2523), + [anon_sym_yield] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2523), + [anon_sym_async] = ACTIONS(2523), + [anon_sym_function] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(2523), + [anon_sym_using] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_SLASH] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_void] = ACTIONS(2523), + [anon_sym_delete] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2521), + [sym_number] = ACTIONS(2521), + [sym_private_property_identifier] = ACTIONS(2521), + [sym_this] = ACTIONS(2523), + [sym_super] = ACTIONS(2523), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_undefined] = ACTIONS(2523), + [anon_sym_AT] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_readonly] = ACTIONS(2523), + [anon_sym_get] = ACTIONS(2523), + [anon_sym_set] = ACTIONS(2523), + [anon_sym_declare] = ACTIONS(2523), + [anon_sym_public] = ACTIONS(2523), + [anon_sym_private] = ACTIONS(2523), + [anon_sym_protected] = ACTIONS(2523), + [anon_sym_override] = ACTIONS(2523), + [anon_sym_module] = ACTIONS(2523), + [anon_sym_any] = ACTIONS(2523), + [anon_sym_number] = ACTIONS(2523), + [anon_sym_boolean] = ACTIONS(2523), + [anon_sym_string] = ACTIONS(2523), + [anon_sym_symbol] = ACTIONS(2523), + [anon_sym_object] = ACTIONS(2523), + [anon_sym_abstract] = ACTIONS(2523), + [anon_sym_interface] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [sym_html_comment] = ACTIONS(5), + }, + [958] = { + [sym_identifier] = ACTIONS(3141), + [anon_sym_export] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_namespace] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_typeof] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_with] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [anon_sym_let] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_await] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_debugger] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3143), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_void] = ACTIONS(3141), + [anon_sym_delete] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3143), + [sym_number] = ACTIONS(3143), + [sym_private_property_identifier] = ACTIONS(3143), + [sym_this] = ACTIONS(3141), + [sym_super] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_null] = ACTIONS(3141), + [sym_undefined] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_readonly] = ACTIONS(3141), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_declare] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_module] = ACTIONS(3141), + [anon_sym_any] = ACTIONS(3141), + [anon_sym_number] = ACTIONS(3141), + [anon_sym_boolean] = ACTIONS(3141), + [anon_sym_string] = ACTIONS(3141), + [anon_sym_symbol] = ACTIONS(3141), + [anon_sym_object] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), + [sym_html_comment] = ACTIONS(5), + }, + [959] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_export] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_namespace] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_var] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_debugger] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_throw] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_void] = ACTIONS(2999), + [anon_sym_delete] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3001), + [sym_number] = ACTIONS(3001), + [sym_private_property_identifier] = ACTIONS(3001), + [sym_this] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [sym_undefined] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_get] = ACTIONS(2999), + [anon_sym_set] = ACTIONS(2999), + [anon_sym_declare] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_private] = ACTIONS(2999), + [anon_sym_protected] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2999), + [anon_sym_module] = ACTIONS(2999), + [anon_sym_any] = ACTIONS(2999), + [anon_sym_number] = ACTIONS(2999), + [anon_sym_boolean] = ACTIONS(2999), + [anon_sym_string] = ACTIONS(2999), + [anon_sym_symbol] = ACTIONS(2999), + [anon_sym_object] = ACTIONS(2999), + [anon_sym_abstract] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [sym_html_comment] = ACTIONS(5), + }, + [960] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_export] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_namespace] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_var] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_debugger] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_throw] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_void] = ACTIONS(2999), + [anon_sym_delete] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3001), + [sym_number] = ACTIONS(3001), + [sym_private_property_identifier] = ACTIONS(3001), + [sym_this] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [sym_undefined] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_get] = ACTIONS(2999), + [anon_sym_set] = ACTIONS(2999), + [anon_sym_declare] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_private] = ACTIONS(2999), + [anon_sym_protected] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2999), + [anon_sym_module] = ACTIONS(2999), + [anon_sym_any] = ACTIONS(2999), + [anon_sym_number] = ACTIONS(2999), + [anon_sym_boolean] = ACTIONS(2999), + [anon_sym_string] = ACTIONS(2999), + [anon_sym_symbol] = ACTIONS(2999), + [anon_sym_object] = ACTIONS(2999), + [anon_sym_abstract] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [sym_html_comment] = ACTIONS(5), + }, + [961] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_export] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_namespace] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_var] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_debugger] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_throw] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_void] = ACTIONS(2999), + [anon_sym_delete] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3001), + [sym_number] = ACTIONS(3001), + [sym_private_property_identifier] = ACTIONS(3001), + [sym_this] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [sym_undefined] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_get] = ACTIONS(2999), + [anon_sym_set] = ACTIONS(2999), + [anon_sym_declare] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_private] = ACTIONS(2999), + [anon_sym_protected] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2999), + [anon_sym_module] = ACTIONS(2999), + [anon_sym_any] = ACTIONS(2999), + [anon_sym_number] = ACTIONS(2999), + [anon_sym_boolean] = ACTIONS(2999), + [anon_sym_string] = ACTIONS(2999), + [anon_sym_symbol] = ACTIONS(2999), + [anon_sym_object] = ACTIONS(2999), + [anon_sym_abstract] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [sym_html_comment] = ACTIONS(5), + }, + [962] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_asserts] = STATE(2967), + [sym_type] = STATE(3690), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_predicate] = STATE(2967), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(3529), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3003), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(3141), + [sym_this] = ACTIONS(3005), [sym_true] = ACTIONS(1560), [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), - [anon_sym_asserts] = ACTIONS(3143), + [anon_sym_asserts] = ACTIONS(3007), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [968] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_asserts] = STATE(1631), - [sym_type] = STATE(1634), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_predicate] = STATE(1631), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1524), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), + [963] = { [sym_identifier] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3173), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_asserts] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3147), + [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(3147), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3147), + [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_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [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(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3147), + [sym_number] = ACTIONS(3147), + [sym_private_property_identifier] = ACTIONS(3147), + [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(3147), + [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), }, - [969] = { - [sym_identifier] = ACTIONS(2509), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_typeof] = ACTIONS(2509), - [anon_sym_import] = ACTIONS(2509), - [anon_sym_with] = ACTIONS(2509), - [anon_sym_var] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_switch] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_debugger] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_throw] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_function] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_using] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_void] = ACTIONS(2509), - [anon_sym_delete] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [anon_sym_SQUOTE] = ACTIONS(2507), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2507), - [sym_number] = ACTIONS(2507), - [sym_private_property_identifier] = ACTIONS(2507), - [sym_this] = ACTIONS(2509), - [sym_super] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_null] = ACTIONS(2509), - [sym_undefined] = ACTIONS(2509), - [anon_sym_AT] = ACTIONS(2507), - [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), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), + [964] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_asserts] = STATE(3487), + [sym_type] = STATE(3489), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_predicate] = STATE(3487), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3342), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3121), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_asserts] = ACTIONS(3131), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [970] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_export] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_namespace] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_var] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_switch] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_do] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_debugger] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_function] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_using] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3129), - [anon_sym_delete] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3131), - [sym_number] = ACTIONS(3131), - [sym_private_property_identifier] = ACTIONS(3131), - [sym_this] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_null] = ACTIONS(3129), - [sym_undefined] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_get] = ACTIONS(3129), - [anon_sym_set] = ACTIONS(3129), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3129), - [anon_sym_any] = ACTIONS(3129), - [anon_sym_number] = ACTIONS(3129), - [anon_sym_boolean] = ACTIONS(3129), - [anon_sym_string] = ACTIONS(3129), - [anon_sym_symbol] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), + [965] = { + [sym_identifier] = ACTIONS(2535), + [anon_sym_export] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_typeof] = ACTIONS(2535), + [anon_sym_import] = ACTIONS(2535), + [anon_sym_with] = ACTIONS(2535), + [anon_sym_var] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_await] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_debugger] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_yield] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_async] = ACTIONS(2535), + [anon_sym_function] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_SLASH] = ACTIONS(2535), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_void] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2533), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2533), + [sym_number] = ACTIONS(2533), + [sym_private_property_identifier] = ACTIONS(2533), + [sym_this] = ACTIONS(2535), + [sym_super] = ACTIONS(2535), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_undefined] = ACTIONS(2535), + [anon_sym_AT] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_readonly] = ACTIONS(2535), + [anon_sym_get] = ACTIONS(2535), + [anon_sym_set] = ACTIONS(2535), + [anon_sym_declare] = ACTIONS(2535), + [anon_sym_public] = ACTIONS(2535), + [anon_sym_private] = ACTIONS(2535), + [anon_sym_protected] = ACTIONS(2535), + [anon_sym_override] = ACTIONS(2535), + [anon_sym_module] = ACTIONS(2535), + [anon_sym_any] = ACTIONS(2535), + [anon_sym_number] = ACTIONS(2535), + [anon_sym_boolean] = ACTIONS(2535), + [anon_sym_string] = ACTIONS(2535), + [anon_sym_symbol] = ACTIONS(2535), + [anon_sym_object] = ACTIONS(2535), + [anon_sym_abstract] = ACTIONS(2535), + [anon_sym_interface] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), [sym_html_comment] = ACTIONS(5), }, - [971] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_asserts] = STATE(1560), - [sym_type] = STATE(1561), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_predicate] = STATE(1560), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1524), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), + [966] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_asserts] = STATE(3295), + [sym_type] = STATE(3296), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_predicate] = STATE(3295), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3204), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3173), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_asserts] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(2991), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_asserts] = ACTIONS(2993), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [972] = { - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3195), - [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(3195), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3195), - [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_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3195), - [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(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3195), - [sym_number] = ACTIONS(3195), - [sym_private_property_identifier] = ACTIONS(3195), - [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(3195), - [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), + [967] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_asserts] = STATE(1975), + [sym_type] = STATE(1976), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_predicate] = STATE(1975), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1812), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_asserts] = ACTIONS(3187), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, - [973] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_asserts] = STATE(3018), - [sym_type] = STATE(3146), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_predicate] = STATE(3018), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3056), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3133), + [968] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_asserts] = STATE(5308), + [sym_type] = STATE(3389), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_predicate] = STATE(5325), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(3088), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(2981), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(3135), + [sym_this] = ACTIONS(2983), [sym_true] = ACTIONS(1560), [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(3137), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2985), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [974] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_asserts] = STATE(3023), - [sym_type] = STATE(3857), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_predicate] = STATE(3023), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3697), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [969] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_export] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_namespace] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_var] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_debugger] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_throw] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_void] = ACTIONS(2999), + [anon_sym_delete] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3001), + [sym_number] = ACTIONS(3001), + [sym_private_property_identifier] = ACTIONS(3001), + [sym_this] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [sym_undefined] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_get] = ACTIONS(2999), + [anon_sym_set] = ACTIONS(2999), + [anon_sym_declare] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_private] = ACTIONS(2999), + [anon_sym_protected] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2999), + [anon_sym_module] = ACTIONS(2999), + [anon_sym_any] = ACTIONS(2999), + [anon_sym_number] = ACTIONS(2999), + [anon_sym_boolean] = ACTIONS(2999), + [anon_sym_string] = ACTIONS(2999), + [anon_sym_symbol] = ACTIONS(2999), + [anon_sym_object] = ACTIONS(2999), + [anon_sym_abstract] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [sym_html_comment] = ACTIONS(5), + }, + [970] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_asserts] = STATE(3265), + [sym_type] = STATE(3266), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_predicate] = STATE(3265), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3204), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(2987), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(3113), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_asserts] = ACTIONS(3121), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(2991), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_asserts] = ACTIONS(2993), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [975] = { + [971] = { [sym_identifier] = ACTIONS(3197), [anon_sym_export] = ACTIONS(3197), [anon_sym_type] = ACTIONS(3197), @@ -122181,131 +121953,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3197), [sym_html_comment] = ACTIONS(5), }, - [976] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_asserts] = STATE(3355), - [sym_type] = STATE(3356), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_predicate] = STATE(3355), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3305), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), + [972] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_asserts] = STATE(2011), + [sym_type] = STATE(2012), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_predicate] = STATE(2011), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1812), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3177), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_asserts] = ACTIONS(3187), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), + [sym_html_comment] = ACTIONS(5), + }, + [973] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_export] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_namespace] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_var] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_debugger] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_throw] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_void] = ACTIONS(2999), + [anon_sym_delete] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3001), + [sym_number] = ACTIONS(3001), + [sym_private_property_identifier] = ACTIONS(3001), + [sym_this] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [sym_undefined] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_get] = ACTIONS(2999), + [anon_sym_set] = ACTIONS(2999), + [anon_sym_declare] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_private] = ACTIONS(2999), + [anon_sym_protected] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2999), + [anon_sym_module] = ACTIONS(2999), + [anon_sym_any] = ACTIONS(2999), + [anon_sym_number] = ACTIONS(2999), + [anon_sym_boolean] = ACTIONS(2999), + [anon_sym_string] = ACTIONS(2999), + [anon_sym_symbol] = ACTIONS(2999), + [anon_sym_object] = ACTIONS(2999), + [anon_sym_abstract] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [sym_html_comment] = ACTIONS(5), + }, + [974] = { + [sym_identifier] = ACTIONS(2999), + [anon_sym_export] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_namespace] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(2999), + [anon_sym_with] = ACTIONS(2999), + [anon_sym_var] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_await] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_debugger] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_throw] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_function] = ACTIONS(2999), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_void] = ACTIONS(2999), + [anon_sym_delete] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3001), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3001), + [sym_number] = ACTIONS(3001), + [sym_private_property_identifier] = ACTIONS(3001), + [sym_this] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_true] = ACTIONS(2999), + [sym_false] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [sym_undefined] = ACTIONS(2999), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_readonly] = ACTIONS(2999), + [anon_sym_get] = ACTIONS(2999), + [anon_sym_set] = ACTIONS(2999), + [anon_sym_declare] = ACTIONS(2999), + [anon_sym_public] = ACTIONS(2999), + [anon_sym_private] = ACTIONS(2999), + [anon_sym_protected] = ACTIONS(2999), + [anon_sym_override] = ACTIONS(2999), + [anon_sym_module] = ACTIONS(2999), + [anon_sym_any] = ACTIONS(2999), + [anon_sym_number] = ACTIONS(2999), + [anon_sym_boolean] = ACTIONS(2999), + [anon_sym_string] = ACTIONS(2999), + [anon_sym_symbol] = ACTIONS(2999), + [anon_sym_object] = ACTIONS(2999), + [anon_sym_abstract] = ACTIONS(2999), + [anon_sym_interface] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [sym_html_comment] = ACTIONS(5), + }, + [975] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_asserts] = STATE(3034), + [sym_type] = STATE(3862), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_predicate] = STATE(3034), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(3685), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3025), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_asserts] = ACTIONS(3035), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3073), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_asserts] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [sym_html_comment] = ACTIONS(5), + }, + [976] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_asserts] = STATE(3431), + [sym_type] = STATE(3451), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_predicate] = STATE(3431), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3342), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3121), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_asserts] = ACTIONS(3131), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [977] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), [anon_sym_GT] = ACTIONS(3201), - [anon_sym_void] = ACTIONS(216), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122317,70 +122397,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [978] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), [anon_sym_GT] = ACTIONS(3203), - [anon_sym_void] = ACTIONS(216), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122392,70 +122472,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [979] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4432), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(3205), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122467,70 +122547,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [980] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4428), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3207), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122542,70 +122622,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [981] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3775), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_type_parameter] = STATE(4908), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3209), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(3209), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122617,70 +122697,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [982] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_type_parameter] = STATE(4606), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3211), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(3213), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(3213), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122692,70 +122772,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [983] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), [anon_sym_GT] = ACTIONS(3215), - [anon_sym_void] = ACTIONS(216), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122767,70 +122847,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [984] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4409), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(3217), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122842,70 +122922,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [985] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4504), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3219), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122917,70 +122997,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [986] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4486), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(3221), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -122992,70 +123072,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [987] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), [anon_sym_GT] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(216), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123067,145 +123147,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [988] = { - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_EQ] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_RPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_COLON] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_RBRACK] = ACTIONS(3227), - [anon_sym_DOT] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_EQ_GT] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [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(3227), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_QMARK] = 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_extends] = ACTIONS(3225), - [sym_html_comment] = ACTIONS(5), - }, - [989] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123217,70 +123222,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [990] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [989] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123292,220 +123297,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [991] = { - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_RPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_RBRACK] = ACTIONS(3235), - [anon_sym_DOT] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_EQ_GT] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [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(3235), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_QMARK] = 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_extends] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [992] = { - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3237), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_EQ] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym_import] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_RPAREN] = ACTIONS(3239), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_RBRACK] = ACTIONS(3239), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_function] = ACTIONS(3237), - [anon_sym_EQ_GT] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_void] = ACTIONS(3237), - [anon_sym_delete] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_SQUOTE] = ACTIONS(3239), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3239), - [sym_number] = ACTIONS(3239), - [sym_private_property_identifier] = ACTIONS(3239), - [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(3239), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_get] = ACTIONS(3237), - [anon_sym_set] = ACTIONS(3237), - [anon_sym_QMARK] = 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_extends] = ACTIONS(3237), - [sym_html_comment] = ACTIONS(5), - }, - [993] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [990] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4526), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3229), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123517,70 +123372,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [991] = { + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_RPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_COLON] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_DOT] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_QMARK_DOT] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [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(3233), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_QMARK] = 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_extends] = ACTIONS(3231), + [sym_html_comment] = ACTIONS(5), + }, + [992] = { + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_RBRACK] = ACTIONS(3237), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_EQ_GT] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [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(3237), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_QMARK] = 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_extends] = ACTIONS(3235), + [sym_html_comment] = ACTIONS(5), + }, + [993] = { + [sym_identifier] = ACTIONS(3239), + [anon_sym_export] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_EQ] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_RPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_COLON] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_RBRACK] = ACTIONS(3241), + [anon_sym_DOT] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_EQ_GT] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3239), + [anon_sym_delete] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [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(3241), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_get] = ACTIONS(3239), + [anon_sym_set] = ACTIONS(3239), + [anon_sym_QMARK] = 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_extends] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [994] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4435), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(3243), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123592,70 +123672,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [995] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4458), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3245), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123667,70 +123747,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [996] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4493), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3247), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123742,70 +123822,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [997] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4461), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(3249), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123817,143 +123897,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [998] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1643), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4720), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(1932), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3183), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [999] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4473), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3691), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -123964,144 +124044,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1000] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1645), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1001] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3883), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4419), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124113,69 +124119,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1001] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3467), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [1002] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3471), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), + [sym_html_comment] = ACTIONS(5), + }, + [1003] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3692), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124186,72 +124340,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1003] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2972), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1004] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(4226), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -124260,70 +124414,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1004] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4433), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1005] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4424), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124335,143 +124489,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1005] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(4104), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [1006] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3418), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [1006] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3340), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1007] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3393), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), + [sym_html_comment] = ACTIONS(5), + }, + [1008] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1645), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), + [sym_html_comment] = ACTIONS(5), + }, + [1009] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4443), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124483,69 +124785,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3019), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1010] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3028), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124556,70 +124858,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1008] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3150), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1011] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3029), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124630,70 +124932,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1009] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3755), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1012] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4491), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124705,143 +125007,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1010] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(4254), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [1013] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(4271), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1011] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3153), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1014] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3824), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124853,69 +125155,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1012] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4622), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2949), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1015] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3017), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -124926,70 +125228,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1013] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4622), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1016] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3698), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -125000,70 +125302,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1014] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3768), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1017] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(2960), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -125075,365 +125377,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1015] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(1998), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [1018] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3181), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1016] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(1999), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [1019] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(2001), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, - [1017] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(2033), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [1020] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(2002), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, - [1018] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(2036), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [1021] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1539), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, - [1019] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1022] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3851), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -125445,959 +125747,737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1020] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3384), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [1021] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3354), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [1022] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(2061), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1023] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(2062), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(1983), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1024] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(1882), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3392), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [1025] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(1883), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3396), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [1026] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3962), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(2026), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1027] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3282), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(2027), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1028] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3283), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1540), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1029] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3222), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4500), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1030] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(5001), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(3216), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(2039), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1031] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(5001), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(3254), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(2040), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1032] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3021), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3007), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -126406,72 +126486,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, [1033] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3713), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3928), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -126480,72 +126560,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, [1034] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4622), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(4133), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(4403), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3929), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -126554,146 +126634,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, [1035] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3983), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1036] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4137), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4773), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(3041), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -126703,71 +126709,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1037] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2947), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1036] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4773), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2969), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -126776,70 +126782,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1038] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3730), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1037] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3874), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -126850,70 +126856,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1039] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3732), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1038] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3935), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -126924,292 +126930,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1039] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1585), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1040] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3733), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1589), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1041] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3246), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(1924), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1042] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3248), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(1925), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [1043] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4703), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(4062), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(4456), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -127220,70 +127300,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1044] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2972), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3007), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -127294,70 +127374,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1045] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4498), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3028), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -127369,217 +127449,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1046] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(4005), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1047] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2962), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1048] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3542), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4095), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -127590,292 +127522,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1049] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3466), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1050] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3464), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1051] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3467), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1052] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4514), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1047] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3807), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -127887,217 +127597,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1053] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3261), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1054] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3267), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1055] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4386), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1048] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3029), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -128109,69 +127671,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1056] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3835), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1049] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4492), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -128183,883 +127745,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1057] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(1941), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1058] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(1942), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [1050] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(1929), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), - [sym_html_comment] = ACTIONS(5), - }, - [1059] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3239), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1060] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3240), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1061] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3243), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1062] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3244), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), - [sym_html_comment] = ACTIONS(5), - }, - [1063] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1594), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1064] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1595), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1065] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1592), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1066] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4541), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(1649), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(3179), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1067] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4541), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(1558), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(3179), - [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(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, - [1068] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3021), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1051] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3389), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -129071,219 +127893,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1069] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1642), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), + [1052] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3473), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [1070] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1644), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), + [1053] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3474), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [1071] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4437), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1054] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3040), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -129292,220 +128114,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1072] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1553), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1073] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1557), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), + [1055] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(4312), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1074] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4415), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1056] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3863), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -129514,662 +128262,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1075] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1577), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1076] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1578), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1077] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1600), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1078] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1605), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [sym_html_comment] = ACTIONS(5), - }, - [1079] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3406), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1080] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3436), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [1057] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3478), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [1081] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3335), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [1058] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(4225), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1082] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4587), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(3338), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [1059] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4629), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(3479), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [1083] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4490), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1060] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3040), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -130181,71 +128559,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1084] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1061] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3273), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1062] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(2960), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -130254,72 +128706,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1085] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2962), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1063] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3889), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -130328,70 +128780,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), + [sym_html_comment] = ACTIONS(5), + }, + [1064] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4629), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(3482), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [1086] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3096), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1065] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4418), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -130403,367 +128929,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1087] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3373), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [1088] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3375), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [1089] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3432), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1090] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3433), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), + [1066] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3892), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [1091] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4420), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -130772,368 +129002,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1092] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3328), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [1093] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3329), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1094] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3344), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [1095] = { - [sym_import] = STATE(4578), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5519), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(3181), - [sym__type_query_call_expression_in_type_annotation] = STATE(3311), - [sym_type] = STATE(3345), - [sym_constructor_type] = STATE(3448), - [sym_primary_type] = STATE(3450), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3448), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3448), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3448), + [1067] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3896), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_infer] = ACTIONS(3037), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), - [sym_html_comment] = ACTIONS(5), - }, - [1096] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2947), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -131142,70 +129076,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1097] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3145), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1068] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3137), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -131217,71 +129151,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1098] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3775), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1069] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3275), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1070] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3028), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -131290,72 +129298,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1099] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3148), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1071] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3291), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1072] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3029), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -131364,70 +129446,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1100] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3149), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1073] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3123), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -131439,69 +129521,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1101] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4436), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1074] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3124), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -131513,69 +129595,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1102] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4441), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1075] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4477), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -131586,72 +129668,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1076] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(5062), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(3292), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1103] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4442), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(1532), + [1077] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(5062), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(3298), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1078] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(1967), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), + [sym_html_comment] = ACTIONS(5), + }, + [1079] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3017), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -131660,70 +129964,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1104] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1080] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3120), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -131735,71 +130039,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1105] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3019), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1081] = { + [sym_import] = STATE(4849), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5716), + [sym_nested_type_identifier] = STATE(3513), + [sym__type_query_member_expression_in_type_annotation] = STATE(3381), + [sym__type_query_call_expression_in_type_annotation] = STATE(3755), + [sym_type] = STATE(3912), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5398), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_typeof] = ACTIONS(3061), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -131808,72 +130112,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3077), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3079), + [anon_sym_infer] = ACTIONS(3083), + [anon_sym_keyof] = ACTIONS(3085), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3087), [sym_html_comment] = ACTIONS(5), }, - [1106] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3767), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1082] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4720), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(1930), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3183), + [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(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), + [sym_html_comment] = ACTIONS(5), + }, + [1083] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3111), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -131882,72 +130260,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1107] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3769), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1084] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4703), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(3041), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -131956,72 +130334,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1108] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4708), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2949), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1085] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4703), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2969), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -132031,71 +130409,441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1109] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4708), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1086] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3297), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1087] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3299), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1088] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3341), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1089] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3269), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1090] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3270), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1091] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(2960), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -132104,144 +130852,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1110] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3302), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [1092] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(1978), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, - [1111] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1093] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(4155), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1094] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(1979), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), + [sym_html_comment] = ACTIONS(5), + }, + [1095] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3861), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -132253,515 +131149,737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1112] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1619), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), + [1096] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3286), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), - [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1113] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(1910), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), + [1097] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3287), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1098] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3410), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), + [sym_html_comment] = ACTIONS(5), + }, + [1099] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(2057), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, - [1114] = { - [sym_import] = STATE(4531), - [sym_nested_identifier] = STATE(5486), - [sym_string] = STATE(1632), - [sym_formal_parameters] = STATE(5639), - [sym_nested_type_identifier] = STATE(1527), - [sym__type_query_member_expression_in_type_annotation] = STATE(1514), - [sym__type_query_call_expression_in_type_annotation] = STATE(1574), - [sym_type] = STATE(1581), - [sym_constructor_type] = STATE(1544), - [sym_primary_type] = STATE(1554), - [sym_template_literal_type] = STATE(1556), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1556), - [sym_generic_type] = STATE(1556), - [sym_type_query] = STATE(1556), - [sym_index_type_query] = STATE(1556), - [sym_lookup_type] = STATE(1556), - [sym_literal_type] = STATE(1556), - [sym__number] = STATE(1536), - [sym_existential_type] = STATE(1556), - [sym_flow_maybe_type] = STATE(1556), - [sym_parenthesized_type] = STATE(1556), - [sym_predefined_type] = STATE(1556), - [sym_object_type] = STATE(1556), - [sym_type_parameters] = STATE(5205), - [sym_array_type] = STATE(1556), - [sym_tuple_type] = STATE(1556), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1556), - [sym_intersection_type] = STATE(1556), - [sym_function_type] = STATE(1544), + [1100] = { + [sym_import] = STATE(4631), + [sym_nested_identifier] = STATE(5713), + [sym_string] = STATE(1899), + [sym_formal_parameters] = STATE(5790), + [sym_nested_type_identifier] = STATE(1786), + [sym__type_query_member_expression_in_type_annotation] = STATE(1800), + [sym__type_query_call_expression_in_type_annotation] = STATE(1902), + [sym_type] = STATE(2058), + [sym_constructor_type] = STATE(1903), + [sym_primary_type] = STATE(1904), + [sym_template_literal_type] = STATE(1905), + [sym_infer_type] = STATE(1903), + [sym_conditional_type] = STATE(1905), + [sym_generic_type] = STATE(1905), + [sym_type_query] = STATE(1905), + [sym_index_type_query] = STATE(1905), + [sym_lookup_type] = STATE(1905), + [sym_literal_type] = STATE(1905), + [sym__number] = STATE(1906), + [sym_existential_type] = STATE(1905), + [sym_flow_maybe_type] = STATE(1905), + [sym_parenthesized_type] = STATE(1905), + [sym_predefined_type] = STATE(1905), + [sym_object_type] = STATE(1905), + [sym_type_parameters] = STATE(5297), + [sym_array_type] = STATE(1905), + [sym_tuple_type] = STATE(1905), + [sym_readonly_type] = STATE(1903), + [sym_union_type] = STATE(1905), + [sym_intersection_type] = STATE(1905), + [sym_function_type] = STATE(1903), [sym_identifier] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_typeof] = ACTIONS(3155), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3173), + [sym_number] = ACTIONS(3175), [sym_this] = ACTIONS(3253), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [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(3181), - [anon_sym_infer] = ACTIONS(3185), - [anon_sym_keyof] = ACTIONS(3187), - [anon_sym_unique] = ACTIONS(3189), - [anon_sym_unknown] = ACTIONS(3167), - [anon_sym_never] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_null] = ACTIONS(3179), + [sym_undefined] = ACTIONS(3179), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [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(3185), + [anon_sym_infer] = ACTIONS(3189), + [anon_sym_keyof] = ACTIONS(3191), + [anon_sym_unique] = ACTIONS(3193), + [anon_sym_unknown] = ACTIONS(3171), + [anon_sym_never] = ACTIONS(3171), + [anon_sym_LBRACE_PIPE] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, - [1115] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(4202), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [1101] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3312), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1116] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3021), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [1102] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3314), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, - [1117] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3850), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [1103] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3411), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), [anon_sym_new] = ACTIONS(3103), [anon_sym_AMP] = ACTIONS(3105), [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_number] = ACTIONS(1556), - [sym_this] = ACTIONS(1558), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_null] = ACTIONS(1560), - [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, - [1118] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2947), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1104] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3257), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1105] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4514), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -132770,72 +131888,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1119] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3824), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1106] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3284), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1107] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1599), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), + [sym_html_comment] = ACTIONS(5), + }, + [1108] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1600), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), + [sym_html_comment] = ACTIONS(5), + }, + [1109] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3172), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -132844,72 +132184,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1120] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3763), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1110] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1605), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), + [sym_html_comment] = ACTIONS(5), + }, + [1111] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4583), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(1606), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), + [sym_html_comment] = ACTIONS(5), + }, + [1112] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(4240), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1113] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3007), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -132918,72 +132480,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1121] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3766), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1114] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -132992,72 +132554,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1122] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1115] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3759), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -133066,72 +132628,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1123] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2972), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1116] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(5063), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(3041), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -133140,70 +132702,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1124] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3856), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1117] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(5063), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2969), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -133215,69 +132777,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1125] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4422), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1118] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4486), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -133289,71 +132851,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1126] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4306), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1119] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4583), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(1609), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), + [sym_html_comment] = ACTIONS(5), + }, + [1120] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -133362,72 +132998,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1127] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(2962), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1121] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3504), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1122] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4423), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -133436,70 +133146,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1128] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4424), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1123] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3505), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1124] = { + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(3511), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), + [sym_html_comment] = ACTIONS(5), + }, + [1125] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4478), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -133511,71 +133369,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1129] = { - [sym_import] = STATE(4808), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5569), - [sym_nested_type_identifier] = STATE(3487), - [sym__type_query_member_expression_in_type_annotation] = STATE(3388), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3838), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3263), + [1126] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3040), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1554), [sym_number] = ACTIONS(1556), @@ -133584,70 +133442,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_infer] = ACTIONS(3123), - [anon_sym_keyof] = ACTIONS(3125), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(3127), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1130] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3019), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1127] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4481), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -133658,70 +133516,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(597), - [anon_sym_infer] = ACTIONS(599), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1131] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3660), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1128] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3687), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -133732,70 +133590,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1132] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(3661), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1129] = { + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3689), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -133806,70 +133664,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1133] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(5022), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2949), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1130] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3917), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -133881,69 +133739,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1131] = { + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3481), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), + [sym_html_comment] = ACTIONS(5), + }, + [1132] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1647), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), + [sym_html_comment] = ACTIONS(5), + }, + [1133] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1648), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1134] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(5022), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3823), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -133955,69 +134035,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1135] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4391), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4550), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -134029,587 +134109,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1136] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3276), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1643), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1137] = { - [sym_import] = STATE(4950), - [sym_nested_identifier] = STATE(5535), - [sym_string] = STATE(3265), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(3151), - [sym__type_query_member_expression_in_type_annotation] = STATE(3076), - [sym__type_query_call_expression_in_type_annotation] = STATE(3200), - [sym_type] = STATE(3251), - [sym_constructor_type] = STATE(3271), - [sym_primary_type] = STATE(3272), - [sym_template_literal_type] = STATE(3273), - [sym_infer_type] = STATE(3271), - [sym_conditional_type] = STATE(3273), - [sym_generic_type] = STATE(3273), - [sym_type_query] = STATE(3273), - [sym_index_type_query] = STATE(3273), - [sym_lookup_type] = STATE(3273), - [sym_literal_type] = STATE(3273), - [sym__number] = STATE(3274), - [sym_existential_type] = STATE(3273), - [sym_flow_maybe_type] = STATE(3273), - [sym_parenthesized_type] = STATE(3273), - [sym_predefined_type] = STATE(3273), - [sym_object_type] = STATE(3273), - [sym_type_parameters] = STATE(5146), - [sym_array_type] = STATE(3273), - [sym_tuple_type] = STATE(3273), - [sym_readonly_type] = STATE(3271), - [sym_union_type] = STATE(3273), - [sym_intersection_type] = STATE(3273), - [sym_function_type] = STATE(3271), - [sym_identifier] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_typeof] = ACTIONS(1612), + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1569), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_true] = ACTIONS(1636), - [sym_false] = ACTIONS(1636), - [sym_null] = ACTIONS(1636), - [sym_undefined] = ACTIONS(1636), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_object] = ACTIONS(1032), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_infer] = ACTIONS(1026), - [anon_sym_keyof] = ACTIONS(1028), - [anon_sym_unique] = ACTIONS(1030), - [anon_sym_unknown] = ACTIONS(1032), - [anon_sym_never] = ACTIONS(1032), - [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1138] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(1925), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1573), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1139] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(2110), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [sym_import] = STATE(5025), + [sym_nested_identifier] = STATE(5526), + [sym_string] = STATE(3289), + [sym_formal_parameters] = STATE(5594), + [sym_nested_type_identifier] = STATE(3135), + [sym__type_query_member_expression_in_type_annotation] = STATE(3073), + [sym__type_query_call_expression_in_type_annotation] = STATE(3235), + [sym_type] = STATE(4348), + [sym_constructor_type] = STATE(3304), + [sym_primary_type] = STATE(3305), + [sym_template_literal_type] = STATE(3306), + [sym_infer_type] = STATE(3304), + [sym_conditional_type] = STATE(3306), + [sym_generic_type] = STATE(3306), + [sym_type_query] = STATE(3306), + [sym_index_type_query] = STATE(3306), + [sym_lookup_type] = STATE(3306), + [sym_literal_type] = STATE(3306), + [sym__number] = STATE(3307), + [sym_existential_type] = STATE(3306), + [sym_flow_maybe_type] = STATE(3306), + [sym_parenthesized_type] = STATE(3306), + [sym_predefined_type] = STATE(3306), + [sym_object_type] = STATE(3306), + [sym_type_parameters] = STATE(5185), + [sym_array_type] = STATE(3306), + [sym_tuple_type] = STATE(3306), + [sym_readonly_type] = STATE(3304), + [sym_union_type] = STATE(3306), + [sym_intersection_type] = STATE(3306), + [sym_function_type] = STATE(3304), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_typeof] = ACTIONS(1582), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_new] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1600), + [sym_number] = ACTIONS(1602), + [sym_this] = ACTIONS(1604), + [sym_true] = ACTIONS(1606), + [sym_false] = ACTIONS(1606), + [sym_null] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1606), + [anon_sym_readonly] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_object] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1030), + [anon_sym_infer] = ACTIONS(1032), + [anon_sym_keyof] = ACTIONS(1034), + [anon_sym_unique] = ACTIONS(1036), + [anon_sym_unknown] = ACTIONS(1038), + [anon_sym_never] = ACTIONS(1038), + [anon_sym_LBRACE_PIPE] = ACTIONS(1040), [sym_html_comment] = ACTIONS(5), }, [1140] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(2006), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(3017), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1141] = { - [sym_import] = STATE(4650), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5527), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(1781), - [sym__type_query_call_expression_in_type_annotation] = STATE(1911), - [sym_type] = STATE(2042), - [sym_constructor_type] = STATE(1912), - [sym_primary_type] = STATE(1915), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1912), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5243), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1912), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1912), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1557), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_infer] = ACTIONS(3085), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1142] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4981), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2043), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), - [sym_html_comment] = ACTIONS(5), - }, - [1143] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4448), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4473), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -134620,70 +134626,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, - [1144] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4454), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [1143] = { + [sym_import] = STATE(5041), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5881), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(2954), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4479), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5184), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -134695,143 +134701,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [1144] = { + [sym_import] = STATE(4569), + [sym_nested_identifier] = STATE(5900), + [sym_string] = STATE(1570), + [sym_formal_parameters] = STATE(5868), + [sym_nested_type_identifier] = STATE(1514), + [sym__type_query_member_expression_in_type_annotation] = STATE(1515), + [sym__type_query_call_expression_in_type_annotation] = STATE(1575), + [sym_type] = STATE(1558), + [sym_constructor_type] = STATE(1576), + [sym_primary_type] = STATE(1577), + [sym_template_literal_type] = STATE(1580), + [sym_infer_type] = STATE(1576), + [sym_conditional_type] = STATE(1580), + [sym_generic_type] = STATE(1580), + [sym_type_query] = STATE(1580), + [sym_index_type_query] = STATE(1580), + [sym_lookup_type] = STATE(1580), + [sym_literal_type] = STATE(1580), + [sym__number] = STATE(1582), + [sym_existential_type] = STATE(1580), + [sym_flow_maybe_type] = STATE(1580), + [sym_parenthesized_type] = STATE(1580), + [sym_predefined_type] = STATE(1580), + [sym_object_type] = STATE(1580), + [sym_type_parameters] = STATE(5250), + [sym_array_type] = STATE(1580), + [sym_tuple_type] = STATE(1580), + [sym_readonly_type] = STATE(1576), + [sym_union_type] = STATE(1580), + [sym_intersection_type] = STATE(1580), + [sym_function_type] = STATE(1576), + [sym_identifier] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_typeof] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3033), + [sym_number] = ACTIONS(3035), + [sym_this] = ACTIONS(3263), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_undefined] = ACTIONS(3039), + [anon_sym_readonly] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3043), + [anon_sym_any] = ACTIONS(3031), + [anon_sym_number] = ACTIONS(3031), + [anon_sym_boolean] = ACTIONS(3031), + [anon_sym_string] = ACTIONS(3031), + [anon_sym_symbol] = ACTIONS(3031), + [anon_sym_object] = ACTIONS(3031), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_infer] = ACTIONS(3049), + [anon_sym_keyof] = ACTIONS(3051), + [anon_sym_unique] = ACTIONS(3053), + [anon_sym_unknown] = ACTIONS(3031), + [anon_sym_never] = ACTIONS(3031), + [anon_sym_LBRACE_PIPE] = ACTIONS(3055), [sym_html_comment] = ACTIONS(5), }, [1145] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5567), - [sym_string] = STATE(1975), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(1865), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4981), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2045), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3051), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4522), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3069), - [sym_number] = ACTIONS(3071), - [sym_this] = ACTIONS(3257), - [sym_true] = ACTIONS(3075), - [sym_false] = ACTIONS(3075), - [sym_null] = ACTIONS(3075), - [sym_undefined] = ACTIONS(3075), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3067), - [anon_sym_number] = ACTIONS(3067), - [anon_sym_boolean] = ACTIONS(3067), - [anon_sym_string] = ACTIONS(3067), - [anon_sym_symbol] = ACTIONS(3067), - [anon_sym_object] = ACTIONS(3067), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3087), - [anon_sym_unique] = ACTIONS(3089), - [anon_sym_unknown] = ACTIONS(3067), - [anon_sym_never] = ACTIONS(3067), - [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1146] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4489), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4527), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -134842,70 +134922,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1147] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4492), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4530), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -134916,70 +134996,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1148] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4497), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4546), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -134990,70 +135070,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1149] = { - [sym_import] = STATE(4681), - [sym_nested_identifier] = STATE(5474), - [sym_string] = STATE(2994), - [sym_formal_parameters] = STATE(5619), - [sym_nested_type_identifier] = STATE(2939), - [sym__type_query_member_expression_in_type_annotation] = STATE(3303), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4510), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(2981), - [sym_template_literal_type] = STATE(3039), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3039), - [sym_generic_type] = STATE(3039), - [sym_type_query] = STATE(3039), - [sym_index_type_query] = STATE(3039), - [sym_lookup_type] = STATE(3039), - [sym_literal_type] = STATE(3039), - [sym__number] = STATE(3041), - [sym_existential_type] = STATE(3039), - [sym_flow_maybe_type] = STATE(3039), - [sym_parenthesized_type] = STATE(3039), - [sym_predefined_type] = STATE(3039), - [sym_object_type] = STATE(3039), - [sym_type_parameters] = STATE(5454), - [sym_array_type] = STATE(3039), - [sym_tuple_type] = STATE(3039), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3039), - [sym_intersection_type] = STATE(3039), - [sym_function_type] = STATE(3007), + [sym_import] = STATE(4732), + [sym_nested_identifier] = STATE(5721), + [sym_string] = STATE(3054), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2953), + [sym__type_query_member_expression_in_type_annotation] = STATE(3324), + [sym__type_query_call_expression_in_type_annotation] = STATE(2980), + [sym_type] = STATE(4551), + [sym_constructor_type] = STATE(2995), + [sym_primary_type] = STATE(2996), + [sym_template_literal_type] = STATE(2997), + [sym_infer_type] = STATE(2995), + [sym_conditional_type] = STATE(2997), + [sym_generic_type] = STATE(2997), + [sym_type_query] = STATE(2997), + [sym_index_type_query] = STATE(2997), + [sym_lookup_type] = STATE(2997), + [sym_literal_type] = STATE(2997), + [sym__number] = STATE(3000), + [sym_existential_type] = STATE(2997), + [sym_flow_maybe_type] = STATE(2997), + [sym_parenthesized_type] = STATE(2997), + [sym_predefined_type] = STATE(2997), + [sym_object_type] = STATE(2997), + [sym_type_parameters] = STATE(5490), + [sym_array_type] = STATE(2997), + [sym_tuple_type] = STATE(2997), + [sym_readonly_type] = STATE(2995), + [sym_union_type] = STATE(2997), + [sym_intersection_type] = STATE(2997), + [sym_function_type] = STATE(2995), [sym_identifier] = ACTIONS(1532), [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_typeof] = ACTIONS(1536), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1540), [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1642), + [anon_sym_new] = ACTIONS(1638), [anon_sym_AMP] = ACTIONS(571), [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(215), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), @@ -135064,125 +135144,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1560), [sym_null] = ACTIONS(1560), [sym_undefined] = ACTIONS(1560), - [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1644), [anon_sym_QMARK] = ACTIONS(593), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), [anon_sym_abstract] = ACTIONS(597), [anon_sym_infer] = ACTIONS(599), [anon_sym_keyof] = ACTIONS(601), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), [sym_html_comment] = ACTIONS(5), }, [1150] = { - [sym_import] = STATE(4878), - [sym_nested_identifier] = STATE(5796), - [sym_string] = STATE(3437), - [sym_formal_parameters] = STATE(5475), - [sym_nested_type_identifier] = STATE(3278), - [sym__type_query_member_expression_in_type_annotation] = STATE(2937), - [sym__type_query_call_expression_in_type_annotation] = STATE(2938), - [sym_type] = STATE(4587), - [sym_constructor_type] = STATE(3007), - [sym_primary_type] = STATE(3347), - [sym_template_literal_type] = STATE(3453), - [sym_infer_type] = STATE(3007), - [sym_conditional_type] = STATE(3453), - [sym_generic_type] = STATE(3453), - [sym_type_query] = STATE(3453), - [sym_index_type_query] = STATE(3453), - [sym_lookup_type] = STATE(3453), - [sym_literal_type] = STATE(3453), - [sym__number] = STATE(3454), - [sym_existential_type] = STATE(3453), - [sym_flow_maybe_type] = STATE(3453), - [sym_parenthesized_type] = STATE(3453), - [sym_predefined_type] = STATE(3453), - [sym_object_type] = STATE(3453), - [sym_type_parameters] = STATE(5248), - [sym_array_type] = STATE(3453), - [sym_tuple_type] = STATE(3453), - [sym_readonly_type] = STATE(3007), - [sym_union_type] = STATE(3453), - [sym_intersection_type] = STATE(3453), - [sym_function_type] = STATE(3007), - [sym_identifier] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_typeof] = ACTIONS(2999), + [sym_import] = STATE(4622), + [sym_nested_identifier] = STATE(5836), + [sym_string] = STATE(3438), + [sym_formal_parameters] = STATE(5576), + [sym_nested_type_identifier] = STATE(3313), + [sym__type_query_member_expression_in_type_annotation] = STATE(3239), + [sym__type_query_call_expression_in_type_annotation] = STATE(3345), + [sym_type] = STATE(3403), + [sym_constructor_type] = STATE(3445), + [sym_primary_type] = STATE(3447), + [sym_template_literal_type] = STATE(3448), + [sym_infer_type] = STATE(3445), + [sym_conditional_type] = STATE(3448), + [sym_generic_type] = STATE(3448), + [sym_type_query] = STATE(3448), + [sym_index_type_query] = STATE(3448), + [sym_lookup_type] = STATE(3448), + [sym_literal_type] = STATE(3448), + [sym__number] = STATE(3449), + [sym_existential_type] = STATE(3448), + [sym_flow_maybe_type] = STATE(3448), + [sym_parenthesized_type] = STATE(3448), + [sym_predefined_type] = STATE(3448), + [sym_object_type] = STATE(3448), + [sym_type_parameters] = STATE(5288), + [sym_array_type] = STATE(3448), + [sym_tuple_type] = STATE(3448), + [sym_readonly_type] = STATE(3445), + [sym_union_type] = STATE(3448), + [sym_intersection_type] = STATE(3448), + [sym_function_type] = STATE(3445), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_typeof] = ACTIONS(3095), [anon_sym_import] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_SQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3021), - [sym_number] = ACTIONS(3023), - [sym_this] = ACTIONS(3261), - [sym_true] = ACTIONS(3027), - [sym_false] = ACTIONS(3027), - [sym_null] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(3031), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_object] = ACTIONS(3015), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3039), - [anon_sym_unique] = ACTIONS(3041), - [anon_sym_unknown] = ACTIONS(3015), - [anon_sym_never] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3117), + [sym_number] = ACTIONS(3119), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3123), + [sym_false] = ACTIONS(3123), + [sym_null] = ACTIONS(3123), + [sym_undefined] = ACTIONS(3123), + [anon_sym_readonly] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3127), + [anon_sym_any] = ACTIONS(3111), + [anon_sym_number] = ACTIONS(3111), + [anon_sym_boolean] = ACTIONS(3111), + [anon_sym_string] = ACTIONS(3111), + [anon_sym_symbol] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_infer] = ACTIONS(3133), + [anon_sym_keyof] = ACTIONS(3135), + [anon_sym_unique] = ACTIONS(3137), + [anon_sym_unknown] = ACTIONS(3111), + [anon_sym_never] = ACTIONS(3111), + [anon_sym_LBRACE_PIPE] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [1151] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), [sym_identifier] = ACTIONS(3269), [anon_sym_export] = ACTIONS(3271), [anon_sym_STAR] = ACTIONS(3273), @@ -135200,9 +135280,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), @@ -135228,258 +135308,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1152] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3269), - [anon_sym_export] = ACTIONS(3271), + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3311), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_let] = ACTIONS(3309), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3317), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_protected] = ACTIONS(3301), - [anon_sym_override] = ACTIONS(3303), - [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_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3327), + [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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1153] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3269), - [anon_sym_export] = ACTIONS(3271), + [sym_identifier] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_EQ] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_COMMA] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_let] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3331), + [anon_sym_RPAREN] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3329), + [anon_sym_COLON] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_RBRACK] = ACTIONS(3331), + [anon_sym_DOT] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_async] = ACTIONS(3329), + [anon_sym_function] = ACTIONS(3329), + [anon_sym_EQ_GT] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3331), + [anon_sym_PIPE] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_GT] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_void] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3331), + [sym_number] = ACTIONS(3331), + [sym_private_property_identifier] = ACTIONS(3331), + [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(3331), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_readonly] = ACTIONS(3329), + [anon_sym_get] = ACTIONS(3329), + [anon_sym_set] = ACTIONS(3329), + [anon_sym_QMARK] = ACTIONS(3331), + [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_extends] = ACTIONS(3329), + [sym_html_comment] = ACTIONS(5), + }, + [1154] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3311), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3309), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3317), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_protected] = ACTIONS(3301), - [anon_sym_override] = ACTIONS(3303), - [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_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3327), + [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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1154] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3313), - [anon_sym_export] = ACTIONS(3315), + [1155] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3337), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3313), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3335), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3341), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3313), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_any] = ACTIONS(3313), - [anon_sym_number] = ACTIONS(3313), - [anon_sym_boolean] = ACTIONS(3313), - [anon_sym_string] = ACTIONS(3313), - [anon_sym_symbol] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3351), + [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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1155] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4576), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4576), - [sym_pair] = STATE(4576), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4744), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3335), + [1156] = { + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3353), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_RBRACK] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_class] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3353), + [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_void] = ACTIONS(3353), + [anon_sym_delete] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3355), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_number] = ACTIONS(3355), + [sym_private_property_identifier] = ACTIONS(3355), + [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(3355), + [anon_sym_static] = ACTIONS(3353), + [anon_sym_readonly] = ACTIONS(3353), + [anon_sym_get] = ACTIONS(3353), + [anon_sym_set] = ACTIONS(3353), + [anon_sym_QMARK] = ACTIONS(3355), + [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_extends] = ACTIONS(3353), + [sym_html_comment] = ACTIONS(5), + }, + [1157] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3337), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3335), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), @@ -135488,9 +135712,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), @@ -135499,491 +135723,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(3345), [anon_sym_get] = ACTIONS(3347), [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3335), [anon_sym_public] = ACTIONS(3349), [anon_sym_private] = ACTIONS(3349), [anon_sym_protected] = ACTIONS(3349), [anon_sym_override] = ACTIONS(3351), - [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_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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1156] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3355), + [1158] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4608), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4608), + [sym_pair] = STATE(4608), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3361), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3367), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3365), - [anon_sym_set] = ACTIONS(3365), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3369), - [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_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3377), + [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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1157] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3313), - [anon_sym_export] = ACTIONS(3315), + [1159] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3311), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3313), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3309), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3317), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3327), - [anon_sym_set] = ACTIONS(3327), - [anon_sym_declare] = ACTIONS(3313), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_any] = ACTIONS(3313), - [anon_sym_number] = ACTIONS(3313), - [anon_sym_boolean] = ACTIONS(3313), - [anon_sym_string] = ACTIONS(3313), - [anon_sym_symbol] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_private] = ACTIONS(3325), + [anon_sym_protected] = ACTIONS(3325), + [anon_sym_override] = ACTIONS(3327), + [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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1158] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3375), + [1160] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4608), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4608), + [sym_pair] = STATE(4608), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4648), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3361), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_let] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3367), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_protected] = ACTIONS(3389), - [anon_sym_override] = ACTIONS(3391), - [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_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3377), + [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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1159] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3375), + [1161] = { + [sym_export_statement] = STATE(3791), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3791), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3791), + [sym_property_signature] = STATE(3791), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3791), + [sym_index_signature] = STATE(3791), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3337), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3373), + [anon_sym_COMMA] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_let] = ACTIONS(3335), [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3387), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3341), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_protected] = ACTIONS(3389), - [anon_sym_override] = ACTIONS(3391), - [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_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3351), + [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(3305), - [anon_sym_PIPE_RBRACE] = ACTIONS(3307), + [anon_sym_PIPE_RBRACE] = ACTIONS(3389), [sym_html_comment] = ACTIONS(5), }, - [1160] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3375), + [1162] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3393), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3391), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3381), + [anon_sym_async] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3399), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3385), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_protected] = ACTIONS(3389), - [anon_sym_override] = ACTIONS(3391), - [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_static] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3409), + [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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1161] = { - [sym_export_statement] = STATE(3844), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4721), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4721), - [sym_pair] = STATE(4721), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3844), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3844), - [sym_property_signature] = STATE(3844), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3844), - [sym_index_signature] = STATE(3844), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4734), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3269), - [anon_sym_export] = ACTIONS(3271), + [1163] = { + [sym_identifier] = ACTIONS(3411), + [anon_sym_export] = ACTIONS(3411), + [anon_sym_type] = ACTIONS(3411), + [anon_sym_EQ] = ACTIONS(3411), + [anon_sym_namespace] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_COMMA] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_typeof] = ACTIONS(3411), + [anon_sym_import] = ACTIONS(3411), + [anon_sym_let] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_RPAREN] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3411), + [anon_sym_COLON] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_RBRACK] = ACTIONS(3413), + [anon_sym_DOT] = ACTIONS(3411), + [anon_sym_class] = ACTIONS(3411), + [anon_sym_async] = ACTIONS(3411), + [anon_sym_function] = ACTIONS(3411), + [anon_sym_EQ_GT] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3411), + [anon_sym_SLASH] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_GT] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_void] = ACTIONS(3411), + [anon_sym_delete] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_number] = ACTIONS(3413), + [sym_private_property_identifier] = ACTIONS(3413), + [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(3413), + [anon_sym_static] = ACTIONS(3411), + [anon_sym_readonly] = ACTIONS(3411), + [anon_sym_get] = ACTIONS(3411), + [anon_sym_set] = ACTIONS(3411), + [anon_sym_QMARK] = ACTIONS(3413), + [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_extends] = ACTIONS(3411), + [sym_html_comment] = ACTIONS(5), + }, + [1164] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3393), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3391), [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3399), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3297), - [anon_sym_get] = ACTIONS(3299), - [anon_sym_set] = ACTIONS(3299), - [anon_sym_declare] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3301), - [anon_sym_private] = ACTIONS(3301), - [anon_sym_protected] = ACTIONS(3301), - [anon_sym_override] = ACTIONS(3303), - [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_static] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3409), + [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(3305), - [anon_sym_PIPE_RBRACE] = ACTIONS(3401), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1162] = { - [sym_export_statement] = STATE(3815), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(4555), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(4576), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(4555), - [sym_method_definition] = STATE(4576), - [sym_pair] = STATE(4576), - [sym_pair_pattern] = STATE(4555), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3815), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3815), - [sym_property_signature] = STATE(3815), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3815), - [sym_index_signature] = STATE(3815), - [aux_sym_export_statement_repeat1] = STATE(4481), - [aux_sym_object_repeat1] = STATE(4744), - [aux_sym_object_pattern_repeat1] = STATE(4745), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3335), + [1165] = { + [sym_export_statement] = STATE(3822), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(4806), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(4566), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(4806), + [sym_method_definition] = STATE(4566), + [sym_pair] = STATE(4566), + [sym_pair_pattern] = STATE(4806), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3822), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3822), + [sym_property_signature] = STATE(3822), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3822), + [sym_index_signature] = STATE(3822), + [aux_sym_export_statement_repeat1] = STATE(4475), + [aux_sym_object_repeat1] = STATE(4570), + [aux_sym_object_pattern_repeat1] = STATE(4650), + [sym_identifier] = ACTIONS(3335), + [anon_sym_export] = ACTIONS(3337), [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_namespace] = ACTIONS(3335), [anon_sym_LBRACE] = ACTIONS(3275), [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3335), [anon_sym_LPAREN] = ACTIONS(3281), [anon_sym_SEMI] = ACTIONS(3283), [anon_sym_LBRACK] = ACTIONS(3285), @@ -135992,9 +136288,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), @@ -136003,60 +136299,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(3345), [anon_sym_get] = ACTIONS(3347), [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3335), [anon_sym_public] = ACTIONS(3349), [anon_sym_private] = ACTIONS(3349), [anon_sym_protected] = ACTIONS(3349), [anon_sym_override] = ACTIONS(3351), - [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_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(3305), [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, - [1163] = { - [sym_variable_declarator] = STATE(4416), - [sym_object_pattern] = STATE(3718), - [sym_array_pattern] = STATE(3718), - [sym__destructuring_pattern] = STATE(3718), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3405), + [1166] = { + [sym_nested_identifier] = STATE(772), + [sym_string] = STATE(789), + [sym__module] = STATE(917), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3417), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136070,62 +136364,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1164] = { - [sym_nested_identifier] = STATE(201), - [sym_string] = STATE(203), - [sym__module] = STATE(231), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3411), + [1167] = { + [sym_nested_identifier] = STATE(772), + [sym_string] = STATE(789), + [sym__module] = STATE(917), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3417), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136139,66 +136435,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1165] = { - [sym_variable_declarator] = STATE(4416), - [sym_object_pattern] = STATE(3718), - [sym_array_pattern] = STATE(3718), - [sym__destructuring_pattern] = STATE(3718), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3405), + [1168] = { + [sym_nested_identifier] = STATE(772), + [sym_string] = STATE(789), + [sym__module] = STATE(917), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3417), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136212,133 +136506,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [1166] = { - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_EQ_GT] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [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(3419), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3419), - [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_extends] = ACTIONS(3417), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1167] = { - [sym_nested_identifier] = STATE(783), - [sym_string] = STATE(798), - [sym__module] = STATE(878), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3421), + [1169] = { + [sym_variable_declarator] = STATE(4453), + [sym_object_pattern] = STATE(3548), + [sym_array_pattern] = STATE(3548), + [sym__destructuring_pattern] = STATE(3548), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3419), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136352,64 +136579,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1168] = { - [sym_nested_identifier] = STATE(201), - [sym_string] = STATE(203), - [sym__module] = STATE(231), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3411), + [1170] = { + [sym_variable_declarator] = STATE(4453), + [sym_object_pattern] = STATE(3548), + [sym_array_pattern] = STATE(3548), + [sym__destructuring_pattern] = STATE(3548), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3419), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136423,66 +136650,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1169] = { - [sym_variable_declarator] = STATE(4416), - [sym_object_pattern] = STATE(3718), - [sym_array_pattern] = STATE(3718), - [sym__destructuring_pattern] = STATE(3718), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3405), + [1171] = { + [sym_nested_identifier] = STATE(205), + [sym_string] = STATE(207), + [sym__module] = STATE(224), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136496,204 +136719,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3429), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [1170] = { - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_RPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_RBRACK] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_EQ_GT] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [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(3425), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3425), - [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_extends] = ACTIONS(3423), - [sym_html_comment] = ACTIONS(5), - }, - [1171] = { - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_EQ_GT] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [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(3429), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3429), - [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_extends] = ACTIONS(3427), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1172] = { - [sym_nested_identifier] = STATE(783), - [sym_string] = STATE(798), - [sym__module] = STATE(878), - [aux_sym_object_repeat1] = STATE(4792), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3421), + [sym_nested_identifier] = STATE(205), + [sym_string] = STATE(207), + [sym__module] = STATE(224), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136707,64 +136790,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3429), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1173] = { - [sym_nested_identifier] = STATE(783), - [sym_string] = STATE(798), - [sym__module] = STATE(878), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3421), + [sym_nested_identifier] = STATE(205), + [sym_string] = STATE(207), + [sym__module] = STATE(224), + [aux_sym_object_repeat1] = STATE(4647), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136778,64 +136861,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3429), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1174] = { - [sym_nested_identifier] = STATE(201), - [sym_string] = STATE(203), - [sym__module] = STATE(231), - [aux_sym_object_repeat1] = STATE(4810), - [aux_sym_object_pattern_repeat1] = STATE(4815), - [sym_identifier] = ACTIONS(3411), + [sym_variable_declarator] = STATE(4453), + [sym_object_pattern] = STATE(3548), + [sym_array_pattern] = STATE(3548), + [sym__destructuring_pattern] = STATE(3548), + [aux_sym_object_repeat1] = STATE(4665), + [aux_sym_object_pattern_repeat1] = STATE(4651), + [sym_identifier] = ACTIONS(3419), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(661), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136849,32 +136934,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(690), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1175] = { - [sym_nested_identifier] = STATE(1616), - [sym_string] = STATE(1617), - [sym__module] = STATE(1711), + [sym_nested_identifier] = STATE(1563), + [sym_string] = STATE(1564), + [sym__module] = STATE(1677), [sym_identifier] = ACTIONS(3431), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(824), @@ -136882,30 +136965,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(826), [anon_sym_RBRACE] = ACTIONS(826), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), [anon_sym_RPAREN] = ACTIONS(826), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(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] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136920,61 +137003,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1176] = { - [sym_nested_identifier] = STATE(1616), - [sym_string] = STATE(1617), - [sym__module] = STATE(1711), + [sym_nested_identifier] = STATE(1563), + [sym_string] = STATE(1564), + [sym__module] = STATE(1677), [sym_identifier] = ACTIONS(3431), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(151), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -136989,61 +137072,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1177] = { - [sym_nested_identifier] = STATE(1616), - [sym_string] = STATE(1617), - [sym__module] = STATE(1711), + [sym_nested_identifier] = STATE(1563), + [sym_string] = STATE(1564), + [sym__module] = STATE(1677), [sym_identifier] = ACTIONS(3431), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137058,60 +137141,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1178] = { - [sym_nested_identifier] = STATE(1616), - [sym_string] = STATE(1617), - [sym__module] = STATE(1711), + [sym_nested_identifier] = STATE(1563), + [sym_string] = STATE(1564), + [sym__module] = STATE(1677), [sym_identifier] = ACTIONS(3431), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137126,51 +137209,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1179] = { - [sym_export_statement] = STATE(3814), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(5225), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(5230), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(5225), - [sym_method_definition] = STATE(5230), - [sym_pair] = STATE(5230), - [sym_pair_pattern] = STATE(5225), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3814), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3814), - [sym_property_signature] = STATE(3814), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3814), - [sym_index_signature] = STATE(3814), - [aux_sym_export_statement_repeat1] = STATE(4481), + [sym_export_statement] = STATE(3858), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(5296), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(5298), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(5296), + [sym_method_definition] = STATE(5298), + [sym_pair] = STATE(5298), + [sym_pair_pattern] = STATE(5296), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3858), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3858), + [sym_property_signature] = STATE(3858), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3858), + [sym_index_signature] = STATE(3858), + [aux_sym_export_statement_repeat1] = STATE(4475), [sym_identifier] = ACTIONS(3433), [anon_sym_export] = ACTIONS(3435), [anon_sym_STAR] = ACTIONS(3273), @@ -137187,9 +137270,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), @@ -137214,31 +137297,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1180] = { - [sym_export_statement] = STATE(3790), - [sym_object_pattern] = STATE(5536), - [sym_object_assignment_pattern] = STATE(5225), - [sym_array_pattern] = STATE(5536), - [sym__call_signature] = STATE(3910), - [sym__destructuring_pattern] = STATE(5536), - [sym_spread_element] = STATE(5230), - [sym_string] = STATE(3085), - [sym_decorator] = STATE(1344), - [sym_formal_parameters] = STATE(3315), - [sym_rest_pattern] = STATE(5225), - [sym_method_definition] = STATE(5230), - [sym_pair] = STATE(5230), - [sym_pair_pattern] = STATE(5225), - [sym__property_name] = STATE(3085), - [sym_computed_property_name] = STATE(3085), - [sym_method_signature] = STATE(3790), - [sym_accessibility_modifier] = STATE(2771), - [sym_override_modifier] = STATE(2792), - [sym_call_signature] = STATE(3790), - [sym_property_signature] = STATE(3790), - [sym_type_parameters] = STATE(5233), - [sym_construct_signature] = STATE(3790), - [sym_index_signature] = STATE(3790), - [aux_sym_export_statement_repeat1] = STATE(4481), + [sym_export_statement] = STATE(3801), + [sym_object_pattern] = STATE(5726), + [sym_object_assignment_pattern] = STATE(5296), + [sym_array_pattern] = STATE(5726), + [sym__call_signature] = STATE(4392), + [sym__destructuring_pattern] = STATE(5726), + [sym_spread_element] = STATE(5298), + [sym_string] = STATE(3154), + [sym_decorator] = STATE(1313), + [sym_formal_parameters] = STATE(3332), + [sym_rest_pattern] = STATE(5296), + [sym_method_definition] = STATE(5298), + [sym_pair] = STATE(5298), + [sym_pair_pattern] = STATE(5296), + [sym__property_name] = STATE(3154), + [sym_computed_property_name] = STATE(3154), + [sym_method_signature] = STATE(3801), + [sym_accessibility_modifier] = STATE(2788), + [sym_override_modifier] = STATE(2808), + [sym_call_signature] = STATE(3801), + [sym_property_signature] = STATE(3801), + [sym_type_parameters] = STATE(5331), + [sym_construct_signature] = STATE(3801), + [sym_index_signature] = STATE(3801), + [aux_sym_export_statement_repeat1] = STATE(4475), [sym_identifier] = ACTIONS(3433), [anon_sym_export] = ACTIONS(3435), [anon_sym_STAR] = ACTIONS(3273), @@ -137255,9 +137338,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3291), [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1598), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3293), [sym_private_property_identifier] = ACTIONS(3293), @@ -137282,38 +137365,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1181] = { - [sym_nested_identifier] = STATE(1616), - [sym_string] = STATE(1617), - [sym__module] = STATE(1711), + [sym_nested_identifier] = STATE(1563), + [sym_string] = STATE(1564), + [sym__module] = STATE(1677), [sym_identifier] = ACTIONS(3431), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(834), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137328,61 +137412,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1182] = { - [sym_variable_declarator] = STATE(4416), - [sym_object_pattern] = STATE(3718), - [sym_array_pattern] = STATE(3718), - [sym__destructuring_pattern] = STATE(3718), - [sym_identifier] = ACTIONS(3405), + [sym_nested_identifier] = STATE(1563), + [sym_string] = STATE(1564), + [sym__module] = STATE(1677), + [sym_identifier] = ACTIONS(3431), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137397,57 +137478,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1183] = { - [sym_nested_identifier] = STATE(783), - [sym_string] = STATE(798), - [sym__module] = STATE(878), - [sym_identifier] = ACTIONS(3421), + [sym_nested_identifier] = STATE(772), + [sym_string] = STATE(789), + [sym__module] = STATE(917), + [sym_identifier] = ACTIONS(3417), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137462,59 +137545,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(1550), [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1184] = { - [sym_nested_identifier] = STATE(1608), - [sym_string] = STATE(1612), - [sym__module] = STATE(1771), - [sym_identifier] = ACTIONS(3454), + [sym_nested_identifier] = STATE(205), + [sym_string] = STATE(207), + [sym__module] = STATE(224), + [sym_identifier] = ACTIONS(3425), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137529,60 +137612,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3429), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [1185] = { - [sym_nested_identifier] = STATE(1616), - [sym_string] = STATE(1617), - [sym__module] = STATE(1711), + [sym_type_arguments] = STATE(2936), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_as] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_COMMA] = ACTIONS(3456), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_RPAREN] = ACTIONS(3456), + [anon_sym_in] = ACTIONS(3454), + [anon_sym_COLON] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_RBRACK] = ACTIONS(3456), + [anon_sym_DOT] = ACTIONS(3456), + [anon_sym_QMARK_DOT] = ACTIONS(3456), + [anon_sym_PLUS_EQ] = ACTIONS(3456), + [anon_sym_DASH_EQ] = ACTIONS(3456), + [anon_sym_STAR_EQ] = ACTIONS(3456), + [anon_sym_SLASH_EQ] = ACTIONS(3456), + [anon_sym_PERCENT_EQ] = ACTIONS(3456), + [anon_sym_CARET_EQ] = ACTIONS(3456), + [anon_sym_AMP_EQ] = ACTIONS(3456), + [anon_sym_PIPE_EQ] = ACTIONS(3456), + [anon_sym_GT_GT_EQ] = ACTIONS(3456), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3456), + [anon_sym_LT_LT_EQ] = ACTIONS(3456), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3456), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3456), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3456), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3456), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_PIPE_PIPE] = ACTIONS(3454), + [anon_sym_GT_GT] = ACTIONS(3454), + [anon_sym_GT_GT_GT] = ACTIONS(3454), + [anon_sym_LT_LT] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3454), + [anon_sym_CARET] = ACTIONS(3454), + [anon_sym_PIPE] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_PERCENT] = ACTIONS(3454), + [anon_sym_STAR_STAR] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_LT_EQ] = ACTIONS(3456), + [anon_sym_EQ_EQ] = ACTIONS(3454), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3456), + [anon_sym_BANG_EQ] = ACTIONS(3454), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3456), + [anon_sym_GT_EQ] = ACTIONS(3456), + [anon_sym_GT] = ACTIONS(3454), + [anon_sym_QMARK_QMARK] = ACTIONS(3454), + [anon_sym_instanceof] = ACTIONS(3456), + [anon_sym_PLUS_PLUS] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3456), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3456), + [anon_sym_QMARK] = ACTIONS(3454), + [anon_sym_satisfies] = ACTIONS(3456), + [anon_sym_extends] = ACTIONS(3458), + [anon_sym_implements] = ACTIONS(3456), + [sym__ternary_qmark] = ACTIONS(3456), + [sym_html_comment] = ACTIONS(5), + }, + [1186] = { + [sym_nested_identifier] = STATE(1563), + [sym_string] = STATE(1564), + [sym__module] = STATE(1677), [sym_identifier] = ACTIONS(3431), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(222), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(222), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(844), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137597,58 +137746,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1186] = { - [sym_nested_identifier] = STATE(1616), - [sym_string] = STATE(1617), - [sym__module] = STATE(1711), - [sym_identifier] = ACTIONS(3431), + [1187] = { + [sym_nested_identifier] = STATE(772), + [sym_string] = STATE(789), + [sym__module] = STATE(917), + [sym_identifier] = ACTIONS(3417), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(152), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137663,59 +137813,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1187] = { - [sym_nested_identifier] = STATE(1608), - [sym_string] = STATE(1612), - [sym__module] = STATE(1771), - [sym_identifier] = ACTIONS(3454), + [1188] = { + [sym_nested_identifier] = STATE(1597), + [sym_string] = STATE(1604), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3460), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137730,59 +137880,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1188] = { - [sym_nested_identifier] = STATE(1616), - [sym_string] = STATE(1617), - [sym__module] = STATE(1711), - [sym_identifier] = ACTIONS(3431), + [1189] = { + [sym_variable_declarator] = STATE(4453), + [sym_object_pattern] = STATE(3548), + [sym_array_pattern] = STATE(3548), + [sym__destructuring_pattern] = STATE(3548), + [sym_identifier] = ACTIONS(3419), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(872), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137797,59 +137949,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(184), - [anon_sym_SQUOTE] = ACTIONS(186), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1189] = { - [sym_nested_identifier] = STATE(1608), - [sym_string] = STATE(1612), - [sym__module] = STATE(1771), - [sym_identifier] = ACTIONS(3454), + [1190] = { + [sym_nested_identifier] = STATE(1597), + [sym_string] = STATE(1604), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3460), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(868), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(874), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137864,59 +138014,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [anon_sym_DQUOTE] = ACTIONS(83), [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1190] = { - [sym_nested_identifier] = STATE(201), - [sym_string] = STATE(203), - [sym__module] = STATE(231), - [sym_identifier] = ACTIONS(3411), + [1191] = { + [sym_variable_declarator] = STATE(4453), + [sym_object_pattern] = STATE(3548), + [sym_array_pattern] = STATE(3548), + [sym__destructuring_pattern] = STATE(3548), + [sym_identifier] = ACTIONS(3419), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137931,59 +138083,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, - [1191] = { - [sym_nested_identifier] = STATE(783), - [sym_string] = STATE(798), - [sym__module] = STATE(878), - [sym_identifier] = ACTIONS(3421), + [1192] = { + [sym_nested_identifier] = STATE(1563), + [sym_string] = STATE(1564), + [sym__module] = STATE(1677), + [sym_identifier] = ACTIONS(3431), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(824), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(874), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -137998,61 +138148,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), - [sym_html_comment] = ACTIONS(5), - }, - [1192] = { - [sym_variable_declarator] = STATE(4416), - [sym_object_pattern] = STATE(3718), - [sym_array_pattern] = STATE(3718), - [sym__destructuring_pattern] = STATE(3718), - [sym_identifier] = ACTIONS(3405), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), + [sym_html_comment] = ACTIONS(5), + }, + [1193] = { + [sym_type_arguments] = STATE(2935), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_EQ] = ACTIONS(3462), + [anon_sym_as] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_COMMA] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_RPAREN] = ACTIONS(3464), + [anon_sym_in] = ACTIONS(3462), + [anon_sym_COLON] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_RBRACK] = ACTIONS(3464), + [anon_sym_DOT] = ACTIONS(3464), + [anon_sym_QMARK_DOT] = ACTIONS(3464), + [anon_sym_PLUS_EQ] = ACTIONS(3464), + [anon_sym_DASH_EQ] = ACTIONS(3464), + [anon_sym_STAR_EQ] = ACTIONS(3464), + [anon_sym_SLASH_EQ] = ACTIONS(3464), + [anon_sym_PERCENT_EQ] = ACTIONS(3464), + [anon_sym_CARET_EQ] = ACTIONS(3464), + [anon_sym_AMP_EQ] = ACTIONS(3464), + [anon_sym_PIPE_EQ] = ACTIONS(3464), + [anon_sym_GT_GT_EQ] = ACTIONS(3464), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3464), + [anon_sym_LT_LT_EQ] = ACTIONS(3464), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3464), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3464), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3464), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3464), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_GT_GT] = ACTIONS(3462), + [anon_sym_GT_GT_GT] = ACTIONS(3462), + [anon_sym_LT_LT] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_CARET] = ACTIONS(3462), + [anon_sym_PIPE] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_PERCENT] = ACTIONS(3462), + [anon_sym_STAR_STAR] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_LT_EQ] = ACTIONS(3464), + [anon_sym_EQ_EQ] = ACTIONS(3462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3464), + [anon_sym_BANG_EQ] = ACTIONS(3462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3464), + [anon_sym_GT_EQ] = ACTIONS(3464), + [anon_sym_GT] = ACTIONS(3462), + [anon_sym_QMARK_QMARK] = ACTIONS(3462), + [anon_sym_instanceof] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3464), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_satisfies] = ACTIONS(3464), + [anon_sym_extends] = ACTIONS(3466), + [anon_sym_implements] = ACTIONS(3464), + [sym__ternary_qmark] = ACTIONS(3464), + [sym_html_comment] = ACTIONS(5), + }, + [1194] = { + [sym_nested_identifier] = STATE(1597), + [sym_string] = STATE(1604), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3460), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(848), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(153), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(682), - [anon_sym_QMARK_DOT] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_QMARK_DOT] = ACTIONS(153), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(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(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), @@ -138067,85 +138282,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_LT_EQ] = ACTIONS(153), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(153), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(153), [anon_sym_GT] = ACTIONS(120), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(154), - [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(153), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(154), - [sym__ternary_qmark] = ACTIONS(154), + [sym__automatic_semicolon] = ACTIONS(153), + [sym__ternary_qmark] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 14, - ACTIONS(661), 1, - anon_sym_EQ, - ACTIONS(671), 1, - anon_sym_COLON, - ACTIONS(682), 1, - anon_sym_EQ_GT, - ACTIONS(690), 1, - anon_sym_QMARK, - ACTIONS(694), 1, - anon_sym_RBRACE, - ACTIONS(2149), 1, - anon_sym_LPAREN, - ACTIONS(2158), 1, - anon_sym_LT, - ACTIONS(3456), 1, - sym_identifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [0] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - 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(120), 23, + ACTIONS(3468), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -138161,52 +138327,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [93] = 14, - ACTIONS(661), 1, - anon_sym_EQ, - ACTIONS(667), 1, - anon_sym_RBRACE, - ACTIONS(671), 1, - anon_sym_COLON, - ACTIONS(682), 1, - anon_sym_EQ_GT, - ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(2149), 1, - anon_sym_LPAREN, - ACTIONS(2158), 1, - anon_sym_LT, - ACTIONS(3456), 1, - sym_identifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(154), 14, - sym__automatic_semicolon, + ACTIONS(3470), 39, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138222,57 +138363,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(120), 23, - anon_sym_STAR, - anon_sym_as, - 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_AMP, - 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_GT, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [186] = 15, + anon_sym_implements, + [71] = 15, ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(184), 1, + anon_sym_COMMA, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(886), 1, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(894), 1, anon_sym_EQ, - ACTIONS(891), 1, + ACTIONS(899), 1, anon_sym_COLON, - ACTIONS(895), 1, + ACTIONS(903), 1, anon_sym_EQ_GT, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -138285,7 +138412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138326,7 +138453,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [281] = 14, + [166] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3472), 23, + anon_sym_STAR, + anon_sym_EQ, + 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_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3474), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [237] = 14, ACTIONS(661), 1, anon_sym_EQ, ACTIONS(671), 1, @@ -138337,20 +138532,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(692), 1, anon_sym_RBRACE, - ACTIONS(2149), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2158), 1, + ACTIONS(2182), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3476), 1, sym_identifier, - STATE(4810), 1, + STATE(4647), 1, aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, + ACTIONS(153), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -138365,7 +138560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138405,11 +138600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [374] = 3, + [330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 23, + ACTIONS(3478), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138433,7 +138628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3460), 39, + ACTIONS(3480), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138473,49 +138668,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [445] = 3, + [401] = 13, + ACTIONS(834), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(880), 1, + anon_sym_in, + ACTIONS(883), 1, + anon_sym_of, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(3482), 1, + sym_identifier, + STATE(4453), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3462), 23, - anon_sym_STAR, - anon_sym_EQ, - 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_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3464), 39, + STATE(3419), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(153), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138531,25 +138722,10 @@ 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, - [516] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 23, + ACTIONS(120), 23, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138568,22 +138744,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3468), 39, + anon_sym_instanceof, + anon_sym_satisfies, + [492] = 12, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(153), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138599,23 +138798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [587] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3470), 23, + ACTIONS(120), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -138636,72 +138821,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3472), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [658] = 12, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(932), 1, + [581] = 14, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(938), 1, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3431), 1, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(2173), 1, + anon_sym_LPAREN, + ACTIONS(2182), 1, + anon_sym_LT, + ACTIONS(3476), 1, sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, + ACTIONS(153), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138712,7 +138862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138728,7 +138878,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(120), 25, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138746,112 +138896,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_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [747] = 4, - ACTIONS(3474), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3458), 23, - anon_sym_STAR, - anon_sym_EQ, - 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_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3460), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_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, - [820] = 14, - ACTIONS(184), 1, + [674] = 12, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(834), 1, - anon_sym_EQ, - ACTIONS(844), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(902), 1, - anon_sym_in, - ACTIONS(905), 1, - anon_sym_of, + ACTIONS(885), 1, + anon_sym_EQ, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, + ACTIONS(153), 15, sym__ternary_qmark, 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, @@ -138862,7 +138938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138878,10 +138954,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(120), 23, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138902,35 +138979,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [913] = 13, - ACTIONS(834), 1, + [763] = 12, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(844), 1, + ACTIONS(938), 1, anon_sym_EQ_GT, - ACTIONS(902), 1, - anon_sym_in, - ACTIONS(905), 1, - anon_sym_of, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(3476), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(4416), 1, - sym_variable_declarator, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3387), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(154), 13, + ACTIONS(153), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138940,7 +139014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138956,10 +139030,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(120), 23, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -138980,9 +139055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1004] = 4, - ACTIONS(3478), 1, - anon_sym_extends, + anon_sym_implements, + [852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -139010,7 +139084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3464), 38, + ACTIONS(3464), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139019,6 +139093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -139049,11 +139124,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1077] = 3, + [923] = 13, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(222), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(153), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(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(120), 24, + anon_sym_STAR, + anon_sym_as, + 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_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [1014] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 23, + ACTIONS(3454), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139077,7 +139230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3482), 39, + ACTIONS(3456), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139117,7 +139270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1148] = 3, + [1085] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -139185,32 +139338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1219] = 12, - ACTIONS(152), 1, - anon_sym_EQ_GT, - ACTIONS(184), 1, + [1156] = 14, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(880), 1, + ACTIONS(834), 1, anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(880), 1, + anon_sym_in, + ACTIONS(883), 1, + anon_sym_of, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(153), 14, sym__ternary_qmark, 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, @@ -139221,7 +139377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139237,11 +139393,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(120), 24, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -139262,110 +139417,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1308] = 12, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(824), 1, + [1249] = 14, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(938), 1, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3431), 1, - sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(154), 14, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(2173), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - 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(120), 25, - anon_sym_STAR, - anon_sym_as, - 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_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2182), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [1397] = 13, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_EQ, - ACTIONS(3431), 1, + ACTIONS(3476), 1, sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(126), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(154), 12, + ACTIONS(153), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139376,7 +139456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139392,7 +139472,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(120), 24, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139410,39 +139490,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_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1488] = 12, - ACTIONS(152), 1, - anon_sym_EQ_GT, - ACTIONS(184), 1, + [1342] = 12, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(938), 1, + anon_sym_EQ_GT, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(153), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139453,7 +139531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139469,7 +139547,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(120), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139494,7 +139572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1577] = 3, + anon_sym_implements, + [1431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -139562,102 +139641,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1648] = 5, - ACTIONS(3494), 1, + [1502] = 12, + ACTIONS(910), 1, + anon_sym_EQ_GT, + ACTIONS(916), 1, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3492), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3496), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1722] = 13, - ACTIONS(184), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(891), 1, - anon_sym_COLON, - ACTIONS(895), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, - anon_sym_EQ, - ACTIONS(3431), 1, + ACTIONS(3492), 1, sym_identifier, - STATE(1616), 1, + STATE(3515), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(3553), 1, sym_string, - STATE(1711), 1, + STATE(4414), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 13, + ACTIONS(153), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139667,7 +139676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139708,29 +139717,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1812] = 13, + [1590] = 13, ACTIONS(661), 1, anon_sym_EQ, + ACTIONS(667), 1, + anon_sym_RBRACE, ACTIONS(671), 1, anon_sym_COLON, ACTIONS(682), 1, anon_sym_EQ_GT, ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(694), 1, - anon_sym_RBRACE, - ACTIONS(2149), 1, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2158), 1, + ACTIONS(2182), 1, anon_sym_LT, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139746,7 +139755,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(154), 17, + ACTIONS(153), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139785,29 +139794,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [1902] = 13, - ACTIONS(671), 1, - anon_sym_COLON, - ACTIONS(690), 1, - anon_sym_QMARK, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(3500), 1, - anon_sym_EQ, - ACTIONS(3502), 1, - anon_sym_LPAREN, - ACTIONS(3505), 1, + [1680] = 12, + ACTIONS(910), 1, anon_sym_EQ_GT, - ACTIONS(3507), 1, - anon_sym_LT, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(916), 1, + anon_sym_EQ, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3417), 1, + sym_identifier, + STATE(772), 1, + sym_nested_identifier, + STATE(789), 1, + sym_string, + STATE(917), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(153), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139823,52 +139845,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(3496), 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(3492), 20, - 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_AMP, - 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_GT, - anon_sym_QMARK_QMARK, - [1992] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2509), 22, + ACTIONS(120), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -139889,21 +139868,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2507), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_instanceof, + anon_sym_satisfies, + [1768] = 13, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(692), 1, anon_sym_RBRACE, + ACTIONS(3496), 1, + anon_sym_EQ, + ACTIONS(3500), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3503), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, + anon_sym_LT, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139919,40 +139908,11 @@ 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, - [2062] = 12, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(3431), 1, - sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(154), 14, + ACTIONS(3498), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139961,28 +139921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(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(120), 24, + anon_sym_satisfies, + ACTIONS(3494), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -139998,20 +139943,34 @@ 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_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2150] = 3, + [1858] = 5, + ACTIONS(3510), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2531), 22, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -140032,7 +139991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2529), 39, + ACTIONS(3498), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140047,21 +140006,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, @@ -140072,42 +140016,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2220] = 12, - ACTIONS(83), 1, - anon_sym_DQUOTE, - ACTIONS(85), 1, - anon_sym_SQUOTE, - ACTIONS(918), 1, + [1932] = 14, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(924), 1, + ACTIONS(3516), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + anon_sym_DOT, + ACTIONS(3520), 1, anon_sym_EQ_GT, - ACTIONS(3454), 1, - sym_identifier, - STATE(1608), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1771), 1, - sym__module, + ACTIONS(3522), 1, + anon_sym_QMARK_DOT, + ACTIONS(3526), 1, + anon_sym_LT, + STATE(3180), 1, + sym_arguments, + STATE(3253), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, + ACTIONS(3524), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3514), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3498), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + anon_sym_satisfies, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140123,9 +140075,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(120), 24, + ACTIONS(3494), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -140133,42 +140084,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2308] = 11, - ACTIONS(918), 1, - anon_sym_EQ, - ACTIONS(924), 1, + [2024] = 11, + ACTIONS(910), 1, anon_sym_EQ_GT, - ACTIONS(3405), 1, + ACTIONS(916), 1, + anon_sym_EQ, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(3407), 1, + ACTIONS(3421), 1, anon_sym_LBRACE, - ACTIONS(3409), 1, + ACTIONS(3423), 1, anon_sym_LBRACK, - STATE(4416), 1, + STATE(4453), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3718), 3, + STATE(3548), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(154), 13, + ACTIONS(153), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -140182,7 +140128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140223,41 +140169,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2394] = 11, - ACTIONS(918), 1, + [2110] = 13, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(3496), 1, anon_sym_EQ, - ACTIONS(924), 1, + ACTIONS(3500), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, anon_sym_EQ_GT, - ACTIONS(3405), 1, - sym_identifier, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - STATE(4451), 1, - sym_variable_declarator, + ACTIONS(3507), 1, + anon_sym_LT, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3718), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(154), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140273,9 +140207,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(120), 24, - anon_sym_STAR, + ACTIONS(3498), 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(3494), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -140291,58 +140242,46 @@ 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_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2480] = 14, - ACTIONS(3510), 1, + [2200] = 12, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3518), 1, + ACTIONS(910), 1, anon_sym_EQ_GT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, - sym_type_arguments, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3522), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 15, + ACTIONS(153), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + 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(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140358,8 +140297,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(3492), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -140367,41 +140307,46 @@ 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_GT, anon_sym_QMARK_QMARK, - [2572] = 12, - ACTIONS(918), 1, - anon_sym_EQ, - ACTIONS(924), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2288] = 11, + ACTIONS(910), 1, anon_sym_EQ_GT, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3526), 1, + ACTIONS(916), 1, + anon_sym_EQ, + ACTIONS(3419), 1, sym_identifier, - STATE(3500), 1, - sym_nested_identifier, - STATE(3698), 1, - sym_string, - STATE(4311), 1, - sym__module, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + STATE(4539), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, + STATE(3548), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(153), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140411,7 +140356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140452,33 +140397,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2660] = 13, - ACTIONS(184), 1, + [2374] = 14, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(895), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(894), 1, anon_sym_EQ, - ACTIONS(912), 1, - anon_sym_COLON, + ACTIONS(903), 1, + anon_sym_EQ_GT, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 13, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140488,7 +140434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140529,32 +140475,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2750] = 12, - ACTIONS(918), 1, - anon_sym_EQ, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(1550), 1, + [2466] = 13, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(3421), 1, + ACTIONS(903), 1, + anon_sym_EQ_GT, + ACTIONS(924), 1, + anon_sym_EQ, + ACTIONS(926), 1, + anon_sym_COLON, + ACTIONS(3431), 1, sym_identifier, - STATE(783), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(798), 1, + STATE(1564), 1, sym_string, - STATE(878), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, - sym__automatic_semicolon, + ACTIONS(153), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140564,7 +140511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140605,29 +140552,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2838] = 13, + [2556] = 13, ACTIONS(671), 1, anon_sym_COLON, ACTIONS(690), 1, anon_sym_QMARK, ACTIONS(694), 1, anon_sym_RBRACE, - ACTIONS(3500), 1, + ACTIONS(3496), 1, anon_sym_EQ, - ACTIONS(3502), 1, + ACTIONS(3500), 1, anon_sym_LPAREN, - ACTIONS(3505), 1, + ACTIONS(3503), 1, anon_sym_EQ_GT, ACTIONS(3507), 1, anon_sym_LT, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140643,7 +140590,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(3496), 17, + ACTIONS(3498), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140661,7 +140608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 20, + ACTIONS(3494), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140682,29 +140629,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [2928] = 13, - ACTIONS(667), 1, - anon_sym_RBRACE, + [2646] = 13, + ACTIONS(661), 1, + anon_sym_EQ, ACTIONS(671), 1, anon_sym_COLON, + ACTIONS(682), 1, + anon_sym_EQ_GT, ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(3500), 1, - anon_sym_EQ, - ACTIONS(3502), 1, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(3505), 1, - anon_sym_EQ_GT, - ACTIONS(3507), 1, + ACTIONS(2182), 1, anon_sym_LT, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140720,7 +140667,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(3496), 17, + ACTIONS(153), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140738,7 +140685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140759,33 +140706,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [3018] = 14, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(184), 1, + [2736] = 12, + ACTIONS(83), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(85), 1, anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(895), 1, + ACTIONS(910), 1, anon_sym_EQ_GT, - ACTIONS(3431), 1, + ACTIONS(916), 1, + anon_sym_EQ, + ACTIONS(3460), 1, sym_identifier, - STATE(1616), 1, + STATE(1597), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1604), 1, sym_string, - STATE(1711), 1, + STATE(1738), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140796,7 +140741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140837,27 +140782,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3110] = 12, - ACTIONS(918), 1, - anon_sym_EQ, - ACTIONS(924), 1, + [2824] = 12, + ACTIONS(910), 1, anon_sym_EQ_GT, - ACTIONS(3411), 1, + ACTIONS(916), 1, + anon_sym_EQ, + ACTIONS(3425), 1, sym_identifier, - ACTIONS(3413), 1, + ACTIONS(3427), 1, anon_sym_DQUOTE, - ACTIONS(3415), 1, + ACTIONS(3429), 1, anon_sym_SQUOTE, - STATE(201), 1, + STATE(205), 1, sym_nested_identifier, - STATE(203), 1, + STATE(207), 1, sym_string, - STATE(231), 1, + STATE(224), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, + ACTIONS(153), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -140872,7 +140817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140913,50 +140858,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3198] = 14, - ACTIONS(3510), 1, - anon_sym_EQ, - ACTIONS(3518), 1, + [2912] = 13, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_COLON, + ACTIONS(903), 1, anon_sym_EQ_GT, - ACTIONS(3528), 1, - anon_sym_LPAREN, - ACTIONS(3530), 1, - anon_sym_DOT, - ACTIONS(3532), 1, - anon_sym_QMARK_DOT, - ACTIONS(3534), 1, - anon_sym_LT, - STATE(3086), 1, - sym_arguments, - STATE(3215), 1, - sym_type_arguments, + ACTIONS(924), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3512), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3496), 11, + ACTIONS(153), 13, sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140972,8 +140910,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(3492), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -140981,39 +140920,63 @@ 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_GT, anon_sym_QMARK_QMARK, - [3290] = 13, - ACTIONS(661), 1, - anon_sym_EQ, - ACTIONS(671), 1, - anon_sym_COLON, - ACTIONS(682), 1, - anon_sym_EQ_GT, - ACTIONS(690), 1, - anon_sym_QMARK, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(2149), 1, - anon_sym_LPAREN, - ACTIONS(2158), 1, - anon_sym_LT, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + anon_sym_instanceof, + anon_sym_satisfies, + [3002] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(2535), 22, + anon_sym_STAR, + anon_sym_EQ, + 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_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + ACTIONS(2533), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141029,15 +140992,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(154), 17, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [3072] = 14, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, + anon_sym_LT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3514), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141047,7 +141046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 20, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141056,9 +141071,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, @@ -141066,31 +141079,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [3380] = 13, + [3164] = 13, ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(667), 1, - anon_sym_RBRACE, ACTIONS(671), 1, anon_sym_COLON, ACTIONS(682), 1, anon_sym_EQ_GT, ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(2149), 1, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(2173), 1, anon_sym_LPAREN, - ACTIONS(2158), 1, + ACTIONS(2182), 1, anon_sym_LT, - STATE(4792), 1, + STATE(4647), 1, aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141106,7 +141118,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(154), 17, + ACTIONS(153), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141145,59 +141157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [3470] = 12, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(895), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, - anon_sym_EQ, - ACTIONS(3431), 1, - sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, + [3254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(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(120), 24, + ACTIONS(2523), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -141218,32 +141184,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, + ACTIONS(2521), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, - [3557] = 12, - ACTIONS(184), 1, + anon_sym_implements, + [3324] = 12, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(964), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(970), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 13, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141254,7 +141257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141270,11 +141273,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(120), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141295,30 +141299,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3644] = 12, - ACTIONS(184), 1, + [3411] = 14, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(970), 1, - anon_sym_EQ_GT, + ACTIONS(880), 1, + anon_sym_in, + ACTIONS(883), 1, + anon_sym_of, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 13, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141329,7 +141336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141345,11 +141352,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(120), 24, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141370,41 +141376,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3731] = 12, - ACTIONS(184), 1, + [3502] = 8, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_LT, + STATE(1285), 1, + sym_arguments, + STATE(5392), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3538), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DQUOTE, - ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_EQ_GT, - ACTIONS(3431), 1, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3536), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [3581] = 13, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + ACTIONS(3544), 1, + anon_sym_EQ, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3556), 1, + anon_sym_DOT, + ACTIONS(3562), 1, + anon_sym_LT, + STATE(3281), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 13, + ACTIONS(3547), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3559), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3551), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3498), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + anon_sym_satisfies, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141420,9 +141504,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(120), 24, + ACTIONS(3494), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -141430,45 +141513,40 @@ 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_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3818] = 12, - ACTIONS(3510), 1, + [3670] = 12, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(3518), 1, + ACTIONS(3520), 1, anon_sym_EQ_GT, - ACTIONS(3539), 1, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3565), 1, anon_sym_DOT, - ACTIONS(3545), 1, + ACTIONS(3568), 1, anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - STATE(2964), 1, + STATE(3049), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3536), 2, + ACTIONS(3553), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3542), 3, + ACTIONS(3559), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141484,7 +141562,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(3492), 17, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141502,7 +141580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3496), 17, + ACTIONS(3498), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -141520,40 +141598,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3905] = 12, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(948), 1, + [3757] = 14, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, + anon_sym_LT, + ACTIONS(3571), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(3431), 1, - sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3514), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + 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, - ACTIONS(160), 15, + anon_sym_satisfies, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141569,66 +141657,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(120), 25, + ACTIONS(3494), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - 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_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3992] = 12, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(954), 1, + [3848] = 16, + ACTIONS(3520), 1, anon_sym_EQ_GT, - ACTIONS(3431), 1, - sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, + ACTIONS(3544), 1, + anon_sym_EQ, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(3577), 1, + anon_sym_QMARK, + STATE(3049), 1, + sym_type_arguments, + STATE(5433), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(3547), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3559), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3498), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + anon_sym_satisfies, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141644,77 +141735,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 25, + ACTIONS(3494), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - 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_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4079] = 16, - ACTIONS(3518), 1, - anon_sym_EQ_GT, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - ACTIONS(3550), 1, + [3943] = 12, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(964), 1, anon_sym_EQ, - ACTIONS(3557), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - anon_sym_QMARK, - STATE(2964), 1, - sym_type_arguments, - STATE(5159), 1, - sym_type_annotation, + ACTIONS(970), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3542), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3553), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3496), 13, + ACTIONS(153), 13, 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(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141730,8 +141804,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(3492), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -141739,42 +141814,46 @@ 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_GT, anon_sym_QMARK_QMARK, - [4174] = 13, - ACTIONS(184), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4030] = 12, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(903), 1, anon_sym_EQ_GT, - ACTIONS(824), 1, + ACTIONS(924), 1, anon_sym_EQ, - ACTIONS(826), 1, - anon_sym_COLON, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141784,7 +141863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141825,33 +141904,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4263] = 14, - ACTIONS(184), 1, + [4117] = 12, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(902), 1, - anon_sym_in, - ACTIONS(905), 1, - anon_sym_of, + ACTIONS(970), 1, + anon_sym_EQ_GT, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 13, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141862,7 +141938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141878,10 +141954,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(120), 23, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141902,50 +141979,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4354] = 14, - ACTIONS(3505), 1, - anon_sym_EQ_GT, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3562), 1, + [4204] = 12, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, anon_sym_EQ, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, - sym_type_arguments, + ACTIONS(903), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3522), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 14, - sym__automatic_semicolon, + ACTIONS(153), 13, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141961,8 +142029,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(3492), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -141970,57 +142039,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_GT, anon_sym_QMARK_QMARK, - [4445] = 13, - ACTIONS(3518), 1, - anon_sym_EQ_GT, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3550), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4291] = 12, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(948), 1, anon_sym_EQ, - ACTIONS(3564), 1, - anon_sym_DOT, - ACTIONS(3567), 1, - anon_sym_LT, - STATE(3250), 1, - sym_type_arguments, + ACTIONS(954), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3542), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3553), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3548), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3496), 13, + ACTIONS(153), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142036,130 +142103,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(3492), 18, + ACTIONS(120), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + 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_GT, anon_sym_QMARK_QMARK, - [4534] = 8, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, - anon_sym_DOT, - ACTIONS(3576), 1, - anon_sym_LT, - STATE(1288), 1, - sym_arguments, - STATE(5440), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3572), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3570), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [4613] = 14, - ACTIONS(3514), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4378] = 14, + ACTIONS(3503), 1, + anon_sym_EQ_GT, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3520), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3524), 1, + ACTIONS(3534), 1, anon_sym_LT, - ACTIONS(3578), 1, - anon_sym_EQ, ACTIONS(3580), 1, - anon_sym_EQ_GT, - STATE(2917), 1, + anon_sym_EQ, + STATE(2947), 1, sym_arguments, - STATE(3015), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, + ACTIONS(3514), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3522), 3, + ACTIONS(3524), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3496), 14, + ACTIONS(3498), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142169,7 +142172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142185,7 +142188,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(3492), 17, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142203,27 +142206,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4704] = 12, - ACTIONS(184), 1, + [4469] = 13, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1040), 1, + ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(826), 1, + anon_sym_COLON, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142236,7 +142241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142277,49 +142282,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4790] = 14, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_EQ, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, + [4558] = 5, + STATE(3163), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(3466), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(3522), 3, + anon_sym_PIPE_RBRACE, + ACTIONS(3462), 22, + anon_sym_STAR, + anon_sym_EQ, + 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_AMP, + anon_sym_CARET, 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_GT, - ACTIONS(3496), 13, - sym__automatic_semicolon, + anon_sym_QMARK_QMARK, + ACTIONS(3464), 32, 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(3498), 15, + 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, @@ -142335,45 +142340,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3492), 17, - anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [4630] = 6, + ACTIONS(3586), 1, + anon_sym_AT, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3584), 14, + anon_sym_LBRACE, 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_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3582), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4880] = 12, - ACTIONS(184), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [4704] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(978), 1, + ACTIONS(976), 1, anon_sym_EQ, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142386,7 +142450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142427,27 +142491,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4966] = 12, - ACTIONS(184), 1, + [4790] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(982), 1, + ACTIONS(978), 1, anon_sym_EQ, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142460,7 +142524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142501,39 +142565,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5052] = 8, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3588), 1, + [4876] = 12, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(3590), 1, - anon_sym_QMARK, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(880), 1, + anon_sym_in, + ACTIONS(883), 1, + anon_sym_of, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3589), 1, + sym_identifier, + ACTIONS(3591), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3496), 15, + STATE(4619), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(153), 11, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142549,10 +142615,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(3492), 21, + ACTIONS(120), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142571,27 +142637,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [5130] = 12, - ACTIONS(184), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4962] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1044), 1, + ACTIONS(980), 1, anon_sym_EQ, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142604,7 +142672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142645,38 +142713,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5216] = 14, - ACTIONS(3514), 1, + [5048] = 14, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3520), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3524), 1, + ACTIONS(3534), 1, anon_sym_LT, - ACTIONS(3592), 1, - anon_sym_EQ, - ACTIONS(3594), 1, - anon_sym_EQ_GT, - STATE(2917), 1, + STATE(2947), 1, sym_arguments, - STATE(3015), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3514), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3522), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 13, + ACTIONS(3498), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142686,8 +142754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142703,7 +142770,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(3492), 17, + ACTIONS(3494), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142720,61 +142787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [5306] = 12, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(902), 1, - anon_sym_in, - ACTIONS(905), 1, - anon_sym_of, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3596), 1, - sym_identifier, - ACTIONS(3598), 1, - anon_sym_LBRACK, + [5138] = 5, + ACTIONS(3466), 1, + anon_sym_extends, + STATE(2935), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4813), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(154), 11, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - 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(120), 23, + ACTIONS(3462), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142793,32 +142820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5392] = 12, - ACTIONS(3505), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - ACTIONS(3562), 1, - anon_sym_EQ, - STATE(2964), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3536), 2, + ACTIONS(3464), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3542), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3498), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142834,14 +142847,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(3496), 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, @@ -142851,8 +142856,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 17, + [5210] = 5, + STATE(3168), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3458), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3454), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -142860,49 +142877,28 @@ 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_GT, anon_sym_QMARK_QMARK, - [5478] = 12, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1038), 1, - anon_sym_EQ, - ACTIONS(3431), 1, - sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(154), 12, + ACTIONS(3456), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142918,64 +142914,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, - anon_sym_STAR, - anon_sym_as, - 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_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [5564] = 14, - ACTIONS(3514), 1, + [5282] = 14, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3520), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3524), 1, + ACTIONS(3534), 1, anon_sym_LT, - ACTIONS(3601), 1, + ACTIONS(3594), 1, anon_sym_EQ, - ACTIONS(3603), 1, + ACTIONS(3596), 1, anon_sym_EQ_GT, - STATE(2917), 1, + STATE(2947), 1, sym_arguments, - STATE(3015), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, + ACTIONS(3514), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3522), 3, + ACTIONS(3524), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3496), 13, + ACTIONS(3498), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142985,7 +142964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + anon_sym_implements, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143001,7 +142981,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(3492), 17, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143019,27 +142999,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5654] = 12, - ACTIONS(184), 1, + [5372] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(974), 1, + ACTIONS(982), 1, anon_sym_EQ, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143052,7 +143032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143093,23 +143073,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5740] = 8, - ACTIONS(220), 1, - anon_sym_EQ, - ACTIONS(225), 1, + [5458] = 8, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(828), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(223), 5, + ACTIONS(826), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(154), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -143125,7 +143105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143163,38 +143143,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [5818] = 14, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, + [5536] = 15, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, + ACTIONS(3568), 1, anon_sym_LT, - ACTIONS(3601), 1, + ACTIONS(3598), 1, anon_sym_EQ, ACTIONS(3603), 1, + anon_sym_RPAREN, + ACTIONS(3606), 1, anon_sym_EQ_GT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, + ACTIONS(3608), 1, + anon_sym_QMARK, + STATE(3049), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, + ACTIONS(3559), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3512), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3496), 13, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3601), 2, anon_sym_COMMA, anon_sym_COLON, + ACTIONS(3498), 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, @@ -143204,7 +143185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143220,7 +143201,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(3492), 18, + ACTIONS(3494), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143239,30 +143220,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [5908] = 9, - ACTIONS(844), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, + [5628] = 8, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3605), 1, - anon_sym_LBRACK, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3612), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3608), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1898), 6, - sym__automatic_semicolon, + ACTIONS(3610), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(154), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143274,7 +143252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143290,7 +143268,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(120), 19, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143299,7 +143277,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, @@ -143310,48 +143290,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [5988] = 14, - ACTIONS(3510), 1, - anon_sym_EQ, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3518), 1, + [5706] = 12, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, - sym_type_arguments, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(986), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3512), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3496), 11, + ACTIONS(153), 12, sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143367,8 +143339,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(3492), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -143376,59 +143349,45 @@ 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_GT, anon_sym_QMARK_QMARK, - [6078] = 15, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5792] = 12, + ACTIONS(3503), 1, + anon_sym_EQ_GT, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3565), 1, anon_sym_DOT, - ACTIONS(3545), 1, + ACTIONS(3568), 1, anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - ACTIONS(3553), 1, - anon_sym_RPAREN, - ACTIONS(3603), 1, - anon_sym_EQ_GT, - ACTIONS(3611), 1, + ACTIONS(3580), 1, anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, - STATE(2964), 1, + STATE(3049), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3542), 2, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3559), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3614), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3496), 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(3498), 15, + anon_sym_GT, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143444,7 +143403,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(3492), 18, + ACTIONS(3498), 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(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143461,27 +143437,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [6170] = 8, - ACTIONS(3588), 1, + [5878] = 12, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(984), 1, anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3496), 15, + ACTIONS(153), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -143490,12 +143468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143511,8 +143487,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(3492), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -143533,40 +143510,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [6248] = 12, - ACTIONS(184), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5964] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3616), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DQUOTE, - ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1042), 1, - anon_sym_EQ, - ACTIONS(3431), 1, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3614), 43, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [6032] = 15, + ACTIONS(3547), 1, + anon_sym_RPAREN, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3608), 1, + anon_sym_QMARK, + ACTIONS(3618), 1, + anon_sym_EQ, + ACTIONS(3624), 1, + anon_sym_EQ_GT, + STATE(3049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(3559), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3621), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3498), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + anon_sym_satisfies, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143582,9 +143635,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(120), 24, + ACTIONS(3494), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -143592,42 +143644,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6334] = 12, - ACTIONS(184), 1, + [6124] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, ACTIONS(824), 1, anon_sym_EQ, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143640,7 +143687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143681,27 +143728,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6420] = 12, - ACTIONS(184), 1, + [6210] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(976), 1, + ACTIONS(988), 1, anon_sym_EQ, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143714,7 +143761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143755,98 +143802,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6506] = 6, - ACTIONS(3628), 1, - anon_sym_AT, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3626), 14, - anon_sym_LBRACE, - anon_sym_BANG, + [6296] = 14, + ACTIONS(3528), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3624), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [6580] = 12, - ACTIONS(3539), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3545), 1, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - ACTIONS(3578), 1, - anon_sym_EQ, - ACTIONS(3580), 1, + ACTIONS(3624), 1, anon_sym_EQ_GT, - STATE(2964), 1, + ACTIONS(3626), 1, + anon_sym_EQ, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3536), 2, + ACTIONS(3514), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3542), 3, + anon_sym_extends, + ACTIONS(3524), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3498), 15, + ACTIONS(3498), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143862,24 +143860,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(3496), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(3492), 17, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143897,27 +143878,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6666] = 12, - ACTIONS(184), 1, + [6386] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(186), 1, + ACTIONS(185), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1036), 1, + ACTIONS(1042), 1, anon_sym_EQ, ACTIONS(3431), 1, sym_identifier, - STATE(1616), 1, + STATE(1563), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1564), 1, sym_string, - STATE(1711), 1, + STATE(1677), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(153), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143930,7 +143911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143971,92 +143952,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6752] = 3, + [6472] = 12, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3571), 1, + anon_sym_EQ, + ACTIONS(3573), 1, + anon_sym_EQ_GT, + STATE(3049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3633), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3553), 2, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, + ACTIONS(3559), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3498), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3631), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_satisfies, + ACTIONS(3494), 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_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [6820] = 8, - ACTIONS(225), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6558] = 9, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(824), 1, + ACTIONS(907), 1, anon_sym_EQ, - ACTIONS(828), 1, - anon_sym_QMARK, + ACTIONS(3628), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(826), 5, + ACTIONS(3631), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1898), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(154), 15, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(153), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144068,7 +144061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144084,7 +144077,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(120), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144093,9 +144086,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, @@ -144106,28 +144097,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [6898] = 12, - ACTIONS(184), 1, - anon_sym_DQUOTE, - ACTIONS(186), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(980), 1, + [6638] = 8, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(3431), 1, - sym_identifier, - STATE(1616), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1711), 1, - sym__module, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 12, + ACTIONS(126), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(153), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -144136,10 +144124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + anon_sym_satisfies, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144155,9 +144145,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(120), 24, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144178,40 +144167,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6984] = 15, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - ACTIONS(3588), 1, + [6716] = 8, + ACTIONS(3598), 1, + anon_sym_EQ, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(3617), 1, + ACTIONS(3608), 1, anon_sym_QMARK, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(3635), 1, - anon_sym_RPAREN, - STATE(2964), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3542), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3622), 2, + ACTIONS(3601), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3496), 13, + anon_sym_RBRACK, + ACTIONS(3498), 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, @@ -144222,7 +144199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144238,7 +144215,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(3492), 18, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144247,51 +144224,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [7076] = 9, - ACTIONS(834), 1, - anon_sym_EQ, - ACTIONS(844), 1, - anon_sym_EQ_GT, - ACTIONS(1898), 1, + [6794] = 5, + ACTIONS(3458), 1, anon_sym_extends, + STATE(2936), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3608), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - 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(120), 18, + ACTIONS(3454), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144299,7 +144255,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, @@ -144308,35 +144266,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(154), 18, + ACTIONS(3456), 35, + 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_RBRACK, + 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, - [7156] = 6, - ACTIONS(3510), 1, - anon_sym_EQ, - ACTIONS(3518), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144352,18 +144295,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(3496), 20, - 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144373,45 +144304,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [7229] = 7, - ACTIONS(3494), 1, + [6866] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(974), 1, anon_sym_EQ, - ACTIONS(3590), 1, - anon_sym_QMARK, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3496), 15, + ACTIONS(153), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -144420,12 +144334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144441,8 +144353,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(3492), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144463,47 +144376,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [7304] = 14, - ACTIONS(3510), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6952] = 9, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3518), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3548), 1, + ACTIONS(1898), 1, anon_sym_extends, - ACTIONS(3586), 1, - anon_sym_COLON, - STATE(2964), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3542), 2, + ACTIONS(3628), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3631), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3638), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3496), 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(3498), 15, + anon_sym_GT, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144519,7 +144411,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(3492), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144534,40 +144426,62 @@ 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_GT, anon_sym_QMARK_QMARK, - [7393] = 13, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, + ACTIONS(153), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [7032] = 14, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3545), 1, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, anon_sym_LT, - ACTIONS(3586), 1, - anon_sym_COLON, - ACTIONS(3588), 1, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3636), 1, anon_sym_EQ_GT, - STATE(2964), 1, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3542), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3548), 3, + ACTIONS(3514), 3, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3496), 13, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144577,7 +144491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144593,7 +144507,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(3492), 18, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144610,39 +144524,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [7480] = 14, - ACTIONS(3514), 1, + [7122] = 14, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3520), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3524), 1, + ACTIONS(3534), 1, anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_EQ, - ACTIONS(3644), 1, + ACTIONS(3624), 1, anon_sym_EQ_GT, - STATE(2917), 1, + ACTIONS(3626), 1, + anon_sym_EQ, + STATE(2947), 1, sym_arguments, - STATE(3015), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3522), 3, + ACTIONS(3524), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 12, + ACTIONS(3514), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3498), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144653,7 +144566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144669,7 +144582,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(3492), 17, + ACTIONS(3494), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144686,19 +144599,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7569] = 4, + [7212] = 12, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + anon_sym_SQUOTE, + ACTIONS(1044), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1563), 1, + sym_nested_identifier, + STATE(1564), 1, + sym_string, + STATE(1677), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3474), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3458), 22, + ACTIONS(153), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(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(120), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144719,71 +144673,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3460), 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, - [7638] = 14, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3646), 1, + [7298] = 11, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(3648), 1, + ACTIONS(151), 1, anon_sym_EQ_GT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, - sym_type_arguments, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3628), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, + ACTIONS(126), 2, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(1898), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3522), 3, + ACTIONS(3631), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 12, + ACTIONS(153), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144793,7 +144711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144809,7 +144727,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(3492), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144824,21 +144742,58 @@ 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_GT, anon_sym_QMARK_QMARK, - [7727] = 4, + [7381] = 6, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3520), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3478), 4, - sym__automatic_semicolon, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3498), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3462), 22, + 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(3494), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144859,15 +144814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3464), 32, - sym__ternary_qmark, - anon_sym_as, + [7454] = 9, + ACTIONS(868), 1, + anon_sym_EQ, + ACTIONS(874), 1, + anon_sym_EQ_GT, + ACTIONS(1898), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3628), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3631), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144883,62 +144847,26 @@ 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, - [7796] = 8, - ACTIONS(682), 1, - anon_sym_EQ_GT, - ACTIONS(858), 1, - anon_sym_EQ, - ACTIONS(860), 1, - anon_sym_COLON, - ACTIONS(3456), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(154), 15, + ACTIONS(153), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(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(120), 24, + anon_sym_satisfies, + ACTIONS(120), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144946,9 +144874,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, @@ -144957,36 +144883,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7873] = 11, - ACTIONS(220), 1, + [7533] = 12, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(225), 1, + ACTIONS(3636), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(3605), 1, - anon_sym_LBRACK, + STATE(3049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(223), 2, + ACTIONS(3551), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1898), 2, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3608), 2, + ACTIONS(3559), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(154), 14, + anon_sym_GT, + ACTIONS(3498), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144997,7 +144923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145013,7 +144939,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(120), 19, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145028,80 +144954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [7956] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3652), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3650), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [8023] = 3, + [7618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3656), 16, + ACTIONS(3640), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -145118,7 +144978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3654), 42, + ACTIONS(3638), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145161,35 +145021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [8090] = 12, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - ACTIONS(3601), 1, + [7685] = 7, + ACTIONS(3598), 1, anon_sym_EQ, - ACTIONS(3603), 1, - anon_sym_EQ_GT, - STATE(2964), 1, - sym_type_arguments, + ACTIONS(3608), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3536), 2, + ACTIONS(3601), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3542), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 15, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, 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, @@ -145200,7 +145051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145216,7 +145067,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(3492), 17, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145225,56 +145076,59 @@ 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_GT, anon_sym_QMARK_QMARK, - [8175] = 4, - ACTIONS(3474), 1, + [7760] = 12, + ACTIONS(3551), 1, anon_sym_extends, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3594), 1, + anon_sym_EQ, + ACTIONS(3596), 1, + anon_sym_EQ_GT, + STATE(3049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 22, - anon_sym_STAR, - anon_sym_EQ, - 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, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3559), 3, anon_sym_AMP, - anon_sym_CARET, 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_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3460), 35, - sym__automatic_semicolon, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - 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, + anon_sym_implements, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145290,24 +145144,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, - [8244] = 4, - ACTIONS(3478), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3462), 22, + ACTIONS(3494), 17, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -145315,31 +145153,24 @@ 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_GT, anon_sym_QMARK_QMARK, - ACTIONS(3464), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [7845] = 6, + ACTIONS(834), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145355,62 +145186,29 @@ 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, - [8313] = 8, - ACTIONS(682), 1, - anon_sym_EQ_GT, - ACTIONS(858), 1, - anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_COLON, - ACTIONS(3456), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(154), 15, - sym__automatic_semicolon, + ACTIONS(153), 20, 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(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(120), 24, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -145431,49 +145229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [8390] = 14, - ACTIONS(3494), 1, + [7918] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3588), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3512), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3496), 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(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145489,54 +145253,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(3492), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [8479] = 12, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_EQ, - ACTIONS(3584), 1, - anon_sym_EQ_GT, - STATE(2964), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3548), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3542), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 15, - sym__automatic_semicolon, + ACTIONS(153), 20, 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, anon_sym_EQ_EQ_EQ, @@ -145547,23 +145274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3492), 17, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145572,30 +145283,34 @@ 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_GT, anon_sym_QMARK_QMARK, - [8564] = 7, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, + [7991] = 7, + ACTIONS(3510), 1, anon_sym_EQ, + ACTIONS(3612), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 5, + ACTIONS(3610), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145611,7 +145326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145627,7 +145342,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145649,38 +145364,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [8639] = 14, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, + [8066] = 13, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, + ACTIONS(3568), 1, anon_sym_LT, - ACTIONS(3658), 1, - anon_sym_EQ, - ACTIONS(3660), 1, + ACTIONS(3606), 1, anon_sym_EQ_GT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, + ACTIONS(3610), 1, + anon_sym_COLON, + STATE(3049), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3522), 3, + ACTIONS(3559), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 12, + ACTIONS(3551), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3498), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145690,7 +145403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145706,7 +145419,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(3492), 17, + ACTIONS(3494), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145723,20 +145436,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8728] = 7, - ACTIONS(3628), 1, + [8153] = 7, + ACTIONS(3586), 1, anon_sym_AT, - ACTIONS(3662), 1, + ACTIONS(3642), 1, anon_sym_class, - STATE(1269), 1, + STATE(1249), 1, aux_sym_export_statement_repeat1, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3626), 14, + ACTIONS(3584), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -145751,7 +145465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3624), 40, + ACTIONS(3582), 40, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145792,37 +145506,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [8803] = 14, - ACTIONS(3510), 1, - anon_sym_EQ, - ACTIONS(3514), 1, + [8228] = 14, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3518), 1, - anon_sym_EQ_GT, - ACTIONS(3520), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3524), 1, + ACTIONS(3534), 1, anon_sym_LT, - STATE(2917), 1, + ACTIONS(3645), 1, + anon_sym_EQ, + ACTIONS(3647), 1, + anon_sym_EQ_GT, + STATE(2947), 1, sym_arguments, - STATE(3015), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3512), 3, - anon_sym_RBRACE, + ACTIONS(3514), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3496), 12, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 12, 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, @@ -145832,7 +145547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145848,7 +145563,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(3492), 18, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145865,17 +145580,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [8892] = 6, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(844), 1, + [8317] = 9, + ACTIONS(682), 1, anon_sym_EQ_GT, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3628), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3631), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145891,16 +145614,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(154), 20, + ACTIONS(153), 17, + 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_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145912,7 +145632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145921,9 +145641,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, @@ -145932,26 +145650,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [8965] = 9, - ACTIONS(866), 1, + [8396] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3651), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3649), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [8463] = 11, + ACTIONS(219), 1, anon_sym_EQ, - ACTIONS(872), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1898), 1, - anon_sym_extends, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3628), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, + ACTIONS(222), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3608), 3, + anon_sym_COLON, + ACTIONS(1898), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3631), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(160), 15, + ACTIONS(153), 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(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145967,25 +145767,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(154), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 18, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146003,43 +145785,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9044] = 6, - ACTIONS(3494), 1, + [8546] = 14, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, + anon_sym_LT, + ACTIONS(3653), 1, anon_sym_EQ, - ACTIONS(3518), 1, + ACTIONS(3655), 1, anon_sym_EQ_GT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3496), 20, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3514), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 12, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146049,7 +145828,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146058,47 +145853,44 @@ 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_GT, anon_sym_QMARK_QMARK, - [9117] = 12, - ACTIONS(3539), 1, + [8635] = 12, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3565), 1, anon_sym_DOT, - ACTIONS(3545), 1, + ACTIONS(3568), 1, anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - ACTIONS(3592), 1, - anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(3624), 1, anon_sym_EQ_GT, - STATE(2964), 1, + ACTIONS(3626), 1, + anon_sym_EQ, + STATE(3049), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3536), 2, + ACTIONS(3553), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3542), 3, + ACTIONS(3559), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -146109,8 +145901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146126,7 +145917,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(3492), 17, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146144,24 +145935,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9202] = 9, + [8720] = 8, ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(858), 1, + ACTIONS(848), 1, anon_sym_EQ, - ACTIONS(1898), 1, - anon_sym_extends, + ACTIONS(860), 1, + anon_sym_COLON, + ACTIONS(3476), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, + ACTIONS(153), 15, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3608), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(160), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146177,26 +145979,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(154), 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(120), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146204,7 +145989,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, @@ -146213,16 +146000,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9281] = 6, - ACTIONS(834), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [8797] = 14, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, + anon_sym_LT, + ACTIONS(3657), 1, anon_sym_EQ, - ACTIONS(844), 1, + ACTIONS(3659), 1, anon_sym_EQ_GT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3514), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 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(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146238,28 +146061,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(154), 20, - 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146268,45 +146070,45 @@ 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_GT, anon_sym_QMARK_QMARK, - [9354] = 11, - ACTIONS(117), 1, + [8886] = 14, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(152), 1, + ACTIONS(3520), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(3605), 1, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3553), 1, anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3610), 1, + anon_sym_COLON, + STATE(3049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(126), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1898), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3608), 2, + ACTIONS(3559), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(154), 14, + ACTIONS(3661), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3498), 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, @@ -146317,7 +146119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146333,7 +146135,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(120), 19, + ACTIONS(3494), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146348,29 +146150,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [9437] = 9, - ACTIONS(152), 1, + [8975] = 8, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(880), 1, + ACTIONS(848), 1, anon_sym_EQ, - ACTIONS(1898), 1, - anon_sym_extends, + ACTIONS(862), 1, + anon_sym_COLON, + ACTIONS(3476), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, + ACTIONS(153), 15, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3608), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(160), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146386,25 +146198,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(154), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146412,7 +146208,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, @@ -146421,53 +146219,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9515] = 6, - ACTIONS(682), 1, - anon_sym_EQ_GT, - ACTIONS(858), 1, - anon_sym_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + [9052] = 5, + STATE(2936), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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(154), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3458), 3, 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(120), 21, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3454), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146488,15 +146256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [9587] = 6, - ACTIONS(682), 1, - anon_sym_EQ_GT, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(160), 15, + ACTIONS(3456), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146512,17 +146280,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(154), 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, @@ -146532,56 +146289,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [9659] = 12, + [9123] = 14, ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3518), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3545), 1, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, anon_sym_LT, - ACTIONS(3548), 1, - anon_sym_extends, - STATE(2964), 1, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3536), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3542), 2, + ACTIONS(3524), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3496), 14, + ACTIONS(3514), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3498), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146591,7 +146329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146607,7 +146345,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(3492), 18, + ACTIONS(3494), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146626,11 +146364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [9743] = 3, + [9212] = 5, + STATE(2935), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 22, + ACTIONS(3466), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3462), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146653,15 +146397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3482), 35, - sym__automatic_semicolon, + ACTIONS(3464), 32, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146689,45 +146430,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9809] = 3, + [9283] = 14, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, + anon_sym_LT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3484), 22, - anon_sym_STAR, - anon_sym_EQ, - 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, + ACTIONS(3524), 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_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3486), 35, - sym__automatic_semicolon, + ACTIONS(3514), 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3498), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146743,24 +146486,34 @@ 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, - [9875] = 6, - ACTIONS(866), 1, + ACTIONS(3494), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [9372] = 6, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(872), 1, + ACTIONS(3520), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146776,15 +146529,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(154), 19, - sym__automatic_semicolon, + ACTIONS(3498), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146796,7 +146550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146818,15 +146572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [9947] = 6, - ACTIONS(3494), 1, + [9445] = 5, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(3580), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146842,15 +146594,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(3496), 19, - sym__automatic_semicolon, + ACTIONS(3498), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146862,7 +146615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146884,27 +146637,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10019] = 8, - ACTIONS(3603), 1, - anon_sym_EQ_GT, - ACTIONS(3611), 1, - anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, + [9515] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3496), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3538), 15, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3536), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [9581] = 14, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, anon_sym_DOT, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, + ACTIONS(3534), 1, + anon_sym_LT, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3514), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3498), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146914,7 +146739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146930,7 +146755,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(3492), 21, + ACTIONS(3494), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146939,30 +146764,25 @@ 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_GT, anon_sym_QMARK_QMARK, - [10095] = 7, - ACTIONS(878), 1, - anon_sym_COLON, - ACTIONS(3505), 1, + [9669] = 6, + ACTIONS(3503), 1, anon_sym_EQ_GT, - ACTIONS(3562), 1, + ACTIONS(3510), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146978,11 +146798,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(3496), 18, + ACTIONS(3498), 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, @@ -146997,7 +146818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147019,39 +146840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10169] = 7, - ACTIONS(682), 1, - anon_sym_EQ_GT, - ACTIONS(858), 1, + [9741] = 8, + ACTIONS(3608), 1, + anon_sym_QMARK, + ACTIONS(3618), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_COLON, + ACTIONS(3624), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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(154), 18, - sym__automatic_semicolon, + ACTIONS(3621), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147064,7 +146870,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147086,11 +146908,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10243] = 3, + [9817] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 15, + ACTIONS(3667), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -147106,7 +146928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3570), 42, + ACTIONS(3665), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -147149,26 +146971,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [10309] = 10, - ACTIONS(225), 1, + [9883] = 9, + ACTIONS(910), 1, + anon_sym_EQ_GT, + ACTIONS(916), 1, + anon_sym_EQ, + ACTIONS(3628), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1898), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3631), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + 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(153), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 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, + [9961] = 10, + ACTIONS(151), 1, anon_sym_EQ_GT, ACTIONS(824), 1, anon_sym_EQ, ACTIONS(826), 1, anon_sym_COLON, - ACTIONS(3605), 1, + ACTIONS(3628), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3608), 2, + ACTIONS(3631), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(1898), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(154), 14, + ACTIONS(153), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147183,7 +147074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147219,37 +147110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10389] = 8, - ACTIONS(117), 1, + [10041] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(152), 1, + ACTIONS(874), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(126), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(154), 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(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147265,6 +147134,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(153), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(120), 21, anon_sym_STAR, anon_sym_BANG, @@ -147287,15 +147176,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10465] = 6, - ACTIONS(3494), 1, + [10113] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2535), 22, + anon_sym_STAR, + anon_sym_EQ, + 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_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + ACTIONS(2533), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [10179] = 6, + ACTIONS(868), 1, anon_sym_EQ, - ACTIONS(3505), 1, + ACTIONS(874), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147311,14 +147263,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(3496), 19, + ACTIONS(153), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147331,7 +147283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147353,11 +147305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10537] = 3, + [10251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 22, + ACTIONS(3472), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147380,7 +147332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3460), 35, + ACTIONS(3474), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147416,13 +147368,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10603] = 5, - ACTIONS(3510), 1, + [10317] = 9, + ACTIONS(932), 1, anon_sym_EQ, + ACTIONS(938), 1, + anon_sym_EQ_GT, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3628), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3631), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + 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(153), 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(120), 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, + [10395] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3671), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3669), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [10461] = 6, + ACTIONS(3503), 1, + anon_sym_EQ_GT, + ACTIONS(3580), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147438,16 +147524,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(3496), 20, + ACTIONS(3498), 19, + 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_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147459,8 +147544,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [10533] = 6, + ACTIONS(3466), 1, + anon_sym_extends, + ACTIONS(3673), 1, + anon_sym_QMARK, + STATE(2935), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3462), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147481,34 +147599,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10673] = 12, - ACTIONS(3536), 1, + ACTIONS(3464), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3539), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_EQ, - ACTIONS(3644), 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, + [10605] = 10, + ACTIONS(844), 1, anon_sym_EQ_GT, - STATE(2964), 1, - sym_type_arguments, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(1900), 1, + anon_sym_QMARK, + ACTIONS(3628), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3542), 3, + ACTIONS(3631), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 14, + ACTIONS(1898), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(153), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147519,7 +147666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147535,7 +147682,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(3492), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147550,18 +147697,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_GT, anon_sym_QMARK_QMARK, - [10757] = 6, - ACTIONS(3505), 1, + [10685] = 7, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3562), 1, + ACTIONS(848), 1, anon_sym_EQ, + ACTIONS(862), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147577,12 +147728,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(3496), 19, + ACTIONS(153), 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, @@ -147597,7 +147747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147619,13 +147769,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10829] = 3, + [10759] = 14, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(3534), 1, + anon_sym_LT, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3462), 22, + ACTIONS(3514), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 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(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 17, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147633,31 +147834,46 @@ 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_GT, anon_sym_QMARK_QMARK, - ACTIONS(3464), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [10847] = 8, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(834), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(887), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(153), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147673,26 +147889,37 @@ 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, - [10895] = 7, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [10923] = 6, ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(858), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(860), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147708,11 +147935,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(154), 18, + ACTIONS(153), 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, @@ -147749,36 +147977,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10969] = 14, - ACTIONS(3494), 1, + [10995] = 12, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_DOT, ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3588), 1, anon_sym_EQ_GT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, + ACTIONS(3551), 1, + anon_sym_extends, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + STATE(3049), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, + ACTIONS(3553), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3559), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3512), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3496), 11, + ACTIONS(3498), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147788,7 +148014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147804,7 +148030,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(3492), 18, + ACTIONS(3494), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147823,24 +148049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [11057] = 9, - ACTIONS(918), 1, + [11079] = 6, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(924), 1, + ACTIONS(3573), 1, anon_sym_EQ_GT, - ACTIONS(3605), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1898), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3608), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147856,12 +148073,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(154), 16, + ACTIONS(3498), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147873,7 +148093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 18, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147882,7 +148102,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, @@ -147891,16 +148113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11135] = 6, - ACTIONS(3578), 1, - anon_sym_EQ, - ACTIONS(3580), 1, + [11151] = 7, + ACTIONS(862), 1, + anon_sym_COLON, + ACTIONS(3503), 1, anon_sym_EQ_GT, + ACTIONS(3580), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147916,14 +148141,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(3496), 19, + ACTIONS(3498), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147936,7 +148160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147958,108 +148182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [11207] = 3, + [11225] = 9, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(885), 1, + anon_sym_EQ, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3470), 22, - anon_sym_STAR, - anon_sym_EQ, - 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_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3472), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3628), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, 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, - [11273] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2509), 22, - anon_sym_STAR, - anon_sym_EQ, - 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, + ACTIONS(3631), 3, anon_sym_AMP, - anon_sym_CARET, 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_GT, - anon_sym_QMARK_QMARK, - ACTIONS(2507), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, @@ -148075,102 +148215,12 @@ 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, - [11339] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3667), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3665), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [11405] = 11, - ACTIONS(826), 1, - anon_sym_COLON, - ACTIONS(834), 1, - anon_sym_EQ, - ACTIONS(844), 1, - anon_sym_EQ_GT, - ACTIONS(1898), 1, - anon_sym_extends, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3608), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3669), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(154), 14, + ACTIONS(153), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148182,23 +148232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - 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(120), 19, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148216,15 +148250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [11487] = 5, - ACTIONS(3494), 1, + [11303] = 6, + ACTIONS(682), 1, + anon_sym_EQ_GT, + ACTIONS(848), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148240,7 +148275,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(3496), 20, + ACTIONS(153), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148248,7 +148283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148261,7 +148295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148283,11 +148317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [11557] = 3, + [11375] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2531), 22, + ACTIONS(3462), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148310,7 +148344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2529), 35, + ACTIONS(3464), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148346,45 +148380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11623] = 12, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3658), 1, - anon_sym_EQ, - ACTIONS(3660), 1, + [11441] = 7, + ACTIONS(860), 1, + anon_sym_COLON, + ACTIONS(3503), 1, anon_sym_EQ_GT, - STATE(2964), 1, - sym_type_arguments, + ACTIONS(3580), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3542), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 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(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148400,7 +148406,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(3492), 17, + ACTIONS(3498), 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(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148409,24 +148434,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11707] = 6, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(872), 1, + [11515] = 7, + ACTIONS(682), 1, anon_sym_EQ_GT, + ACTIONS(848), 1, + anon_sym_EQ, + ACTIONS(860), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148442,14 +148473,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(154), 19, + ACTIONS(153), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148484,41 +148514,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [11779] = 10, - ACTIONS(844), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_EQ, - ACTIONS(1900), 1, - anon_sym_QMARK, - ACTIONS(3605), 1, - anon_sym_LBRACK, + [11589] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3608), 2, + ACTIONS(2523), 22, + anon_sym_STAR, + anon_sym_EQ, + 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_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(1898), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(154), 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_GT, + anon_sym_QMARK_QMARK, + ACTIONS(2521), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + 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(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148534,35 +148568,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(120), 19, - 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_GT, - anon_sym_QMARK_QMARK, - [11859] = 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11655] = 5, + STATE(2935), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3474), 3, + ACTIONS(3466), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3458), 22, + ACTIONS(3462), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148585,12 +148609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3460), 32, + ACTIONS(3464), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148618,34 +148642,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11927] = 12, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3646), 1, + [11725] = 11, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3648), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - STATE(2964), 1, - sym_type_arguments, + ACTIONS(1898), 1, + anon_sym_extends, + ACTIONS(3628), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3542), 3, + ACTIONS(3631), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 14, + ACTIONS(3675), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(153), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148656,7 +148677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148672,7 +148693,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(3492), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148687,57 +148708,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_GT, anon_sym_QMARK_QMARK, - [12011] = 8, - ACTIONS(826), 1, - anon_sym_COLON, - ACTIONS(834), 1, - anon_sym_EQ, - ACTIONS(844), 1, - anon_sym_EQ_GT, + [11807] = 5, + STATE(2936), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(899), 3, + ACTIONS(3458), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(154), 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(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(120), 21, + anon_sym_extends, + ACTIONS(3454), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -148758,17 +148745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [12087] = 7, - ACTIONS(860), 1, - anon_sym_COLON, - ACTIONS(3505), 1, - anon_sym_EQ_GT, - ACTIONS(3562), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3498), 15, + ACTIONS(3456), 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, @@ -148784,16 +148769,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(3496), 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, @@ -148803,8 +148778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + [11877] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3468), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -148825,24 +148805,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [12161] = 9, - ACTIONS(932), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_EQ_GT, - ACTIONS(1898), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3605), 2, + ACTIONS(3470), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3608), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(160), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148858,12 +148832,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(154), 16, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11943] = 12, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3645), 1, + anon_sym_EQ, + ACTIONS(3647), 1, + anon_sym_EQ_GT, + STATE(3049), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3551), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3559), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148874,8 +148879,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(120), 18, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148890,82 +148910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12239] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3675), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3673), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [12305] = 4, + [12027] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3478), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3462), 22, + ACTIONS(3454), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148988,12 +148940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3464), 32, + ACTIONS(3456), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149021,47 +148976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12373] = 14, - ACTIONS(3494), 1, + [12093] = 6, + ACTIONS(3571), 1, anon_sym_EQ, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(3524), 1, - anon_sym_LT, - ACTIONS(3588), 1, + ACTIONS(3573), 1, anon_sym_EQ_GT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3522), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 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(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149077,7 +149000,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(3492), 17, + ACTIONS(3498), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149086,20 +149029,24 @@ 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_GT, anon_sym_QMARK_QMARK, - [12461] = 3, + [12165] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3488), 22, + ACTIONS(3484), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149122,7 +149069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3490), 35, + ACTIONS(3486), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149158,11 +149105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12527] = 3, + [12231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 22, + ACTIONS(3488), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149185,7 +149132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3468), 35, + ACTIONS(3490), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149221,37 +149168,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12593] = 6, - ACTIONS(3601), 1, + [12297] = 8, + ACTIONS(219), 1, anon_sym_EQ, - ACTIONS(3603), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3496), 18, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(222), 3, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(153), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149264,7 +149198,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + 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(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149286,45 +149236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [12664] = 4, + [12373] = 5, + ACTIONS(3510), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3474), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3458), 22, - anon_sym_STAR, - anon_sym_EQ, - 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_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3460), 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(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149340,30 +149258,15 @@ 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, - [12731] = 7, - ACTIONS(918), 1, - anon_sym_EQ, - ACTIONS(924), 1, - anon_sym_EQ_GT, - ACTIONS(3677), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(154), 14, + ACTIONS(3498), 20, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149371,28 +149274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(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(120), 24, + anon_sym_satisfies, + ACTIONS(3494), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -149413,26 +149301,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [12804] = 7, - ACTIONS(3611), 1, + [12443] = 12, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3653), 1, anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, + ACTIONS(3655), 1, + anon_sym_EQ_GT, + STATE(3049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 3, + ACTIONS(3551), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3496), 15, + anon_sym_extends, + ACTIONS(3559), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149443,7 +149339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149459,8 +149355,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3492), 21, + ACTIONS(3494), 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, + [12527] = 6, + ACTIONS(3458), 1, + anon_sym_extends, + ACTIONS(3679), 1, + anon_sym_QMARK, + STATE(2936), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3454), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -149481,15 +149406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [12877] = 6, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(938), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(160), 15, + ACTIONS(3456), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149505,14 +149430,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(154), 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, + [12599] = 12, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3657), 1, + anon_sym_EQ, + ACTIONS(3659), 1, + anon_sym_EQ_GT, + STATE(3049), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3551), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3559), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149523,8 +149477,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(120), 21, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149533,28 +149502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [12948] = 5, - ACTIONS(3478), 1, - anon_sym_extends, - ACTIONS(3679), 1, - anon_sym_QMARK, + [12683] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3462), 22, + ACTIONS(3478), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149577,13 +149538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3464), 32, + ACTIONS(3480), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -149610,15 +149574,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13017] = 6, - ACTIONS(932), 1, + [12749] = 5, + ACTIONS(3580), 1, anon_sym_EQ, - ACTIONS(938), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3498), 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(3494), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [12818] = 6, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3596), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149634,7 +149662,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(154), 18, + ACTIONS(3498), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -149653,7 +149681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149675,19 +149703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13088] = 8, - ACTIONS(3510), 1, + [12889] = 8, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3518), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(3681), 1, + ACTIONS(880), 1, anon_sym_in, - ACTIONS(3684), 1, + ACTIONS(3681), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149703,7 +149731,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(3496), 17, + ACTIONS(153), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -149721,7 +149749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_AMP_AMP, @@ -149742,44 +149770,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13163] = 12, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3539), 1, - anon_sym_DOT, - ACTIONS(3545), 1, - anon_sym_LT, - ACTIONS(3588), 1, + [12964] = 7, + ACTIONS(910), 1, anon_sym_EQ_GT, - STATE(2964), 1, - sym_type_arguments, + ACTIONS(916), 1, + anon_sym_EQ, + ACTIONS(3476), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3542), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3496), 13, + ACTIONS(153), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149795,8 +149811,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(3492), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -149804,30 +149821,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_GT, anon_sym_QMARK_QMARK, - [13246] = 7, - ACTIONS(3510), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13037] = 6, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(3518), 1, + ACTIONS(938), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3686), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3496), 15, + 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(153), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -149841,7 +149878,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + anon_sym_implements, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [13108] = 8, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + ACTIONS(3683), 1, + anon_sym_in, + ACTIONS(3686), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149857,10 +149929,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(3492), 21, + ACTIONS(3498), 17, + 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(3494), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149879,32 +149968,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13319] = 7, - ACTIONS(918), 1, + [13183] = 9, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(924), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(3456), 1, - sym_identifier, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 14, - sym__automatic_semicolon, + ACTIONS(3628), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3631), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(153), 15, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(160), 15, + anon_sym_satisfies, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149920,9 +150016,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(120), 24, + ACTIONS(120), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -149930,9 +150025,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, @@ -149943,17 +150036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [13392] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3603), 1, + [13260] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149969,7 +150060,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(3496), 18, + ACTIONS(153), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -149988,7 +150079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150010,28 +150101,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13463] = 9, - ACTIONS(964), 1, + [13331] = 7, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(970), 1, + ACTIONS(3520), 1, anon_sym_EQ_GT, - ACTIONS(3605), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1898), 2, + ACTIONS(3688), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3608), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(154), 15, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3498), 15, 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, @@ -150043,7 +150129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150059,7 +150145,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(120), 18, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150068,7 +150154,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, @@ -150077,37 +150165,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13540] = 5, - ACTIONS(3562), 1, + [13404] = 9, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(894), 1, anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_COLON, + ACTIONS(903), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3496), 19, - sym__automatic_semicolon, + ACTIONS(153), 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, @@ -150120,7 +150197,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + 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(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150142,24 +150235,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13609] = 7, + [13481] = 12, ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_COLON, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3565), 1, + anon_sym_DOT, + ACTIONS(3568), 1, + anon_sym_LT, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(3049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3686), 3, + ACTIONS(3551), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3496), 15, + anon_sym_extends, + ACTIONS(3559), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3498), 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, @@ -150170,7 +150272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150186,7 +150288,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(3492), 21, + ACTIONS(3494), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150195,26 +150297,24 @@ 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_GT, anon_sym_QMARK_QMARK, - [13682] = 5, - ACTIONS(3578), 1, + [13564] = 6, + ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(938), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150230,14 +150330,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(3496), 19, - sym__automatic_semicolon, + ACTIONS(153), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150250,7 +150348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + anon_sym_implements, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150272,19 +150371,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13751] = 8, - ACTIONS(834), 1, + [13635] = 7, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(844), 1, - anon_sym_EQ_GT, - ACTIONS(902), 1, - anon_sym_in, - ACTIONS(3689), 1, - anon_sym_of, + ACTIONS(3610), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3688), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3498), 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(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150300,12 +150415,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(154), 17, + ACTIONS(3494), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [13708] = 7, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(222), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150318,9 +150465,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 20, + 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(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150339,37 +150503,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13826] = 6, - ACTIONS(152), 1, + [13781] = 7, + ACTIONS(3520), 1, anon_sym_EQ_GT, - ACTIONS(824), 1, + ACTIONS(3544), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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(154), 18, + ACTIONS(3621), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3498), 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, @@ -150382,7 +150531,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150404,11 +150569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13897] = 4, + [13854] = 5, + STATE(2935), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3478), 2, + ACTIONS(3466), 2, anon_sym_COMMA, anon_sym_extends, ACTIONS(3462), 22, @@ -150434,13 +150601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3464), 32, - sym__automatic_semicolon, + ACTIONS(3464), 31, 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_PLUS_EQ, @@ -150467,15 +150633,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13964] = 6, - ACTIONS(152), 1, + [13923] = 7, + ACTIONS(910), 1, anon_sym_EQ_GT, - ACTIONS(880), 1, + ACTIONS(916), 1, anon_sym_EQ, + ACTIONS(3691), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(153), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150491,27 +150674,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(154), 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(120), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -150532,15 +150697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14035] = 5, - ACTIONS(3474), 1, - anon_sym_extends, - ACTIONS(3691), 1, - anon_sym_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [13996] = 5, + STATE(2936), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 22, + ACTIONS(3458), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3454), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150563,10 +150731,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3460), 32, + ACTIONS(3456), 31, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -150596,28 +150763,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14104] = 9, - ACTIONS(895), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, + [14065] = 7, + ACTIONS(3608), 1, + anon_sym_QMARK, + ACTIONS(3618), 1, anon_sym_EQ, - ACTIONS(3605), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1898), 2, + ACTIONS(3621), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3608), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(154), 15, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -150629,7 +150791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150645,7 +150807,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(120), 18, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150654,7 +150816,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, @@ -150663,20 +150827,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14181] = 7, - ACTIONS(844), 1, + [14138] = 10, + ACTIONS(3601), 1, + anon_sym_COMMA, + ACTIONS(3621), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, anon_sym_EQ_GT, - ACTIONS(907), 1, + ACTIONS(3693), 1, anon_sym_EQ, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3698), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(126), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(154), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150692,7 +150861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150708,10 +150877,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(120), 21, + ACTIONS(3494), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150730,39 +150898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14254] = 10, - ACTIONS(3614), 1, - anon_sym_RBRACK, - ACTIONS(3622), 1, - anon_sym_COMMA, - ACTIONS(3660), 1, - anon_sym_EQ_GT, - ACTIONS(3693), 1, + [14217] = 6, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3698), 1, - anon_sym_COLON, + ACTIONS(3624), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 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(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150778,9 +150922,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(3492), 20, + ACTIONS(3498), 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(3494), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150799,12 +150963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14333] = 9, - ACTIONS(948), 1, + [14288] = 9, + ACTIONS(964), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(970), 1, anon_sym_EQ_GT, - ACTIONS(3605), 1, + ACTIONS(3628), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -150812,15 +150976,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1898), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3608), 3, + ACTIONS(3631), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(154), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -150832,7 +150996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150867,15 +151031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14410] = 6, - ACTIONS(3592), 1, - anon_sym_EQ, - ACTIONS(3594), 1, + [14365] = 6, + ACTIONS(3624), 1, anon_sym_EQ_GT, + ACTIONS(3626), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150891,12 +151055,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(3496), 18, + ACTIONS(3498), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150909,8 +151074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150932,15 +151096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14481] = 6, - ACTIONS(3494), 1, + [14436] = 5, + ACTIONS(3571), 1, anon_sym_EQ, - ACTIONS(3594), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150956,12 +151118,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(3496), 18, + ACTIONS(3498), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150974,8 +151138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150997,23 +151160,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14552] = 7, - ACTIONS(3518), 1, + [14505] = 9, + ACTIONS(903), 1, anon_sym_EQ_GT, - ACTIONS(3550), 1, + ACTIONS(924), 1, anon_sym_EQ, + ACTIONS(3628), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 3, + ACTIONS(1898), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3496), 15, + anon_sym_extends, + ACTIONS(3631), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(153), 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, @@ -151025,7 +151193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151041,7 +151209,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(3492), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151050,9 +151218,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, @@ -151061,39 +151227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [14625] = 9, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(891), 1, - anon_sym_COLON, - ACTIONS(895), 1, + [14582] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(885), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 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(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151109,6 +151252,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(153), 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(120), 21, anon_sym_STAR, anon_sym_BANG, @@ -151131,27 +151293,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14702] = 9, - ACTIONS(834), 1, + [14653] = 9, + ACTIONS(948), 1, anon_sym_EQ, - ACTIONS(844), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, - ACTIONS(1898), 1, - anon_sym_extends, + ACTIONS(3628), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3605), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3608), 2, + ACTIONS(1898), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3631), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(154), 15, + anon_sym_GT, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151163,7 +151326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151179,7 +151342,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(120), 19, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151197,19 +151360,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [14779] = 7, - ACTIONS(895), 1, + [14730] = 6, + ACTIONS(3594), 1, + anon_sym_EQ, + ACTIONS(3596), 1, anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3498), 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(3494), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [14801] = 6, ACTIONS(910), 1, + anon_sym_EQ_GT, + ACTIONS(916), 1, anon_sym_EQ, - ACTIONS(912), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151225,12 +151450,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(154), 16, + ACTIONS(153), 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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [14871] = 8, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(222), 1, anon_sym_RBRACK, + ACTIONS(894), 1, + anon_sym_EQ, + ACTIONS(903), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(153), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151242,6 +151518,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + 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(120), 21, anon_sym_STAR, anon_sym_BANG, @@ -151264,14 +151556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14851] = 31, + [14945] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -151281,59 +151573,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3283), 2, - anon_sym_COMMA, - anon_sym_SEMI, ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3307), 2, + ACTIONS(3706), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3708), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3815), 6, + STATE(3853), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -151353,17 +151645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14971] = 7, + [15065] = 6, ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_in, - ACTIONS(3684), 1, - anon_sym_of, + ACTIONS(3636), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151379,10 +151669,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(3496), 17, + ACTIONS(3498), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -151397,7 +151687,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 20, + ACTIONS(3494), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [15135] = 8, + ACTIONS(3653), 1, + anon_sym_EQ, + ACTIONS(3655), 1, + anon_sym_EQ_GT, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3728), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3498), 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(3494), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_AMP_AMP, @@ -151418,14 +151775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15043] = 31, + [15209] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -151435,59 +151792,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(3283), 2, + anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3307), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3724), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3726), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3810), 6, + STATE(3822), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -151507,15 +151864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15163] = 6, - ACTIONS(824), 1, + [15329] = 8, + ACTIONS(3653), 1, anon_sym_EQ, - ACTIONS(924), 1, + ACTIONS(3655), 1, anon_sym_EQ_GT, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3698), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151531,13 +151892,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(154), 17, - sym__automatic_semicolon, + ACTIONS(3498), 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, @@ -151549,10 +151909,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3494), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151571,15 +151930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15233] = 6, - ACTIONS(3582), 1, + [15403] = 7, + ACTIONS(3512), 1, anon_sym_EQ, - ACTIONS(3584), 1, - anon_sym_EQ_GT, + ACTIONS(3683), 1, + anon_sym_in, + ACTIONS(3686), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151595,10 +151956,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(3496), 17, - sym__automatic_semicolon, + ACTIONS(3498), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -151613,10 +151974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151635,15 +151995,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15303] = 6, - ACTIONS(918), 1, - anon_sym_EQ, - ACTIONS(924), 1, + [15475] = 9, + ACTIONS(151), 1, anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(3628), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(1898), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3631), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(153), 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(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151659,25 +152043,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(154), 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(120), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151686,9 +152052,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, @@ -151697,104 +152061,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [15373] = 31, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_abstract, - ACTIONS(3702), 1, - anon_sym_export, - ACTIONS(3704), 1, - anon_sym_STAR, - ACTIONS(3706), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, - ACTIONS(3714), 1, - anon_sym_static, - ACTIONS(3716), 1, - anon_sym_readonly, - ACTIONS(3722), 1, - anon_sym_override, - STATE(1344), 1, - sym_decorator, - STATE(2773), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3315), 1, - sym_formal_parameters, - STATE(3910), 1, - sym__call_signature, - STATE(4481), 1, - aux_sym_export_statement_repeat1, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3712), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3718), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3728), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3730), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3887), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3700), 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, - [15493] = 5, - ACTIONS(3592), 1, + [15551] = 6, + ACTIONS(3634), 1, anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151810,12 +152086,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(3496), 18, + ACTIONS(3498), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151828,8 +152104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151851,19 +152126,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15561] = 8, - ACTIONS(3658), 1, - anon_sym_EQ, - ACTIONS(3660), 1, + [15621] = 8, + ACTIONS(3601), 1, + anon_sym_COMMA, + ACTIONS(3621), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, anon_sym_EQ_GT, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3698), 1, - anon_sym_COLON, + ACTIONS(3693), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(3498), 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(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151879,12 +152170,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(3496), 16, + ACTIONS(3494), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [15695] = 6, + ACTIONS(3544), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3621), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3498), 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, @@ -151896,9 +152218,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 20, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151917,14 +152256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15635] = 31, + [15765] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -151934,31 +152273,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -151966,27 +152305,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3718), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3732), 2, + ACTIONS(3387), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3734), 2, + ACTIONS(3389), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3716), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3722), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3777), 6, + STATE(3791), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152006,35 +152345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15755] = 8, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(895), 1, + [15885] = 7, + ACTIONS(899), 1, + anon_sym_COLON, + ACTIONS(903), 1, anon_sym_EQ_GT, + ACTIONS(924), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 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(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152050,6 +152371,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(153), 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(120), 21, anon_sym_STAR, anon_sym_BANG, @@ -152072,35 +152410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15829] = 8, - ACTIONS(3614), 1, - anon_sym_RBRACK, - ACTIONS(3622), 1, - anon_sym_COMMA, - ACTIONS(3660), 1, - anon_sym_EQ_GT, - ACTIONS(3693), 1, + [15957] = 5, + ACTIONS(3626), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 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(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152116,7 +152432,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(3492), 21, + ACTIONS(3498), 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(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152138,19 +152473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15903] = 8, - ACTIONS(3658), 1, + [16025] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3660), 1, + ACTIONS(910), 1, anon_sym_EQ_GT, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3736), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152166,12 +152497,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(3496), 16, + ACTIONS(153), 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, @@ -152183,9 +152515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152204,39 +152537,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15977] = 9, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(3605), 1, + [16095] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3710), 1, anon_sym_LBRACK, + ACTIONS(3712), 1, + anon_sym_async, + ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, + anon_sym_static, + ACTIONS(3720), 1, + anon_sym_readonly, + ACTIONS(3726), 1, + anon_sym_override, + STATE(1313), 1, + sym_decorator, + STATE(2795), 1, + sym_accessibility_modifier, + STATE(2802), 1, + sym_override_modifier, + STATE(3332), 1, + sym_formal_parameters, + STATE(4392), 1, + sym__call_signature, + STATE(4475), 1, + aux_sym_export_statement_repeat1, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1898), 2, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3716), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3722), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3730), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3608), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(154), 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(160), 15, + anon_sym_SEMI, + ACTIONS(3732), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3724), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3187), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3876), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [16215] = 5, + ACTIONS(3594), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152252,7 +152648,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(120), 18, + ACTIONS(3498), 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(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152261,7 +152676,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, @@ -152270,15 +152687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16053] = 31, + [16283] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -152288,31 +152706,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152320,27 +152738,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3399), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3401), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3734), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3736), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3844), 6, + STATE(3805), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152360,14 +152778,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16173] = 31, + [16403] = 7, + ACTIONS(903), 1, + anon_sym_EQ_GT, + ACTIONS(924), 1, + anon_sym_EQ, + ACTIONS(926), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(153), 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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [16475] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -152377,31 +152860,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152409,10 +152892,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, ACTIONS(3738), 2, @@ -152421,15 +152904,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3740), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3809), 6, + STATE(3825), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152449,33 +152932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16293] = 6, - ACTIONS(3550), 1, + [16595] = 6, + ACTIONS(3653), 1, anon_sym_EQ, + ACTIONS(3655), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3496), 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(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152491,59 +152956,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(3492), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [16363] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3474), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3458), 22, - anon_sym_STAR, - anon_sym_EQ, - 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_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3460), 31, + ACTIONS(3498), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152551,62 +152964,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, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [16429] = 5, - ACTIONS(3601), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3496), 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, @@ -152616,7 +152973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152638,17 +152995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16497] = 7, - ACTIONS(891), 1, - anon_sym_COLON, - ACTIONS(895), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, + [16664] = 6, + ACTIONS(964), 1, anon_sym_EQ, + ACTIONS(970), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152664,12 +153019,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(154), 16, + ACTIONS(153), 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, @@ -152703,15 +153058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16569] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3584), 1, + [16733] = 6, + ACTIONS(903), 1, anon_sym_EQ_GT, + ACTIONS(924), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152727,13 +153082,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(3496), 17, - sym__automatic_semicolon, + ACTIONS(153), 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, @@ -152745,38 +153099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [16639] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3478), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3462), 22, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -152797,47 +153121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3464), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [16705] = 6, - ACTIONS(3642), 1, + [16802] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3644), 1, + ACTIONS(970), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152853,7 +153145,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(3496), 16, + ACTIONS(153), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152870,7 +153162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152892,15 +153184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16774] = 6, - ACTIONS(3658), 1, + [16871] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3660), 1, + ACTIONS(903), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152916,7 +153208,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(3496), 16, + ACTIONS(153), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152933,7 +153225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152955,7 +153247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16843] = 6, + [16940] = 6, ACTIONS(948), 1, anon_sym_EQ, ACTIONS(954), 1, @@ -152963,7 +153255,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152979,7 +153271,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(154), 16, + ACTIONS(153), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153018,15 +153310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16912] = 6, - ACTIONS(3494), 1, + [17009] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3644), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153042,11 +153334,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(3496), 16, + ACTIONS(153), 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, @@ -153059,7 +153351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153081,15 +153373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16981] = 6, - ACTIONS(3494), 1, + [17078] = 5, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3660), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153105,12 +153395,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(3496), 16, + ACTIONS(3498), 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, @@ -153122,7 +153413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153144,35 +153435,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17050] = 6, - ACTIONS(3646), 1, + [17145] = 7, + ACTIONS(3601), 1, + anon_sym_COMMA, + ACTIONS(3621), 1, + anon_sym_RBRACK, + ACTIONS(3693), 1, anon_sym_EQ, - ACTIONS(3648), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153185,37 +153461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [17119] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3648), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153231,24 +153477,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(3496), 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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153270,8 +153499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17188] = 7, - ACTIONS(225), 1, + [17216] = 7, + ACTIONS(151), 1, anon_sym_EQ_GT, ACTIONS(824), 1, anon_sym_EQ, @@ -153280,7 +153509,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153296,7 +153525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153334,34 +153563,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17259] = 5, - ACTIONS(3582), 1, + [17287] = 8, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(880), 1, + anon_sym_in, + ACTIONS(3681), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3496), 17, - sym__automatic_semicolon, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153374,10 +153591,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + 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(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153396,19 +153628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17326] = 8, - ACTIONS(3494), 1, + [17360] = 8, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3588), 1, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_in, - ACTIONS(3684), 1, + ACTIONS(3686), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153424,7 +153656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153440,7 +153672,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(3492), 20, + ACTIONS(3494), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_AMP_AMP, @@ -153461,15 +153693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17399] = 6, - ACTIONS(824), 1, + [17433] = 6, + ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(970), 1, + ACTIONS(3647), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153485,7 +153717,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(154), 16, + ACTIONS(3498), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153502,7 +153734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153524,35 +153756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17468] = 8, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(824), 1, + [17502] = 6, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(902), 1, - anon_sym_in, - ACTIONS(3689), 1, - anon_sym_of, + ACTIONS(3647), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 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(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153568,41 +153780,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(120), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [17541] = 7, - ACTIONS(3614), 1, - anon_sym_RBRACK, - ACTIONS(3622), 1, - anon_sym_COMMA, - ACTIONS(3693), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153615,23 +153797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153653,15 +153819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17612] = 6, - ACTIONS(824), 1, + [17571] = 6, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(895), 1, + ACTIONS(3655), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153677,7 +153843,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(154), 16, + ACTIONS(3498), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153694,7 +153860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153716,15 +153882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17681] = 6, - ACTIONS(895), 1, - anon_sym_EQ_GT, - ACTIONS(910), 1, + [17640] = 6, + ACTIONS(3657), 1, anon_sym_EQ, + ACTIONS(3659), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153740,12 +153906,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(154), 16, + ACTIONS(3498), 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, @@ -153757,7 +153923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153779,15 +153945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17750] = 6, - ACTIONS(964), 1, + [17709] = 6, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(970), 1, + ACTIONS(3659), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153803,11 +153969,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(154), 16, + ACTIONS(3498), 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, @@ -153820,7 +153986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153842,35 +154008,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17819] = 6, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(954), 1, + [17778] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3710), 1, + anon_sym_LBRACK, + ACTIONS(3712), 1, + anon_sym_async, + ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, + anon_sym_static, + ACTIONS(3720), 1, + anon_sym_readonly, + ACTIONS(3726), 1, + anon_sym_override, + STATE(1313), 1, + sym_decorator, + STATE(2795), 1, + sym_accessibility_modifier, + STATE(2802), 1, + sym_override_modifier, + STATE(3332), 1, + sym_formal_parameters, + STATE(4392), 1, + sym__call_signature, + STATE(4475), 1, + aux_sym_export_statement_repeat1, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3716), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3722), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3742), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3724), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3187), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4113), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [17894] = 6, + ACTIONS(151), 1, anon_sym_EQ_GT, + ACTIONS(1042), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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(154), 16, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153883,6 +154118,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + 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(120), 21, anon_sym_STAR, anon_sym_BANG, @@ -153905,14 +154156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17888] = 30, + [17962] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -153922,31 +154173,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, + ACTIONS(3714), 1, anon_sym_new, + ACTIONS(3718), 1, + anon_sym_static, + ACTIONS(3720), 1, + anon_sym_readonly, + ACTIONS(3726), 1, + anon_sym_override, + STATE(1313), 1, + sym_decorator, + STATE(2795), 1, + sym_accessibility_modifier, + STATE(2802), 1, + sym_override_modifier, + STATE(3332), 1, + sym_formal_parameters, + STATE(4392), 1, + sym__call_signature, + STATE(4475), 1, + aux_sym_export_statement_repeat1, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3716), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3722), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3744), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3724), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3187), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4113), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [18078] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3710), 1, + anon_sym_LBRACK, + ACTIONS(3712), 1, + anon_sym_async, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153954,24 +154291,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3742), 2, + ACTIONS(3746), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -153991,15 +154328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18004] = 6, - ACTIONS(3588), 1, + [18194] = 6, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(3744), 1, + ACTIONS(976), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154015,7 +154352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154031,7 +154368,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(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154053,15 +154390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18072] = 6, - ACTIONS(225), 1, + [18262] = 6, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(1036), 1, + ACTIONS(988), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154077,7 +154414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154115,15 +154452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18140] = 6, - ACTIONS(3588), 1, + [18330] = 6, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(3746), 1, + ACTIONS(974), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154139,7 +154476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154155,7 +154492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154177,187 +154514,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18208] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_abstract, - ACTIONS(3702), 1, - anon_sym_export, - ACTIONS(3704), 1, - anon_sym_STAR, - ACTIONS(3706), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, - ACTIONS(3714), 1, - anon_sym_static, - ACTIONS(3716), 1, - anon_sym_readonly, - ACTIONS(3722), 1, - anon_sym_override, - STATE(1344), 1, - sym_decorator, - STATE(2773), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3315), 1, - sym_formal_parameters, - STATE(3910), 1, - sym__call_signature, - STATE(4481), 1, - aux_sym_export_statement_repeat1, - STATE(5233), 1, - sym_type_parameters, + [18398] = 6, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(984), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3712), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3718), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3748), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4265), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3700), 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, - [18324] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(153), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_abstract, - ACTIONS(3702), 1, - anon_sym_export, - ACTIONS(3704), 1, - anon_sym_STAR, - ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, - ACTIONS(3714), 1, - anon_sym_static, - ACTIONS(3716), 1, - anon_sym_readonly, - ACTIONS(3722), 1, - anon_sym_override, - STATE(1344), 1, - sym_decorator, - STATE(2773), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3315), 1, - sym_formal_parameters, - STATE(3910), 1, - sym__call_signature, - STATE(4481), 1, - aux_sym_export_statement_repeat1, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3291), 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(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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3718), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3750), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4265), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3700), 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, - [18440] = 6, - ACTIONS(225), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [18466] = 6, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(1040), 1, + ACTIONS(3748), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154373,7 +154600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154389,7 +154616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154411,101 +154638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18508] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_abstract, - ACTIONS(3702), 1, - anon_sym_export, - ACTIONS(3704), 1, - anon_sym_STAR, - ACTIONS(3706), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, - ACTIONS(3714), 1, - anon_sym_static, - ACTIONS(3716), 1, - anon_sym_readonly, - ACTIONS(3722), 1, - anon_sym_override, - STATE(1344), 1, - sym_decorator, - STATE(2773), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3315), 1, - sym_formal_parameters, - STATE(3910), 1, - sym__call_signature, - STATE(4481), 1, - aux_sym_export_statement_repeat1, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3712), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3718), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3752), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4265), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3700), 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, - [18624] = 6, - ACTIONS(225), 1, + [18534] = 6, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(824), 1, + ACTIONS(978), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154521,7 +154662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154559,15 +154700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18692] = 6, - ACTIONS(225), 1, + [18602] = 6, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(980), 1, + ACTIONS(3750), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154583,7 +154724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154599,7 +154740,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(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154621,15 +154762,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18760] = 6, - ACTIONS(225), 1, + [18670] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3710), 1, + anon_sym_LBRACK, + ACTIONS(3712), 1, + anon_sym_async, + ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, + anon_sym_static, + ACTIONS(3720), 1, + anon_sym_readonly, + ACTIONS(3726), 1, + anon_sym_override, + STATE(1313), 1, + sym_decorator, + STATE(2795), 1, + sym_accessibility_modifier, + STATE(2802), 1, + sym_override_modifier, + STATE(3332), 1, + sym_formal_parameters, + STATE(4392), 1, + sym__call_signature, + STATE(4475), 1, + aux_sym_export_statement_repeat1, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3716), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3722), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3752), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3724), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3187), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4113), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [18786] = 6, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(1038), 1, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154645,7 +154872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154661,7 +154888,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(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154683,15 +154910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18828] = 6, - ACTIONS(3588), 1, - anon_sym_EQ_GT, - ACTIONS(3754), 1, + [18854] = 6, + ACTIONS(3510), 1, anon_sym_EQ, + ACTIONS(3610), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154707,7 +154934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154723,7 +154950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154745,15 +154972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18896] = 6, - ACTIONS(3588), 1, + [18922] = 6, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(3756), 1, + ACTIONS(986), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154769,7 +154996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154785,7 +155012,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(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154807,14 +155034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18964] = 30, + [18990] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -154824,31 +155051,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154856,24 +155083,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 2, + ACTIONS(3756), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154893,14 +155120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19080] = 30, + [19106] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -154910,31 +155137,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154942,24 +155169,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3760), 2, + ACTIONS(3758), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154979,15 +155206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19196] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(974), 1, + [19222] = 7, + ACTIONS(3510), 1, anon_sym_EQ, + ACTIONS(3683), 1, + anon_sym_in, + ACTIONS(3686), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155003,7 +155232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155019,10 +155248,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(120), 21, + ACTIONS(3494), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155041,15 +155269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19264] = 6, - ACTIONS(3588), 1, + [19292] = 6, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(3762), 1, + ACTIONS(3760), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155065,7 +155293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155081,7 +155309,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155103,14 +155331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19332] = 30, + [19360] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -155120,31 +155348,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155152,24 +155380,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3764), 2, + ACTIONS(3762), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155189,14 +155417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19448] = 30, + [19476] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -155206,31 +155434,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155238,24 +155466,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3766), 2, + ACTIONS(3764), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155275,15 +155503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19564] = 6, - ACTIONS(225), 1, + [19592] = 6, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(978), 1, + ACTIONS(980), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155299,7 +155527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155337,14 +155565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19632] = 30, + [19660] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -155354,31 +155582,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155386,24 +155614,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3768), 2, + ACTIONS(3766), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155423,15 +155651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19748] = 6, - ACTIONS(3588), 1, + [19776] = 6, + ACTIONS(151), 1, anon_sym_EQ_GT, - ACTIONS(3770), 1, + ACTIONS(1044), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(153), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155447,7 +155675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155463,7 +155691,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(3492), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155485,14 +155713,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19816] = 30, + [19844] = 6, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(982), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(153), 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(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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [19912] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -155502,31 +155792,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155534,24 +155824,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3772), 2, + ACTIONS(3768), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155571,14 +155861,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19932] = 30, + [20028] = 6, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3770), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 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(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [20096] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -155588,31 +155940,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155620,24 +155972,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3774), 2, + ACTIONS(3772), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155657,14 +156009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20048] = 30, + [20212] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -155674,31 +156026,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155706,24 +156058,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3776), 2, + ACTIONS(3774), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155743,15 +156095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20164] = 6, - ACTIONS(225), 1, + [20328] = 6, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(1044), 1, + ACTIONS(3776), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155767,7 +156119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155783,7 +156135,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(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155805,264 +156157,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20232] = 6, - ACTIONS(3588), 1, - anon_sym_EQ_GT, - ACTIONS(3778), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3496), 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(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3492), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + [20396] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(2515), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [20300] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3496), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3281), 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(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3492), 21, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, 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_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [20368] = 7, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_in, - ACTIONS(3684), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3496), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(3710), 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(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3492), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [20438] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1042), 1, - anon_sym_EQ, + ACTIONS(3712), 1, + anon_sym_async, + ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, + anon_sym_static, + ACTIONS(3720), 1, + anon_sym_readonly, + ACTIONS(3726), 1, + anon_sym_override, + STATE(1313), 1, + sym_decorator, + STATE(2795), 1, + sym_accessibility_modifier, + STATE(2802), 1, + sym_override_modifier, + STATE(3332), 1, + sym_formal_parameters, + STATE(4392), 1, + sym__call_signature, + STATE(4475), 1, + aux_sym_export_statement_repeat1, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 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(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(120), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3291), 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_GT, - anon_sym_QMARK_QMARK, - [20506] = 6, - ACTIONS(225), 1, + ACTIONS(3716), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3722), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3778), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3724), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3187), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4113), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 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, + [20512] = 6, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(982), 1, + ACTIONS(3780), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156078,7 +156267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156094,7 +156283,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(120), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156116,14 +156305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20574] = 30, + [20580] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -156133,31 +156322,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156165,24 +156354,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3780), 2, + ACTIONS(3782), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156202,15 +156391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20690] = 6, - ACTIONS(3588), 1, + [20696] = 6, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(3782), 1, + ACTIONS(3784), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156226,7 +156415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156242,7 +156431,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156264,31 +156453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20758] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(976), 1, + [20764] = 5, + ACTIONS(3645), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(154), 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(160), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156304,40 +156475,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(120), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [20826] = 6, - ACTIONS(3588), 1, - anon_sym_EQ_GT, - ACTIONS(3784), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -156350,23 +156492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156388,14 +156514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20894] = 30, + [20830] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -156405,117 +156531,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_async, ACTIONS(3710), 1, - anon_sym_new, - ACTIONS(3714), 1, - anon_sym_static, - ACTIONS(3716), 1, - anon_sym_readonly, - ACTIONS(3722), 1, - anon_sym_override, - STATE(1344), 1, - sym_decorator, - STATE(2773), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3315), 1, - sym_formal_parameters, - STATE(3910), 1, - sym__call_signature, - STATE(4481), 1, - aux_sym_export_statement_repeat1, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3712), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3718), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3786), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4265), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3700), 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, - [21010] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_abstract, - ACTIONS(3702), 1, - anon_sym_export, - ACTIONS(3704), 1, - anon_sym_STAR, - ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156523,24 +156563,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3788), 2, + ACTIONS(3786), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156560,13 +156600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21126] = 5, - ACTIONS(3642), 1, + [20946] = 5, + ACTIONS(3653), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156582,12 +156622,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(3496), 16, + ACTIONS(3498), 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, @@ -156599,7 +156639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156621,13 +156661,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21192] = 5, - ACTIONS(3658), 1, + [21012] = 6, + ACTIONS(3510), 1, anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(3498), 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(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156643,12 +156701,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(3496), 16, + ACTIONS(3494), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [21080] = 5, + ACTIONS(3657), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3498), 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, @@ -156660,7 +156762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156682,15 +156784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21258] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3588), 1, + [21146] = 6, + ACTIONS(3606), 1, anon_sym_EQ_GT, + ACTIONS(3788), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156706,7 +156808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156722,7 +156824,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156744,13 +156846,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21326] = 5, - ACTIONS(3646), 1, + [21214] = 6, + ACTIONS(151), 1, + anon_sym_EQ_GT, + ACTIONS(824), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 15, + ACTIONS(153), 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(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156766,11 +156886,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3496), 16, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_GT, + anon_sym_QMARK_QMARK, + [21282] = 6, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(3790), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -156783,7 +156932,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3492), 21, + ACTIONS(3505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156805,14 +156970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21392] = 30, + [21350] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -156822,31 +156987,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156854,24 +157019,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3790), 2, + ACTIONS(3792), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156891,76 +157056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21508] = 6, - ACTIONS(3588), 1, - anon_sym_EQ_GT, - ACTIONS(3792), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3496), 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(3498), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3492), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_GT, - anon_sym_QMARK_QMARK, - [21576] = 30, + [21466] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -156970,31 +157073,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157002,24 +157105,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, ACTIONS(3794), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -157039,14 +157142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21692] = 30, + [21582] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -157056,31 +157159,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157088,24 +157191,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, ACTIONS(3796), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -157125,13 +157228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21808] = 5, - ACTIONS(3782), 1, + [21698] = 5, + ACTIONS(3790), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157147,7 +157250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157163,7 +157266,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157185,13 +157288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21873] = 5, - ACTIONS(3770), 1, + [21763] = 5, + ACTIONS(3780), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157207,7 +157310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157223,7 +157326,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157245,13 +157348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21938] = 5, - ACTIONS(3744), 1, + [21828] = 5, + ACTIONS(3784), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157267,7 +157370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157283,7 +157386,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157305,13 +157408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22003] = 5, - ACTIONS(3778), 1, + [21893] = 5, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157327,7 +157430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157343,7 +157446,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157365,13 +157468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22068] = 5, - ACTIONS(3792), 1, + [21958] = 5, + ACTIONS(3770), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157387,7 +157490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157403,7 +157506,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157425,13 +157528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22133] = 5, - ACTIONS(3746), 1, + [22023] = 5, + ACTIONS(3750), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157447,7 +157550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157463,7 +157566,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157485,13 +157588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22198] = 5, - ACTIONS(3756), 1, + [22088] = 5, + ACTIONS(3776), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157507,7 +157610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157523,7 +157626,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157545,13 +157648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22263] = 5, - ACTIONS(3754), 1, + [22153] = 5, + ACTIONS(3748), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157567,7 +157670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157583,7 +157686,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157605,13 +157708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22328] = 5, - ACTIONS(3784), 1, + [22218] = 5, + ACTIONS(3788), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157627,7 +157730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157643,7 +157746,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157665,13 +157768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22393] = 5, - ACTIONS(3762), 1, + [22283] = 5, + ACTIONS(3760), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 15, + ACTIONS(3498), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157687,7 +157790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3498), 15, + ACTIONS(3505), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157703,7 +157806,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(3492), 21, + ACTIONS(3494), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157725,14 +157828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22458] = 29, + [22348] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -157742,31 +157845,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157774,21 +157877,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3790), 6, + STATE(3801), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -157808,14 +157911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22570] = 29, + [22460] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -157825,31 +157928,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157857,21 +157960,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3786), 6, + STATE(3827), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -157891,14 +157994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22682] = 29, + [22572] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -157908,31 +158011,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157940,21 +158043,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3875), 6, + STATE(3858), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -157974,14 +158077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22794] = 29, + [22684] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -157991,31 +158094,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -158023,21 +158126,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4265), 6, + STATE(3887), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -158057,14 +158160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22906] = 29, + [22796] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -158074,31 +158177,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -158106,21 +158209,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3793), 6, + STATE(3856), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -158140,14 +158243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23018] = 29, + [22908] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -158157,31 +158260,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -158189,21 +158292,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3814), 6, + STATE(4113), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -158223,14 +158326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23130] = 29, + [23020] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1626), 1, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2499), 1, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, @@ -158240,31 +158343,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3708), 1, + ACTIONS(3712), 1, anon_sym_async, - ACTIONS(3710), 1, - anon_sym_new, ACTIONS(3714), 1, + anon_sym_new, + ACTIONS(3718), 1, anon_sym_static, - ACTIONS(3716), 1, + ACTIONS(3720), 1, anon_sym_readonly, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(2773), 1, + STATE(2795), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2802), 1, sym_override_modifier, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3910), 1, + STATE(4392), 1, sym__call_signature, - STATE(4481), 1, + STATE(4475), 1, aux_sym_export_statement_repeat1, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -158272,21 +158375,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3712), 2, + ACTIONS(3716), 2, sym_number, sym_private_property_identifier, - ACTIONS(3718), 2, + ACTIONS(3722), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3111), 3, + STATE(3187), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3884), 6, + STATE(3847), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -158306,161 +158409,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23242] = 33, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_namespace, - ACTIONS(2385), 1, - anon_sym_import, - ACTIONS(2387), 1, - anon_sym_var, - ACTIONS(2389), 1, - anon_sym_let, - ACTIONS(2391), 1, - anon_sym_const, - ACTIONS(2393), 1, - anon_sym_class, - ACTIONS(2395), 1, - anon_sym_async, - ACTIONS(2397), 1, - anon_sym_function, - ACTIONS(2399), 1, - anon_sym_declare, - ACTIONS(2403), 1, - anon_sym_abstract, - ACTIONS(2407), 1, - anon_sym_interface, - ACTIONS(2409), 1, - anon_sym_enum, + [23132] = 29, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3710), 1, + anon_sym_LBRACK, + ACTIONS(3726), 1, + anon_sym_override, ACTIONS(3798), 1, anon_sym_STAR, ACTIONS(3800), 1, - anon_sym_default, + anon_sym_RBRACE, ACTIONS(3802), 1, - anon_sym_type, + anon_sym_SEMI, ACTIONS(3804), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_as, + anon_sym_async, ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RBRACE, + anon_sym_AT, + ACTIONS(3810), 1, + anon_sym_static, + ACTIONS(3812), 1, + anon_sym_readonly, ACTIONS(3816), 1, - anon_sym_module, - STATE(1344), 1, - sym_decorator, - STATE(4286), 1, - sym_declaration, - STATE(4287), 1, - sym_internal_module, - STATE(4304), 1, + anon_sym_declare, + ACTIONS(3818), 1, + anon_sym_abstract, + ACTIONS(3820), 1, + anon_sym_accessor, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(4460), 1, - sym_export_clause, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - STATE(5202), 1, - sym_namespace_export, + STATE(2666), 1, + sym_method_definition, + STATE(2741), 1, + sym_accessibility_modifier, + STATE(2811), 1, + sym_override_modifier, + STATE(2818), 1, + sym_decorator, + STATE(4521), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4275), 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, - [23361] = 29, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3706), 1, - anon_sym_LBRACK, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(3818), 1, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3806), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 2, + anon_sym_get, + anon_sym_set, + STATE(1491), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3724), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4786), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3700), 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, + [23243] = 29, + ACTIONS(3825), 1, anon_sym_STAR, - ACTIONS(3820), 1, + ACTIONS(3828), 1, anon_sym_RBRACE, - ACTIONS(3822), 1, + ACTIONS(3830), 1, anon_sym_SEMI, - ACTIONS(3824), 1, + ACTIONS(3833), 1, + anon_sym_LBRACK, + ACTIONS(3836), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3845), 1, + anon_sym_SQUOTE, + ACTIONS(3851), 1, anon_sym_AT, - ACTIONS(3830), 1, + ACTIONS(3854), 1, anon_sym_static, - ACTIONS(3832), 1, + ACTIONS(3857), 1, anon_sym_readonly, - ACTIONS(3836), 1, + ACTIONS(3863), 1, anon_sym_declare, - ACTIONS(3838), 1, + ACTIONS(3869), 1, + anon_sym_override, + ACTIONS(3872), 1, anon_sym_abstract, - ACTIONS(3840), 1, + ACTIONS(3875), 1, anon_sym_accessor, - STATE(2478), 1, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3291), 2, + ACTIONS(3839), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3826), 2, + ACTIONS(3848), 2, sym_number, sym_private_property_identifier, - ACTIONS(3834), 2, + ACTIONS(3860), 2, anon_sym_get, anon_sym_set, - STATE(1490), 2, + STATE(1482), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3720), 3, + ACTIONS(3866), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3700), 13, + ACTIONS(3822), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158474,46 +158573,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23472] = 29, - ACTIONS(1626), 1, + [23354] = 29, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(3818), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3824), 1, + ACTIONS(3804), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(3830), 1, + ACTIONS(3810), 1, anon_sym_static, - ACTIONS(3832), 1, + ACTIONS(3812), 1, anon_sym_readonly, - ACTIONS(3836), 1, + ACTIONS(3816), 1, anon_sym_declare, - ACTIONS(3838), 1, + ACTIONS(3818), 1, anon_sym_abstract, - ACTIONS(3840), 1, + ACTIONS(3820), 1, anon_sym_accessor, - ACTIONS(3842), 1, + ACTIONS(3878), 1, anon_sym_RBRACE, - ACTIONS(3844), 1, + ACTIONS(3880), 1, anon_sym_SEMI, - STATE(2478), 1, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -158521,24 +158620,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3826), 2, + ACTIONS(3806), 2, sym_number, sym_private_property_identifier, - ACTIONS(3834), 2, + ACTIONS(3814), 2, anon_sym_get, anon_sym_set, STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -158556,46 +158655,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23583] = 29, - ACTIONS(1626), 1, + [23465] = 29, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(3818), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3824), 1, + ACTIONS(3804), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(3830), 1, + ACTIONS(3810), 1, anon_sym_static, - ACTIONS(3832), 1, + ACTIONS(3812), 1, anon_sym_readonly, - ACTIONS(3836), 1, + ACTIONS(3816), 1, anon_sym_declare, - ACTIONS(3838), 1, + ACTIONS(3818), 1, anon_sym_abstract, - ACTIONS(3840), 1, + ACTIONS(3820), 1, anon_sym_accessor, - ACTIONS(3846), 1, + ACTIONS(3882), 1, anon_sym_RBRACE, - ACTIONS(3848), 1, + ACTIONS(3884), 1, anon_sym_SEMI, - STATE(2478), 1, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -158603,24 +158702,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3826), 2, + ACTIONS(3806), 2, sym_number, sym_private_property_identifier, - ACTIONS(3834), 2, + ACTIONS(3814), 2, anon_sym_get, anon_sym_set, - STATE(1492), 2, + STATE(1487), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -158638,75 +158737,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23694] = 29, - ACTIONS(3853), 1, - anon_sym_STAR, - ACTIONS(3856), 1, - anon_sym_RBRACE, - ACTIONS(3858), 1, - anon_sym_SEMI, - ACTIONS(3861), 1, - anon_sym_LBRACK, - ACTIONS(3864), 1, - anon_sym_async, - ACTIONS(3870), 1, + [23576] = 29, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(3873), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3879), 1, + ACTIONS(3710), 1, + anon_sym_LBRACK, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(3798), 1, + anon_sym_STAR, + ACTIONS(3804), 1, + anon_sym_async, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(3882), 1, + ACTIONS(3810), 1, anon_sym_static, - ACTIONS(3885), 1, + ACTIONS(3812), 1, anon_sym_readonly, - ACTIONS(3891), 1, + ACTIONS(3816), 1, anon_sym_declare, - ACTIONS(3897), 1, - anon_sym_override, - ACTIONS(3900), 1, + ACTIONS(3818), 1, anon_sym_abstract, - ACTIONS(3903), 1, + ACTIONS(3820), 1, anon_sym_accessor, - STATE(2478), 1, + ACTIONS(3886), 1, + anon_sym_RBRACE, + ACTIONS(3888), 1, + anon_sym_SEMI, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3867), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3876), 2, + ACTIONS(3806), 2, sym_number, sym_private_property_identifier, - ACTIONS(3888), 2, + ACTIONS(3814), 2, anon_sym_get, anon_sym_set, - STATE(1485), 2, + STATE(1482), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3894), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3850), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158720,10 +158819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23805] = 33, + [23687] = 33, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2139), 1, + ACTIONS(2163), 1, anon_sym_LBRACE, ACTIONS(2383), 1, anon_sym_namespace, @@ -158749,42 +158848,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3798), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3800), 1, + ACTIONS(3892), 1, anon_sym_default, - ACTIONS(3802), 1, + ACTIONS(3894), 1, anon_sym_type, - ACTIONS(3804), 1, + ACTIONS(3896), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3816), 1, - anon_sym_module, - ACTIONS(3906), 1, + ACTIONS(3903), 1, anon_sym_RBRACE, - STATE(1344), 1, + ACTIONS(3908), 1, + anon_sym_module, + STATE(1313), 1, sym_decorator, - STATE(4286), 1, - sym_declaration, - STATE(4287), 1, + STATE(4188), 1, sym_internal_module, - STATE(4304), 1, + STATE(4324), 1, aux_sym_export_statement_repeat1, - STATE(4460), 1, + STATE(4416), 1, + sym_declaration, + STATE(4430), 1, sym_export_clause, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, - STATE(5202), 1, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(5274), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -158792,7 +158891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4275), 13, + STATE(4164), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158806,10 +158905,92 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23924] = 33, + [23806] = 29, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3710), 1, + anon_sym_LBRACK, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(3798), 1, + anon_sym_STAR, + ACTIONS(3804), 1, + anon_sym_async, + ACTIONS(3808), 1, + anon_sym_AT, + ACTIONS(3810), 1, + anon_sym_static, + ACTIONS(3812), 1, + anon_sym_readonly, + ACTIONS(3816), 1, + anon_sym_declare, + ACTIONS(3818), 1, + anon_sym_abstract, + ACTIONS(3820), 1, + anon_sym_accessor, + ACTIONS(3888), 1, + anon_sym_SEMI, + ACTIONS(3910), 1, + anon_sym_RBRACE, + STATE(2502), 1, + aux_sym_export_statement_repeat1, + STATE(2666), 1, + sym_method_definition, + STATE(2741), 1, + sym_accessibility_modifier, + STATE(2811), 1, + sym_override_modifier, + STATE(2818), 1, + sym_decorator, + STATE(4521), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3806), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 2, + anon_sym_get, + anon_sym_set, + STATE(1482), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3724), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4786), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3700), 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, + [23917] = 33, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2139), 1, + ACTIONS(2163), 1, anon_sym_LBRACE, ACTIONS(2383), 1, anon_sym_namespace, @@ -158835,42 +159016,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3798), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3800), 1, + ACTIONS(3892), 1, anon_sym_default, - ACTIONS(3802), 1, + ACTIONS(3894), 1, anon_sym_type, - ACTIONS(3804), 1, + ACTIONS(3896), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3816), 1, + ACTIONS(3908), 1, anon_sym_module, - ACTIONS(3909), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(4286), 1, - sym_declaration, - STATE(4287), 1, + STATE(4188), 1, sym_internal_module, - STATE(4304), 1, + STATE(4324), 1, aux_sym_export_statement_repeat1, - STATE(4460), 1, + STATE(4416), 1, + sym_declaration, + STATE(4430), 1, sym_export_clause, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, - STATE(5202), 1, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(5274), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -158878,7 +159059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4275), 13, + STATE(4164), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158892,10 +159073,10 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24043] = 33, + [24036] = 33, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2139), 1, + ACTIONS(2163), 1, anon_sym_LBRACE, ACTIONS(2383), 1, anon_sym_namespace, @@ -158921,42 +159102,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3798), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3800), 1, + ACTIONS(3892), 1, anon_sym_default, - ACTIONS(3802), 1, + ACTIONS(3894), 1, anon_sym_type, - ACTIONS(3804), 1, + ACTIONS(3896), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3816), 1, + ACTIONS(3908), 1, anon_sym_module, - ACTIONS(3912), 1, + ACTIONS(3915), 1, anon_sym_RBRACE, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(4286), 1, - sym_declaration, - STATE(4287), 1, + STATE(4188), 1, sym_internal_module, - STATE(4304), 1, + STATE(4324), 1, aux_sym_export_statement_repeat1, - STATE(4460), 1, + STATE(4416), 1, + sym_declaration, + STATE(4430), 1, sym_export_clause, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, - STATE(5202), 1, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(5274), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -158964,7 +159145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4275), 13, + STATE(4164), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158978,128 +159159,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24162] = 29, - ACTIONS(1626), 1, + [24155] = 29, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(3818), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3824), 1, + ACTIONS(3804), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(3830), 1, + ACTIONS(3810), 1, anon_sym_static, - ACTIONS(3832), 1, + ACTIONS(3812), 1, anon_sym_readonly, - ACTIONS(3836), 1, + ACTIONS(3816), 1, anon_sym_declare, - ACTIONS(3838), 1, - anon_sym_abstract, - ACTIONS(3840), 1, - anon_sym_accessor, - ACTIONS(3844), 1, - anon_sym_SEMI, - ACTIONS(3915), 1, - anon_sym_RBRACE, - STATE(2478), 1, - aux_sym_export_statement_repeat1, - STATE(2700), 1, - sym_method_definition, - STATE(2736), 1, - sym_accessibility_modifier, - STATE(2795), 1, - sym_override_modifier, - STATE(2802), 1, - sym_decorator, - STATE(4440), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3826), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3834), 2, - anon_sym_get, - anon_sym_set, - STATE(1485), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3720), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3062), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5021), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3700), 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, - [24273] = 29, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3706), 1, - anon_sym_LBRACK, - ACTIONS(3722), 1, - anon_sym_override, ACTIONS(3818), 1, - anon_sym_STAR, - ACTIONS(3824), 1, - anon_sym_async, - ACTIONS(3828), 1, - anon_sym_AT, - ACTIONS(3830), 1, - anon_sym_static, - ACTIONS(3832), 1, - anon_sym_readonly, - ACTIONS(3836), 1, - anon_sym_declare, - ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3840), 1, + ACTIONS(3820), 1, anon_sym_accessor, - ACTIONS(3844), 1, + ACTIONS(3888), 1, anon_sym_SEMI, - ACTIONS(3917), 1, + ACTIONS(3918), 1, anon_sym_RBRACE, - STATE(2478), 1, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -159107,24 +159206,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3826), 2, + ACTIONS(3806), 2, sym_number, sym_private_property_identifier, - ACTIONS(3834), 2, + ACTIONS(3814), 2, anon_sym_get, anon_sym_set, - STATE(1485), 2, + STATE(1482), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -159142,128 +159241,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24384] = 29, - ACTIONS(1626), 1, + [24266] = 29, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(3818), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3824), 1, + ACTIONS(3804), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(3830), 1, + ACTIONS(3810), 1, anon_sym_static, - ACTIONS(3832), 1, + ACTIONS(3812), 1, anon_sym_readonly, - ACTIONS(3836), 1, + ACTIONS(3816), 1, anon_sym_declare, - ACTIONS(3838), 1, - anon_sym_abstract, - ACTIONS(3840), 1, - anon_sym_accessor, - ACTIONS(3919), 1, - anon_sym_RBRACE, - ACTIONS(3921), 1, - anon_sym_SEMI, - STATE(2478), 1, - aux_sym_export_statement_repeat1, - STATE(2700), 1, - sym_method_definition, - STATE(2736), 1, - sym_accessibility_modifier, - STATE(2795), 1, - sym_override_modifier, - STATE(2802), 1, - sym_decorator, - STATE(4440), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3826), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3834), 2, - anon_sym_get, - anon_sym_set, - STATE(1494), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3720), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3062), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5021), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3700), 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, - [24495] = 29, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3706), 1, - anon_sym_LBRACK, - ACTIONS(3722), 1, - anon_sym_override, ACTIONS(3818), 1, - anon_sym_STAR, - ACTIONS(3824), 1, - anon_sym_async, - ACTIONS(3828), 1, - anon_sym_AT, - ACTIONS(3830), 1, - anon_sym_static, - ACTIONS(3832), 1, - anon_sym_readonly, - ACTIONS(3836), 1, - anon_sym_declare, - ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3840), 1, + ACTIONS(3820), 1, anon_sym_accessor, - ACTIONS(3844), 1, + ACTIONS(3888), 1, anon_sym_SEMI, - ACTIONS(3923), 1, + ACTIONS(3920), 1, anon_sym_RBRACE, - STATE(2478), 1, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -159271,24 +159288,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3826), 2, + ACTIONS(3806), 2, sym_number, sym_private_property_identifier, - ACTIONS(3834), 2, + ACTIONS(3814), 2, anon_sym_get, anon_sym_set, - STATE(1485), 2, + STATE(1482), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -159306,10 +159323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24606] = 33, + [24377] = 33, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2139), 1, + ACTIONS(2163), 1, anon_sym_LBRACE, ACTIONS(2383), 1, anon_sym_namespace, @@ -159335,42 +159352,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3798), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3800), 1, + ACTIONS(3892), 1, anon_sym_default, - ACTIONS(3802), 1, + ACTIONS(3894), 1, anon_sym_type, - ACTIONS(3804), 1, + ACTIONS(3896), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3816), 1, + ACTIONS(3908), 1, anon_sym_module, - ACTIONS(3925), 1, + ACTIONS(3922), 1, anon_sym_RBRACE, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(4286), 1, - sym_declaration, - STATE(4287), 1, + STATE(4188), 1, sym_internal_module, - STATE(4304), 1, + STATE(4324), 1, aux_sym_export_statement_repeat1, - STATE(4460), 1, + STATE(4416), 1, + sym_declaration, + STATE(4430), 1, sym_export_clause, - STATE(4792), 1, + STATE(4647), 1, aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, - STATE(5202), 1, + STATE(5274), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -159378,7 +159395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4275), 13, + STATE(4164), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -159392,46 +159409,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24725] = 29, - ACTIONS(1626), 1, + [24496] = 29, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(3818), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3824), 1, + ACTIONS(3804), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(3830), 1, + ACTIONS(3810), 1, anon_sym_static, - ACTIONS(3832), 1, + ACTIONS(3812), 1, anon_sym_readonly, - ACTIONS(3836), 1, + ACTIONS(3816), 1, anon_sym_declare, - ACTIONS(3838), 1, + ACTIONS(3818), 1, anon_sym_abstract, - ACTIONS(3840), 1, + ACTIONS(3820), 1, anon_sym_accessor, - ACTIONS(3844), 1, + ACTIONS(3888), 1, anon_sym_SEMI, - ACTIONS(3928), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - STATE(2478), 1, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -159439,24 +159456,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3826), 2, + ACTIONS(3806), 2, sym_number, sym_private_property_identifier, - ACTIONS(3834), 2, + ACTIONS(3814), 2, anon_sym_get, anon_sym_set, - STATE(1485), 2, + STATE(1482), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -159474,46 +159491,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24836] = 29, - ACTIONS(1626), 1, + [24607] = 29, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(3818), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3824), 1, + ACTIONS(3804), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(3830), 1, + ACTIONS(3810), 1, anon_sym_static, - ACTIONS(3832), 1, + ACTIONS(3812), 1, anon_sym_readonly, - ACTIONS(3836), 1, + ACTIONS(3816), 1, anon_sym_declare, - ACTIONS(3838), 1, + ACTIONS(3818), 1, anon_sym_abstract, - ACTIONS(3840), 1, + ACTIONS(3820), 1, anon_sym_accessor, - ACTIONS(3930), 1, + ACTIONS(3927), 1, anon_sym_RBRACE, - ACTIONS(3932), 1, + ACTIONS(3929), 1, anon_sym_SEMI, - STATE(2478), 1, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -159521,24 +159538,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3826), 2, + ACTIONS(3806), 2, sym_number, sym_private_property_identifier, - ACTIONS(3834), 2, + ACTIONS(3814), 2, anon_sym_get, anon_sym_set, - STATE(1483), 2, + STATE(1490), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -159556,46 +159573,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24947] = 29, - ACTIONS(1626), 1, + [24718] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2163), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, + anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, + anon_sym_async, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, + anon_sym_declare, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + ACTIONS(3890), 1, + anon_sym_STAR, + ACTIONS(3892), 1, + anon_sym_default, + ACTIONS(3894), 1, + anon_sym_type, + ACTIONS(3896), 1, + anon_sym_EQ, + ACTIONS(3898), 1, + anon_sym_as, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3908), 1, + anon_sym_module, + ACTIONS(3931), 1, + anon_sym_RBRACE, + STATE(1313), 1, + sym_decorator, + STATE(4188), 1, + sym_internal_module, + STATE(4324), 1, + aux_sym_export_statement_repeat1, + STATE(4416), 1, + sym_declaration, + STATE(4430), 1, + sym_export_clause, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(5274), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4164), 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, + [24837] = 29, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3706), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(3818), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3824), 1, + ACTIONS(3804), 1, anon_sym_async, - ACTIONS(3828), 1, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(3830), 1, + ACTIONS(3810), 1, anon_sym_static, - ACTIONS(3832), 1, + ACTIONS(3812), 1, anon_sym_readonly, - ACTIONS(3836), 1, + ACTIONS(3816), 1, anon_sym_declare, - ACTIONS(3838), 1, + ACTIONS(3818), 1, anon_sym_abstract, - ACTIONS(3840), 1, + ACTIONS(3820), 1, anon_sym_accessor, ACTIONS(3934), 1, anon_sym_RBRACE, ACTIONS(3936), 1, anon_sym_SEMI, - STATE(2478), 1, + STATE(2502), 1, aux_sym_export_statement_repeat1, - STATE(2700), 1, + STATE(2666), 1, sym_method_definition, - STATE(2736), 1, + STATE(2741), 1, sym_accessibility_modifier, - STATE(2795), 1, + STATE(2811), 1, sym_override_modifier, - STATE(2802), 1, + STATE(2818), 1, sym_decorator, - STATE(4440), 1, + STATE(4521), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -159603,24 +159706,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3826), 2, + ACTIONS(3806), 2, sym_number, sym_private_property_identifier, - ACTIONS(3834), 2, + ACTIONS(3814), 2, anon_sym_get, anon_sym_set, - STATE(1489), 2, + STATE(1493), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3062), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5021), 3, + STATE(4786), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -159638,7 +159741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25058] = 25, + [24948] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -159663,13 +159766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3956), 1, anon_sym_override, - STATE(2786), 1, + STATE(2781), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4744), 1, + STATE(4570), 1, aux_sym_object_repeat1, - STATE(4745), 1, + STATE(4650), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -159684,19 +159787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3648), 3, + STATE(3641), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4555), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4576), 3, + STATE(4566), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5536), 3, + STATE(4806), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -159715,7 +159818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25160] = 25, + [25050] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -159740,13 +159843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3972), 1, anon_sym_override, - STATE(2786), 1, + STATE(2781), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4734), 1, + STATE(4570), 1, aux_sym_object_repeat1, - STATE(4745), 1, + STATE(4650), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -159761,19 +159864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3648), 3, + STATE(3641), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4555), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4721), 3, + STATE(4566), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5536), 3, + STATE(4806), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -159792,7 +159895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25262] = 25, + [25152] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -159817,13 +159920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3988), 1, anon_sym_override, - STATE(2786), 1, + STATE(2781), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4734), 1, + STATE(4570), 1, aux_sym_object_repeat1, - STATE(4745), 1, + STATE(4650), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -159838,19 +159941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3648), 3, + STATE(3641), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4555), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4721), 3, + STATE(4566), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5536), 3, + STATE(4806), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -159869,7 +159972,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25364] = 25, + [25254] = 13, + ACTIONS(812), 1, + anon_sym_BQUOTE, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4000), 1, + anon_sym_QMARK_DOT, + ACTIONS(4002), 1, + anon_sym_LT, + STATE(1578), 1, + sym_type_arguments, + STATE(1686), 1, + sym_arguments, + STATE(1690), 1, + sym_template_string, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3990), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(3992), 27, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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_satisfies, + anon_sym_implements, + [25332] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -159884,23 +160052,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(4006), 1, anon_sym_RBRACE, - ACTIONS(3994), 1, + ACTIONS(4008), 1, anon_sym_async, - ACTIONS(3996), 1, + ACTIONS(4010), 1, anon_sym_static, - ACTIONS(3998), 1, + ACTIONS(4012), 1, anon_sym_readonly, - ACTIONS(4004), 1, + ACTIONS(4018), 1, anon_sym_override, - STATE(2786), 1, + STATE(2781), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4734), 1, + STATE(4648), 1, aux_sym_object_repeat1, - STATE(4745), 1, + STATE(4650), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -159908,30 +160076,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4000), 2, + ACTIONS(4014), 2, anon_sym_get, anon_sym_set, - ACTIONS(4002), 3, + ACTIONS(4016), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3648), 3, + STATE(3641), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4555), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4721), 3, + STATE(4608), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5536), 3, + STATE(4806), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3990), 14, + ACTIONS(4004), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159946,72 +160114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25466] = 13, - ACTIONS(820), 1, - anon_sym_BQUOTE, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4016), 1, - anon_sym_QMARK_DOT, - ACTIONS(4018), 1, - anon_sym_LT, - STATE(1627), 1, - sym_type_arguments, - STATE(1657), 1, - sym_template_string, - STATE(1666), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4006), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4008), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - 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_satisfies, - anon_sym_implements, - [25544] = 25, + [25434] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -160036,13 +160139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(4034), 1, anon_sym_override, - STATE(2786), 1, + STATE(2781), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4734), 1, + STATE(4570), 1, aux_sym_object_repeat1, - STATE(4745), 1, + STATE(4650), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -160057,19 +160160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3648), 3, + STATE(3641), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4555), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4721), 3, + STATE(4566), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5536), 3, + STATE(4806), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -160088,7 +160191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25646] = 25, + [25536] = 25, ACTIONS(231), 1, anon_sym_STAR, ACTIONS(237), 1, @@ -160113,13 +160216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(4050), 1, anon_sym_override, - STATE(2786), 1, + STATE(2781), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4734), 1, + STATE(4570), 1, aux_sym_object_repeat1, - STATE(4745), 1, + STATE(4650), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -160134,19 +160237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3648), 3, + STATE(3641), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4555), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4721), 3, + STATE(4566), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5536), 3, + STATE(4806), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -160165,21 +160268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25748] = 8, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, + [25638] = 7, + ACTIONS(4002), 1, anon_sym_LT, - ACTIONS(4052), 1, + ACTIONS(4054), 1, anon_sym_DOT, - STATE(1602), 1, - sym_arguments, + ACTIONS(4056), 1, + anon_sym_is, STATE(1603), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 12, + ACTIONS(4052), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160192,12 +160293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3512), 31, + ACTIONS(3551), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -160224,79 +160326,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25815] = 7, - ACTIONS(4018), 1, - anon_sym_LT, - ACTIONS(4056), 1, - anon_sym_DOT, - ACTIONS(4058), 1, - anon_sym_is, - STATE(1626), 1, - sym_type_arguments, + [25703] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2163), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, + anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, + anon_sym_async, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, + anon_sym_declare, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + ACTIONS(3890), 1, + anon_sym_STAR, + ACTIONS(3892), 1, + anon_sym_default, + ACTIONS(3894), 1, + anon_sym_type, + ACTIONS(3896), 1, + anon_sym_EQ, + ACTIONS(3898), 1, + anon_sym_as, + ACTIONS(3908), 1, + anon_sym_module, + STATE(1313), 1, + sym_decorator, + STATE(4188), 1, + sym_internal_module, + STATE(4324), 1, + aux_sym_export_statement_repeat1, + STATE(4416), 1, + sym_declaration, + STATE(4430), 1, + sym_export_clause, + STATE(5274), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(3548), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4058), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3906), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - 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, - [25880] = 8, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, anon_sym_LT, - ACTIONS(4064), 1, - anon_sym_DOT, - STATE(1610), 1, - sym_arguments, - STATE(1611), 1, - sym_type_arguments, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4164), 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, + [25814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4060), 12, + ACTIONS(1846), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160306,21 +160421,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4062), 31, + anon_sym_QMARK, + ACTIONS(1844), 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_SEMI, - anon_sym_RPAREN, anon_sym_of, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160340,11 +160460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [25947] = 29, + anon_sym_PIPE_RBRACE, + [25871] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2139), 1, + ACTIONS(2163), 1, anon_sym_LBRACE, ACTIONS(2383), 1, anon_sym_namespace, @@ -160370,34 +160490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3798), 1, + ACTIONS(3890), 1, anon_sym_STAR, - ACTIONS(3800), 1, + ACTIONS(3892), 1, anon_sym_default, - ACTIONS(3802), 1, + ACTIONS(3894), 1, anon_sym_type, - ACTIONS(3806), 1, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3816), 1, + ACTIONS(3908), 1, anon_sym_module, - ACTIONS(4066), 1, + ACTIONS(4062), 1, anon_sym_EQ, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(4286), 1, - sym_declaration, - STATE(4287), 1, + STATE(4188), 1, sym_internal_module, - STATE(4304), 1, + STATE(4324), 1, aux_sym_export_statement_repeat1, - STATE(4460), 1, + STATE(4416), 1, + sym_declaration, + STATE(4430), 1, sym_export_clause, - STATE(5202), 1, + STATE(5274), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -160407,7 +160527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4275), 13, + STATE(4164), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160421,11 +160541,129 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26056] = 3, + [25980] = 8, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_LT, + ACTIONS(4068), 1, + anon_sym_DOT, + STATE(1625), 1, + sym_arguments, + STATE(1626), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4064), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4066), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, + [26047] = 8, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_LT, + ACTIONS(4074), 1, + anon_sym_DOT, + STATE(1623), 1, + sym_arguments, + STATE(1624), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4070), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4072), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, + [26114] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1756), 14, + ACTIONS(1860), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160440,7 +160678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK, - ACTIONS(1754), 34, + ACTIONS(1858), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160475,21 +160713,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [26113] = 8, - ACTIONS(4010), 1, + [26171] = 8, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4018), 1, + ACTIONS(4002), 1, anon_sym_LT, - ACTIONS(4072), 1, + ACTIONS(4076), 1, anon_sym_DOT, - STATE(1604), 1, + STATE(1621), 1, sym_arguments, - STATE(1609), 1, + STATE(1622), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(3514), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, + [26238] = 5, + ACTIONS(4078), 1, + anon_sym_LT, + STATE(1579), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3679), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(3458), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [26298] = 22, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACK, + ACTIONS(4083), 1, + anon_sym_async, + ACTIONS(4085), 1, + anon_sym_static, + ACTIONS(4087), 1, + anon_sym_readonly, + ACTIONS(4093), 1, + anon_sym_override, + STATE(2781), 1, + sym_accessibility_modifier, + STATE(2814), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3946), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4091), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3641), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5296), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5298), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5726), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4081), 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, + [26392] = 5, + ACTIONS(4002), 1, + anon_sym_LT, + STATE(1612), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4068), 12, + ACTIONS(4095), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4097), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [26452] = 6, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4103), 1, + anon_sym_DOT, + STATE(1614), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4099), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160499,10 +160974,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, anon_sym_GT, - ACTIONS(4070), 31, + ACTIONS(4101), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160534,92 +161010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26180] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_namespace, - ACTIONS(2385), 1, - anon_sym_import, - ACTIONS(2387), 1, - anon_sym_var, - ACTIONS(2389), 1, - anon_sym_let, - ACTIONS(2391), 1, - anon_sym_const, - ACTIONS(2393), 1, - anon_sym_class, - ACTIONS(2395), 1, - anon_sym_async, - ACTIONS(2397), 1, - anon_sym_function, - ACTIONS(2399), 1, - anon_sym_declare, - ACTIONS(2403), 1, - anon_sym_abstract, - ACTIONS(2407), 1, - anon_sym_interface, - ACTIONS(2409), 1, - anon_sym_enum, - ACTIONS(3798), 1, - anon_sym_STAR, - ACTIONS(3800), 1, - anon_sym_default, - ACTIONS(3802), 1, - anon_sym_type, - ACTIONS(3804), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_as, - ACTIONS(3816), 1, - anon_sym_module, - STATE(1344), 1, - sym_decorator, - STATE(4286), 1, - sym_declaration, - STATE(4287), 1, - sym_internal_module, - STATE(4304), 1, - aux_sym_export_statement_repeat1, - STATE(4460), 1, - sym_export_clause, - STATE(5202), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4275), 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, - [26291] = 3, + [26514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1728), 14, + ACTIONS(1846), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160634,65 +161029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK, - ACTIONS(1726), 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_SEMI, - anon_sym_of, - anon_sym_while, - 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, - [26348] = 6, - ACTIONS(4018), 1, - anon_sym_LT, - ACTIONS(4056), 1, - anon_sym_DOT, - STATE(1626), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4054), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(3548), 32, + ACTIONS(1844), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160705,6 +161042,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, @@ -160725,11 +161063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26410] = 3, + [26570] = 5, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(4105), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3225), 14, + ACTIONS(1690), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160743,8 +161085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_QMARK, - ACTIONS(3227), 33, + ACTIONS(1688), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160776,19 +161117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26466] = 6, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4082), 1, - anon_sym_DOT, - STATE(1548), 1, - sym_arguments, + [26630] = 4, + ACTIONS(4056), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4078), 13, + ACTIONS(4107), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160802,18 +161138,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4080), 31, + ACTIONS(4109), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160834,23 +161172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26528] = 9, - ACTIONS(820), 1, - anon_sym_BQUOTE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4016), 1, - anon_sym_QMARK_DOT, - STATE(1657), 1, - sym_template_string, - STATE(4733), 1, - sym_optional_chain, + [26688] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 13, + ACTIONS(3235), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160864,54 +161190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1736), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_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, - anon_sym_implements, - [26596] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4084), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4086), 34, + anon_sym_QMARK, + ACTIONS(3237), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160945,12 +161225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26652] = 3, + [26744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1728), 14, + ACTIONS(1860), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160965,7 +161244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK, - ACTIONS(1726), 33, + ACTIONS(1858), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160999,11 +161278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26708] = 3, + [26800] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3237), 14, + ACTIONS(3231), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161018,7 +161297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK, - ACTIONS(3239), 33, + ACTIONS(3233), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161052,11 +161331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26764] = 3, + [26856] = 5, + ACTIONS(4111), 1, + anon_sym_LT, + STATE(1574), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1756), 14, + ACTIONS(3673), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161066,12 +161349,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, anon_sym_GT, - anon_sym_QMARK, - ACTIONS(1754), 33, + ACTIONS(3466), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161105,87 +161386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26820] = 22, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, - anon_sym_LBRACK, - ACTIONS(4090), 1, - anon_sym_async, - ACTIONS(4092), 1, - anon_sym_static, - ACTIONS(4094), 1, - anon_sym_readonly, - ACTIONS(4100), 1, - anon_sym_override, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2808), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3437), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3946), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4096), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4098), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3648), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5225), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5230), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5536), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4088), 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, - [26914] = 5, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(4102), 1, - sym__automatic_semicolon, + [26916] = 6, + ACTIONS(4002), 1, + anon_sym_LT, + ACTIONS(4054), 1, + anon_sym_DOT, + STATE(1603), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1692), 13, + ACTIONS(4052), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161195,11 +161406,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, anon_sym_GT, - ACTIONS(1690), 32, + ACTIONS(3551), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161212,7 +161422,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, @@ -161231,8 +161440,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, - [26974] = 3, + [26978] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -161285,13 +161495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_implements, anon_sym_is, - [27030] = 4, - ACTIONS(4058), 1, - anon_sym_is, + [27034] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 13, + ACTIONS(3239), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161305,7 +161513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4106), 33, + anon_sym_QMARK, + ACTIONS(3241), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161339,13 +161548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27088] = 4, - ACTIONS(4112), 1, - anon_sym_is, + [27090] = 5, + ACTIONS(4118), 1, + anon_sym_LT, + STATE(1534), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 13, + ACTIONS(4114), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161355,11 +161566,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, anon_sym_GT, - ACTIONS(4110), 33, + ACTIONS(4116), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161393,13 +161603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27146] = 4, - ACTIONS(4058), 1, - anon_sym_is, + [27150] = 5, + ACTIONS(4125), 1, + anon_sym_LT, + STATE(1583), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 13, + ACTIONS(4121), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161409,11 +161621,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, anon_sym_GT, - ACTIONS(4116), 33, + ACTIONS(4123), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161447,11 +161658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27204] = 3, + [27210] = 5, + ACTIONS(4132), 1, + anon_sym_LT, + STATE(1587), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3233), 14, + ACTIONS(4128), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161461,12 +161676,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, anon_sym_GT, - anon_sym_QMARK, - ACTIONS(3235), 33, + ACTIONS(4130), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161500,15 +161713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27260] = 5, - ACTIONS(4018), 1, + [27270] = 5, + ACTIONS(4139), 1, anon_sym_LT, - STATE(1545), 1, + STATE(1590), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 12, + ACTIONS(4135), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161521,7 +161734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4110), 33, + ACTIONS(4137), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161555,13 +161768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27320] = 4, - ACTIONS(3494), 1, - anon_sym_EQ, + [27330] = 4, + ACTIONS(4056), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(4142), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161575,7 +161788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 32, + ACTIONS(4144), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161607,12 +161820,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27377] = 3, + [27388] = 9, + ACTIONS(812), 1, + anon_sym_BQUOTE, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4000), 1, + anon_sym_QMARK_DOT, + STATE(1690), 1, + sym_template_string, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1744), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1746), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_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, + anon_sym_implements, + [27456] = 4, + ACTIONS(4146), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4118), 13, + ACTIONS(4095), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161626,7 +161901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4120), 33, + ACTIONS(4097), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161660,11 +161935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27432] = 3, + [27514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161678,7 +161953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4124), 33, + ACTIONS(4150), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161712,41 +161987,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27487] = 7, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(2373), 1, - anon_sym_extends, + anon_sym_is, + [27570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4126), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4129), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(1694), 10, + ACTIONS(4152), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 29, + anon_sym_GT, + ACTIONS(4154), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161767,12 +162038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27550] = 3, + [27625] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 13, + ACTIONS(4156), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161786,7 +162058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4134), 33, + ACTIONS(4158), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161820,11 +162092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27605] = 3, + [27680] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161838,7 +162110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4138), 33, + ACTIONS(4162), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161872,13 +162144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27660] = 4, - ACTIONS(4102), 1, - sym__automatic_semicolon, + [27735] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1692), 13, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161892,7 +162162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1690), 32, + ACTIONS(4162), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161924,45 +162194,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27717] = 7, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, + [27790] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3522), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 28, + anon_sym_GT, + ACTIONS(4162), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -161980,12 +162246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27780] = 3, + [27845] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 13, + ACTIONS(4164), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161999,7 +162266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4142), 33, + ACTIONS(4166), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162033,17 +162300,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27835] = 3, + [27900] = 6, + ACTIONS(4172), 1, + anon_sym_AMP, + ACTIONS(4174), 1, + anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 13, + ACTIONS(4168), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -162051,7 +162322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4134), 33, + ACTIONS(4170), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162083,13 +162354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27890] = 3, + [27961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162103,7 +162373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4138), 33, + ACTIONS(4180), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162137,22 +162407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27945] = 7, - ACTIONS(4146), 1, + [28016] = 7, + ACTIONS(1694), 1, anon_sym_EQ, - ACTIONS(4156), 1, + ACTIONS(2361), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 2, + ACTIONS(4182), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4153), 3, + ACTIONS(4185), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(4144), 10, + ACTIONS(1692), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162163,7 +162433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4148), 29, + ACTIONS(1696), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162193,11 +162463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28008] = 3, + [28079] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162211,7 +162481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4160), 33, + ACTIONS(4190), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162245,36 +162515,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28063] = 3, + [28134] = 7, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 13, + ACTIONS(3514), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 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(3498), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [28197] = 7, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4204), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4198), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4201), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4192), 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, - anon_sym_GT, - ACTIONS(2373), 33, + ACTIONS(4196), 29, 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_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, + [28260] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4206), 3, anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4208), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 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(3498), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162295,13 +162680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28118] = 3, + [28319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162315,7 +162699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4164), 33, + ACTIONS(4180), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162349,11 +162733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28173] = 3, + [28374] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162367,7 +162751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4168), 33, + ACTIONS(4190), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162401,11 +162785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28228] = 3, + [28429] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(3329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162419,7 +162803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4172), 33, + ACTIONS(3331), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162453,11 +162837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28283] = 3, + [28484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4174), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162471,7 +162855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4176), 33, + ACTIONS(4212), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162505,11 +162889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28338] = 3, + [28539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162523,7 +162907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4164), 33, + ACTIONS(4216), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162557,11 +162941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28393] = 3, + [28594] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162575,7 +162959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4168), 33, + ACTIONS(4212), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162609,11 +162993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28448] = 3, + [28649] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162627,7 +163011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4180), 33, + ACTIONS(4216), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162661,39 +163045,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28503] = 5, + [28704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4184), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 30, + anon_sym_GT, + ACTIONS(4220), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162714,14 +163095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28562] = 4, - ACTIONS(4052), 1, - anon_sym_DOT, + [28759] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 13, + ACTIONS(4107), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162735,7 +163115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3512), 32, + ACTIONS(4109), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162748,6 +163128,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, @@ -162768,11 +163149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28619] = 3, + [28814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 13, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162786,7 +163167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4188), 33, + ACTIONS(4224), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162820,19 +163201,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28674] = 4, - ACTIONS(4194), 1, + [28869] = 6, + ACTIONS(4172), 1, + anon_sym_AMP, + ACTIONS(4174), 1, + anon_sym_PIPE, + ACTIONS(4176), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 13, + ACTIONS(4226), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -162840,7 +163223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4192), 32, + ACTIONS(4228), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162873,17 +163256,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28731] = 3, + [28930] = 6, + ACTIONS(4172), 1, + anon_sym_AMP, + ACTIONS(4174), 1, + anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4196), 13, + ACTIONS(4230), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -162891,7 +163278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4198), 33, + ACTIONS(4232), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162923,15 +163310,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, - [28786] = 4, - ACTIONS(4200), 1, - anon_sym_LBRACK, + [28991] = 5, + ACTIONS(812), 1, + anon_sym_BQUOTE, + STATE(1690), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(1744), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162945,7 +163333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4172), 32, + ACTIONS(1746), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162956,6 +163344,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, @@ -162974,15 +163363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28843] = 3, + [29050] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3417), 13, + ACTIONS(3411), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162996,7 +163383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3419), 33, + ACTIONS(3413), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163030,11 +163417,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28898] = 3, + [29105] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163048,7 +163435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4110), 33, + ACTIONS(4220), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163082,21 +163469,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28953] = 6, - ACTIONS(4206), 1, + [29160] = 6, + ACTIONS(4234), 1, + anon_sym_LBRACE, + ACTIONS(4236), 1, + anon_sym_DOT, + STATE(1666), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4208), 1, anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_extends, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1672), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [29221] = 6, + ACTIONS(4234), 1, + anon_sym_LBRACE, + ACTIONS(4238), 1, + anon_sym_DOT, + STATE(1666), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 11, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -163104,10 +163548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4204), 32, + ACTIONS(1672), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -163117,7 +163560,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, @@ -163137,13 +163579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [29014] = 4, - ACTIONS(4200), 1, - anon_sym_LBRACK, + [29282] = 5, + ACTIONS(4234), 1, + anon_sym_LBRACE, + STATE(1666), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 13, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163157,10 +163601,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4214), 32, + ACTIONS(1672), 31, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -163168,6 +163611,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, @@ -163188,13 +163632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29071] = 3, + [29341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 13, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163208,7 +163651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4218), 33, + ACTIONS(4224), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163242,11 +163685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29126] = 3, + [29396] = 5, + ACTIONS(3994), 1, + anon_sym_LPAREN, + STATE(1667), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 13, + ACTIONS(4240), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163260,13 +163707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4222), 33, + ACTIONS(4242), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -163292,23 +163738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29181] = 6, - ACTIONS(4206), 1, - anon_sym_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_extends, + [29455] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 11, + ACTIONS(4244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -163316,7 +163757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4222), 32, + ACTIONS(4246), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163348,14 +163789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29242] = 4, - ACTIONS(4228), 1, - anon_sym_DOT, + [29510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 13, + ACTIONS(4248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163369,7 +163809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4226), 32, + ACTIONS(4250), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163382,6 +163822,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, @@ -163402,11 +163843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29299] = 3, + [29565] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4230), 13, + ACTIONS(4252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163420,7 +163861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4232), 33, + ACTIONS(4254), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163454,11 +163895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29354] = 3, + [29620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2371), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163472,7 +163913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2369), 33, + ACTIONS(4258), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163506,11 +163947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29409] = 3, + [29675] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 13, + ACTIONS(4142), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163524,7 +163965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4236), 33, + ACTIONS(4144), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163558,11 +163999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29464] = 3, + [29730] = 5, + ACTIONS(4266), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4264), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163576,7 +164022,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4240), 33, + ACTIONS(4262), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [29789] = 6, + ACTIONS(4172), 1, + anon_sym_AMP, + ACTIONS(4174), 1, + anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4268), 11, + 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, + anon_sym_GT, + ACTIONS(4270), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163608,13 +164107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29519] = 3, + [29850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4272), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163628,7 +164126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4240), 33, + ACTIONS(4274), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163662,11 +164160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29574] = 3, + [29905] = 4, + ACTIONS(4280), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163680,7 +164180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4240), 33, + ACTIONS(4278), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163693,7 +164193,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, @@ -163714,11 +164213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29629] = 3, + [29962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163732,7 +164231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4244), 33, + ACTIONS(4284), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163766,11 +164265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29684] = 3, + [30017] = 4, + ACTIONS(4286), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163784,7 +164285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4244), 33, + ACTIONS(4284), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163795,7 +164296,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, @@ -163818,11 +164318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29739] = 3, + [30074] = 5, + ACTIONS(3994), 1, + anon_sym_LPAREN, + STATE(1692), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163836,13 +164340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4244), 33, + ACTIONS(4290), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -163868,13 +164371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29794] = 3, + [30133] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163888,7 +164390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4248), 33, + ACTIONS(4294), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163922,11 +164424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29849] = 3, + [30188] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4095), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163940,7 +164442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4248), 33, + ACTIONS(4097), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163974,13 +164476,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29904] = 4, - ACTIONS(4254), 1, + [30243] = 6, + ACTIONS(4296), 1, + anon_sym_LBRACE, + ACTIONS(4298), 1, anon_sym_DOT, + STATE(1771), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1672), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + 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, + [30304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163994,7 +164549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4252), 32, + ACTIONS(4302), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164007,6 +164562,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, @@ -164027,11 +164583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29961] = 3, + [30359] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164045,7 +164601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4248), 33, + ACTIONS(4306), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164079,11 +164635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30016] = 3, + [30414] = 4, + ACTIONS(4097), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164097,7 +164655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4258), 33, + ACTIONS(4310), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164129,19 +164687,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, - [30071] = 3, + [30471] = 6, + ACTIONS(4172), 1, + anon_sym_AMP, + ACTIONS(4174), 1, + anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4308), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -164149,7 +164710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4262), 33, + ACTIONS(4310), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164181,13 +164742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30126] = 3, + [30532] = 4, + ACTIONS(4105), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 13, + ACTIONS(1690), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164201,7 +164763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4266), 33, + ACTIONS(1688), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164233,15 +164795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30181] = 4, - ACTIONS(4268), 1, - sym__automatic_semicolon, + [30589] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1880), 13, + ACTIONS(4312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164255,7 +164814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1878), 32, + ACTIONS(4314), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164287,12 +164846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30238] = 3, + [30644] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 13, + ACTIONS(2363), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164306,7 +164866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4156), 33, + ACTIONS(2361), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164340,17 +164900,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30293] = 6, - ACTIONS(4206), 1, + [30699] = 6, + ACTIONS(4172), 1, anon_sym_AMP, - ACTIONS(4208), 1, + ACTIONS(4174), 1, anon_sym_PIPE, - ACTIONS(4210), 1, + ACTIONS(4176), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 11, + ACTIONS(4316), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164362,7 +164922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4274), 32, + ACTIONS(4318), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164395,11 +164955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30354] = 3, + [30760] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 13, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164413,7 +164973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2361), 33, + ACTIONS(4322), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164447,11 +165007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30409] = 3, + [30815] = 4, + ACTIONS(4076), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 13, + ACTIONS(3524), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164465,7 +165027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4278), 33, + ACTIONS(3514), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164478,7 +165040,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, @@ -164499,11 +165060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30464] = 3, + [30872] = 4, + ACTIONS(4324), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(1766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164517,7 +165080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4282), 33, + ACTIONS(1764), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164549,13 +165112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30519] = 3, + [30929] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164569,7 +165131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4282), 33, + ACTIONS(4328), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164603,11 +165165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30574] = 3, + [30984] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164621,7 +165183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4282), 33, + ACTIONS(4332), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164655,11 +165217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30629] = 3, + [31039] = 4, + ACTIONS(4338), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(4334), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164673,7 +165237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4286), 33, + ACTIONS(4336), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164686,7 +165250,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, @@ -164707,16 +165270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30684] = 5, - ACTIONS(4118), 1, - anon_sym_QMARK, + [31096] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4288), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164730,7 +165288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 30, + ACTIONS(4342), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164738,6 +165296,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164760,12 +165320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30743] = 3, + [31151] = 6, + ACTIONS(4296), 1, + anon_sym_LBRACE, + ACTIONS(4344), 1, + anon_sym_DOT, + STATE(1771), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164779,20 +165346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4286), 33, + ACTIONS(1672), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164811,13 +165376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30798] = 3, + anon_sym_PIPE_RBRACE, + [31212] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3423), 13, + ACTIONS(4156), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164831,7 +165395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3425), 33, + ACTIONS(4158), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164865,11 +165429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30853] = 3, + [31267] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(4346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164883,7 +165447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4286), 33, + ACTIONS(4348), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164917,21 +165481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30908] = 6, - ACTIONS(4206), 1, + [31322] = 4, + ACTIONS(4172), 1, anon_sym_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 11, + ACTIONS(4350), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -164939,7 +165500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4294), 32, + ACTIONS(4352), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164971,14 +165532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [30969] = 4, - ACTIONS(4110), 1, anon_sym_extends, + anon_sym_implements, + [31379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4208), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164992,7 +165552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 32, + ACTIONS(4206), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165024,12 +165584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31026] = 3, + [31434] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165043,7 +165604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4302), 33, + ACTIONS(4356), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165077,17 +165638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31081] = 4, - ACTIONS(4206), 1, - anon_sym_AMP, + [31489] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 12, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165096,7 +165656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4306), 33, + ACTIONS(4360), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165130,11 +165690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31138] = 3, + [31544] = 5, + ACTIONS(4296), 1, + anon_sym_LBRACE, + STATE(1771), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(1674), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165148,19 +165712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 33, + ACTIONS(1672), 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_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -165180,19 +165743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [31603] = 6, + ACTIONS(4172), 1, + anon_sym_AMP, + ACTIONS(4174), 1, + anon_sym_PIPE, + ACTIONS(4176), 1, anon_sym_extends, - anon_sym_implements, - [31193] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4362), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -165200,7 +165766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 33, + ACTIONS(4364), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165232,19 +165798,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, - [31248] = 3, + [31664] = 6, + ACTIONS(4284), 1, + anon_sym_extends, + ACTIONS(4286), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 13, + ACTIONS(4282), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4366), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -165252,7 +165822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4182), 33, + ACTIONS(4368), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165263,7 +165833,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, @@ -165284,13 +165853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31303] = 3, + [31725] = 4, + ACTIONS(4374), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165304,7 +165874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4314), 33, + ACTIONS(4372), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165336,19 +165906,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, - [31358] = 3, + [31782] = 6, + ACTIONS(4172), 1, + anon_sym_AMP, + ACTIONS(4174), 1, + anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(4330), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -165356,7 +165929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4318), 33, + ACTIONS(4332), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165388,13 +165961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31413] = 3, + [31843] = 4, + ACTIONS(4286), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2379), 13, + ACTIONS(4376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165408,7 +165982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2377), 33, + ACTIONS(4378), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165419,7 +165993,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, @@ -165442,11 +166015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31468] = 3, + [31900] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(2371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165460,7 +166033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4322), 33, + ACTIONS(2369), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165494,11 +166067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31523] = 3, + [31955] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(4266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165512,7 +166085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4326), 33, + ACTIONS(4264), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165546,11 +166119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31578] = 3, + [32010] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165564,7 +166137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4330), 33, + ACTIONS(4382), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165598,21 +166171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31633] = 6, - ACTIONS(4206), 1, - anon_sym_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_extends, + [32065] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 11, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -165620,7 +166189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4334), 32, + ACTIONS(4386), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165652,67 +166221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31694] = 6, - ACTIONS(4336), 1, - anon_sym_LBRACE, - ACTIONS(4338), 1, - anon_sym_DOT, - STATE(1750), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1676), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1674), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - 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, - [31755] = 3, + [32120] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3427), 13, + ACTIONS(4388), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165726,7 +166241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3429), 33, + ACTIONS(4390), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165760,17 +166275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31810] = 6, - ACTIONS(4336), 1, - anon_sym_LBRACE, - ACTIONS(4340), 1, - anon_sym_DOT, - STATE(1750), 1, - sym_statement_block, + [32175] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1676), 13, + ACTIONS(4392), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165784,18 +166293,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1674), 30, - sym__automatic_semicolon, + ACTIONS(4394), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165814,12 +166325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [31871] = 3, + anon_sym_extends, + anon_sym_implements, + [32230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4392), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165833,7 +166345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4344), 33, + ACTIONS(4394), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165867,11 +166379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31926] = 3, + [32285] = 5, + ACTIONS(4398), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 13, + ACTIONS(4396), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165885,7 +166402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4348), 33, + ACTIONS(4262), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165893,8 +166410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -165917,13 +166432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31981] = 3, + [32344] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 13, + ACTIONS(4392), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165937,7 +166451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4352), 33, + ACTIONS(4394), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165971,15 +166485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32036] = 5, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(1750), 1, - sym_statement_block, + [32399] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1676), 13, + ACTIONS(2375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165993,18 +166503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1674), 31, - sym__automatic_semicolon, + ACTIONS(2373), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -166024,12 +166535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32095] = 3, + anon_sym_extends, + anon_sym_implements, + [32454] = 4, + ACTIONS(3510), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166043,7 +166557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4356), 33, + ACTIONS(3498), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166075,13 +166589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32150] = 3, + [32511] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166095,7 +166608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4360), 33, + ACTIONS(4396), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166129,17 +166642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32205] = 6, - ACTIONS(4362), 1, - anon_sym_LBRACE, - ACTIONS(4364), 1, - anon_sym_DOT, - STATE(1712), 1, - sym_statement_block, + [32566] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1676), 13, + ACTIONS(4400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166153,9 +166660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(4402), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -166165,6 +166673,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, @@ -166183,18 +166692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32266] = 6, - ACTIONS(4362), 1, - anon_sym_LBRACE, - ACTIONS(4366), 1, - anon_sym_DOT, - STATE(1712), 1, - sym_statement_block, + [32621] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1676), 13, + ACTIONS(4404), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166208,9 +166712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1674), 30, + ACTIONS(4406), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -166220,6 +166725,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, @@ -166238,16 +166744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32327] = 5, - ACTIONS(4362), 1, - anon_sym_LBRACE, - STATE(1712), 1, - sym_statement_block, + [32676] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1676), 13, + ACTIONS(4408), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166261,9 +166764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1674), 31, + ACTIONS(4410), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -166292,12 +166796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32386] = 3, + [32731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2367), 13, + ACTIONS(4412), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166311,7 +166816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2365), 33, + ACTIONS(4414), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166345,21 +166850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32441] = 6, - ACTIONS(4206), 1, - anon_sym_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_extends, + [32786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 11, + ACTIONS(4416), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -166367,7 +166868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 32, + ACTIONS(4418), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166399,12 +166900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32502] = 3, + [32841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166418,7 +166920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4370), 33, + ACTIONS(4422), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166452,11 +166954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32557] = 3, + [32896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(4424), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166470,7 +166972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4374), 33, + ACTIONS(4426), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166504,11 +167006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32612] = 3, + [32951] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 13, + ACTIONS(4428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166522,7 +167024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4378), 33, + ACTIONS(4430), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166556,11 +167058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32667] = 3, + [33006] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 13, + ACTIONS(4432), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166574,7 +167076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4382), 33, + ACTIONS(4434), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166608,13 +167110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32722] = 4, - ACTIONS(4388), 1, - anon_sym_DOT, + [33061] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166628,7 +167128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4386), 32, + ACTIONS(4422), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166641,6 +167141,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, @@ -166661,11 +167162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32779] = 3, + [33116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166679,7 +167180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4124), 33, + ACTIONS(4422), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166713,11 +167214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32834] = 3, + [33171] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4436), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166731,7 +167232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4393), 33, + ACTIONS(4438), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166765,15 +167266,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32889] = 5, - ACTIONS(4010), 1, + [33226] = 4, + ACTIONS(4444), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4442), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - STATE(1685), 1, - sym_arguments, + anon_sym_SEMI, + 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, + [33283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 13, + ACTIONS(4447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166787,12 +167337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4397), 31, + ACTIONS(4449), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -166818,12 +167369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32948] = 3, + [33338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3691), 13, + ACTIONS(4447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166837,7 +167389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3474), 33, + ACTIONS(4449), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166871,11 +167423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33003] = 3, + [33393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3679), 13, + ACTIONS(4447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166889,7 +167441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3478), 33, + ACTIONS(4449), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166923,13 +167475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33058] = 4, - ACTIONS(4399), 1, + [33448] = 4, + ACTIONS(4451), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(4440), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166943,7 +167495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4386), 32, + ACTIONS(4442), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166976,11 +167528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33115] = 3, + [33505] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166994,7 +167546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4404), 33, + ACTIONS(4456), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167028,11 +167580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33170] = 3, + [33560] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167046,7 +167598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4408), 33, + ACTIONS(4460), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167080,15 +167632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33225] = 5, - ACTIONS(4010), 1, - anon_sym_LPAREN, - STATE(1669), 1, - sym_arguments, + [33615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167102,12 +167650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4412), 31, + ACTIONS(4464), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -167133,18 +167682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33284] = 6, - ACTIONS(4206), 1, + [33670] = 6, + ACTIONS(4172), 1, anon_sym_AMP, - ACTIONS(4208), 1, + ACTIONS(4174), 1, anon_sym_PIPE, - ACTIONS(4210), 1, + ACTIONS(4176), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 11, + ACTIONS(4454), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167156,7 +167706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4404), 32, + ACTIONS(4456), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167189,11 +167739,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33345] = 3, + [33731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 13, + ACTIONS(4466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167207,7 +167757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4106), 33, + ACTIONS(4468), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167241,11 +167791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33400] = 3, + [33786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 13, + ACTIONS(3353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167259,7 +167809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4382), 33, + ACTIONS(3355), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167293,11 +167843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33455] = 3, + [33841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 13, + ACTIONS(4470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167311,7 +167861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4116), 33, + ACTIONS(4472), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167345,11 +167895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33510] = 3, + [33896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 13, + ACTIONS(2367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167363,7 +167913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4416), 33, + ACTIONS(2365), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167397,11 +167947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33565] = 3, + [33951] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(4474), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167415,7 +167965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4420), 33, + ACTIONS(4476), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167449,16 +167999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33620] = 3, + [34006] = 4, + ACTIONS(4172), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 13, + ACTIONS(4478), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167467,7 +168018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4424), 33, + ACTIONS(4480), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167501,11 +168052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33675] = 3, + [34063] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4426), 13, + ACTIONS(4482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167519,7 +168070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4428), 33, + ACTIONS(4484), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167553,11 +168104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33730] = 3, + [34118] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4430), 13, + ACTIONS(4486), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167571,7 +168122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4432), 33, + ACTIONS(4488), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167605,21 +168156,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33785] = 6, - ACTIONS(4206), 1, - anon_sym_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_extends, + [34173] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4434), 11, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -167627,7 +168174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4436), 32, + ACTIONS(4492), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167659,18 +168206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33846] = 4, - ACTIONS(4206), 1, - anon_sym_AMP, + [34228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 12, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167679,7 +168226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4440), 33, + ACTIONS(4492), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167713,21 +168260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33903] = 6, - ACTIONS(4206), 1, - anon_sym_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_extends, + [34283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4442), 11, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -167735,7 +168278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4444), 32, + ACTIONS(4492), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167767,12 +168310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33964] = 3, + [34338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4446), 13, + ACTIONS(4156), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167786,7 +168330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4448), 33, + ACTIONS(4158), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167820,16 +168364,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34019] = 5, - ACTIONS(4320), 1, - anon_sym_QMARK, + [34393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4288), 13, + ACTIONS(2379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167843,7 +168382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 30, + ACTIONS(2377), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167851,6 +168390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -167873,16 +168414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34078] = 5, - ACTIONS(820), 1, - anon_sym_BQUOTE, - STATE(1657), 1, - sym_template_string, + [34448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 13, + ACTIONS(4494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167896,7 +168434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1736), 31, + ACTIONS(4204), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167926,24 +168464,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [34137] = 6, - ACTIONS(4172), 1, anon_sym_extends, - ACTIONS(4200), 1, - anon_sym_LBRACK, + anon_sym_implements, + [34503] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4450), 11, + ACTIONS(4496), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -167951,7 +168486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4452), 31, + ACTIONS(4498), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167962,6 +168497,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, @@ -167983,11 +168519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34198] = 3, + [34557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4500), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168001,7 +168537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 33, + ACTIONS(4502), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168033,15 +168569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34253] = 4, - ACTIONS(1696), 1, - anon_sym_EQ, + [34611] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168055,7 +168588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1698), 31, + ACTIONS(4262), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168064,6 +168597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -168087,11 +168621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34309] = 3, + [34665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 13, + ACTIONS(1800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168105,7 +168639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1736), 32, + ACTIONS(1802), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168138,11 +168672,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34363] = 3, + [34719] = 19, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4514), 1, + anon_sym_readonly, + STATE(2816), 1, + sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4454), 13, + ACTIONS(4512), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [34805] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1884), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168156,19 +168757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4456), 32, + ACTIONS(1882), 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_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168188,12 +168789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [34417] = 3, + anon_sym_PIPE_RBRACE, + [34859] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4458), 13, + ACTIONS(4518), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168207,7 +168808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4460), 32, + ACTIONS(4520), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168240,11 +168841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34471] = 3, + [34913] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4522), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168258,7 +168859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 32, + ACTIONS(4524), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168291,36 +168892,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34525] = 3, + [34967] = 6, + ACTIONS(4356), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4462), 13, + ACTIONS(4530), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4533), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4526), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4464), 32, + ACTIONS(4528), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168342,11 +168946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34579] = 3, + [35027] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(1840), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168360,7 +168964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 32, + ACTIONS(1838), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168393,11 +168997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34633] = 3, + [35081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 13, + ACTIONS(4536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168411,7 +169015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4468), 32, + ACTIONS(4538), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168444,11 +169048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34687] = 3, + [35135] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 13, + ACTIONS(1766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168462,7 +169066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4472), 32, + ACTIONS(1764), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168495,36 +169099,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34741] = 3, + [35189] = 6, + ACTIONS(4144), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4474), 13, + ACTIONS(4540), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4543), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4476), 32, + ACTIONS(3498), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168546,11 +169153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34795] = 3, + [35249] = 4, + ACTIONS(4548), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4478), 13, + ACTIONS(4546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168564,7 +169173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4480), 32, + ACTIONS(4550), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168573,7 +169182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -168597,11 +169205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34849] = 3, + [35305] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1886), 13, + ACTIONS(1810), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168615,7 +169223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1884), 32, + ACTIONS(1812), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168648,11 +169256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34903] = 3, + [35359] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4482), 13, + ACTIONS(4552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168666,7 +169274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4484), 32, + ACTIONS(4554), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168699,11 +169307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34957] = 3, + [35413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4486), 13, + ACTIONS(4556), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168717,7 +169325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4488), 32, + ACTIONS(4558), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168750,11 +169358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35011] = 3, + [35467] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4490), 13, + ACTIONS(4560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168768,7 +169376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4492), 32, + ACTIONS(4562), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168801,11 +169409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35065] = 3, + [35521] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4494), 13, + ACTIONS(4564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168819,7 +169427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4496), 32, + ACTIONS(4566), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168852,11 +169460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35119] = 3, + [35575] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4498), 13, + ACTIONS(4568), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168870,7 +169478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4500), 32, + ACTIONS(4570), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168903,11 +169511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35173] = 3, + [35629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4502), 13, + ACTIONS(1794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168921,7 +169529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4504), 32, + ACTIONS(1792), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168954,11 +169562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35227] = 3, + [35683] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4506), 13, + ACTIONS(4572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168972,7 +169580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4508), 32, + ACTIONS(4574), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169005,65 +169613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35281] = 6, - ACTIONS(4106), 1, - anon_sym_extends, + [35737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4510), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4513), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 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(3496), 29, - 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_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, - [35341] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4516), 13, + ACTIONS(1892), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169077,7 +169631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4518), 32, + ACTIONS(1894), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169110,62 +169664,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35395] = 3, + [35791] = 19, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4514), 1, + anon_sym_readonly, + STATE(2816), 1, + sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4520), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4522), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4512), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [35449] = 3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [35877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4524), 13, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169179,7 +169749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4526), 32, + ACTIONS(4578), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169212,11 +169782,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35503] = 3, + [35931] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4528), 13, + ACTIONS(1708), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169230,7 +169800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4530), 32, + ACTIONS(1706), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169263,11 +169833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35557] = 3, + [35985] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 13, + ACTIONS(4580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169281,7 +169851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4534), 32, + ACTIONS(4582), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169314,11 +169884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35611] = 3, + [36039] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1846), 13, + ACTIONS(4584), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169332,7 +169902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1848), 32, + ACTIONS(4586), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169365,11 +169935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35665] = 3, + [36093] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4536), 13, + ACTIONS(4588), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169383,7 +169953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4538), 32, + ACTIONS(4590), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169416,11 +169986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35719] = 3, + [36147] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1722), 13, + ACTIONS(4592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169434,7 +170004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1720), 32, + ACTIONS(4594), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169467,11 +170037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35773] = 3, + [36201] = 4, + ACTIONS(4194), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4540), 13, + ACTIONS(4192), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169485,7 +170057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4542), 32, + ACTIONS(4196), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169494,7 +170066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -169518,11 +170089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35827] = 3, + [36257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4544), 13, + ACTIONS(4596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169536,7 +170107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4546), 32, + ACTIONS(4598), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169569,11 +170140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35881] = 3, + [36311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4548), 13, + ACTIONS(4600), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169587,7 +170158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4550), 32, + ACTIONS(4602), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169620,11 +170191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35935] = 3, + [36365] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4552), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169638,7 +170209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4554), 32, + ACTIONS(4262), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169671,11 +170242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35989] = 3, + [36419] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4556), 13, + ACTIONS(4604), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169689,7 +170260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4558), 32, + ACTIONS(4606), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169722,11 +170293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36043] = 3, + [36473] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4560), 13, + ACTIONS(4608), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169740,7 +170311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4562), 32, + ACTIONS(4610), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169773,11 +170344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36097] = 3, + [36527] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 13, + ACTIONS(4612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169791,7 +170362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4566), 32, + ACTIONS(4614), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169824,62 +170395,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36151] = 3, + [36581] = 19, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4514), 1, + anon_sym_readonly, + STATE(2816), 1, + sym_override_modifier, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4568), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4570), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4512), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [36205] = 3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [36667] = 4, + ACTIONS(1694), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169893,7 +170482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 32, + ACTIONS(1696), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169902,7 +170491,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -169926,11 +170514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36259] = 3, + [36723] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4572), 13, + ACTIONS(4616), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169944,7 +170532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4574), 32, + ACTIONS(4618), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169977,11 +170565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36313] = 3, + [36777] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4576), 13, + ACTIONS(1760), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169995,7 +170583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4578), 32, + ACTIONS(1758), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170028,11 +170616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36367] = 3, + [36831] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4580), 13, + ACTIONS(1884), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170046,7 +170634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4582), 32, + ACTIONS(1882), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170079,11 +170667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36421] = 3, + [36885] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1794), 13, + ACTIONS(1788), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170097,7 +170685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1796), 32, + ACTIONS(1786), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170130,11 +170718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36475] = 3, + [36939] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1804), 13, + ACTIONS(1714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170148,7 +170736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1806), 32, + ACTIONS(1716), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170181,11 +170769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36529] = 3, + [36993] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1814), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170199,7 +170787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1816), 32, + ACTIONS(3498), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170232,11 +170820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36583] = 3, + [37047] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1710), 13, + ACTIONS(1752), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170250,7 +170838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1712), 32, + ACTIONS(1754), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170283,11 +170871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36637] = 3, + [37101] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 13, + ACTIONS(4526), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170301,7 +170889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4586), 32, + ACTIONS(4528), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170334,31 +170922,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36691] = 13, - ACTIONS(87), 1, + [37155] = 19, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4514), 1, + anon_sym_readonly, + STATE(2816), 1, + sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4512), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [37241] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1866), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1868), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_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(4588), 1, + anon_sym_satisfies, + anon_sym_implements, + [37295] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4620), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4622), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4592), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4594), 1, anon_sym_QMARK_DOT, - ACTIONS(4596), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37349] = 6, + ACTIONS(4258), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4624), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 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, - STATE(2001), 1, - sym_type_arguments, - STATE(2228), 1, - sym_template_string, - STATE(2333), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3498), 29, + 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_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, + [37409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4006), 12, + ACTIONS(4630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170368,17 +171159,25 @@ 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_GT, - ACTIONS(4008), 23, - sym__automatic_semicolon, + ACTIONS(4632), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -170394,12 +171193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [36765] = 3, + anon_sym_implements, + [37463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170413,7 +171214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4600), 32, + ACTIONS(1736), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170446,11 +171247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36819] = 3, + [37517] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1762), 13, + ACTIONS(4634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170464,7 +171265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1764), 32, + ACTIONS(4636), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170497,11 +171298,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36873] = 3, + [37571] = 19, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4514), 1, + anon_sym_readonly, + STATE(2816), 1, + sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4512), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [37657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1774), 13, + ACTIONS(4638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170515,7 +171383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1776), 32, + ACTIONS(4640), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170548,11 +171416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36927] = 3, + [37711] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1784), 13, + ACTIONS(1760), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170566,19 +171434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1786), 32, + ACTIONS(1758), 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_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -170598,12 +171466,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36981] = 3, + anon_sym_PIPE_RBRACE, + [37765] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1824), 13, + ACTIONS(4642), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170617,7 +171485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1826), 32, + ACTIONS(4644), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170650,11 +171518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37035] = 3, + [37819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1834), 13, + ACTIONS(4646), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170668,7 +171536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1836), 32, + ACTIONS(4648), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170701,11 +171569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37089] = 3, + [37873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1860), 13, + ACTIONS(1724), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170719,7 +171587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1862), 32, + ACTIONS(1726), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170752,11 +171620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37143] = 3, + [37927] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1870), 13, + ACTIONS(1784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170770,7 +171638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1872), 32, + ACTIONS(1782), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170803,13 +171671,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37197] = 4, - ACTIONS(4146), 1, - anon_sym_EQ, + [37981] = 13, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_QMARK_DOT, + ACTIONS(4658), 1, + anon_sym_LT, + STATE(1896), 1, + sym_type_arguments, + STATE(2160), 1, + sym_template_string, + STATE(2307), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 13, + ACTIONS(3990), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170819,24 +171705,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, anon_sym_GT, - ACTIONS(4148), 31, + ACTIONS(3992), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -170852,16 +171731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37253] = 4, - ACTIONS(4604), 1, - anon_sym_EQ, + [38055] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(4660), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170875,7 +171750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4606), 31, + ACTIONS(4662), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170884,6 +171759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -170907,39 +171783,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37309] = 6, - ACTIONS(4408), 1, - anon_sym_extends, + [38109] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4608), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4664), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 29, + anon_sym_GT, + ACTIONS(4666), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -170961,11 +171834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37369] = 3, + [38163] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1890), 13, + ACTIONS(1820), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170979,19 +171852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1888), 32, - sym__automatic_semicolon, + ACTIONS(1822), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171011,12 +171884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37423] = 3, + anon_sym_implements, + [38217] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1894), 13, + ACTIONS(4668), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171030,19 +171903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1892), 32, - sym__automatic_semicolon, + ACTIONS(4670), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171062,40 +171935,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37477] = 6, - ACTIONS(4378), 1, - anon_sym_extends, + anon_sym_implements, + [38271] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4617), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4458), 10, + ACTIONS(1876), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4460), 29, + anon_sym_GT, + ACTIONS(1878), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -171117,11 +171987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37537] = 3, + [38325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1854), 13, + ACTIONS(1832), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171135,7 +172005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1852), 32, + ACTIONS(1834), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171168,11 +172038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37591] = 3, + [38379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1752), 13, + ACTIONS(1852), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171186,7 +172056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1750), 32, + ACTIONS(1854), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171219,11 +172089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37645] = 3, + [38433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1880), 13, + ACTIONS(1744), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171237,7 +172107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1878), 32, + ACTIONS(1746), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171270,11 +172140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37699] = 3, + [38487] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1890), 13, + ACTIONS(4672), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171288,7 +172158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1888), 32, + ACTIONS(4674), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171321,11 +172191,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37753] = 3, + [38541] = 8, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4658), 1, + anon_sym_LT, + ACTIONS(4676), 1, + anon_sym_DOT, + STATE(1961), 1, + sym_arguments, + STATE(1962), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1894), 13, + ACTIONS(4070), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171335,24 +172215,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, anon_sym_GT, - ACTIONS(1892), 32, + ACTIONS(4072), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_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, @@ -171371,99 +172245,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37807] = 3, + anon_sym_extends, + [38604] = 22, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1718), 13, + ACTIONS(4678), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4684), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1716), 32, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [37861] = 19, - ACTIONS(1626), 1, + [38695] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3912), 1, + ACTIONS(3922), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, + ACTIONS(4504), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4630), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, - STATE(4792), 1, + STATE(4647), 1, aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, + ACTIONS(4710), 2, sym_number, sym_private_property_identifier, - ACTIONS(4632), 2, + ACTIONS(4712), 2, anon_sym_get, anon_sym_set, - STATE(3144), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -171471,18 +172355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3700), 18, + ACTIONS(2351), 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, @@ -171490,248 +172377,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [37947] = 19, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4624), 1, + [38772] = 23, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4630), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4632), 2, - anon_sym_get, - anon_sym_set, - STATE(3144), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [38033] = 19, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(3808), 1, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 13, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3811), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4624), 1, + 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_BQUOTE, + anon_sym_satisfies, + [38865] = 15, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4630), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4724), 1, + anon_sym_LT, + ACTIONS(4727), 1, + anon_sym_satisfies, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4632), 2, - anon_sym_get, - anon_sym_set, - STATE(3144), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [38119] = 19, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(3808), 1, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4716), 11, + anon_sym_STAR, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4720), 20, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4624), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [38942] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4630), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4632), 2, - anon_sym_get, - anon_sym_set, - STATE(3144), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4729), 6, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [38205] = 19, - ACTIONS(1626), 1, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [39051] = 16, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3906), 1, + ACTIONS(3922), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, + ACTIONS(4504), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(4626), 1, + ACTIONS(4510), 1, anon_sym_async, - ACTIONS(4630), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, - STATE(4810), 1, + ACTIONS(4743), 1, + anon_sym_LBRACK, + STATE(4647), 1, aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, + ACTIONS(4512), 2, sym_number, sym_private_property_identifier, - ACTIONS(4632), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(3144), 3, + STATE(3175), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -171739,7 +172629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3700), 18, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -171747,10 +172637,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, @@ -171758,37 +172650,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38291] = 15, - ACTIONS(4010), 1, + [39130] = 11, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4644), 1, + ACTIONS(4749), 1, anon_sym_LT, - ACTIONS(4649), 1, - anon_sym_satisfies, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4745), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -171799,8 +172683,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4638), 20, + ACTIONS(4747), 24, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -171819,22 +172704,112 @@ 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, - [38368] = 5, + anon_sym_satisfies, + [39199] = 24, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4735), 1, + anon_sym_CARET, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4651), 5, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 12, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4144), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [39294] = 15, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4752), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4678), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -171842,43 +172817,35 @@ 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, anon_sym_GT, - ACTIONS(4148), 24, + ACTIONS(4680), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [38425] = 4, - ACTIONS(4654), 1, - sym__automatic_semicolon, + [39371] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1692), 13, + ACTIONS(1794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171892,7 +172859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1690), 30, + ACTIONS(1792), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -171923,84 +172891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [38480] = 17, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4660), 1, - anon_sym_async, - ACTIONS(4664), 1, - anon_sym_readonly, - ACTIONS(4668), 1, - sym__automatic_semicolon, - STATE(2721), 1, - sym_statement_block, - STATE(2793), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4666), 2, - anon_sym_get, - anon_sym_set, - STATE(3082), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 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(3700), 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, - [38561] = 5, + [39424] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4604), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4671), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4602), 13, + ACTIONS(1784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172014,11 +172909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4606), 24, + ACTIONS(1782), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, + anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -172039,11 +172940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [38618] = 3, + anon_sym_PIPE_RBRACE, + [39477] = 4, + ACTIONS(4755), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1880), 13, + ACTIONS(1690), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172057,8 +172961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1878), 31, - sym__automatic_semicolon, + ACTIONS(1688), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -172089,62 +172992,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [38671] = 16, - ACTIONS(1626), 1, + [39532] = 16, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4743), 1, anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_static, - ACTIONS(4678), 1, - anon_sym_readonly, - ACTIONS(4680), 1, - anon_sym_abstract, - ACTIONS(4682), 1, - anon_sym_accessor, - STATE(2767), 1, - sym_accessibility_modifier, - STATE(2829), 1, - sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4674), 2, + ACTIONS(4512), 2, sym_number, sym_private_property_identifier, - ACTIONS(3720), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3360), 3, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -172152,13 +173055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38750] = 4, - ACTIONS(4684), 1, - sym__automatic_semicolon, + [39611] = 7, + ACTIONS(4658), 1, + anon_sym_LT, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4759), 1, + anon_sym_is, + STATE(1928), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1880), 13, + ACTIONS(4052), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172168,22 +173077,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_GT, - ACTIONS(1878), 30, + ACTIONS(3551), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_while, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172202,24 +173108,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [38805] = 8, - ACTIONS(4588), 1, + anon_sym_extends, + [39672] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4596), 1, - anon_sym_LT, - ACTIONS(4686), 1, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, - STATE(1964), 1, - sym_arguments, - STATE(1965), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4752), 1, + anon_sym_LT, + STATE(1566), 1, sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 12, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -172230,109 +173152,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3512), 27, - sym__automatic_semicolon, + ACTIONS(4680), 19, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [38868] = 15, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + [39751] = 20, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, ACTIONS(4692), 2, - anon_sym_get, - anon_sym_set, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4682), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4680), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 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, - [38945] = 7, - ACTIONS(4596), 1, - anon_sym_LT, - ACTIONS(4694), 1, + 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_BQUOTE, + anon_sym_satisfies, + [39838] = 27, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, ACTIONS(4696), 1, - anon_sym_is, - STATE(2031), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + STATE(1566), 1, sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [39939] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 12, + ACTIONS(4548), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4761), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172342,19 +173336,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, anon_sym_GT, - ACTIONS(3548), 28, - sym__automatic_semicolon, + ACTIONS(4550), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172373,12 +173365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [39006] = 3, + [39996] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1718), 13, + ACTIONS(1766), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172392,7 +173383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1716), 31, + ACTIONS(1764), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -172424,49 +173415,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [39059] = 16, - ACTIONS(1626), 1, + [40049] = 16, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4766), 1, + anon_sym_static, + ACTIONS(4768), 1, + anon_sym_readonly, + ACTIONS(4770), 1, + anon_sym_abstract, + ACTIONS(4772), 1, + anon_sym_accessor, + STATE(2776), 1, + sym_accessibility_modifier, + STATE(2826), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4764), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3724), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3415), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [40128] = 17, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(4620), 1, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4774), 1, anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4626), 1, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, anon_sym_async, - ACTIONS(4698), 1, - anon_sym_LBRACK, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4782), 1, + anon_sym_readonly, + ACTIONS(4786), 1, + sym__automatic_semicolon, + STATE(2731), 1, + sym_statement_block, + STATE(2820), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, + ACTIONS(4780), 2, sym_number, sym_private_property_identifier, - ACTIONS(4632), 2, + ACTIONS(4784), 2, anon_sym_get, anon_sym_set, - STATE(3144), 3, + STATE(3103), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, + ACTIONS(3906), 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(3700), 20, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -172474,12 +173531,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, @@ -172487,21 +173542,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39138] = 8, - ACTIONS(4588), 1, + [40209] = 8, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4596), 1, + ACTIONS(4658), 1, anon_sym_LT, - ACTIONS(4700), 1, + ACTIONS(4789), 1, anon_sym_DOT, - STATE(1966), 1, + STATE(1963), 1, sym_arguments, - STATE(1967), 1, + STATE(1964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4068), 12, + ACTIONS(4064), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172514,7 +173569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4070), 27, + ACTIONS(4066), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -172542,39 +173597,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39201] = 15, - ACTIONS(1550), 1, + [40272] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4558), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [40381] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4791), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [40490] = 16, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, + ACTIONS(4504), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4743), 1, anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, + ACTIONS(4512), 2, sym_number, sym_private_property_identifier, - ACTIONS(4692), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(3866), 3, + STATE(3175), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -172582,12 +173795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2351), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -172604,96 +173816,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39278] = 8, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4596), 1, - anon_sym_LT, - ACTIONS(4702), 1, - anon_sym_DOT, - STATE(1970), 1, - sym_arguments, - STATE(1973), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4060), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4062), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, - 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, - [39341] = 16, - ACTIONS(1626), 1, + [40569] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3912), 1, + ACTIONS(3931), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, + ACTIONS(4504), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4698), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, + ACTIONS(4710), 2, sym_number, sym_private_property_identifier, - ACTIONS(4632), 2, + ACTIONS(4712), 2, anon_sym_get, anon_sym_set, - STATE(3144), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -172701,11 +173856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3700), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -172722,21 +173878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39420] = 8, - ACTIONS(4010), 1, + [40646] = 8, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4708), 1, + ACTIONS(4658), 1, anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, + ACTIONS(4793), 1, + anon_sym_DOT, + STATE(1959), 1, sym_arguments, - STATE(4733), 1, - sym_optional_chain, + STATE(1960), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 12, + ACTIONS(3524), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172749,16 +173905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4706), 27, + ACTIONS(3514), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172777,198 +173932,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39483] = 31, - ACTIONS(4010), 1, + anon_sym_extends, + [40709] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(4694), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4696), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(4752), 1, + anon_sym_LT, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4468), 6, + anon_sym_GT, + ACTIONS(4680), 20, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_BQUOTE, - [39592] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4736), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 2, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4744), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [39701] = 16, - ACTIONS(1626), 1, + anon_sym_satisfies, + [40788] = 16, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4748), 1, + ACTIONS(4797), 1, anon_sym_static, - ACTIONS(4750), 1, + ACTIONS(4799), 1, anon_sym_readonly, - ACTIONS(4752), 1, + ACTIONS(4801), 1, anon_sym_abstract, - ACTIONS(4754), 1, + ACTIONS(4803), 1, anon_sym_accessor, - STATE(2766), 1, + STATE(2758), 1, sym_accessibility_modifier, - STATE(2853), 1, + STATE(2872), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4746), 2, + ACTIONS(4795), 2, sym_number, sym_private_property_identifier, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3418), 3, + STATE(3397), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -172996,331 +174059,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39780] = 31, - ACTIONS(4010), 1, + [40867] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 6, + ACTIONS(4590), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39889] = 31, - ACTIONS(4010), 1, + [40976] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 6, + ACTIONS(4598), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39998] = 31, - ACTIONS(4010), 1, + [41085] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4504), 6, + ACTIONS(4602), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40107] = 18, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [41194] = 4, + ACTIONS(4805), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(1766), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(4760), 18, + ACTIONS(1764), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [40190] = 13, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4764), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_PIPE_RBRACE, + [41249] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(1694), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4807), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173330,181 +174367,196 @@ 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_GT, - ACTIONS(4760), 21, + ACTIONS(1696), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [40263] = 25, - ACTIONS(4010), 1, + [41306] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4762), 1, - anon_sym_BANG, - STATE(1633), 1, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 12, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4810), 6, 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_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [40360] = 26, - ACTIONS(4010), 1, + [41415] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4762), 1, - anon_sym_BANG, - STATE(1633), 1, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4812), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [40459] = 3, + [41524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1752), 13, + ACTIONS(1788), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173518,7 +174570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1750), 31, + ACTIONS(1786), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -173550,247 +174602,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [40512] = 22, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [41577] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(1708), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4762), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4760), 13, + anon_sym_GT, + ACTIONS(1706), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [40603] = 23, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, + anon_sym_PIPE_RBRACE, + [41630] = 15, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_LBRACK, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, ACTIONS(4710), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4712), 2, + anon_sym_get, + anon_sym_set, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [41707] = 15, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4710), 2, + sym_number, + sym_private_property_identifier, ACTIONS(4712), 2, + anon_sym_get, + anon_sym_set, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [41784] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4194), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4814), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4192), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 13, + anon_sym_GT, + ACTIONS(4196), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [40696] = 24, - ACTIONS(4010), 1, + [41841] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 12, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4817), 6, 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_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [40791] = 15, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4764), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [41950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(1840), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -173798,863 +174919,834 @@ 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, anon_sym_GT, - ACTIONS(4760), 20, + ACTIONS(1838), 31, + sym__automatic_semicolon, 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_BQUOTE, - anon_sym_satisfies, - [40868] = 16, - ACTIONS(4010), 1, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4764), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 11, - anon_sym_STAR, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4760), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40947] = 20, - ACTIONS(4010), 1, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [42003] = 8, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4708), 1, + ACTIONS(4698), 1, anon_sym_LT, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4819), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4762), 5, anon_sym_BANG, + anon_sym_in, + 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(4760), 15, + anon_sym_GT, + ACTIONS(4821), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, 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, - [41034] = 27, - ACTIONS(4010), 1, + [42066] = 16, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4743), 1, + anon_sym_LBRACK, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4512), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [42145] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4762), 1, - anon_sym_BANG, - STATE(1633), 1, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4618), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [41135] = 31, - ACTIONS(4010), 1, + [42254] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4522), 6, + ACTIONS(4823), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41244] = 31, - ACTIONS(4010), 1, + [42363] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4767), 6, + ACTIONS(4825), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41353] = 31, - ACTIONS(4010), 1, + [42472] = 15, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4710), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4712), 2, + anon_sym_get, + anon_sym_set, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [42549] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4546), 6, + ACTIONS(4827), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41462] = 31, - ACTIONS(4010), 1, + [42658] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4554), 6, + ACTIONS(4524), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41571] = 31, - ACTIONS(4010), 1, + [42767] = 18, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(4694), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4696), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(4698), 1, + anon_sym_LT, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4558), 6, + anon_sym_GT, + ACTIONS(4680), 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_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_BQUOTE, - [41680] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [42850] = 13, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4696), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(4752), 1, + anon_sym_LT, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4682), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4769), 6, + anon_sym_GT, + ACTIONS(4680), 21, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - [41789] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [42923] = 25, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4771), 6, + ACTIONS(4680), 12, + 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_QMARK_QMARK, anon_sym_BQUOTE, - [41898] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [43020] = 12, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4833), 1, anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4736), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4773), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [42007] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1722), 13, + ACTIONS(4829), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174664,24 +175756,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, anon_sym_GT, - ACTIONS(1720), 31, - sym__automatic_semicolon, + ACTIONS(4831), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -174695,44 +175780,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [43091] = 26, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42060] = 15, - ACTIONS(1550), 1, + [43190] = 16, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3925), 1, + ACTIONS(3931), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, + ACTIONS(4504), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4743), 1, anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, + ACTIONS(4512), 2, sym_number, sym_private_property_identifier, - ACTIONS(4692), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(3866), 3, + STATE(3175), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174740,12 +175897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2351), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -174762,20 +175918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42137] = 5, + [43269] = 5, + ACTIONS(4658), 1, + anon_sym_LT, + STATE(1934), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4775), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1694), 13, + ACTIONS(4095), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174785,14 +175936,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, anon_sym_GT, - ACTIONS(1698), 24, + ACTIONS(4097), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, @@ -174814,102 +175968,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42194] = 16, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4698), 1, + anon_sym_extends, + [43325] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_AMP_AMP, + ACTIONS(4846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, + anon_sym_GT_GT, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_PERCENT, + ACTIONS(4862), 1, + anon_sym_STAR_STAR, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4632), 2, - anon_sym_get, - anon_sym_set, - STATE(3144), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(4836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4842), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4850), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4791), 5, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_of, + anon_sym_BQUOTE, + [43433] = 15, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4860), 1, + anon_sym_PERCENT, + ACTIONS(4862), 1, + anon_sym_STAR_STAR, + ACTIONS(4880), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [42273] = 15, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4680), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + 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_BQUOTE, + anon_sym_satisfies, + [43509] = 13, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3811), 1, + ACTIONS(3922), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - STATE(4792), 1, + STATE(4647), 1, aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, + ACTIONS(4710), 2, sym_number, sym_private_property_identifier, - ACTIONS(4692), 2, - anon_sym_get, - anon_sym_set, - STATE(3866), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174917,7 +176142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2351), 21, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174927,6 +176152,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, @@ -174939,11 +176166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42350] = 3, + [43581] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1854), 13, + ACTIONS(4548), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4883), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174957,17 +176193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1852), 31, - sym__automatic_semicolon, + ACTIONS(4550), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -174988,139 +176217,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42403] = 16, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4698), 1, + [43637] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4632), 2, - anon_sym_get, - anon_sym_set, - STATE(3144), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4729), 5, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [42482] = 15, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + anon_sym_BQUOTE, + [43745] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4692), 2, - anon_sym_get, - anon_sym_set, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4194), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4921), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4192), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 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, - [42559] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4196), 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, + [43801] = 15, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4923), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1886), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4716), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -175128,24 +176383,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, anon_sym_GT, - ACTIONS(1884), 31, + ACTIONS(4720), 19, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -175159,100 +176405,117 @@ 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_PIPE_RBRACE, - [42612] = 16, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4698), 1, + [43877] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_AMP_AMP, + ACTIONS(4846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, + anon_sym_GT_GT, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_PERCENT, + ACTIONS(4862), 1, + anon_sym_STAR_STAR, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4632), 2, - anon_sym_get, - anon_sym_set, - STATE(3144), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(4836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4842), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4850), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4729), 5, 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, - ACTIONS(3700), 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, - [42691] = 12, - ACTIONS(4010), 1, + anon_sym_of, + anon_sym_BQUOTE, + [43985] = 16, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4782), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4862), 1, + anon_sym_STAR_STAR, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4880), 1, anon_sym_LT, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(4682), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -175263,21 +176526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4780), 22, + ACTIONS(4680), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - 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, @@ -175285,48 +176545,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [42762] = 11, - ACTIONS(4010), 1, + [44063] = 16, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4789), 1, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4926), 1, anon_sym_LT, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 12, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4680), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [44141] = 7, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4204), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4198), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4201), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4192), 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, - anon_sym_GT, - ACTIONS(4787), 24, + ACTIONS(4196), 26, + 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_RBRACK, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -175344,154 +176660,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42831] = 31, - ACTIONS(4010), 1, + [44201] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4844), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(4846), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4792), 6, + ACTIONS(4590), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, anon_sym_BQUOTE, - [42940] = 16, - ACTIONS(4010), 1, + [44309] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4730), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_AMP_AMP, + ACTIONS(4846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, + anon_sym_GT_GT, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4764), 1, + ACTIONS(4864), 1, anon_sym_LT, - STATE(1633), 1, + ACTIONS(4872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, + sym__ternary_qmark, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 8, - anon_sym_BANG, + ACTIONS(4842), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 20, - 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, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4825), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [43019] = 4, - ACTIONS(4696), 1, - anon_sym_is, + [44417] = 6, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4929), 1, + anon_sym_DOT, + STATE(1935), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 13, + ACTIONS(4099), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175505,17 +176838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4116), 29, + ACTIONS(4101), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175535,19 +176866,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [43073] = 6, - ACTIONS(4588), 1, + [44475] = 35, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4794), 1, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, - STATE(2067), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4935), 1, + anon_sym_RPAREN, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, + STATE(5624), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4078), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44591] = 15, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4971), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4716), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -175555,20 +176985,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, anon_sym_GT, - ACTIONS(4080), 27, + ACTIONS(4720), 19, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -175582,177 +177007,118 @@ 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, - [43131] = 31, - ACTIONS(4588), 1, + [44667] = 35, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(2019), 1, + ACTIONS(4974), 1, + anon_sym_RPAREN, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, + STATE(5892), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [43239] = 13, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [43311] = 14, - ACTIONS(1626), 1, + [44783] = 14, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4842), 1, + ACTIONS(4978), 1, anon_sym_static, - ACTIONS(4844), 1, + ACTIONS(4980), 1, anon_sym_readonly, - ACTIONS(4846), 1, + ACTIONS(4982), 1, anon_sym_abstract, - ACTIONS(4848), 1, + ACTIONS(4984), 1, anon_sym_accessor, - STATE(2814), 1, + STATE(2835), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - STATE(3368), 3, + STATE(3387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -175783,42 +177149,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [43385] = 7, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(2373), 1, - anon_sym_extends, + [44857] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4126), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4810), 5, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [44965] = 11, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4129), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(1694), 10, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4986), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4745), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 26, + anon_sym_GT, + ACTIONS(4747), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -175836,70 +177283,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43445] = 3, + [45033] = 22, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4084), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4086), 30, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4682), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [45123] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4844), 1, anon_sym_AMP_AMP, + ACTIONS(4846), 1, anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, + anon_sym_GT_GT, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_PERCENT, + ACTIONS(4862), 1, + anon_sym_STAR_STAR, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4842), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(4858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4598), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [45231] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_AMP_AMP, + ACTIONS(4846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, + anon_sym_GT_GT, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4854), 1, anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, anon_sym_PERCENT, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4842), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4850), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4602), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [45339] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_AMP_AMP, + ACTIONS(4846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, + anon_sym_GT_GT, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_PERCENT, + ACTIONS(4862), 1, + anon_sym_STAR_STAR, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4842), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4850), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4810), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, + [45447] = 4, + ACTIONS(4759), 1, anon_sym_is, - [43497] = 6, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3492), 13, + ACTIONS(4142), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175913,10 +177602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(4144), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -175937,17 +177631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43555] = 6, - ACTIONS(4596), 1, - anon_sym_LT, - ACTIONS(4694), 1, - anon_sym_DOT, - STATE(2031), 1, - sym_type_arguments, + anon_sym_extends, + [45501] = 4, + ACTIONS(4989), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 12, + ACTIONS(4095), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175957,10 +177648,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, anon_sym_GT, - ACTIONS(3548), 28, + ACTIONS(4097), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -175970,6 +177662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175989,297 +177682,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [43613] = 31, - ACTIONS(4588), 1, + [45555] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4844), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4846), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4864), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4872), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4878), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4812), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [43721] = 31, - ACTIONS(4588), 1, + [45663] = 13, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4926), 1, anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4504), 5, + anon_sym_GT, + ACTIONS(4680), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - [43829] = 18, - ACTIONS(4588), 1, + anon_sym_satisfies, + [45735] = 22, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4808), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4820), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4864), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4810), 2, + ACTIONS(4842), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4834), 2, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 7, + ACTIONS(4682), 3, anon_sym_BANG, - anon_sym_in, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 17, + ACTIONS(4866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + 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_BQUOTE, anon_sym_satisfies, - [43911] = 13, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [43983] = 5, + [45825] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, + ACTIONS(1694), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4850), 5, + ACTIONS(4991), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4144), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176293,7 +177913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4148), 23, + ACTIONS(1696), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -176316,89 +177936,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [44039] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [45881] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4590), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45989] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4844), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(4846), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4852), 5, + ACTIONS(4817), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, - [44147] = 3, + anon_sym_of, + anon_sym_BQUOTE, + [46097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3225), 13, + ACTIONS(3231), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176412,7 +178109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3227), 30, + ACTIONS(3233), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176443,40 +178140,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [44199] = 7, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4156), 1, - anon_sym_extends, + [46149] = 5, + ACTIONS(4993), 1, + anon_sym_LT, + STATE(2003), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4153), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4144), 10, + ACTIONS(3673), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4148), 26, + anon_sym_GT, + ACTIONS(3466), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -176496,20 +178190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44259] = 5, + anon_sym_extends, + [46205] = 16, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4514), 1, + anon_sym_readonly, + STATE(2816), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4604), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4854), 5, + ACTIONS(4058), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4512), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4602), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [46283] = 5, + ACTIONS(4996), 1, + anon_sym_LT, + STATE(2004), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3679), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176519,14 +178271,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, anon_sym_GT, - ACTIONS(4606), 23, + ACTIONS(3458), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -176547,37 +178303,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44315] = 15, - ACTIONS(4588), 1, + anon_sym_extends, + [46339] = 5, + ACTIONS(4999), 1, + anon_sym_LT, + STATE(2005), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4114), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4116), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4856), 1, + anon_sym_extends, + [46395] = 5, + ACTIONS(5002), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2006), 1, sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4121), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -176588,12 +178376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4638), 19, + ACTIONS(4123), 29, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, @@ -176607,21 +178401,20 @@ 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, - [44391] = 5, + anon_sym_satisfies, + anon_sym_extends, + [46451] = 5, + ACTIONS(5005), 1, + anon_sym_LT, + STATE(2007), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4859), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1694), 13, + ACTIONS(4128), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176631,14 +178424,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, anon_sym_GT, - ACTIONS(1698), 23, + ACTIONS(4130), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -176659,45 +178456,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44447] = 13, - ACTIONS(4588), 1, + anon_sym_extends, + [46507] = 18, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4822), 1, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + ACTIONS(4909), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(4885), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 7, anon_sym_BANG, anon_sym_in, - 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, anon_sym_GT, - ACTIONS(4760), 20, + ACTIONS(4680), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176706,10 +178512,7 @@ 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_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -176718,25 +178521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [44519] = 7, - ACTIONS(3550), 1, + [46589] = 7, + ACTIONS(3544), 1, anon_sym_EQ, - ACTIONS(4608), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4611), 2, + ACTIONS(4627), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4408), 6, + ACTIONS(4258), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3492), 11, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176748,7 +178551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -176771,66 +178574,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44579] = 25, - ACTIONS(4588), 1, + [46649] = 23, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(4808), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4909), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 11, + ACTIONS(4680), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176839,199 +178639,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44675] = 26, - ACTIONS(4588), 1, + [46741] = 24, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4808), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4909), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 10, + ACTIONS(4680), 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_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44773] = 16, - ACTIONS(4588), 1, + [46835] = 25, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 8, + ACTIONS(4682), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4893), 1, anon_sym_GT_GT, + ACTIONS(4897), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 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, + ACTIONS(4899), 1, 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_BQUOTE, - anon_sym_satisfies, - [44851] = 22, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4820), 1, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4909), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4826), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 12, + ACTIONS(4680), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177040,180 +178781,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44941] = 23, - ACTIONS(4588), 1, + [46931] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 12, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4838), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, anon_sym_AMP_AMP, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [45033] = 24, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4808), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4820), 1, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4909), 1, anon_sym_LT, - STATE(2019), 1, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4796), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 11, + ACTIONS(4812), 5, 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_BQUOTE, - anon_sym_satisfies, - [45127] = 15, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, + [47039] = 5, + ACTIONS(5008), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2008), 1, sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4135), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -177221,108 +178878,132 @@ 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, anon_sym_GT, - ACTIONS(4760), 19, + ACTIONS(4137), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, - [45203] = 16, - ACTIONS(4588), 1, + anon_sym_extends, + [47095] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4861), 1, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, anon_sym_LT, - STATE(2019), 1, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 11, + ACTIONS(4885), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 18, - 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(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4598), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - [45281] = 9, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4594), 1, - anon_sym_QMARK_DOT, - STATE(2228), 1, - sym_template_string, - STATE(4524), 1, - sym_optional_chain, + [47203] = 6, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3612), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 13, + ACTIONS(3610), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177336,15 +179017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1736), 24, - sym__automatic_semicolon, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - 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, @@ -177360,161 +179039,136 @@ 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, - [45345] = 20, - ACTIONS(4588), 1, + [47261] = 23, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4808), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4820), 1, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4864), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4834), 2, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4762), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4760), 14, + ACTIONS(4680), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + 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_BQUOTE, anon_sym_satisfies, - [45431] = 27, - ACTIONS(4588), 1, + [47353] = 8, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4864), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4819), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 9, + anon_sym_GT, + ACTIONS(4821), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + 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, - [45531] = 6, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3590), 1, - anon_sym_QMARK, + [47415] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3492), 13, + ACTIONS(4148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177528,10 +179182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(4150), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177552,30 +179211,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45589] = 12, - ACTIONS(4588), 1, + anon_sym_extends, + anon_sym_is, + [47467] = 13, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4864), 1, + ACTIONS(4862), 1, + anon_sym_STAR_STAR, + ACTIONS(4880), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(4682), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177588,20 +179251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4780), 21, + ACTIONS(4680), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + 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, @@ -177610,817 +179272,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45659] = 31, - ACTIONS(4588), 1, + [47539] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4546), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [45767] = 35, - ACTIONS(3557), 1, - anon_sym_COLON, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4871), 1, - anon_sym_RPAREN, - ACTIONS(4875), 1, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4909), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4917), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4919), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, - STATE(5470), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45883] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4554), 5, + ACTIONS(4827), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [45991] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, + [47647] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4558), 5, + ACTIONS(4710), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - [46099] = 31, - ACTIONS(4588), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [47719] = 26, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4909), 1, anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4769), 5, + ACTIONS(4680), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [46207] = 31, - ACTIONS(4588), 1, + anon_sym_satisfies, + [47817] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4909), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4917), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4919), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4771), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [46315] = 4, - ACTIONS(4696), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4104), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4106), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, + ACTIONS(4911), 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, - [46369] = 4, - ACTIONS(4907), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4108), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4110), 29, + ACTIONS(4823), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - anon_sym_extends, - [46423] = 31, - ACTIONS(4588), 1, + [47925] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4909), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4917), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4919), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4792), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [46531] = 13, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4558), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + [48033] = 35, + ACTIONS(3575), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46603] = 35, - ACTIONS(3557), 1, - anon_sym_COLON, - ACTIONS(4010), 1, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(4909), 1, + ACTIONS(5011), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(5026), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, - STATE(5741), 1, + STATE(5523), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46719] = 3, + [48149] = 7, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1900), 13, + ACTIONS(4624), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1898), 30, - sym__automatic_semicolon, + ACTIONS(3498), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -178440,17 +179768,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [46771] = 4, - ACTIONS(4915), 1, - sym_regex_flags, + [48209] = 6, + ACTIONS(3598), 1, + anon_sym_EQ, + ACTIONS(3608), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4911), 16, + ACTIONS(3601), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3494), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -178463,18 +179796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4913), 26, + ACTIONS(3498), 23, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, 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_AMP_AMP, @@ -178489,243 +179815,147 @@ 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, - [46825] = 31, - ACTIONS(4588), 1, + anon_sym_satisfies, + [48267] = 20, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4864), 1, anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4522), 5, + ACTIONS(4682), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4680), 14, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + 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_BQUOTE, - [46933] = 13, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + anon_sym_satisfies, + [48353] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(1900), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1898), 30, 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, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [47005] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4767), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47113] = 11, - ACTIONS(4588), 1, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [48405] = 11, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4917), 1, + ACTIONS(5013), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 12, + ACTIONS(4745), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178738,13 +179968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4787), 23, + ACTIONS(4747), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -178762,181 +179992,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [47181] = 35, - ACTIONS(3557), 1, - anon_sym_COLON, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [48473] = 8, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(4182), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(4920), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, - STATE(5630), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47297] = 13, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, + ACTIONS(4185), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5016), 2, anon_sym_COMMA, - ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(2361), 4, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [47369] = 8, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4704), 12, + ACTIONS(1692), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4706), 26, - sym__automatic_semicolon, + ACTIONS(1696), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -178956,21 +180046,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [47431] = 8, - ACTIONS(4588), 1, + [48535] = 12, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4922), 1, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5020), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 12, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4829), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178983,16 +180082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4706), 26, + ACTIONS(4831), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - 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, @@ -179006,535 +180102,730 @@ 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, - [47493] = 31, - ACTIONS(4588), 1, + [48605] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, + ACTIONS(4919), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4468), 5, + ACTIONS(4791), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [47601] = 31, - ACTIONS(4588), 1, + [48713] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, + ACTIONS(4919), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4744), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [47709] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3233), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3235), 30, + ACTIONS(4524), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [47761] = 31, - ACTIONS(4588), 1, + [48821] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4844), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4846), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 5, + ACTIONS(4618), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [47869] = 31, - ACTIONS(4588), 1, + [48929] = 25, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, - anon_sym_AMP_AMP, - ACTIONS(4930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, - sym__ternary_qmark, - STATE(2019), 1, + ACTIONS(4864), 1, + anon_sym_LT, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4680), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [47977] = 31, - ACTIONS(4588), 1, + anon_sym_satisfies, + [49025] = 26, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4844), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, - sym__ternary_qmark, - STATE(2019), 1, + ACTIONS(4864), 1, + anon_sym_LT, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4504), 5, + ACTIONS(4680), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49123] = 8, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4198), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4201), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4204), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4192), 11, + 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, + anon_sym_GT, + ACTIONS(4196), 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, - [48085] = 18, - ACTIONS(4588), 1, + anon_sym_satisfies, + [49185] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4932), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4944), 1, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - STATE(2019), 1, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4934), 2, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4762), 7, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4825), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [49293] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3239), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(4760), 17, + ACTIONS(3241), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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, - [48167] = 13, - ACTIONS(4588), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [49345] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4946), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4958), 1, + ACTIONS(4909), 1, anon_sym_LT, - STATE(2019), 1, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4602), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [49453] = 14, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5029), 1, + anon_sym_static, + ACTIONS(5031), 1, + anon_sym_readonly, + ACTIONS(5033), 1, + anon_sym_abstract, + ACTIONS(5035), 1, + anon_sym_accessor, + STATE(2868), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5027), 2, + sym_number, + sym_private_property_identifier, + STATE(3362), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [49527] = 15, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4926), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(4885), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4682), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -179542,23 +180833,21 @@ 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, anon_sym_GT, - ACTIONS(4760), 20, + ACTIONS(4680), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - 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, @@ -179567,203 +180856,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48239] = 25, - ACTIONS(4588), 1, + [49603] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4932), 1, + ACTIONS(4844), 1, + anon_sym_AMP_AMP, + ACTIONS(4846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - STATE(2019), 1, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, + sym__ternary_qmark, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 11, + ACTIONS(4823), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [49711] = 9, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_QMARK_DOT, + STATE(2160), 1, + sym_template_string, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1744), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1746), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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_BQUOTE, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [48335] = 26, - ACTIONS(4588), 1, + [49775] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4932), 1, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - STATE(2019), 1, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 10, + ACTIONS(4817), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [48433] = 16, - ACTIONS(4588), 1, + [49883] = 16, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4944), 1, - anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4958), 1, + ACTIONS(4926), 1, anon_sym_LT, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4682), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4942), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 8, - anon_sym_BANG, anon_sym_in, 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, anon_sym_GT, - ACTIONS(4760), 19, + ACTIONS(4680), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - 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, @@ -179771,63 +181127,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [48511] = 22, - ACTIONS(4588), 1, + [49961] = 16, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4932), 1, - anon_sym_GT_GT, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - STATE(2019), 1, + ACTIONS(4880), 1, + anon_sym_LT, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4934), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4952), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 8, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4948), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 12, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4680), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179836,138 +181178,208 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, anon_sym_satisfies, - [48601] = 23, - ACTIONS(4588), 1, + [50039] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4710), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [50111] = 27, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4932), 1, + ACTIONS(4844), 1, + anon_sym_AMP_AMP, + ACTIONS(4846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4944), 1, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - STATE(2019), 1, + ACTIONS(4864), 1, + anon_sym_LT, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 12, + ACTIONS(4680), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48693] = 24, - ACTIONS(4588), 1, + [50211] = 24, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4932), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - STATE(2019), 1, + ACTIONS(4864), 1, + anon_sym_LT, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4762), 2, + ACTIONS(4682), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 11, + ACTIONS(4680), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179979,37 +181391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48787] = 15, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4944), 1, - anon_sym_PERCENT, - ACTIONS(4946), 1, - anon_sym_STAR_STAR, - ACTIONS(4958), 1, + [50305] = 6, + ACTIONS(4658), 1, anon_sym_LT, - STATE(2019), 1, + ACTIONS(4757), 1, + anon_sym_DOT, + STATE(1928), 1, sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4052), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -180017,62 +181410,49 @@ 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, anon_sym_GT, - ACTIONS(4760), 19, + ACTIONS(3551), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + 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, - [48863] = 16, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4946), 1, - anon_sym_STAR_STAR, - ACTIONS(4958), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_extends, + [50363] = 4, + ACTIONS(5041), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 11, + ACTIONS(5037), 16, anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -180080,86 +181460,97 @@ 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_GT, - ACTIONS(4760), 18, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5039), 26, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48941] = 20, - ACTIONS(4588), 1, + [50417] = 20, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4932), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4944), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - STATE(2019), 1, + ACTIONS(4909), 1, + anon_sym_LT, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4948), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4762), 5, + ACTIONS(4682), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4760), 14, + ACTIONS(4680), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -180168,719 +181559,732 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [49027] = 27, - ACTIONS(4588), 1, + [50503] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - STATE(2019), 1, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 9, + ACTIONS(4618), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [49127] = 31, - ACTIONS(4588), 1, + [50611] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4844), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4846), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4522), 5, + ACTIONS(4827), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49235] = 31, - ACTIONS(4588), 1, + [50719] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4844), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4846), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4767), 5, + ACTIONS(4524), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49343] = 31, - ACTIONS(4588), 1, + [50827] = 35, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(2019), 1, + ACTIONS(5043), 1, + anon_sym_RPAREN, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, + STATE(5861), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4546), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [49451] = 31, - ACTIONS(4588), 1, + [50943] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, - anon_sym_GT_GT, - ACTIONS(4936), 1, - anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4944), 1, - anon_sym_PERCENT, - ACTIONS(4946), 1, - anon_sym_STAR_STAR, - ACTIONS(4954), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4554), 5, - sym__automatic_semicolon, + ACTIONS(5045), 5, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [49559] = 31, - ACTIONS(4588), 1, + anon_sym_COLON, + anon_sym_RBRACK, + [51051] = 18, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, - anon_sym_AMP_AMP, - ACTIONS(4930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, - anon_sym_AMP, - ACTIONS(4938), 1, - anon_sym_CARET, - ACTIONS(4940), 1, - anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, - sym__ternary_qmark, - STATE(2019), 1, + ACTIONS(4864), 1, + anon_sym_LT, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4558), 5, + anon_sym_GT, + ACTIONS(4680), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [49667] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, - anon_sym_GT_GT, - ACTIONS(4936), 1, - anon_sym_AMP, - ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4940), 1, - anon_sym_PIPE, - ACTIONS(4944), 1, - anon_sym_PERCENT, - ACTIONS(4946), 1, - anon_sym_STAR_STAR, - ACTIONS(4954), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51133] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4710), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51205] = 7, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(2361), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4182), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4185), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(1692), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4926), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4934), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4942), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(1696), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(4948), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4769), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49775] = 31, - ACTIONS(4588), 1, + anon_sym_satisfies, + [51265] = 27, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, - sym__ternary_qmark, - STATE(2019), 1, + ACTIONS(4909), 1, + anon_sym_LT, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4771), 5, + ACTIONS(4680), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [49883] = 31, - ACTIONS(4588), 1, + anon_sym_satisfies, + [51365] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, + ACTIONS(4844), 1, anon_sym_AMP_AMP, - ACTIONS(4930), 1, + ACTIONS(4846), 1, anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, + ACTIONS(4848), 1, anon_sym_GT_GT, - ACTIONS(4936), 1, + ACTIONS(4852), 1, anon_sym_AMP, - ACTIONS(4938), 1, + ACTIONS(4854), 1, anon_sym_CARET, - ACTIONS(4940), 1, + ACTIONS(4856), 1, anon_sym_PIPE, - ACTIONS(4944), 1, + ACTIONS(4860), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, + ACTIONS(4862), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, + ACTIONS(4836), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4926), 2, + ACTIONS(4842), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4934), 2, + ACTIONS(4850), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4942), 2, + ACTIONS(4858), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4950), 2, + ACTIONS(4868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4952), 2, + ACTIONS(4870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4773), 5, + ACTIONS(4558), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49991] = 8, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(4126), 1, - anon_sym_LBRACK, + [51473] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2373), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1694), 11, + ACTIONS(3235), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -180888,10 +182292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1698), 22, + ACTIONS(3237), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -180911,41 +182321,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50053] = 8, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4150), 1, - anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [51525] = 8, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4909), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4965), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4156), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4144), 11, + ACTIONS(4819), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(4148), 22, + ACTIONS(4821), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -180965,96 +182377,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50115] = 35, - ACTIONS(3557), 1, - anon_sym_COLON, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(4969), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, - STATE(5636), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50231] = 5, - ACTIONS(4596), 1, - anon_sym_LT, - STATE(2063), 1, - sym_type_arguments, + [51587] = 4, + ACTIONS(4759), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 12, + ACTIONS(4107), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181064,10 +182393,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, anon_sym_GT, - ACTIONS(4110), 29, + ACTIONS(4109), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181097,117 +182427,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50287] = 31, - ACTIONS(4588), 1, + [51641] = 12, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(5047), 1, anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4829), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + anon_sym_GT, + ACTIONS(4831), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + 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, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4468), 5, - sym__automatic_semicolon, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51711] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, anon_sym_COMMA, + ACTIONS(3931), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [50395] = 7, - ACTIONS(3510), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4408), 1, - anon_sym_extends, + ACTIONS(4708), 1, + anon_sym_LBRACK, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4608), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4710), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51783] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4424), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 26, + anon_sym_GT, + ACTIONS(4426), 29, + 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_RBRACK, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -181227,113 +182591,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50455] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4744), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [50563] = 14, - ACTIONS(1626), 1, + anon_sym_extends, + [51834] = 12, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4743), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, - anon_sym_static, - ACTIONS(4975), 1, - anon_sym_readonly, - ACTIONS(4977), 1, + ACTIONS(4774), 1, + anon_sym_STAR, + ACTIONS(4778), 1, + anon_sym_async, + ACTIONS(4803), 1, anon_sym_abstract, - ACTIONS(4979), 1, - anon_sym_accessor, - STATE(2850), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4971), 2, + ACTIONS(4780), 2, sym_number, sym_private_property_identifier, - STATE(3342), 3, + ACTIONS(4784), 2, + anon_sym_get, + anon_sym_set, + STATE(3103), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -181348,15 +182633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -181364,61 +182649,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50637] = 16, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4630), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, + [51903] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4628), 2, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4632), 2, - anon_sym_get, - anon_sym_set, - STATE(3144), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3700), 18, + ACTIONS(1971), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -181426,11 +182696,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50715] = 3, + anon_sym_abstract, + anon_sym_accessor, + [51956] = 6, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(1698), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3237), 13, + ACTIONS(1688), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181444,15 +182723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3239), 30, - sym__automatic_semicolon, + ACTIONS(1696), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -181473,109 +182749,332 @@ 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, - [50767] = 31, - ACTIONS(4588), 1, + [52013] = 12, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4829), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4831), 20, + 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52082] = 15, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5053), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4716), 11, + anon_sym_STAR, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4720), 18, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [52157] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4773), 5, + ACTIONS(4729), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [52264] = 5, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2186), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4288), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4290), 27, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + 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, - [50875] = 12, - ACTIONS(4588), 1, + anon_sym_satisfies, + [52319] = 33, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4981), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, anon_sym_LT, - STATE(2019), 1, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + ACTIONS(5056), 1, + anon_sym_COMMA, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4469), 1, + aux_sym_sequence_expression_repeat1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5058), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52430] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181585,16 +183084,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, anon_sym_GT, - ACTIONS(4780), 21, + ACTIONS(4246), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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, @@ -181608,39 +183113,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, - [50945] = 15, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4984), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_extends, + [52481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4256), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -181648,15 +183132,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, anon_sym_GT, - ACTIONS(4638), 19, + ACTIONS(4258), 29, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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, @@ -181670,105 +183161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [51021] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4928), 1, - anon_sym_AMP_AMP, - ACTIONS(4930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, - anon_sym_GT_GT, - ACTIONS(4936), 1, - anon_sym_AMP, - ACTIONS(4938), 1, - anon_sym_CARET, - ACTIONS(4940), 1, - anon_sym_PIPE, - ACTIONS(4944), 1, - anon_sym_PERCENT, - ACTIONS(4946), 1, - anon_sym_STAR_STAR, - ACTIONS(4954), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4924), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4926), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4934), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4942), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4950), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4952), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4792), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [51129] = 11, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_satisfies, + anon_sym_extends, + [52532] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 12, + ACTIONS(4142), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181778,16 +183180,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, anon_sym_GT, - ACTIONS(4787), 23, + ACTIONS(4144), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, @@ -181805,52 +183213,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51197] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1550), 1, + anon_sym_extends, + [52583] = 14, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, + ACTIONS(5060), 1, anon_sym_STAR, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(2813), 1, + ACTIONS(5062), 1, + anon_sym_async, + ACTIONS(5066), 1, + anon_sym_readonly, + STATE(2812), 1, sym_override_modifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5064), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, + ACTIONS(5068), 2, anon_sym_get, anon_sym_set, - STATE(3816), 3, + STATE(3166), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -181869,11 +183273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [51280] = 3, + [52656] = 4, + ACTIONS(5070), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181887,7 +183293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4286), 29, + ACTIONS(4278), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181897,7 +183303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -181917,11 +183322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51331] = 3, + [52709] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181935,7 +183340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 29, + ACTIONS(4284), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181965,11 +183370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51382] = 3, + [52760] = 4, + ACTIONS(5072), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181983,7 +183390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 29, + ACTIONS(4284), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181992,7 +183399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182013,11 +183419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51433] = 3, + [52813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4095), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182031,7 +183437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 29, + ACTIONS(4097), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182061,11 +183467,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51484] = 3, + [52864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182079,7 +183485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4318), 29, + ACTIONS(4302), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182109,40 +183515,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51535] = 6, - ACTIONS(4994), 1, - anon_sym_AMP, - ACTIONS(4996), 1, - anon_sym_PIPE, - ACTIONS(4998), 1, - anon_sym_extends, + [52915] = 11, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5074), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 11, + ACTIONS(4745), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(4334), 28, - sym__automatic_semicolon, + ACTIONS(4747), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -182160,11 +183571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51592] = 3, + [52982] = 8, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3423), 13, + ACTIONS(4819), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182174,19 +183595,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, anon_sym_GT, - ACTIONS(3425), 29, - sym__automatic_semicolon, + ACTIONS(4821), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -182207,22 +183624,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [53043] = 9, + ACTIONS(4144), 1, anon_sym_extends, - [51643] = 5, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(4654), 1, - sym__automatic_semicolon, + ACTIONS(4540), 1, + anon_sym_LBRACK, + ACTIONS(5081), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1692), 13, + ACTIONS(4543), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5077), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5079), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -182230,15 +183655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1690), 27, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182258,238 +183678,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51698] = 31, - ACTIONS(4010), 1, + [53106] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4468), 4, + ACTIONS(4618), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [51805] = 31, - ACTIONS(4010), 1, + [53213] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 4, + ACTIONS(4823), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [51912] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [53320] = 9, + ACTIONS(3598), 1, + anon_sym_EQ, + ACTIONS(3608), 1, + anon_sym_QMARK, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3601), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4258), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3494), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4642), 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, + anon_sym_GT, + ACTIONS(3498), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [53383] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2160), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(1744), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + anon_sym_GT, + ACTIONS(1746), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(4897), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4744), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [52019] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [53438] = 19, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(694), 1, + ACTIONS(667), 1, anon_sym_RBRACE, ACTIONS(1550), 1, anon_sym_DQUOTE, @@ -182501,18 +183949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, + ACTIONS(5084), 1, anon_sym_STAR, - STATE(2813), 1, + STATE(2801), 1, sym_override_modifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -182522,11 +183970,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3816), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -182550,385 +183998,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [52102] = 31, - ACTIONS(4010), 1, + [53521] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4504), 4, + ACTIONS(4825), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [52209] = 18, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [53628] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(2363), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(4760), 16, + ACTIONS(2361), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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_BQUOTE, - anon_sym_satisfies, - [52290] = 14, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_STAR, - ACTIONS(5002), 1, - anon_sym_async, - ACTIONS(5006), 1, - anon_sym_readonly, - STATE(2789), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5004), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5008), 2, - anon_sym_get, - anon_sym_set, - STATE(3147), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [52363] = 33, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - ACTIONS(5010), 1, - anon_sym_COMMA, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4417), 1, - aux_sym_sequence_expression_repeat1, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5012), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [52474] = 32, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4922), 1, - anon_sym_LT, - ACTIONS(4926), 1, - anon_sym_GT, - ACTIONS(4928), 1, - anon_sym_AMP_AMP, - ACTIONS(4930), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4932), 1, - anon_sym_GT_GT, - ACTIONS(4936), 1, - anon_sym_AMP, - ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4940), 1, - anon_sym_PIPE, - ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4954), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4956), 1, - sym__ternary_qmark, - ACTIONS(5016), 1, - anon_sym_in, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4924), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4934), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4942), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4950), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4952), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4948), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5014), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [52583] = 13, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53679] = 4, + ACTIONS(4793), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(5019), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(3524), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182938,784 +184138,300 @@ 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_GT, - ACTIONS(4760), 19, + ACTIONS(3514), 28, + 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_SEMI, + anon_sym_of, + 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, - [52654] = 25, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, + anon_sym_extends, + [53732] = 4, + ACTIONS(5086), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4334), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 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_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52749] = 26, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4879), 1, + anon_sym_in, anon_sym_GT_GT, - ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 9, + anon_sym_GT, + ACTIONS(4336), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52846] = 16, - ACTIONS(4010), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(5019), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 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_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52923] = 22, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 11, - 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_BQUOTE, anon_sym_satisfies, - [53012] = 23, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_extends, + [53785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4867), 2, + ACTIONS(4340), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 11, - 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_BQUOTE, - anon_sym_satisfies, - [53103] = 24, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 10, + anon_sym_GT, + ACTIONS(4342), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [53196] = 33, - ACTIONS(4588), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - ACTIONS(5010), 1, - anon_sym_COMMA, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4417), 1, - aux_sym_sequence_expression_repeat1, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5022), 2, - sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [53307] = 15, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(5019), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4762), 10, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 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_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53382] = 16, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(5019), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_extends, + [53836] = 6, + ACTIONS(4258), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 11, + ACTIONS(4624), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4760), 17, + ACTIONS(3498), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - [53459] = 33, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - ACTIONS(5010), 1, - anon_sym_COMMA, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4417), 1, - aux_sym_sequence_expression_repeat1, - STATE(4524), 1, - sym_optional_chain, + [53893] = 9, + ACTIONS(4144), 1, + anon_sym_extends, + ACTIONS(4540), 1, + anon_sym_LBRACK, + ACTIONS(5091), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4543), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5077), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5088), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3494), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5024), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [53570] = 20, - ACTIONS(4010), 1, + anon_sym_GT, + ACTIONS(3498), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4891), 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(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [53956] = 9, + ACTIONS(3608), 1, + anon_sym_QMARK, + ACTIONS(3618), 1, + anon_sym_EQ, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(3621), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4258), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3494), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4762), 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(4760), 13, + anon_sym_GT, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + 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, - [53655] = 4, - ACTIONS(3510), 1, - anon_sym_EQ, + [54019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(4494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183729,16 +184445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 28, + ACTIONS(4204), 29, + 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_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183758,90 +184474,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53708] = 27, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_extends, + [54070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4346), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 8, + anon_sym_GT, + ACTIONS(4348), 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_SEMI, + 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, - [53807] = 4, - ACTIONS(4110), 1, anon_sym_extends, + [54121] = 4, + ACTIONS(5095), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4350), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183850,7 +184542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 28, + ACTIONS(4352), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183879,21 +184571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53860] = 6, - ACTIONS(4994), 1, - anon_sym_AMP, - ACTIONS(4996), 1, - anon_sym_PIPE, - ACTIONS(4998), 1, anon_sym_extends, + [54174] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 11, + ACTIONS(4208), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -183901,7 +184590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 28, + ACTIONS(4206), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183930,13 +184619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53917] = 4, - ACTIONS(5026), 1, - anon_sym_DOT, + anon_sym_extends, + [54225] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183950,7 +184638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4252), 28, + ACTIONS(4356), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183960,6 +184648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183979,11 +184668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53970] = 3, + [54276] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183997,7 +184686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4172), 29, + ACTIONS(4360), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184027,171 +184716,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54021] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, + [54327] = 6, + ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(5097), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + ACTIONS(5099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4362), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4522), 4, + anon_sym_GT, + ACTIONS(4364), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [54128] = 31, - ACTIONS(4010), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4767), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54235] = 4, - ACTIONS(5028), 1, + anon_sym_satisfies, + [54384] = 6, + ACTIONS(4284), 1, + anon_sym_extends, + ACTIONS(5072), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(4282), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4366), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -184199,7 +184790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4172), 28, + ACTIONS(4368), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184227,12 +184818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [54441] = 4, + ACTIONS(5101), 1, anon_sym_extends, - [54288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184246,7 +184838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4110), 29, + ACTIONS(4372), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184275,76 +184867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [54339] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(667), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, - anon_sym_override, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + [54494] = 4, + ACTIONS(5072), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - STATE(2813), 1, - sym_override_modifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [54422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 13, + ACTIONS(4376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184358,7 +184887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4142), 29, + ACTIONS(4378), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184367,7 +184896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184388,114 +184916,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54473] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [54547] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4266), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + anon_sym_GT, + ACTIONS(4264), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(4897), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4756), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54580] = 6, - ACTIONS(4106), 1, + anon_sym_satisfies, anon_sym_extends, + [54598] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4510), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4513), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 26, + anon_sym_GT, + ACTIONS(4382), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184515,39 +185011,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54637] = 7, - ACTIONS(3562), 1, - anon_sym_EQ, - ACTIONS(4408), 1, anon_sym_extends, + [54649] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4608), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4388), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 25, + anon_sym_GT, + ACTIONS(4390), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184567,27 +185059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54696] = 11, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5030), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_extends, + [54700] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 12, + ACTIONS(3353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184597,15 +185074,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, anon_sym_GT, - ACTIONS(4787), 22, + ACTIONS(3355), 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_SEMI, + 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, @@ -184623,205 +185107,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54763] = 15, - ACTIONS(4010), 1, + anon_sym_extends, + [54751] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5033), 1, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, anon_sym_LT, - STATE(1633), 1, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4931), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4638), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4827), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BQUOTE, - [54838] = 31, - ACTIONS(4010), 1, + [54858] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4792), 4, + ACTIONS(4524), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [54945] = 6, - ACTIONS(4994), 1, - anon_sym_AMP, - ACTIONS(4996), 1, - anon_sym_PIPE, - ACTIONS(4998), 1, - anon_sym_extends, + [54965] = 18, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 11, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4682), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4274), 28, - sym__automatic_semicolon, + ACTIONS(4680), 16, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55002] = 6, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(1700), 1, - sym__automatic_semicolon, + [55046] = 13, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1690), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1694), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184831,680 +185358,528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1698), 25, + ACTIONS(4680), 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_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55059] = 31, - ACTIONS(4010), 1, + [55117] = 25, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4546), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [55166] = 4, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4144), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4148), 28, - sym__automatic_semicolon, + ACTIONS(4680), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55219] = 12, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4660), 1, - anon_sym_async, - ACTIONS(4682), 1, - anon_sym_abstract, - ACTIONS(4698), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4666), 2, - anon_sym_get, - anon_sym_set, - STATE(3082), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3700), 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, - [55288] = 31, - ACTIONS(4010), 1, + [55212] = 26, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4554), 4, + ACTIONS(4680), 9, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [55395] = 3, + anon_sym_satisfies, + [55309] = 16, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(4370), 29, - sym__automatic_semicolon, + ACTIONS(4680), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55446] = 31, - ACTIONS(4010), 1, + [55386] = 22, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4682), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4558), 4, + ACTIONS(4680), 11, + 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_BQUOTE, - [55553] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3814), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_satisfies, + [55475] = 23, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1969), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [55606] = 7, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(4126), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2373), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4129), 3, - anon_sym_AMP, + ACTIONS(4682), 2, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(1694), 10, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 25, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, + anon_sym_COMMA, + 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, - [55665] = 7, - ACTIONS(3530), 1, + [55566] = 24, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(3532), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3522), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3512), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3492), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4943), 1, 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_GT, - ACTIONS(3496), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, anon_sym_CARET, + ACTIONS(4955), 1, anon_sym_PERCENT, + ACTIONS(4957), 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, - [55724] = 7, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4150), 1, - anon_sym_LBRACK, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4153), 3, - anon_sym_AMP, + ACTIONS(4682), 2, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4144), 10, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4148), 25, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, + anon_sym_COMMA, + 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, - [55783] = 5, + [55659] = 15, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4182), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3492), 11, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4682), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(3496), 22, + ACTIONS(4680), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55838] = 3, + [55734] = 16, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -185512,651 +185887,701 @@ 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_GT, - ACTIONS(2373), 29, - sym__automatic_semicolon, + ACTIONS(4680), 17, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [55889] = 3, + [55811] = 20, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4682), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4116), 29, - sym__automatic_semicolon, + ACTIONS(4680), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [55896] = 27, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, anon_sym_PERCENT, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4680), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55940] = 33, - ACTIONS(4588), 1, + [55995] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5036), 1, - anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_RBRACE, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5041), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4826), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56051] = 6, - ACTIONS(4994), 1, + ACTIONS(4558), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [56102] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4996), 1, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4998), 1, - anon_sym_extends, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4434), 11, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4436), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4791), 4, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [56209] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, anon_sym_PERCENT, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [56108] = 6, - ACTIONS(4994), 1, - anon_sym_AMP, - ACTIONS(4996), 1, - anon_sym_PIPE, - ACTIONS(4998), 1, - anon_sym_extends, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4442), 11, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4444), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4590), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BQUOTE, - anon_sym_satisfies, - [56165] = 33, - ACTIONS(4588), 1, + [56316] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5036), 1, - anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_RBRACE, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4796), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56276] = 33, - ACTIONS(4588), 1, + ACTIONS(4598), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [56423] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5039), 1, - anon_sym_RBRACE, - ACTIONS(5043), 1, - anon_sym_COMMA, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4758), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4796), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56387] = 33, - ACTIONS(4588), 1, + ACTIONS(4602), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [56530] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5046), 1, - anon_sym_COMMA, - ACTIONS(5049), 1, - anon_sym_RBRACE, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4758), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4796), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56498] = 31, - ACTIONS(4010), 1, + ACTIONS(4810), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [56637] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4769), 4, + ACTIONS(4812), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [56605] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, - anon_sym_override, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5051), 1, - anon_sym_RBRACE, - STATE(2813), 1, - sym_override_modifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [56688] = 5, - ACTIONS(87), 1, - anon_sym_BQUOTE, - STATE(2228), 1, - sym_template_string, + [56744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 13, + ACTIONS(2375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186170,7 +186595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1736), 27, + ACTIONS(2373), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186197,31 +186622,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [56743] = 9, - ACTIONS(2373), 1, anon_sym_extends, - ACTIONS(4126), 1, - anon_sym_LBRACK, - ACTIONS(4961), 1, - anon_sym_RPAREN, + [56795] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4129), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4775), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1694), 11, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -186229,10 +186643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1698), 22, + ACTIONS(4396), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186252,30 +186672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56806] = 9, - ACTIONS(4150), 1, - anon_sym_LBRACK, - ACTIONS(4156), 1, anon_sym_extends, - ACTIONS(4965), 1, - anon_sym_RPAREN, + [56846] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4153), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4651), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4144), 11, + ACTIONS(4400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -186283,10 +186691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4148), 22, + ACTIONS(4402), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186306,16 +186720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56869] = 4, + anon_sym_extends, + [56897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4288), 13, + ACTIONS(4404), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186329,12 +186739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 25, + ACTIONS(4406), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -186355,16 +186768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56922] = 4, + anon_sym_extends, + [56948] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4288), 13, + ACTIONS(4408), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186378,12 +186787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 25, + ACTIONS(4410), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -186404,95 +186816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56975] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, - anon_sym_override, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5053), 1, - anon_sym_RBRACE, - STATE(2813), 1, - sym_override_modifier, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [57058] = 10, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(2373), 1, anon_sym_extends, - ACTIONS(2375), 1, - anon_sym_QMARK, - ACTIONS(4126), 1, - anon_sym_LBRACK, - ACTIONS(4859), 1, - anon_sym_COLON, + [56999] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4961), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1694), 11, + ACTIONS(4412), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -186500,10 +186835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1698), 22, + ACTIONS(4414), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186523,31 +186864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57123] = 10, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4150), 1, - anon_sym_LBRACK, - ACTIONS(4156), 1, anon_sym_extends, - ACTIONS(4270), 1, - anon_sym_QMARK, - ACTIONS(4850), 1, - anon_sym_COLON, + [57050] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4965), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4144), 11, + ACTIONS(4416), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -186555,10 +186883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4148), 22, + ACTIONS(4418), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186578,27 +186912,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57188] = 6, + anon_sym_extends, + [57101] = 4, + ACTIONS(4097), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4611), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4608), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4408), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3492), 11, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -186606,10 +186933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4310), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186629,23 +186962,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57245] = 6, + [57154] = 7, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4617), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4614), 3, + ACTIONS(3514), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4378), 4, - sym__automatic_semicolon, - anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4458), 11, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186656,13 +186989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4460), 22, + ACTIONS(3498), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186680,23 +187014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57302] = 6, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4513), 2, + [57213] = 6, + ACTIONS(5095), 1, anon_sym_AMP, + ACTIONS(5097), 1, anon_sym_PIPE, - ACTIONS(4510), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4106), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(5099), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3492), 11, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4308), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186708,10 +187036,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4310), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186731,106 +187065,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57359] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [57270] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4206), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + anon_sym_extends, + ACTIONS(4208), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4642), 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(3498), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57325] = 6, + ACTIONS(4356), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4530), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4533), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4526), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4528), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(4897), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4771), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57466] = 12, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5055), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_satisfies, + [57382] = 4, + ACTIONS(4264), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186840,15 +187182,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, anon_sym_GT, - ACTIONS(4780), 20, + ACTIONS(4262), 28, + 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_SEMI, + 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, @@ -186862,15 +187211,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, - [57535] = 4, - ACTIONS(3494), 1, - anon_sym_EQ, + [57435] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(4428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186884,7 +187233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 28, + ACTIONS(4430), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186913,70 +187262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57588] = 14, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, - anon_sym_LBRACK, - ACTIONS(5060), 1, - anon_sym_COMMA, - ACTIONS(5062), 1, - anon_sym_RBRACE, - STATE(4745), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5064), 2, - sym_number, - sym_private_property_identifier, - STATE(4555), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5509), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5536), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5058), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [57661] = 3, + anon_sym_extends, + [57486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2379), 13, + ACTIONS(4436), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186990,7 +187281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2377), 29, + ACTIONS(4438), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187020,11 +187311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57712] = 3, + [57537] = 4, + ACTIONS(4444), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(4440), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187038,7 +187331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4322), 29, + ACTIONS(4442), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187048,7 +187341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187068,11 +187360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57763] = 3, + [57590] = 4, + ACTIONS(4451), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(4440), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187086,7 +187380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4326), 29, + ACTIONS(4442), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187096,7 +187390,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187116,11 +187409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57814] = 3, + [57643] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187134,7 +187427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4330), 29, + ACTIONS(4456), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187164,17 +187457,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57865] = 3, + [57694] = 6, + ACTIONS(5095), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4454), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -187182,7 +187479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4344), 29, + ACTIONS(4456), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187211,128 +187508,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57916] = 14, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5066), 1, - anon_sym_STAR, - ACTIONS(5068), 1, - anon_sym_async, - ACTIONS(5072), 1, - anon_sym_readonly, - STATE(2791), 1, - sym_override_modifier, + [57751] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5070), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5074), 2, - anon_sym_get, - anon_sym_set, - STATE(3064), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3329), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + 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(3700), 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, - [57989] = 12, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(4848), 1, - anon_sym_abstract, - ACTIONS(5066), 1, - anon_sym_STAR, - ACTIONS(5068), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5070), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5074), 2, - anon_sym_get, - anon_sym_set, - STATE(3064), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3331), 29, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3700), 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, - [58058] = 3, + 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, + anon_sym_extends, + [57802] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 13, + ACTIONS(4474), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187346,7 +187574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4348), 29, + ACTIONS(4476), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187376,132 +187604,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58109] = 14, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5076), 1, - anon_sym_STAR, - ACTIONS(5078), 1, - anon_sym_async, - ACTIONS(5082), 1, - anon_sym_readonly, - STATE(2801), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5080), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5084), 2, - anon_sym_get, - anon_sym_set, - STATE(3066), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3700), 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, - [58182] = 12, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5076), 1, - anon_sym_STAR, - ACTIONS(5078), 1, - anon_sym_async, - ACTIONS(5088), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5084), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5086), 2, - sym_number, - sym_private_property_identifier, - STATE(3067), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3700), 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, - [58251] = 3, + [57853] = 4, + ACTIONS(5095), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 13, + ACTIONS(4478), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -187510,7 +187623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4352), 29, + ACTIONS(4480), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187540,13 +187653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58302] = 4, - ACTIONS(4686), 1, - anon_sym_DOT, + [57906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 13, + ACTIONS(4482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187560,7 +187671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3512), 28, + ACTIONS(4484), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187570,6 +187681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187589,34 +187701,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58355] = 3, + [57957] = 6, + ACTIONS(4144), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(4540), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4543), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4408), 29, + ACTIONS(3498), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187636,90 +187752,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [58014] = 7, + ACTIONS(3580), 1, + anon_sym_EQ, + ACTIONS(4258), 1, anon_sym_extends, - [58406] = 8, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + ACTIONS(4624), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4627), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4706), 25, - sym__ternary_qmark, - anon_sym_as, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [58467] = 4, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4224), 13, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4226), 28, + ACTIONS(3498), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187738,18 +187804,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [58073] = 6, + ACTIONS(5095), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, anon_sym_extends, - [58520] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4230), 13, + ACTIONS(4316), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -187757,7 +187826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4232), 29, + ACTIONS(4318), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187786,91 +187855,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [58571] = 7, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, + [58130] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3522), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(2379), 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(3496), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [58630] = 6, - ACTIONS(4408), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4608), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 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(3496), 26, + anon_sym_GT, + ACTIONS(2377), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187890,37 +187902,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58687] = 5, + anon_sym_extends, + [58181] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4184), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 26, + anon_sym_GT, + ACTIONS(4464), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187940,38 +187950,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58742] = 6, - ACTIONS(4378), 1, anon_sym_extends, + [58232] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4617), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4458), 10, + ACTIONS(4432), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4460), 26, + anon_sym_GT, + ACTIONS(4434), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187991,13 +187998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58799] = 4, - ACTIONS(4120), 1, anon_sym_extends, + [58283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188011,7 +188017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 28, + ACTIONS(4180), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188040,11 +188046,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58852] = 3, + anon_sym_extends, + [58334] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188058,7 +188065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4356), 29, + ACTIONS(4190), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188088,11 +188095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58903] = 3, + [58385] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188106,7 +188113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4360), 29, + ACTIONS(4180), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188136,11 +188143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58954] = 3, + [58436] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188154,7 +188161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4374), 29, + ACTIONS(4190), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188184,13 +188191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59005] = 4, - ACTIONS(4388), 1, - anon_sym_DOT, + [58487] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188204,7 +188209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4386), 28, + ACTIONS(4212), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188214,6 +188219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188233,11 +188239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59058] = 3, + [58538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3691), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188251,7 +188257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3474), 29, + ACTIONS(4216), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188281,11 +188287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59109] = 3, + [58589] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3679), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188299,7 +188305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3478), 29, + ACTIONS(4212), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188329,13 +188335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59160] = 4, - ACTIONS(4399), 1, - anon_sym_DOT, + [58640] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188349,7 +188353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4386), 28, + ACTIONS(4216), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188359,6 +188363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188378,11 +188383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59213] = 3, + [58691] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188396,7 +188401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4404), 29, + ACTIONS(4220), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188426,21 +188431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59264] = 6, - ACTIONS(4994), 1, - anon_sym_AMP, - ACTIONS(4996), 1, - anon_sym_PIPE, - ACTIONS(4998), 1, - anon_sym_extends, + [58742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 11, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -188448,7 +188449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4404), 28, + ACTIONS(4224), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188477,11 +188478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59321] = 3, + anon_sym_extends, + [58793] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188495,7 +188497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4416), 29, + ACTIONS(4220), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188525,11 +188527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59372] = 3, + [58844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188543,7 +188545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4420), 29, + ACTIONS(4224), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188573,11 +188575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59423] = 3, + [58895] = 4, + ACTIONS(4396), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188591,7 +188595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4424), 29, + ACTIONS(4262), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188620,12 +188624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59474] = 3, + [58948] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4426), 13, + ACTIONS(4248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188639,7 +188642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4428), 29, + ACTIONS(4250), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188669,11 +188672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59525] = 3, + [58999] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3417), 13, + ACTIONS(4252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188687,7 +188690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3419), 29, + ACTIONS(4254), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188717,17 +188720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59576] = 3, + [59050] = 6, + ACTIONS(5095), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4430), 13, + ACTIONS(4268), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -188735,7 +188742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4432), 29, + ACTIONS(4270), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188764,18 +188771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59627] = 4, - ACTIONS(4994), 1, - anon_sym_AMP, + [59107] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4438), 12, + ACTIONS(4272), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -188784,7 +188789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4440), 29, + ACTIONS(4274), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188814,11 +188819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59680] = 3, + [59158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4446), 13, + ACTIONS(4292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188832,7 +188837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4448), 29, + ACTIONS(4294), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188862,15 +188867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59731] = 5, - ACTIONS(4588), 1, - anon_sym_LPAREN, - STATE(2207), 1, - sym_arguments, + [59209] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 13, + ACTIONS(4152), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188884,12 +188885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4397), 27, + ACTIONS(4154), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -188912,30 +188914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59786] = 9, - ACTIONS(4106), 1, anon_sym_extends, - ACTIONS(4510), 1, - anon_sym_LBRACK, - ACTIONS(5097), 1, - anon_sym_RPAREN, + [59260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5092), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5094), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3492), 11, + ACTIONS(4304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -188943,10 +188933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4306), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188966,30 +188962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59849] = 9, - ACTIONS(3611), 1, - anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(4608), 1, - anon_sym_LBRACK, + anon_sym_extends, + [59311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4408), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4611), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3492), 11, + ACTIONS(4312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -188997,10 +188981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4314), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189020,11 +189010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59912] = 3, + anon_sym_extends, + [59362] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 13, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189038,7 +189029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4156), 29, + ACTIONS(4322), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189068,94 +189059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59963] = 32, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5039), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5101), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60072] = 4, - ACTIONS(4994), 1, - anon_sym_AMP, + [59413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 12, + ACTIONS(3411), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -189164,7 +189077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4306), 29, + ACTIONS(3413), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189194,11 +189107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60125] = 3, + [59464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 13, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189212,7 +189125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4182), 29, + ACTIONS(4328), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189242,11 +189155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60176] = 3, + [59515] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 13, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189260,7 +189173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4378), 29, + ACTIONS(4332), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189290,17 +189203,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60227] = 3, + [59566] = 6, + ACTIONS(5095), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2367), 13, + ACTIONS(4330), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -189308,7 +189225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2365), 29, + ACTIONS(4332), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189337,12 +189254,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60278] = 3, + [59623] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4817), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [59730] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189356,7 +189348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4160), 29, + ACTIONS(2369), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189386,11 +189378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60329] = 3, + [59781] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189404,7 +189396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4314), 29, + ACTIONS(4386), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189434,11 +189426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60380] = 3, + [59832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 13, + ACTIONS(4392), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189452,7 +189444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4382), 29, + ACTIONS(4394), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189482,11 +189474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60431] = 3, + [59883] = 4, + ACTIONS(3512), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189500,16 +189494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4124), 29, - sym__automatic_semicolon, + ACTIONS(3498), 28, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189529,71 +189523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60482] = 14, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5103), 1, - anon_sym_STAR, - ACTIONS(5105), 1, - anon_sym_async, - ACTIONS(5109), 1, - anon_sym_readonly, - STATE(2803), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5107), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5111), 2, - anon_sym_get, - anon_sym_set, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [60555] = 3, + [59936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 13, + ACTIONS(4392), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189607,7 +189541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4382), 29, + ACTIONS(4394), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189637,11 +189571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60606] = 3, + [59987] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189655,7 +189589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4124), 29, + ACTIONS(4422), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189685,11 +189619,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60657] = 3, + [60038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189703,7 +189637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4134), 29, + ACTIONS(4422), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189733,11 +189667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60708] = 3, + [60089] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189751,7 +189685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4138), 29, + ACTIONS(4422), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189781,15 +189715,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60759] = 5, - ACTIONS(4588), 1, - anon_sym_LPAREN, - STATE(2220), 1, - sym_arguments, + [60140] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189803,12 +189733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4412), 27, + ACTIONS(4449), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -189831,30 +189762,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60814] = 9, - ACTIONS(2373), 1, anon_sym_extends, - ACTIONS(4126), 1, - anon_sym_LBRACK, - ACTIONS(5113), 1, - anon_sym_RPAREN, + [60191] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4129), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4859), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1694), 11, + ACTIONS(4447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -189862,10 +189781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1698), 22, + ACTIONS(4449), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189885,11 +189810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60877] = 3, + anon_sym_extends, + [60242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 13, + ACTIONS(4447), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189903,7 +189829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4134), 29, + ACTIONS(4449), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189933,11 +189859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60928] = 3, + [60293] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189951,7 +189877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4138), 29, + ACTIONS(4460), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189981,11 +189907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60979] = 3, + [60344] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 13, + ACTIONS(4466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189999,7 +189925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4164), 29, + ACTIONS(4468), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190029,11 +189955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61030] = 3, + [60395] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 13, + ACTIONS(4470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190047,7 +189973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4168), 29, + ACTIONS(4472), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190077,30 +190003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61081] = 9, - ACTIONS(4150), 1, - anon_sym_LBRACK, - ACTIONS(4156), 1, - anon_sym_extends, - ACTIONS(5116), 1, - anon_sym_RPAREN, + [60446] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4153), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4850), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4144), 11, + ACTIONS(2367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190108,10 +190021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4148), 22, + ACTIONS(2365), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190131,11 +190050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61144] = 3, + anon_sym_extends, + [60497] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 13, + ACTIONS(4486), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190149,7 +190069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4164), 29, + ACTIONS(4488), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190179,30 +190099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61195] = 9, - ACTIONS(4106), 1, - anon_sym_extends, - ACTIONS(4510), 1, - anon_sym_LBRACK, - ACTIONS(5123), 1, - anon_sym_RPAREN, + [60548] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5119), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5121), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3492), 11, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190210,10 +190117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4492), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190233,70 +190146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61258] = 14, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, - anon_sym_LBRACK, - ACTIONS(5060), 1, - anon_sym_COMMA, - ACTIONS(5128), 1, - anon_sym_RBRACE, - STATE(4736), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5064), 2, - sym_number, - sym_private_property_identifier, - STATE(4714), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5509), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5536), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5126), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61331] = 3, + anon_sym_extends, + [60599] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 13, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190310,7 +190165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4168), 29, + ACTIONS(4492), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190340,13 +190195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61382] = 4, - ACTIONS(4322), 1, - anon_sym_extends, + [60650] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190360,7 +190213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 28, + ACTIONS(4492), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190389,11 +190242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61435] = 3, + anon_sym_extends, + [60701] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4156), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190407,7 +190261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4393), 29, + ACTIONS(4158), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190437,11 +190291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61486] = 3, + [60752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 13, + ACTIONS(4156), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190455,7 +190309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4188), 29, + ACTIONS(4158), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190485,11 +190339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61537] = 3, + [60803] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4196), 13, + ACTIONS(4156), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190503,7 +190357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4198), 29, + ACTIONS(4158), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190533,30 +190387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61588] = 9, - ACTIONS(4106), 1, - anon_sym_extends, - ACTIONS(4510), 1, - anon_sym_LBRACK, - ACTIONS(5132), 1, - anon_sym_RPAREN, + [60854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5092), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5130), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3492), 11, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190564,10 +190405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4162), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190587,30 +190434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61651] = 9, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(4608), 1, - anon_sym_LBRACK, + anon_sym_extends, + [60905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4408), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4611), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3492), 11, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190618,10 +190453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4162), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190641,21 +190482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61714] = 6, - ACTIONS(4994), 1, - anon_sym_AMP, - ACTIONS(4996), 1, - anon_sym_PIPE, - ACTIONS(4998), 1, anon_sym_extends, + [60956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 11, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190663,7 +190501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4204), 28, + ACTIONS(4162), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190692,11 +190530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61771] = 3, + anon_sym_extends, + [61007] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3427), 13, + ACTIONS(4164), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190710,7 +190549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3429), 29, + ACTIONS(4166), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190740,17 +190579,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61822] = 3, + [61058] = 6, + ACTIONS(5095), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 13, + ACTIONS(4168), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190758,7 +190601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4218), 29, + ACTIONS(4170), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190787,12 +190630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61873] = 3, + [61115] = 5, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(4755), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 13, + ACTIONS(1690), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190806,8 +190652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4222), 29, - sym__automatic_semicolon, + ACTIONS(1688), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -190835,149 +190680,538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61924] = 6, - ACTIONS(4994), 1, + [61170] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + STATE(2801), 1, + sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [61253] = 33, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4996), 1, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4998), 1, - anon_sym_extends, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + ACTIONS(5106), 1, + anon_sym_COMMA, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 11, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4222), 28, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5111), 2, sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_SEMI, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61364] = 33, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + ACTIONS(5106), 1, anon_sym_COMMA, + ACTIONS(5109), 1, anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4823), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_of, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61475] = 33, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, anon_sym_AMP_AMP, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, anon_sym_PERCENT, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + ACTIONS(5109), 1, + anon_sym_RBRACE, + ACTIONS(5113), 1, + anon_sym_COMMA, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4827), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [61586] = 32, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4842), 1, + anon_sym_GT, + ACTIONS(4844), 1, + anon_sym_AMP_AMP, + ACTIONS(4846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4848), 1, + anon_sym_GT_GT, + ACTIONS(4852), 1, + anon_sym_AMP, + ACTIONS(4854), 1, + anon_sym_CARET, + ACTIONS(4856), 1, + anon_sym_PIPE, + ACTIONS(4860), 1, + anon_sym_PERCENT, + ACTIONS(4862), 1, + anon_sym_STAR_STAR, + ACTIONS(4864), 1, + anon_sym_LT, + ACTIONS(4872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4878), 1, + sym__ternary_qmark, + ACTIONS(5118), 1, + anon_sym_in, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4836), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4850), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4858), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [61981] = 31, - ACTIONS(4010), 1, + ACTIONS(4866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5116), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [61695] = 33, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4909), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4917), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4919), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5121), 1, + anon_sym_COMMA, + ACTIONS(5124), 1, + anon_sym_RBRACE, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4827), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4773), 4, + [61806] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(2801), 1, + sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_BQUOTE, - [62088] = 6, - ACTIONS(4994), 1, - anon_sym_AMP, - ACTIONS(4996), 1, - anon_sym_PIPE, - ACTIONS(4998), 1, - anon_sym_extends, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [61889] = 5, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2356), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 11, + ACTIONS(4240), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190985,13 +191219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4294), 28, + ACTIONS(4242), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -191014,18 +191247,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62145] = 6, - ACTIONS(4172), 1, - anon_sym_extends, - ACTIONS(5028), 1, + [61944] = 14, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACK, + ACTIONS(5130), 1, + anon_sym_COMMA, + ACTIONS(5132), 1, + anon_sym_RBRACE, + STATE(4571), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5134), 2, + sym_number, + sym_private_property_identifier, + STATE(4565), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5886), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(5128), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62017] = 7, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(4182), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 2, + ACTIONS(2361), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4185), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4450), 11, + anon_sym_GT, + ACTIONS(1692), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191036,16 +191332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4452), 27, - sym__automatic_semicolon, + ACTIONS(1696), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191065,19 +191358,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62202] = 4, - ACTIONS(5135), 1, - anon_sym_extends, + [62076] = 7, + ACTIONS(3518), 1, + anon_sym_DOT, + ACTIONS(3522), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 13, + ACTIONS(3524), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3514), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191085,18 +191389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4192), 28, - sym__automatic_semicolon, + ACTIONS(3498), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - 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, @@ -191114,35 +191410,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62255] = 4, - ACTIONS(5028), 1, + [62135] = 7, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4198), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 13, + ACTIONS(4204), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4201), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4192), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4214), 28, - sym__automatic_semicolon, + ACTIONS(4196), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191162,23 +191462,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62308] = 7, - ACTIONS(3578), 1, - anon_sym_EQ, - ACTIONS(4408), 1, - anon_sym_extends, + [62194] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4608), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4611), 3, + ACTIONS(4208), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4206), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191189,13 +191488,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 25, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191215,11 +191512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62367] = 3, + [62249] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 13, + ACTIONS(4107), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191233,7 +191530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4106), 29, + ACTIONS(4109), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191263,17 +191560,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62418] = 3, + [62300] = 14, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5142), 1, + anon_sym_readonly, + STATE(2803), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5140), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + STATE(3094), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [62373] = 6, + ACTIONS(5095), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4118), 13, + ACTIONS(4226), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191281,7 +191641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4120), 29, + ACTIONS(4228), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191310,18 +191670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62430] = 6, + ACTIONS(5095), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, anon_sym_extends, - [62469] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2371), 13, + ACTIONS(4230), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191329,7 +191692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2369), 29, + ACTIONS(4232), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191358,18 +191721,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62487] = 12, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4984), 1, + anon_sym_abstract, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5140), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + STATE(3094), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [62556] = 14, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5146), 1, + anon_sym_STAR, + ACTIONS(5148), 1, + anon_sym_async, + ACTIONS(5152), 1, + anon_sym_readonly, + STATE(2807), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5150), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5154), 2, + anon_sym_get, + anon_sym_set, + STATE(3083), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [62629] = 12, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5146), 1, + anon_sym_STAR, + ACTIONS(5148), 1, + anon_sym_async, + ACTIONS(5158), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5154), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5156), 2, + sym_number, + sym_private_property_identifier, + STATE(3086), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [62698] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(2801), 1, + sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [62781] = 9, + ACTIONS(2361), 1, anon_sym_extends, - [62520] = 3, + ACTIONS(4182), 1, + anon_sym_LBRACK, + ACTIONS(5016), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 13, + ACTIONS(1694), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4185), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4807), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1692), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191377,16 +191989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4236), 29, - sym__automatic_semicolon, + ACTIONS(1696), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191406,18 +192012,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62844] = 9, + ACTIONS(4198), 1, + anon_sym_LBRACK, + ACTIONS(4204), 1, anon_sym_extends, - [62571] = 3, + ACTIONS(5023), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4194), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4201), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4814), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4192), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191425,16 +192043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4240), 29, - sym__automatic_semicolon, + ACTIONS(4196), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191454,12 +192066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62622] = 3, + [62907] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4264), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191473,15 +192089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4240), 29, - sym__automatic_semicolon, + ACTIONS(4262), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -191502,12 +192115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62673] = 3, + [62960] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4396), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191521,15 +192138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4240), 29, - sym__automatic_semicolon, + ACTIONS(4262), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -191550,18 +192164,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [63013] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(2801), 1, + sym_override_modifier, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [63096] = 10, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(2361), 1, anon_sym_extends, - [62724] = 3, + ACTIONS(2363), 1, + anon_sym_QMARK, + ACTIONS(4182), 1, + anon_sym_LBRACK, + ACTIONS(4991), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4185), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5016), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1692), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191569,16 +192260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4244), 29, - sym__automatic_semicolon, + ACTIONS(1696), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191598,18 +192283,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [63161] = 10, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4198), 1, + anon_sym_LBRACK, + ACTIONS(4204), 1, anon_sym_extends, - [62775] = 3, + ACTIONS(4494), 1, + anon_sym_QMARK, + ACTIONS(4921), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4201), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5023), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4192), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191617,16 +192315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4244), 29, - sym__automatic_semicolon, + ACTIONS(4196), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191646,18 +192338,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62826] = 3, + [63226] = 14, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5164), 1, + anon_sym_STAR, + ACTIONS(5166), 1, + anon_sym_async, + ACTIONS(5170), 1, + anon_sym_readonly, + STATE(2825), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5168), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5172), 2, + anon_sym_get, + anon_sym_set, + STATE(3139), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [63299] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4624), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4258), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191665,16 +192425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4244), 29, - sym__automatic_semicolon, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191694,18 +192448,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62877] = 3, + [63356] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4530), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4356), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4526), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191713,16 +192476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4248), 29, - sym__automatic_semicolon, + ACTIONS(4528), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191742,18 +192499,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62928] = 3, + [63413] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4543), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4540), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4144), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191761,16 +192527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4248), 29, - sym__automatic_semicolon, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191790,12 +192550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62979] = 3, + [63470] = 4, + ACTIONS(3510), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191809,7 +192570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4248), 29, + ACTIONS(3498), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191838,18 +192599,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [63523] = 9, + ACTIONS(2361), 1, anon_sym_extends, - [63030] = 3, + ACTIONS(4182), 1, + anon_sym_LBRACK, + ACTIONS(5174), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 13, + ACTIONS(1694), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4185), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4991), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1692), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191857,16 +192630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4258), 29, - sym__automatic_semicolon, + ACTIONS(1696), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191886,18 +192653,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [63586] = 14, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACK, + ACTIONS(5130), 1, + anon_sym_COMMA, + ACTIONS(5179), 1, + anon_sym_RBRACE, + STATE(4650), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5134), 2, + sym_number, + sym_private_property_identifier, + STATE(4806), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5886), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(5177), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63659] = 9, + ACTIONS(4198), 1, + anon_sym_LBRACK, + ACTIONS(4204), 1, anon_sym_extends, - [63081] = 3, + ACTIONS(5181), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4194), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4201), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4921), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4192), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191905,16 +192743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4262), 29, - sym__automatic_semicolon, + ACTIONS(4196), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191934,18 +192766,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [63722] = 9, + ACTIONS(4144), 1, anon_sym_extends, - [63132] = 3, + ACTIONS(4540), 1, + anon_sym_LBRACK, + ACTIONS(5188), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 13, + ACTIONS(4543), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5184), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5186), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191953,16 +192797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4266), 29, - sym__automatic_semicolon, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191982,12 +192820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63183] = 3, + [63785] = 4, + ACTIONS(4548), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4174), 13, + ACTIONS(4546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192001,7 +192840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4176), 29, + ACTIONS(4550), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192030,14 +192869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63234] = 4, - ACTIONS(4604), 1, + [63838] = 4, + ACTIONS(1694), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192051,7 +192889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4606), 28, + ACTIONS(1696), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192080,47 +192918,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63287] = 14, - ACTIONS(1626), 1, + [63891] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5137), 1, + ACTIONS(5084), 1, anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_async, - ACTIONS(5143), 1, - anon_sym_readonly, - STATE(2797), 1, + STATE(2801), 1, sym_override_modifier, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5141), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5145), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3071), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3906), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -192139,33 +192982,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63360] = 12, - ACTIONS(1626), 1, + [63974] = 14, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5137), 1, + ACTIONS(5191), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5193), 1, anon_sym_async, - ACTIONS(5149), 1, - anon_sym_abstract, + ACTIONS(5197), 1, + anon_sym_readonly, + STATE(2824), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5145), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5147), 2, + ACTIONS(5195), 2, sym_number, sym_private_property_identifier, - STATE(3083), 3, + ACTIONS(5199), 2, + anon_sym_get, + anon_sym_set, + STATE(3074), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -192175,7 +193022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 20, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -192183,12 +193030,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, @@ -192196,95 +193041,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63429] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4178), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4180), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_extends, - [63480] = 12, - ACTIONS(1550), 1, + [64047] = 12, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR, + ACTIONS(5193), 1, + anon_sym_async, + ACTIONS(5203), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4692), 2, + ACTIONS(5199), 2, anon_sym_get, anon_sym_set, - STATE(3866), 3, + ACTIONS(5201), 2, + sym_number, + sym_private_property_identifier, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -192301,34 +193098,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63549] = 3, + [64116] = 7, + ACTIONS(3571), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 13, + ACTIONS(4624), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(2361), 29, + ACTIONS(3498), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192348,37 +193150,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63600] = 13, - ACTIONS(1626), 1, + [64175] = 12, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4620), 1, + ACTIONS(4504), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4698), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 2, + ACTIONS(4058), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4628), 2, + ACTIONS(4710), 2, sym_number, sym_private_property_identifier, - ACTIONS(4632), 2, + ACTIONS(4712), 2, anon_sym_get, anon_sym_set, - STATE(3144), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -192386,11 +193185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3700), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -192407,47 +193207,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63671] = 14, - ACTIONS(1626), 1, + [64244] = 13, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5151), 1, + ACTIONS(4504), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4510), 1, anon_sym_async, - ACTIONS(5157), 1, - anon_sym_readonly, - STATE(2809), 1, - sym_override_modifier, + ACTIONS(4743), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5155), 2, + ACTIONS(4058), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4512), 2, sym_number, sym_private_property_identifier, - ACTIONS(5159), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(3097), 3, + STATE(3175), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3700), 18, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -192455,10 +193252,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, @@ -192466,197 +193265,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63744] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4276), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4278), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_extends, - [63795] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4280), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4282), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_extends, - [63846] = 4, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1694), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1698), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - [63899] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, + [64315] = 14, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, + ACTIONS(5205), 1, anon_sym_STAR, - STATE(2813), 1, + ACTIONS(5207), 1, + anon_sym_async, + ACTIONS(5211), 1, + anon_sym_readonly, + STATE(2805), 1, sym_override_modifier, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5209), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, + ACTIONS(5213), 2, anon_sym_get, anon_sym_set, - STATE(3816), 3, + STATE(3188), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -192675,107 +193324,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [63982] = 3, + [64388] = 33, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + ACTIONS(5056), 1, + anon_sym_COMMA, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4469), 1, + aux_sym_sequence_expression_repeat1, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4282), 29, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5215), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + ACTIONS(4911), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64499] = 33, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, anon_sym_AMP_AMP, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, anon_sym_PERCENT, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 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, - [64033] = 3, + ACTIONS(4919), 1, + sym__ternary_qmark, + ACTIONS(5056), 1, + anon_sym_COMMA, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4469), 1, + aux_sym_sequence_expression_repeat1, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4282), 29, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5217), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, + ACTIONS(4911), 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, - [64084] = 3, + [64610] = 4, + ACTIONS(4194), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(4192), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192789,7 +193500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4286), 29, + ACTIONS(4196), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192818,70 +193529,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [64135] = 3, + [64663] = 32, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, + anon_sym_AMP_AMP, + ACTIONS(4891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, + anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_PERCENT, + ACTIONS(4907), 1, + anon_sym_STAR_STAR, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4887), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4286), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4915), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5109), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5219), 2, + sym__automatic_semicolon, anon_sym_SEMI, - 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, + ACTIONS(4911), 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, - [64186] = 8, - ACTIONS(4010), 1, + [64772] = 8, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(5161), 1, + ACTIONS(5221), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 12, + ACTIONS(4819), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192894,7 +193633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4706), 25, + ACTIONS(4821), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -192920,425 +193659,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [64247] = 31, - ACTIONS(4010), 1, + [64833] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5161), 1, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5167), 1, + ACTIONS(5227), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, + ACTIONS(5229), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + ACTIONS(5253), 1, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, + ACTIONS(5255), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4468), 4, + ACTIONS(4618), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64354] = 31, - ACTIONS(4010), 1, + [64940] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5161), 1, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5167), 1, + ACTIONS(5227), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, + ACTIONS(5229), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + ACTIONS(5253), 1, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, + ACTIONS(5255), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4744), 4, + ACTIONS(4823), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64461] = 31, - ACTIONS(4010), 1, + [65047] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5161), 1, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5167), 1, + ACTIONS(5227), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, + ACTIONS(5229), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + ACTIONS(5253), 1, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, + ACTIONS(5255), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 4, + ACTIONS(4825), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64568] = 31, - ACTIONS(4010), 1, + [65154] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5161), 1, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5167), 1, + ACTIONS(5227), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, + ACTIONS(5229), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + ACTIONS(5253), 1, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, + ACTIONS(5255), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 4, + ACTIONS(4827), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64675] = 31, - ACTIONS(4010), 1, + [65261] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5161), 1, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5167), 1, + ACTIONS(5227), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, + ACTIONS(5229), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + ACTIONS(5253), 1, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, + ACTIONS(5255), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4504), 4, + ACTIONS(4524), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [64782] = 18, - ACTIONS(4010), 1, + [65368] = 18, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5161), 1, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4762), 7, + ACTIONS(4682), 7, anon_sym_BANG, anon_sym_in, anon_sym_AMP, @@ -193346,7 +194085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 16, + ACTIONS(4680), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193363,32 +194102,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [64863] = 13, - ACTIONS(4010), 1, + [65449] = 13, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - ACTIONS(5197), 1, + ACTIONS(5257), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(4682), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193401,7 +194140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 19, + ACTIONS(4680), 19, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193421,66 +194160,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [64934] = 25, - ACTIONS(4010), 1, + [65520] = 25, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(5161), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 10, + ACTIONS(4680), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193491,68 +194230,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65029] = 26, - ACTIONS(4010), 1, + [65615] = 26, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(5161), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5167), 1, + ACTIONS(5227), 1, anon_sym_AMP_AMP, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 9, + ACTIONS(4680), 9, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193562,40 +194301,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65126] = 16, - ACTIONS(4010), 1, + [65712] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - ACTIONS(5197), 1, + ACTIONS(5257), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4762), 8, + ACTIONS(4682), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -193604,7 +194343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 18, + ACTIONS(4680), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193623,62 +194362,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65203] = 22, - ACTIONS(4010), 1, + [65789] = 22, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5161), 1, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5171), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5183), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 3, + ACTIONS(4682), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 11, + ACTIONS(4680), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193690,174 +194429,1034 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65292] = 23, - ACTIONS(4010), 1, + [65878] = 23, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 11, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [65969] = 24, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [66062] = 15, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + ACTIONS(5257), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4682), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4680), 18, + 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [66137] = 16, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + ACTIONS(5257), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 11, + anon_sym_STAR, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4680), 17, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_implements, + [66214] = 20, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4682), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4680), 13, + 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_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [66299] = 27, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [66398] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4558), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [66505] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4791), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [66612] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4590), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [66719] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4598), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [66826] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4602), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [66933] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, + anon_sym_GT_GT, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_PERCENT, + ACTIONS(5245), 1, + anon_sym_STAR_STAR, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4810), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [67040] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5161), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5171), 1, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5183), 1, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4812), 4, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [65383] = 24, - ACTIONS(4010), 1, + [67147] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5161), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5171), 1, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(5183), 1, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(5249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(5251), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4817), 4, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [65476] = 15, - ACTIONS(4010), 1, + [67254] = 12, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5183), 1, - anon_sym_PERCENT, - ACTIONS(5185), 1, - anon_sym_STAR_STAR, - ACTIONS(5197), 1, + ACTIONS(5260), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(4829), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -193865,10 +195464,11 @@ 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, anon_sym_GT, - ACTIONS(4760), 18, + ACTIONS(4831), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193878,6 +195478,8 @@ 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, @@ -193887,38 +195489,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65551] = 16, - ACTIONS(4010), 1, + [67323] = 15, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5185), 1, - anon_sym_STAR_STAR, - ACTIONS(5197), 1, + ACTIONS(5263), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 11, + ACTIONS(4716), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -193930,7 +195530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 17, + ACTIONS(4720), 18, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -193940,6 +195540,7 @@ 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, @@ -193948,775 +195549,1155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_implements, - [65628] = 20, - ACTIONS(4010), 1, + [67398] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5161), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(5171), 1, + ACTIONS(5227), 1, + anon_sym_AMP_AMP, + ACTIONS(5229), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(5183), 1, + ACTIONS(5235), 1, + anon_sym_AMP, + ACTIONS(5237), 1, + anon_sym_CARET, + ACTIONS(5239), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5253), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5255), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(5225), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(5233), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(5241), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5187), 3, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4762), 5, + ACTIONS(4729), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [67505] = 11, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5266), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4745), 12, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + 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(4760), 13, + anon_sym_GT, + ACTIONS(4747), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [65713] = 27, - ACTIONS(4010), 1, + [67572] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4392), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4394), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [67623] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(5175), 1, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(5183), 1, - anon_sym_PERCENT, - ACTIONS(5185), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5269), 1, + anon_sym_COMMA, + ACTIONS(5271), 1, + anon_sym_RBRACK, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, + STATE(4803), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 8, + [67733] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [67807] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4660), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4662), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [65812] = 31, - ACTIONS(4010), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67857] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [67933] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4522), 4, - anon_sym_LBRACE, + anon_sym_GT, + ACTIONS(4262), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [65919] = 31, - ACTIONS(4010), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67983] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(1888), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1892), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + anon_sym_GT, + ACTIONS(1894), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4767), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [66026] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [68035] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(5179), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(5183), 1, - anon_sym_PERCENT, - ACTIONS(5185), 1, - anon_sym_STAR_STAR, - ACTIONS(5193), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5275), 1, + anon_sym_RBRACE, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(3816), 1, + aux_sym_sequence_expression_repeat1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5165), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5173), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5181), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4546), 4, - anon_sym_LBRACE, + [68145] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4564), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4566), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [66133] = 31, - ACTIONS(4010), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68195] = 8, + ACTIONS(3544), 1, + anon_sym_EQ, + ACTIONS(4256), 1, + anon_sym_QMARK, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4258), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3494), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + anon_sym_GT, + ACTIONS(3498), 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(5187), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4554), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [66240] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [68255] = 5, + ACTIONS(1856), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1848), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1852), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1854), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68309] = 6, + ACTIONS(4540), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(4144), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4543), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + ACTIONS(3498), 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4558), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [66347] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [68365] = 7, + ACTIONS(5277), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(5280), 1, + anon_sym_COLON, + ACTIONS(5282), 1, + anon_sym_LT, + ACTIONS(5285), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4646), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4648), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68423] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(1816), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1820), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4769), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [66454] = 31, - ACTIONS(4010), 1, + anon_sym_GT, + ACTIONS(1822), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68475] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(1872), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1876), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + anon_sym_GT, + ACTIONS(1878), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4771), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [66561] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [68527] = 5, + ACTIONS(5287), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1828), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1832), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1834), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5193), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68581] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5289), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, + ACTIONS(5291), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5293), 2, + anon_sym_get, + anon_sym_set, + STATE(3803), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [68645] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4572), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5189), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 2, + anon_sym_GT, + ACTIONS(4574), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(5187), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4773), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [66668] = 12, - ACTIONS(4010), 1, + anon_sym_satisfies, + [68695] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1848), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1852), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1854), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5200), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68747] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(1720), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1724), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194726,14 +196707,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, anon_sym_GT, - ACTIONS(4780), 20, + ACTIONS(1726), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194747,40 +196731,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, - anon_sym_implements, - [66737] = 15, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5203), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [68799] = 5, + ACTIONS(5295), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(1730), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1734), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -194788,13 +196756,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, anon_sym_GT, - ACTIONS(4638), 18, + ACTIONS(1736), 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, @@ -194808,105 +196780,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_implements, - [66812] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, - anon_sym_LT, - ACTIONS(5167), 1, - anon_sym_AMP_AMP, - ACTIONS(5169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, - anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, - anon_sym_PERCENT, - ACTIONS(5185), 1, - anon_sym_STAR_STAR, - ACTIONS(5193), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5163), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5189), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5191), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4792), 4, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_BQUOTE, - anon_sym_implements, - [66919] = 11, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5206), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_satisfies, + [68853] = 5, + ACTIONS(5297), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 12, + ACTIONS(1748), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1752), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194916,14 +196805,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, anon_sym_GT, - ACTIONS(4787), 22, + ACTIONS(1754), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194941,12 +196833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [66986] = 3, + [68907] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(1796), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194960,15 +196857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4302), 29, - sym__automatic_semicolon, + ACTIONS(1802), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194989,83 +196881,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67037] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [68959] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 2, + ACTIONS(1806), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4690), 2, - sym_number, - sym_private_property_identifier, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67101] = 8, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(4126), 1, - anon_sym_LBRACK, - ACTIONS(4859), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4129), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2373), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1694), 11, + ACTIONS(1810), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -195073,10 +196905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1698), 22, + ACTIONS(1812), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195096,28 +196929,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67161] = 8, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4150), 1, - anon_sym_LBRACK, - ACTIONS(4850), 1, - anon_sym_COLON, + [69011] = 5, + ACTIONS(5299), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4156), 3, + ACTIONS(1710), 4, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4144), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -195125,10 +196954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4148), 22, + ACTIONS(1716), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195148,92 +196978,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67221] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5209), 1, - anon_sym_STAR, + [69065] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5211), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5213), 2, - anon_sym_get, - anon_sym_set, - STATE(3878), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(1862), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [67285] = 7, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(4126), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2373), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4129), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(1694), 10, + anon_sym_PIPE_RBRACE, + ACTIONS(1866), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1698), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1868), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195253,38 +197026,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67343] = 7, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4150), 1, - anon_sym_LBRACK, + [69117] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4153), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4144), 10, + ACTIONS(1892), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4148), 24, + anon_sym_GT, + ACTIONS(1894), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195304,52 +197073,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67401] = 9, - ACTIONS(3808), 1, + [69167] = 21, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2041), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5303), 1, anon_sym_COMMA, - ACTIONS(3912), 1, + ACTIONS(5305), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, + ACTIONS(5307), 1, + anon_sym_async, + ACTIONS(5311), 1, + anon_sym_static, + ACTIONS(5313), 1, + anon_sym_readonly, + ACTIONS(5319), 1, + anon_sym_override, + STATE(2781), 1, + sym_accessibility_modifier, + STATE(2814), 1, + sym_override_modifier, + STATE(4999), 1, aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5309), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1969), 23, + ACTIONS(5315), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5317), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3748), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4994), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5301), 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, @@ -195357,36 +197138,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67463] = 9, - ACTIONS(3808), 1, + [69253] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1973), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -195396,8 +197185,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, @@ -195410,47 +197197,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67525] = 9, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [69327] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1971), 6, + ACTIONS(4552), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4554), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [69377] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, + ACTIONS(1552), 1, anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1969), 23, + ACTIONS(2351), 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, @@ -195463,331 +197304,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67587] = 9, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [69453] = 4, + ACTIONS(5321), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1975), 6, + ACTIONS(5037), 17, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3814), 7, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT_GT, + anon_sym_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_GT, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5039), 23, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1973), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67649] = 33, - ACTIONS(4010), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [69505] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4909), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4917), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4919), 1, sym__ternary_qmark, - ACTIONS(5215), 1, - anon_sym_RPAREN, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67759] = 9, - ACTIONS(3808), 1, + ACTIONS(5116), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [69611] = 6, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1971), 6, + ACTIONS(4258), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, + 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(3498), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1969), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67821] = 9, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + 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, + [69667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1975), 6, + ACTIONS(4584), 13, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3814), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4586), 28, 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, - anon_sym_PIPE_RBRACE, - ACTIONS(1973), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67883] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4708), 1, + [69717] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - ACTIONS(5217), 1, + ACTIONS(5273), 1, anon_sym_COMMA, - ACTIONS(5219), 1, + ACTIONS(5323), 1, anon_sym_SEMI, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(3792), 1, + STATE(3816), 1, aux_sym_sequence_expression_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69827] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4556), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(4720), 2, + ACTIONS(4558), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(4728), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69877] = 7, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4258), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(3498), 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, - ACTIONS(4734), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69935] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4262), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - [67993] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69985] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5221), 2, + ACTIONS(5325), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5223), 3, + ACTIONS(5327), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195801,7 +197771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -195825,95 +197795,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68047] = 33, - ACTIONS(4010), 1, + [70039] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5329), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5331), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3498), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - ACTIONS(5225), 1, - anon_sym_COMMA, - ACTIONS(5227), 1, - anon_sym_RBRACK, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(4879), 1, - aux_sym_array_repeat1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70093] = 5, + ACTIONS(1728), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(1720), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1724), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(4720), 2, + ACTIONS(1726), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70147] = 5, + ACTIONS(1738), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1730), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1734), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + anon_sym_GT, + ACTIONS(1736), 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, - ACTIONS(4734), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68157] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70201] = 5, + ACTIONS(1756), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5229), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5231), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(1748), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1752), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195927,10 +197965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(1754), 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, @@ -195951,36 +197991,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68211] = 5, + [70255] = 6, + ACTIONS(4530), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5229), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5231), 3, + ACTIONS(4356), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3492), 13, + anon_sym_extends, + ACTIONS(4533), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4526), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 23, + ACTIONS(4528), 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, @@ -196000,18 +198041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68265] = 5, + [70311] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5329), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5231), 3, + ACTIONS(5331), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196025,7 +198066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -196049,11 +198090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68319] = 3, + [70365] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(5329), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5331), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196067,15 +198115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 28, - sym__automatic_semicolon, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196096,21 +198139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68369] = 8, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(5233), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + [70419] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 12, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196120,14 +198153,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_GT, - ACTIONS(4706), 24, + ACTIONS(4578), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196148,161 +198186,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68429] = 31, - ACTIONS(4588), 1, + [70469] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, + ACTIONS(4694), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, + ACTIONS(4696), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4468), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68535] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(5251), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5237), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5245), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5253), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68641] = 3, + ACTIONS(5333), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [70575] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4536), 13, + ACTIONS(4664), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196316,7 +198279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4538), 28, + ACTIONS(4666), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196345,181 +198308,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68691] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, + [70625] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4736), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5269), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [68797] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + ACTIONS(5136), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4756), 3, + ACTIONS(5335), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5337), 2, + anon_sym_get, + anon_sym_set, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68903] = 11, - ACTIONS(1626), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [70689] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5271), 1, + ACTIONS(5136), 1, anon_sym_STAR, - ACTIONS(5273), 1, + ACTIONS(5138), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5275), 2, + ACTIONS(5140), 2, sym_number, sym_private_property_identifier, - ACTIONS(5277), 2, + ACTIONS(5144), 2, anon_sym_get, anon_sym_set, - STATE(3057), 3, + STATE(3094), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -196550,29 +198417,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68969] = 10, + [70755] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5066), 1, + ACTIONS(5146), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5279), 2, + ACTIONS(5339), 2, sym_number, sym_private_property_identifier, - ACTIONS(5281), 2, + ACTIONS(5341), 2, anon_sym_get, anon_sym_set, - STATE(3863), 3, + STATE(3920), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -196604,321 +198471,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69033] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69139] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, + [70819] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(5191), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4504), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69245] = 18, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 15, + ACTIONS(5343), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5345), 2, + anon_sym_get, + anon_sym_set, + STATE(3792), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69325] = 33, - ACTIONS(1977), 1, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(5283), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4647), 1, - aux_sym_array_repeat1, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69435] = 13, - ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5285), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 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, + [70883] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(4580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196928,536 +198539,92 @@ 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_GT, - ACTIONS(4760), 18, + ACTIONS(4582), 28, 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69505] = 33, - ACTIONS(4010), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(5288), 1, - anon_sym_RBRACK, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4736), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69615] = 25, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, anon_sym_STAR_STAR, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5259), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 9, - 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_BQUOTE, - anon_sym_satisfies, - [69709] = 26, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [69805] = 16, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5285), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + [70933] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4588), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(4760), 17, + ACTIONS(4590), 28, 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, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69881] = 22, - ACTIONS(4588), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 10, - 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_BQUOTE, - anon_sym_satisfies, - [69969] = 23, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 10, - 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_BQUOTE, - anon_sym_satisfies, - [70059] = 24, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, anon_sym_STAR_STAR, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5259), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 9, - 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70151] = 15, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5285), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + [70983] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4672), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -197465,411 +198632,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 17, + ACTIONS(4674), 28, 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, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70225] = 16, - ACTIONS(4588), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5285), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 11, - anon_sym_STAR, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4760), 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, - anon_sym_BQUOTE, - [70301] = 20, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4762), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4760), 12, - 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_BQUOTE, - anon_sym_satisfies, - [70385] = 27, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_satisfies, + [71033] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4596), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 7, + anon_sym_GT, + ACTIONS(4598), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, - [70483] = 31, - ACTIONS(4588), 1, + [71083] = 32, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4823), 1, + anon_sym_COMMA, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, + ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, + ACTIONS(4893), 1, anon_sym_GT_GT, - ACTIONS(5247), 1, + ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(5249), 1, + ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(5251), 1, + ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(5255), 1, + ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, + ACTIONS(4919), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5237), 2, + ACTIONS(4887), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5245), 2, + ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5253), 2, + ACTIONS(4903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + ACTIONS(4913), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4522), 3, + ACTIONS(5111), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, + ACTIONS(4911), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70589] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + [71191] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4600), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4767), 3, + anon_sym_GT, + ACTIONS(4602), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, + 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, - [70695] = 11, - ACTIONS(1626), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71241] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5066), 1, + ACTIONS(5084), 1, anon_sym_STAR, - ACTIONS(5068), 1, - anon_sym_async, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5070), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5074), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3064), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3906), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -197886,397 +198895,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70761] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, + [71315] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 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, + [71391] = 6, + ACTIONS(4258), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4624), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3494), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4546), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70867] = 31, - ACTIONS(4588), 1, + anon_sym_GT, + ACTIONS(3498), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71447] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4604), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4554), 3, + anon_sym_GT, + ACTIONS(4606), 28, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70973] = 31, - ACTIONS(4588), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71497] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4608), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4558), 3, + anon_sym_GT, + ACTIONS(4610), 28, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71079] = 31, - ACTIONS(4588), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71547] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4612), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4769), 3, + anon_sym_GT, + ACTIONS(4614), 28, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71185] = 31, - ACTIONS(4588), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71597] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4518), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4771), 3, + anon_sym_GT, + ACTIONS(4520), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, + 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, - [71291] = 5, - ACTIONS(1766), 1, - sym__automatic_semicolon, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71647] = 6, + ACTIONS(4356), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1758), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1762), 13, + ACTIONS(4533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4530), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4526), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -198284,13 +199218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1764), 25, + ACTIONS(4528), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198310,36 +199243,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71345] = 5, - ACTIONS(1798), 1, - sym__automatic_semicolon, + [71703] = 7, + ACTIONS(3626), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1790), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1794), 13, + ACTIONS(4624), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1796), 25, + ACTIONS(3498), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198359,16 +199294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71399] = 5, - ACTIONS(1778), 1, - sym__automatic_semicolon, + [71761] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1770), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1774), 13, + ACTIONS(4522), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198382,12 +199312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1776), 25, + ACTIONS(4524), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198408,168 +199341,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71453] = 33, - ACTIONS(4010), 1, + [71811] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5164), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5347), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5349), 2, + anon_sym_get, + anon_sym_set, + STATE(3932), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [71875] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(5164), 1, + anon_sym_STAR, + ACTIONS(5166), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5168), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5172), 2, + anon_sym_get, + anon_sym_set, + STATE(3139), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - ACTIONS(5217), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [71941] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(5290), 1, - anon_sym_RBRACK, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, - sym_optional_chain, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [72015] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4736), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71563] = 31, - ACTIONS(4588), 1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, - ACTIONS(4590), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [72089] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 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, + [72165] = 9, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(1973), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4773), 3, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3906), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71669] = 5, - ACTIONS(1788), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1971), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72227] = 9, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3906), 7, sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1967), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72289] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1780), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1784), 13, + ACTIONS(5077), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5079), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198583,12 +199759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1786), 25, + ACTIONS(3498), 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, @@ -198609,25 +199783,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71723] = 15, + [72343] = 16, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(694), 1, + ACTIONS(667), 1, anon_sym_RBRACE, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4622), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, + ACTIONS(5084), 1, anon_sym_STAR, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -198637,21 +199813,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3816), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 21, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -198668,16 +199843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [71797] = 5, - ACTIONS(1808), 1, - sym__automatic_semicolon, + [72419] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1800), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1804), 13, + ACTIONS(4264), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198691,12 +199865,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1806), 25, + ACTIONS(4262), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72471] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4396), 3, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4260), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4262), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198717,39 +199939,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71851] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5076), 1, - anon_sym_STAR, + [72523] = 9, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5292), 2, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5294), 2, - anon_sym_get, - anon_sym_set, - STATE(3853), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -198759,6 +199978,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, @@ -198771,54 +199992,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [71915] = 16, - ACTIONS(237), 1, + [72585] = 9, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(694), 1, + ACTIONS(3922), 1, anon_sym_RBRACE, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - STATE(4792), 1, + STATE(4647), 1, aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -198831,23 +200045,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [71991] = 4, + [72647] = 8, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(4182), 1, + anon_sym_LBRACK, + ACTIONS(4991), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1842), 5, - sym__automatic_semicolon, + ACTIONS(4185), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2361), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1846), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1692), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -198855,11 +200074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1848), 23, + ACTIONS(1696), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198879,101 +200097,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72043] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [72707] = 8, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4198), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(5296), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(4921), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4201), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4204), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4192), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + anon_sym_GT, + ACTIONS(4196), 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(4897), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72153] = 8, - ACTIONS(3550), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72767] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5351), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5353), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5355), 2, + anon_sym_get, + anon_sym_set, + STATE(3797), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4406), 1, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4608), 1, + ACTIONS(2351), 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, + [72831] = 7, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(4182), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4611), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4408), 3, + ACTIONS(2361), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3492), 11, + ACTIONS(4185), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(1692), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198984,11 +200229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(1696), 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, @@ -199008,20 +200254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72213] = 6, - ACTIONS(4510), 1, + [72889] = 7, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4198), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 2, + ACTIONS(4204), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4513), 3, + ACTIONS(4201), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4192), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199032,13 +200280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 25, + ACTIONS(4196), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199058,39 +200305,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72269] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5298), 1, - anon_sym_STAR, + [72947] = 9, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5300), 2, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5302), 2, - anon_sym_get, - anon_sym_set, - STATE(3780), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199100,6 +200344,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, @@ -199112,49 +200358,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [72333] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5209), 1, - anon_sym_STAR, - ACTIONS(5304), 1, - anon_sym_async, + [73009] = 9, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5306), 2, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5308), 2, - anon_sym_get, - anon_sym_set, - STATE(3063), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -199167,49 +200411,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [72399] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5310), 1, - anon_sym_STAR, - ACTIONS(5312), 1, - anon_sym_async, + [73071] = 9, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5314), 2, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5316), 2, - anon_sym_get, - anon_sym_set, - STATE(3105), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3700), 20, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -199222,237 +200464,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [72465] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1790), 5, - sym__automatic_semicolon, + [73133] = 9, + ACTIONS(3900), 1, anon_sym_COMMA, + ACTIONS(3931), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1794), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1796), 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, - [72517] = 4, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1800), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1804), 13, + ACTIONS(1969), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1806), 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, - [72569] = 5, - ACTIONS(5318), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3906), 7, sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1967), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73195] = 9, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1810), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1814), 13, + ACTIONS(1973), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1816), 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, - [72623] = 31, - ACTIONS(4010), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3906), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5161), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5167), 1, - anon_sym_AMP_AMP, - ACTIONS(5169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5171), 1, - anon_sym_GT_GT, - ACTIONS(5175), 1, - anon_sym_AMP, - ACTIONS(5177), 1, - anon_sym_CARET, - ACTIONS(5179), 1, - anon_sym_PIPE, - ACTIONS(5183), 1, - anon_sym_PERCENT, - ACTIONS(5185), 1, - anon_sym_STAR_STAR, - ACTIONS(5193), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5195), 1, - sym__ternary_qmark, - STATE(1655), 1, - sym_arguments, - STATE(2605), 1, - sym_type_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5163), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5165), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5181), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5189), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5191), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5187), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5320), 3, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1971), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73257] = 9, + ACTIONS(3900), 1, anon_sym_COMMA, - anon_sym_implements, - [72729] = 4, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 5, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1710), 13, + ACTIONS(1967), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73319] = 5, + ACTIONS(1824), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1816), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1820), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199466,10 +200646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1712), 23, + ACTIONS(1822), 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, @@ -199490,17 +200672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72781] = 4, + [73373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1758), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1762), 13, + ACTIONS(4616), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199514,10 +200690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1764), 23, + ACTIONS(4618), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199538,24 +200719,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72833] = 5, - ACTIONS(5322), 1, - sym__automatic_semicolon, + [73423] = 7, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1770), 4, - anon_sym_COMMA, + ACTIONS(3524), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3514), 4, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1774), 13, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -199563,13 +200747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1776), 23, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, 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, @@ -199587,18 +200770,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72887] = 5, - ACTIONS(5324), 1, + [73481] = 5, + ACTIONS(1880), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1780), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1784), 13, + ACTIONS(1872), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1876), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199612,10 +200793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1786), 23, + ACTIONS(1878), 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, @@ -199636,94 +200819,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72941] = 33, - ACTIONS(4010), 1, + [73535] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - ACTIONS(5217), 1, + ACTIONS(5269), 1, anon_sym_COMMA, - ACTIONS(5326), 1, - anon_sym_RBRACE, - STATE(1633), 1, + ACTIONS(5357), 1, + anon_sym_RBRACK, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, + STATE(4681), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73051] = 3, + [73645] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4498), 13, + ACTIONS(4208), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4206), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -199731,16 +200920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4500), 28, - sym__automatic_semicolon, + ACTIONS(3498), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199760,23 +200945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73101] = 4, + [73699] = 7, + ACTIONS(4354), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1820), 5, - sym__automatic_semicolon, + ACTIONS(4356), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4530), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1824), 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4526), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -199784,11 +200973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1826), 23, + ACTIONS(4528), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199808,114 +200996,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73153] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1830), 5, - sym__automatic_semicolon, + [73757] = 33, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1834), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1836), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3994), 1, anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, anon_sym_PERCENT, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73205] = 5, - ACTIONS(5328), 1, - sym__automatic_semicolon, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5359), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(4940), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1856), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1860), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1862), 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(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 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, - [73259] = 3, + [73867] = 8, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3610), 1, + anon_sym_COLON, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4478), 13, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4258), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -199923,16 +201102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4480), 28, - sym__automatic_semicolon, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199952,17 +201125,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73309] = 4, + [73927] = 8, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(5361), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1866), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1870), 13, + ACTIONS(4819), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199972,14 +201149,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, anon_sym_GT, - ACTIONS(1872), 23, + ACTIONS(4821), 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, @@ -200000,211 +201177,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73361] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4502), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4504), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [73987] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73411] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5330), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5332), 2, - anon_sym_get, - anon_sym_set, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [73475] = 3, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4540), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4542), 28, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4618), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74093] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73525] = 3, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4544), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5365), 2, + anon_sym_in, anon_sym_GT, - ACTIONS(4546), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5373), 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(5381), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5389), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4823), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5387), 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, - [73575] = 5, - ACTIONS(1818), 1, - sym__automatic_semicolon, + [74199] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1810), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1814), 13, + ACTIONS(5077), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5088), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200218,12 +201352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1816), 25, + ACTIONS(3498), 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, @@ -200244,210 +201376,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73629] = 3, + [74253] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, + anon_sym_AMP_AMP, + ACTIONS(5369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, + anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, + anon_sym_PERCENT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + ACTIONS(5393), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4548), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4550), 28, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4825), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74359] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73679] = 3, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4552), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4554), 28, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4827), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74465] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5363), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5365), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5389), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4524), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [73729] = 7, - ACTIONS(5334), 1, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74571] = 18, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(5337), 1, - anon_sym_COLON, - ACTIONS(5339), 1, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5361), 1, anon_sym_LT, - ACTIONS(5342), 1, - anon_sym_QMARK, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5383), 1, + anon_sym_PERCENT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 12, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 7, anon_sym_BANG, anon_sym_in, - 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, anon_sym_GT, - ACTIONS(3496), 25, + ACTIONS(4680), 15, 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, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73787] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, + [74651] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(5344), 1, - anon_sym_STAR, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(4823), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5348), 2, - anon_sym_get, - anon_sym_set, - STATE(3845), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74761] = 13, + ACTIONS(4650), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 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, - [73851] = 3, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4556), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200457,319 +201775,536 @@ 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_GT, - ACTIONS(4558), 28, + ACTIONS(4680), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - [73901] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, + [74831] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(5350), 1, - anon_sym_STAR, - ACTIONS(5352), 1, - anon_sym_async, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5402), 1, + anon_sym_RBRACK, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(3816), 1, + aux_sym_sequence_expression_repeat1, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5354), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5356), 2, - anon_sym_get, - anon_sym_set, - STATE(3152), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74941] = 25, + ACTIONS(4650), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5361), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [73967] = 3, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, + anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, + anon_sym_PERCENT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4560), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4562), 28, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75035] = 26, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5365), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5389), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5387), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4680), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [74017] = 3, + [75131] = 16, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5383), 1, + anon_sym_PERCENT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5381), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(4566), 28, + ACTIONS(4680), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - [74067] = 33, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(4010), 1, + [75207] = 22, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(5358), 1, - anon_sym_RPAREN, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4698), 1, - aux_sym_array_repeat1, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4682), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74177] = 4, - ACTIONS(5360), 1, - sym_regex_flags, + ACTIONS(4680), 10, + 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_BQUOTE, + anon_sym_satisfies, + [75295] = 23, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5383), 1, + anon_sym_PERCENT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4911), 16, - anon_sym_STAR, - anon_sym_as, + ACTIONS(4682), 2, anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5365), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4913), 24, + ACTIONS(4680), 10, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_as, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75385] = 24, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5365), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5389), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5387), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 9, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74229] = 3, + anon_sym_satisfies, + [75477] = 15, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5383), 1, + anon_sym_PERCENT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4568), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4682), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -200777,47 +202312,60 @@ 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, anon_sym_GT, - ACTIONS(4570), 28, + ACTIONS(4680), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - [74279] = 3, + [75551] = 16, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4462), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -200825,916 +202373,717 @@ 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_GT, - ACTIONS(4464), 28, + ACTIONS(4680), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - [74329] = 33, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(4010), 1, + [75627] = 20, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(5362), 1, - anon_sym_RPAREN, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, - STATE(5062), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74439] = 7, - ACTIONS(4406), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4408), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4611), 2, + ACTIONS(4682), 5, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4608), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3492), 11, - 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, - anon_sym_GT, - ACTIONS(3496), 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, - [74497] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [74571] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5103), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5366), 2, - anon_sym_get, - anon_sym_set, - STATE(3798), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 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, - [74635] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5103), 1, - anon_sym_STAR, - ACTIONS(5105), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5107), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5111), 2, - anon_sym_get, - anon_sym_set, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(4680), 12, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [74701] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(667), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [74775] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + 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_BQUOTE, + anon_sym_satisfies, + [75711] = 27, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, + anon_sym_AMP_AMP, + ACTIONS(5369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, + anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, + anon_sym_PERCENT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [74851] = 33, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(4010), 1, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5365), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5389), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75809] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(5375), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(5377), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(5379), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(5395), 1, sym__ternary_qmark, - ACTIONS(5368), 1, - anon_sym_RPAREN, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4554), 1, - aux_sym_array_repeat1, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4558), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74961] = 3, + [75915] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, + anon_sym_AMP_AMP, + ACTIONS(5369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, + anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, + anon_sym_PERCENT, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + ACTIONS(5393), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4506), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4508), 28, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4791), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76021] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75011] = 4, - ACTIONS(5360), 1, - sym_regex_flags, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4911), 17, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_of, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4913), 23, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4590), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76127] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [75063] = 3, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3496), 28, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4598), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76233] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75113] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(667), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [75189] = 31, - ACTIONS(4588), 1, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5365), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5389), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4602), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76339] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(5375), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(5377), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(5379), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(5395), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(2049), 1, sym_type_arguments, - STATE(2130), 1, + STATE(2127), 1, sym_arguments, - STATE(4524), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(4810), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4852), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [75295] = 33, - ACTIONS(4010), 1, + [76445] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(5361), 1, anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(5375), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(5377), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(5379), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(5395), 1, sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(5370), 1, - anon_sym_RBRACK, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4812), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75405] = 6, - ACTIONS(4608), 1, - anon_sym_LBRACK, + [76551] = 6, + ACTIONS(3608), 1, + anon_sym_QMARK, + ACTIONS(3618), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 2, + ACTIONS(3621), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 25, + anon_sym_GT, + ACTIONS(3498), 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, @@ -201754,88 +203103,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75461] = 33, - ACTIONS(4010), 1, + [76607] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5404), 1, + anon_sym_RBRACK, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(3816), 1, + aux_sym_sequence_expression_repeat1, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76717] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(5221), 1, anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(5227), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(5229), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(5231), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(5235), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(5237), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(5239), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(5243), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(5245), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(5253), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(5255), 1, sym__ternary_qmark, - ACTIONS(5217), 1, + STATE(1659), 1, + sym_arguments, + STATE(2548), 1, + sym_type_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5225), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5233), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5241), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5247), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5406), 3, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5372), 1, - anon_sym_SEMI, - STATE(1633), 1, + anon_sym_implements, + [76823] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5408), 1, + anon_sym_RBRACK, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(3792), 1, + STATE(3816), 1, aux_sym_sequence_expression_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75571] = 3, + [76933] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201849,7 +203350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 28, + ACTIONS(4636), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201878,27 +203379,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75621] = 7, - ACTIONS(3516), 1, + [76983] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(3520), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5269), 1, + anon_sym_COMMA, + ACTIONS(5410), 1, + anon_sym_RBRACK, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(4803), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3512), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3492), 11, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77093] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4496), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -201906,12 +203474,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4498), 28, + 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_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -201929,11 +203503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75679] = 3, + [77143] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4482), 13, + ACTIONS(4642), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201947,7 +203521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4484), 28, + ACTIONS(4644), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201976,100 +203550,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75729] = 33, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(4010), 1, + [77193] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - ACTIONS(5374), 1, - anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4602), 1, - aux_sym_array_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75839] = 5, + ACTIONS(5412), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [77299] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4182), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3492), 11, + ACTIONS(1820), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -202077,12 +203643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 24, + ACTIONS(1822), 28, + 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_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -202102,27 +203672,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75893] = 7, - ACTIONS(4376), 1, - anon_sym_QMARK, + [77349] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4617), 2, + ACTIONS(1876), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4614), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1878), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4458), 11, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77399] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1832), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -202130,10 +203737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4460), 22, + ACTIONS(1834), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -202153,11 +203766,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75951] = 3, + [77449] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5414), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(5109), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4486), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77559] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1852), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202171,7 +203861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4488), 28, + ACTIONS(1854), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202200,39 +203890,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76001] = 10, + [77609] = 12, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5376), 2, + ACTIONS(5134), 2, sym_number, sym_private_property_identifier, - ACTIONS(5378), 2, - anon_sym_get, - anon_sym_set, - STATE(3781), 3, + ACTIONS(5418), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5296), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5726), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5886), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 21, + ACTIONS(5416), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -202242,6 +203932,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, @@ -202254,236 +203946,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76065] = 8, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_COLON, - ACTIONS(4608), 1, + [77677] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4611), 2, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4408), 3, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5273), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3492), 11, + ACTIONS(5420), 1, + anon_sym_COLON, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(3816), 1, + aux_sym_sequence_expression_repeat1, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4678), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4684), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3496), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77787] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(3994), 1, anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, anon_sym_PERCENT, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5422), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4596), 1, + aux_sym_array_repeat1, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 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, + [77897] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, anon_sym_satisfies, - [76125] = 33, - ACTIONS(1977), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4010), 1, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5424), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78007] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5380), 1, + ACTIONS(5426), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4644), 1, - aux_sym_array_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76235] = 33, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(4010), 1, + [78117] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5382), 1, + ACTIONS(5428), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4656), 1, - aux_sym_array_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76345] = 12, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5384), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + [78227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(4620), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202493,14 +204345,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, anon_sym_GT, - ACTIONS(4780), 19, + ACTIONS(4622), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, @@ -202514,39 +204374,101 @@ 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, - [76413] = 15, - ACTIONS(4588), 1, + [78277] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5387), 1, - anon_sym_LT, - STATE(2019), 1, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5430), 1, + anon_sym_SEMI, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(3816), 1, + aux_sym_sequence_expression_repeat1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78387] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5432), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5434), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3494), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -202554,13 +204476,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, anon_sym_GT, - ACTIONS(4638), 17, - sym__automatic_semicolon, + ACTIONS(3498), 23, sym__ternary_qmark, - anon_sym_SEMI, + 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, @@ -202574,103 +204500,99 @@ 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, - [76487] = 31, - ACTIONS(4588), 1, + anon_sym_satisfies, + [78441] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(5247), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(5249), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(5251), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(5255), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(2019), 1, + ACTIONS(5436), 1, + anon_sym_RPAREN, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4645), 1, + aux_sym_array_repeat1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5237), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5245), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5253), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4792), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5259), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76593] = 11, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5390), 1, - anon_sym_LT, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + [78551] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 12, + ACTIONS(5438), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5440), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202680,14 +204602,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, anon_sym_GT, - ACTIONS(4787), 21, - sym__automatic_semicolon, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, @@ -202705,18 +204630,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76659] = 5, + [78605] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5119), 2, + ACTIONS(5438), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5121), 3, + ACTIONS(5440), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202730,7 +204655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -202754,66 +204679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76713] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4698), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_STAR, - ACTIONS(5002), 1, - anon_sym_async, + [78659] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5004), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5008), 2, - anon_sym_get, - anon_sym_set, - STATE(3147), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, + ACTIONS(5438), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5440), 3, anon_sym_COMMA, - 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(3700), 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, - [76779] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4474), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202827,15 +204704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4476), 28, - sym__automatic_semicolon, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202856,16 +204728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76829] = 5, - ACTIONS(1828), 1, - sym__automatic_semicolon, + [78713] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1820), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1824), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202879,12 +204746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1826), 25, + ACTIONS(3498), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202905,94 +204775,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76883] = 5, - ACTIONS(1838), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1830), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1834), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1836), 25, - sym__ternary_qmark, - anon_sym_as, + [78763] = 33, + ACTIONS(1977), 1, anon_sym_COMMA, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, anon_sym_PERCENT, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5442), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(4680), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 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, - [76937] = 11, - ACTIONS(1626), 1, + [78873] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5393), 1, + ACTIONS(5444), 1, anon_sym_STAR, - ACTIONS(5395), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5397), 2, + ACTIONS(5446), 2, sym_number, sym_private_property_identifier, - ACTIONS(5399), 2, + ACTIONS(5448), 2, anon_sym_get, anon_sym_set, - STATE(3143), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203009,164 +204906,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77003] = 32, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, + [78937] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4744), 1, - anon_sym_COMMA, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4804), 1, - anon_sym_AMP_AMP, - ACTIONS(4806), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, - anon_sym_GT_GT, - ACTIONS(4812), 1, - anon_sym_AMP, - ACTIONS(4814), 1, - anon_sym_CARET, - ACTIONS(4816), 1, - anon_sym_PIPE, - ACTIONS(4820), 1, - anon_sym_PERCENT, - ACTIONS(4822), 1, - anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, + ACTIONS(5444), 1, + anon_sym_STAR, + ACTIONS(5450), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4802), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4810), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4818), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4828), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4830), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5041), 2, + ACTIONS(5452), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5454), 2, + anon_sym_get, + anon_sym_set, + STATE(3078), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4826), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77111] = 33, - ACTIONS(4010), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [79003] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(5401), 1, - anon_sym_RBRACK, - STATE(1633), 1, + ACTIONS(5456), 1, + anon_sym_RPAREN, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, + STATE(4693), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77221] = 3, + [79113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4572), 13, + ACTIONS(4668), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203180,7 +205056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4574), 28, + ACTIONS(4670), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203209,35 +205085,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77271] = 10, + [79163] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5403), 1, + ACTIONS(5084), 1, anon_sym_STAR, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5405), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5407), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3888), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3906), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -203263,71 +205144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77335] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5271), 1, - anon_sym_STAR, - ACTIONS(5273), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5277), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5409), 2, - sym_number, - sym_private_property_identifier, - STATE(3060), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3700), 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, - [77401] = 5, - ACTIONS(1850), 1, + [79237] = 5, + ACTIONS(1836), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1842), 2, + ACTIONS(1828), 2, anon_sym_else, anon_sym_while, - ACTIONS(1846), 13, + ACTIONS(1832), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203341,7 +205167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1848), 25, + ACTIONS(1834), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -203367,87 +205193,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77455] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4516), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4518), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [79291] = 12, + ACTIONS(4650), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 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, - [77505] = 7, - ACTIONS(3582), 1, - anon_sym_EQ, - ACTIONS(4608), 1, - anon_sym_LBRACK, + ACTIONS(5458), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4829), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 24, + anon_sym_GT, + ACTIONS(4831), 19, 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, @@ -203461,48 +205247,47 @@ 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, - [77563] = 10, - ACTIONS(1550), 1, + [79359] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5191), 1, anon_sym_STAR, + ACTIONS(5193), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5411), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5413), 2, + ACTIONS(5199), 2, anon_sym_get, anon_sym_set, - STATE(3874), 3, + ACTIONS(5461), 2, + sym_number, + sym_private_property_identifier, + STATE(3071), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203519,13 +205304,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77627] = 3, + [79425] = 15, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5463), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4576), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4716), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -203533,22 +205342,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, anon_sym_GT, - ACTIONS(4578), 28, + ACTIONS(4720), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, @@ -203562,118 +205362,103 @@ 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, - [77677] = 5, - ACTIONS(1864), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1856), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1860), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1862), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [79499] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77731] = 3, + ACTIONS(5395), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4580), 13, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5363), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5373), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4582), 28, + ACTIONS(5391), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4729), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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_BQUOTE, + ACTIONS(5387), 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, - [77781] = 5, + [79605] = 11, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_LT, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5415), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5417), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(4745), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203683,17 +205468,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, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(4747), 21, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -203711,11 +205493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77835] = 3, + [79671] = 5, + ACTIONS(1896), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4520), 13, + ACTIONS(1888), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1892), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203729,15 +205516,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4522), 28, - sym__automatic_semicolon, + ACTIONS(1894), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203758,44 +205542,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77885] = 10, + [79725] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5151), 1, + ACTIONS(5084), 1, anon_sym_STAR, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5419), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5421), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3882), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3906), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 21, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203812,64 +205602,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77949] = 9, - ACTIONS(3510), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_COLON, - ACTIONS(4408), 1, - anon_sym_extends, - ACTIONS(4608), 1, + [79801] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_STAR, + ACTIONS(5193), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4611), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5423), 2, + ACTIONS(5199), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5469), 2, + sym_number, + sym_private_property_identifier, + STATE(3093), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3492), 11, - 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, - anon_sym_GT, - ACTIONS(3496), 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, - [78011] = 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [79867] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1860), 13, + ACTIONS(4500), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203883,7 +205675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1862), 28, + ACTIONS(4502), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203912,133 +205704,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78061] = 3, + [79917] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5471), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4454), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4456), 28, + ACTIONS(5473), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5475), 2, + anon_sym_get, + anon_sym_set, + STATE(3879), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [79981] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 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, - [78111] = 4, - ACTIONS(3562), 1, - anon_sym_EQ, + ACTIONS(5471), 1, + anon_sym_STAR, + ACTIONS(5477), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 27, + ACTIONS(5479), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5481), 2, + anon_sym_get, + anon_sym_set, + STATE(3167), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, 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, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78163] = 10, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [80047] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4656), 1, - anon_sym_STAR, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, + ACTIONS(5205), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5427), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(5429), 2, + ACTIONS(5485), 2, anon_sym_get, anon_sym_set, - STATE(3804), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2351), 21, anon_sym_export, anon_sym_type, @@ -204061,106 +205867,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78227] = 33, - ACTIONS(4010), 1, + [80111] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5431), 1, + ACTIONS(5487), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(5026), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78337] = 10, + [80221] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5393), 1, + ACTIONS(5489), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5433), 2, + ACTIONS(5491), 2, sym_number, sym_private_property_identifier, - ACTIONS(5435), 2, + ACTIONS(5493), 2, anon_sym_get, anon_sym_set, - STATE(3836), 3, + STATE(3901), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204192,233 +205998,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78401] = 6, - ACTIONS(4614), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4617), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4458), 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(4460), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78457] = 33, - ACTIONS(4010), 1, + [80285] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5437), 1, + ACTIONS(5495), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(5026), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78567] = 33, - ACTIONS(4010), 1, + [80395] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5439), 1, + ACTIONS(5497), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(5026), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78677] = 10, + [80505] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5350), 1, + ACTIONS(5499), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5441), 2, + ACTIONS(5501), 2, sym_number, sym_private_property_identifier, - ACTIONS(5443), 2, + ACTIONS(5503), 2, anon_sym_get, anon_sym_set, - STATE(3753), 3, + STATE(3906), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204450,106 +206206,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78741] = 33, - ACTIONS(4010), 1, + [80569] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5445), 1, + ACTIONS(5505), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(5026), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78851] = 10, + [80679] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5447), 1, + ACTIONS(5507), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5449), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - ACTIONS(5451), 2, + ACTIONS(5511), 2, anon_sym_get, anon_sym_set, - STATE(3828), 3, + STATE(3910), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204581,11 +206337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78915] = 3, + [80743] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4524), 13, + ACTIONS(4592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204599,7 +206355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4526), 28, + ACTIONS(4594), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204628,38 +206384,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78965] = 7, - ACTIONS(3601), 1, - anon_sym_EQ, - ACTIONS(4408), 1, - anon_sym_extends, + [80793] = 5, + ACTIONS(1804), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4608), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(1796), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 24, + anon_sym_GT, + ACTIONS(1802), 25, 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_AMP_AMP, @@ -204679,11 +206433,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79023] = 3, + [80847] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4058), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4710), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80911] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5205), 1, + anon_sym_STAR, + ACTIONS(5207), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5209), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5213), 2, + anon_sym_get, + anon_sym_set, + STATE(3188), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [80977] = 5, + ACTIONS(1814), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1870), 13, + ACTIONS(1806), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1810), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204697,15 +206565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1872), 28, - sym__automatic_semicolon, + ACTIONS(1812), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204726,11 +206591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79073] = 3, + [81031] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 13, + ACTIONS(4638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204744,7 +206609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4468), 28, + ACTIONS(4640), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204773,11 +206638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79123] = 3, + [81081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1794), 13, + ACTIONS(4630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204791,7 +206656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1796), 28, + ACTIONS(4632), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204820,11 +206685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79173] = 3, + [81131] = 4, + ACTIONS(3580), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1804), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204838,7 +206705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1806), 28, + ACTIONS(3498), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204846,7 +206713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204867,11 +206733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79223] = 3, + [81183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1814), 13, + ACTIONS(1724), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204885,7 +206751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1816), 28, + ACTIONS(1726), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204914,11 +206780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79273] = 3, + [81233] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1710), 13, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204932,7 +206798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1712), 28, + ACTIONS(1736), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204961,88 +206827,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79323] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(5453), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, + [81283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(1752), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + anon_sym_GT, + ACTIONS(1754), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, - ACTIONS(4897), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79433] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [81333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4528), 13, + ACTIONS(1800), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205056,7 +206892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4530), 28, + ACTIONS(1802), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205085,498 +206921,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79483] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(5455), 1, - anon_sym_COLON, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, - sym_optional_chain, + [81383] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(1810), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79593] = 33, - ACTIONS(4010), 1, + anon_sym_GT, + ACTIONS(1812), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(5457), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79703] = 33, - ACTIONS(4010), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [81433] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5459), 1, + ACTIONS(5513), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(5026), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79813] = 33, - ACTIONS(4010), 1, + [81543] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5515), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5517), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5519), 2, + anon_sym_get, + anon_sym_set, + STATE(3806), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [81607] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5461), 1, + ACTIONS(5521), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(5026), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79923] = 33, - ACTIONS(4010), 1, + [81717] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - ACTIONS(5463), 1, - anon_sym_RPAREN, - STATE(1633), 1, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5523), 1, + anon_sym_SEMI, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, + STATE(3816), 1, aux_sym_sequence_expression_repeat1, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80033] = 33, - ACTIONS(4010), 1, + [81827] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(5465), 1, - anon_sym_SEMI, - STATE(1633), 1, + ACTIONS(5525), 1, + anon_sym_RPAREN, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80143] = 5, + [81937] = 7, + ACTIONS(3594), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5467), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5469), 3, + ACTIONS(4624), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3492), 13, + anon_sym_LBRACK, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205596,18 +207380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80197] = 5, + anon_sym_implements, + [81995] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5471), 2, + ACTIONS(5527), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5473), 3, + ACTIONS(5529), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205621,7 +207406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -205645,67 +207430,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80251] = 5, + [82049] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5531), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5471), 2, + ACTIONS(5533), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5535), 2, + anon_sym_get, + anon_sym_set, + STATE(3898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5473), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3492), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [80305] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [82113] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5471), 2, + ACTIONS(5184), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5473), 3, + ACTIONS(5186), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205719,7 +207509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -205743,29 +207533,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80359] = 10, - ACTIONS(1550), 1, + [82167] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5475), 1, + ACTIONS(5531), 1, anon_sym_STAR, + ACTIONS(5537), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5477), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - ACTIONS(5479), 2, + ACTIONS(5541), 2, anon_sym_get, anon_sym_set, - STATE(3898), 3, + STATE(3090), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -205775,12 +207567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -205797,31 +207588,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80423] = 11, - ACTIONS(1626), 1, + [82233] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5475), 1, + ACTIONS(5351), 1, anon_sym_STAR, - ACTIONS(5481), 1, + ACTIONS(5543), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5545), 2, sym_number, sym_private_property_identifier, - ACTIONS(5485), 2, + ACTIONS(5547), 2, anon_sym_get, anon_sym_set, - STATE(3074), 3, + STATE(3104), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -205852,82 +207643,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80489] = 7, - ACTIONS(3592), 1, - anon_sym_EQ, - ACTIONS(4408), 1, - anon_sym_extends, + [82299] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5351), 1, + anon_sym_STAR, + ACTIONS(5543), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4608), 2, + ACTIONS(5547), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5549), 2, + sym_number, + sym_private_property_identifier, + STATE(3068), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 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(3496), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [80547] = 11, - ACTIONS(1626), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 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, + [82365] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5137), 1, + ACTIONS(5351), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5543), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5145), 2, + ACTIONS(5547), 2, anon_sym_get, anon_sym_set, - ACTIONS(5487), 2, + ACTIONS(5551), 2, sym_number, sym_private_property_identifier, - STATE(3079), 3, + STATE(3085), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -205958,96 +207753,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80613] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, + [82431] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - ACTIONS(5225), 1, - anon_sym_COMMA, - ACTIONS(5489), 1, - anon_sym_RBRACK, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(4987), 1, - aux_sym_array_repeat1, + anon_sym_LBRACK, + ACTIONS(5553), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(5555), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5557), 2, + anon_sym_get, + anon_sym_set, + STATE(3812), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [82495] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5553), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4736), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80723] = 7, - ACTIONS(5491), 1, + ACTIONS(5559), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5561), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5563), 2, + anon_sym_get, + anon_sym_set, + STATE(3189), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5494), 1, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5496), 1, anon_sym_LT, - ACTIONS(5499), 1, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, + [82561] = 5, + ACTIONS(1718), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4478), 12, + ACTIONS(1710), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206057,14 +207881,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, anon_sym_GT, - ACTIONS(4480), 25, - sym__automatic_semicolon, + ACTIONS(1716), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -206086,40 +207911,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80781] = 11, - ACTIONS(1626), 1, + [82615] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5137), 1, + ACTIONS(5489), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5565), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5145), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5501), 2, + ACTIONS(5567), 2, sym_number, sym_private_property_identifier, - STATE(3072), 3, + ACTIONS(5569), 2, + anon_sym_get, + anon_sym_set, + STATE(3134), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(3700), 20, anon_sym_export, anon_sym_type, @@ -206141,11 +207966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80847] = 3, + [82681] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4584), 13, + ACTIONS(5571), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5573), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206159,7 +207991,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4586), 28, + ACTIONS(3498), 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, + [82735] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1714), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1716), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -206188,323 +208062,443 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80897] = 33, - ACTIONS(4010), 1, + [82785] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1866), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1868), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + 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, + [82835] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5225), 1, - anon_sym_COMMA, - ACTIONS(5503), 1, - anon_sym_RBRACK, - STATE(1633), 1, + ACTIONS(5575), 1, + anon_sym_RPAREN, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(4987), 1, - aux_sym_array_repeat1, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81007] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, + [82945] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(5505), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5507), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5509), 2, - anon_sym_get, - anon_sym_set, - STATE(3802), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4933), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 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, - [81071] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5505), 1, - anon_sym_STAR, - ACTIONS(5511), 1, - anon_sym_async, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5577), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5513), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5515), 2, - anon_sym_get, - anon_sym_set, - STATE(3098), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 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, - [81137] = 33, - ACTIONS(4010), 1, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83055] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, + ACTIONS(4933), 1, anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5517), 1, + ACTIONS(5579), 1, anon_sym_RPAREN, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, - STATE(5026), 1, + STATE(5001), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81247] = 5, - ACTIONS(1874), 1, - sym__automatic_semicolon, + [83165] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, + anon_sym_AMP_AMP, + ACTIONS(4941), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, + anon_sym_PERCENT, + ACTIONS(4957), 1, + anon_sym_STAR_STAR, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5581), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1866), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1870), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4937), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1872), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4965), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83275] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, anon_sym_AMP_AMP, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4943), 1, + anon_sym_GT_GT, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, anon_sym_CARET, + ACTIONS(4951), 1, + anon_sym_PIPE, + ACTIONS(4955), 1, anon_sym_PERCENT, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4969), 1, + sym__ternary_qmark, + ACTIONS(5583), 1, + anon_sym_RPAREN, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4931), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4937), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4945), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4953), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4961), 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, - [81301] = 3, + [83385] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 13, + ACTIONS(4568), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206518,7 +208512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4534), 28, + ACTIONS(4570), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -206547,197 +208541,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81351] = 33, - ACTIONS(4010), 1, + [83435] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(5519), 1, - anon_sym_SEMI, - STATE(1633), 1, + ACTIONS(5585), 1, + anon_sym_RPAREN, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, + STATE(5001), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81461] = 31, - ACTIONS(4010), 1, + [83545] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(4718), 1, - anon_sym_GT_GT, + anon_sym_as, ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5587), 1, + anon_sym_SEMI, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(3816), 1, + aux_sym_sequence_expression_repeat1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83655] = 33, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5589), 1, + anon_sym_SEMI, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(3816), 1, + aux_sym_sequence_expression_repeat1, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5521), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [81567] = 11, - ACTIONS(1626), 1, + [83765] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5151), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5155), 2, + ACTIONS(5593), 2, sym_number, sym_private_property_identifier, - ACTIONS(5159), 2, + ACTIONS(5595), 2, anon_sym_get, anon_sym_set, - STATE(3097), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3700), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -206754,99 +208826,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81633] = 5, + [83829] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5597), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5092), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5094), 3, + ACTIONS(5599), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5601), 2, + anon_sym_get, + anon_sym_set, + STATE(3796), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [81687] = 12, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1550), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [83893] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_STAR, + ACTIONS(5603), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5064), 2, + ACTIONS(5605), 2, sym_number, sym_private_property_identifier, - ACTIONS(5525), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5225), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5509), 3, + ACTIONS(5607), 2, + anon_sym_get, + anon_sym_set, + STATE(3129), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5536), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5523), 23, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 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, @@ -206859,19 +208935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81755] = 6, - ACTIONS(3611), 1, - anon_sym_EQ, - ACTIONS(3617), 1, + [83959] = 7, + ACTIONS(5609), 1, + anon_sym_LPAREN, + ACTIONS(5612), 1, + anon_sym_COLON, + ACTIONS(5614), 1, + anon_sym_LT, + ACTIONS(5617), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(3494), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206881,14 +208957,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, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 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, @@ -206909,11 +208986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81811] = 3, + [84017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4470), 13, + ACTIONS(4646), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206927,7 +209004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4472), 28, + ACTIONS(4648), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -206956,12 +209033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81861] = 3, + [84067] = 4, + ACTIONS(5321), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4490), 13, + ACTIONS(5037), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -206974,15 +209054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4492), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(5039), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -206998,16 +209078,68 @@ 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, - [81911] = 3, + [84119] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(4774), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5619), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5621), 2, + anon_sym_get, + anon_sym_set, + STATE(3800), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [84183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(4536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207021,7 +209153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4600), 28, + ACTIONS(4538), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207050,96 +209182,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81961] = 3, + [84233] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5060), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1846), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1848), 28, + ACTIONS(5623), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5625), 2, + anon_sym_get, + anon_sym_set, + STATE(3855), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 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, + [84297] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, + ACTIONS(4654), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(4889), 1, anon_sym_AMP_AMP, + ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4893), 1, + anon_sym_GT_GT, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(4899), 1, anon_sym_CARET, + ACTIONS(4901), 1, + anon_sym_PIPE, + ACTIONS(4905), 1, anon_sym_PERCENT, + ACTIONS(4907), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4909), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4919), 1, + sym__ternary_qmark, + STATE(2049), 1, + sym_type_arguments, + STATE(2127), 1, + sym_arguments, + STATE(4851), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4874), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4887), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4913), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4915), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4911), 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, - [82011] = 15, - ACTIONS(237), 1, + ACTIONS(5045), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, + anon_sym_SEMI, + [84403] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, + ACTIONS(5289), 1, anon_sym_STAR, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5627), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5629), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, + ACTIONS(5631), 2, anon_sym_get, anon_sym_set, - STATE(3816), 3, + STATE(3089), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -207156,46 +209366,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82085] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, + [84469] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4743), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, + ACTIONS(5060), 1, anon_sym_STAR, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5062), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5064), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, + ACTIONS(5068), 2, anon_sym_get, anon_sym_set, - STATE(3816), 3, + STATE(3166), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -207216,11 +209421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82161] = 3, + [84535] = 5, + ACTIONS(1870), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1762), 13, + ACTIONS(1862), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1866), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207234,15 +209444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1764), 28, - sym__automatic_semicolon, + ACTIONS(1868), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207263,11 +209470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82211] = 3, + [84589] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1774), 13, + ACTIONS(4560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207281,7 +209488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1776), 28, + ACTIONS(4562), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207310,111 +209517,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82261] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1784), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1786), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [84639] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, anon_sym_AMP_AMP, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4735), 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(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82311] = 3, + ACTIONS(4741), 1, + sym__ternary_qmark, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5633), 1, + anon_sym_RBRACK, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(3816), 1, + aux_sym_sequence_expression_repeat1, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1824), 13, + ACTIONS(4678), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4684), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1826), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82361] = 3, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84749] = 9, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3610), 1, + anon_sym_COLON, + ACTIONS(4258), 1, + anon_sym_extends, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1834), 13, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5635), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -207422,16 +209624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1836), 28, - sym__automatic_semicolon, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207451,249 +209647,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82411] = 33, - ACTIONS(4010), 1, + [84811] = 33, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4694), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4696), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4698), 1, anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(5527), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82521] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - ACTIONS(5529), 1, - anon_sym_RPAREN, - STATE(1633), 1, + ACTIONS(5273), 1, + anon_sym_COMMA, + ACTIONS(5639), 1, + anon_sym_SEMI, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, + STATE(3816), 1, aux_sym_sequence_expression_repeat1, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82631] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - ACTIONS(5531), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82741] = 5, + [84921] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5533), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5535), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(4526), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207707,10 +209742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(4528), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207731,70 +209771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82795] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5051), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [82869] = 3, + [84971] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4494), 13, + ACTIONS(1744), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207808,7 +209789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4496), 28, + ACTIONS(1746), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207837,292 +209818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82919] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4622), 1, + [85021] = 4, + ACTIONS(3571), 1, anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5051), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [82995] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, + ACTIONS(3494), 13, anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5539), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5541), 2, - anon_sym_get, - anon_sym_set, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [83059] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(5543), 1, - anon_sym_SEMI, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4736), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83169] = 33, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, - anon_sym_AMP_AMP, - ACTIONS(4716), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, - anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, - anon_sym_PERCENT, - ACTIONS(4732), 1, - anon_sym_STAR_STAR, - ACTIONS(4740), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(5545), 1, - anon_sym_SEMI, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(3792), 1, - aux_sym_sequence_expression_repeat1, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4720), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4728), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4736), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83279] = 6, - ACTIONS(4408), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4611), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4608), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3492), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -208130,12 +209838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 24, + ACTIONS(3498), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208155,20 +209866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83335] = 6, - ACTIONS(4378), 1, - anon_sym_extends, + [85073] = 7, + ACTIONS(4256), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4617), 2, + ACTIONS(4258), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4627), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4614), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4624), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4458), 11, + anon_sym_RBRACK, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208180,12 +209894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4460), 24, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208205,142 +209917,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83391] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5271), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5547), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5549), 2, - anon_sym_get, - anon_sym_set, - STATE(3851), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [83455] = 33, - ACTIONS(4010), 1, + [85131] = 31, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(4875), 1, + ACTIONS(5361), 1, + anon_sym_LT, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(5375), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(5377), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(5379), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(5395), 1, sym__ternary_qmark, - ACTIONS(5551), 1, - anon_sym_RPAREN, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, - STATE(5026), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, + ACTIONS(4817), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83565] = 3, + [85237] = 11, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5641), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4458), 13, + ACTIONS(4745), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208350,22 +210022,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, anon_sym_GT, - ACTIONS(4460), 28, - sym__automatic_semicolon, + ACTIONS(4747), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, 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, @@ -208383,64 +210046,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83615] = 21, - ACTIONS(231), 1, - anon_sym_STAR, + [85302] = 17, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2019), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(5557), 1, - anon_sym_RBRACE, - ACTIONS(5559), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(5563), 1, - anon_sym_static, - ACTIONS(5565), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(5571), 1, + ACTIONS(2359), 1, anon_sym_override, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2808), 1, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(5644), 1, + anon_sym_RBRACE, + STATE(2801), 1, sym_override_modifier, - STATE(4925), 1, + STATE(5032), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5561), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5567), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - ACTIONS(5569), 3, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, - STATE(3688), 3, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85379] = 8, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4976), 2, + sym_number, + sym_private_property_identifier, + STATE(3387), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4910), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5553), 14, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -208448,44 +210157,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83701] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, + [85438] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5053), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4708), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5646), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, + STATE(3907), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 21, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208495,6 +210194,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, @@ -208507,103 +210208,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83775] = 5, - ACTIONS(1714), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1706), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1710), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1712), 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, - [83829] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, + [85497] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5053), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5353), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, + STATE(3797), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 20, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -208616,36 +210259,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83905] = 9, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [85556] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5473), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 7, + STATE(3879), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1969), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208669,52 +210310,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83967] = 9, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1975), 6, + [85615] = 19, + ACTIONS(231), 1, anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1550), 1, anon_sym_DQUOTE, + ACTIONS(1552), 1, anon_sym_SQUOTE, + ACTIONS(2041), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5652), 1, + anon_sym_async, + ACTIONS(5654), 1, + anon_sym_static, + ACTIONS(5656), 1, + anon_sym_readonly, + ACTIONS(5662), 1, + anon_sym_override, + STATE(2781), 1, + sym_accessibility_modifier, + STATE(2814), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5309), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1973), 23, + ACTIONS(5650), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5658), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5660), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3748), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5298), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5648), 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, @@ -208722,18 +210372,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [84029] = 5, + [85696] = 8, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(5664), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5092), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5130), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3492), 13, + ACTIONS(4819), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208743,14 +210396,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, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(4821), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208771,446 +210423,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84083] = 4, + [85755] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5670), 1, + anon_sym_AMP_AMP, + ACTIONS(5672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, + anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5698), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4288), 13, + ACTIONS(4618), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5666), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5668), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4290), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85860] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5670), 1, anon_sym_AMP_AMP, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, anon_sym_PERCENT, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [84135] = 4, + ACTIONS(5698), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4288), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4823), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5666), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5668), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4290), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85965] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5670), 1, anon_sym_AMP_AMP, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, anon_sym_PERCENT, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [84187] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5573), 1, - anon_sym_async, + ACTIONS(5698), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5575), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5577), 2, - anon_sym_get, - anon_sym_set, - STATE(3073), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4825), 2, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3700), 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, - [84253] = 31, - ACTIONS(4588), 1, + anon_sym_BQUOTE, + ACTIONS(5666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86070] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4804), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(4806), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(4808), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(4812), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(4814), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(4816), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(4822), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(4824), 1, - anon_sym_LT, - ACTIONS(4832), 1, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(4838), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4796), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4827), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4802), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4810), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4818), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4828), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4830), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4826), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5014), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [84359] = 9, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, + [86175] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1969), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84421] = 9, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5670), 1, + anon_sym_AMP_AMP, + ACTIONS(5672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, + anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5698), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1975), 6, + ACTIONS(4524), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5666), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, + anon_sym_SLASH, + ACTIONS(5668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86280] = 18, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5664), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1973), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84483] = 4, - ACTIONS(3578), 1, - anon_sym_EQ, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5666), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(3496), 27, - sym__automatic_semicolon, + ACTIONS(4680), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, - [84535] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5271), 1, - anon_sym_STAR, - ACTIONS(5273), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5277), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5579), 2, - sym_number, - sym_private_property_identifier, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + [86359] = 13, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5700), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3700), 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, - [84601] = 3, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209220,165 +210889,215 @@ 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_GT, - ACTIONS(1736), 28, - sym__automatic_semicolon, + ACTIONS(4680), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_BQUOTE, + anon_sym_satisfies, + [86428] = 25, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, + anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 8, + 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, - [84651] = 31, - ACTIONS(4010), 1, + [86521] = 26, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5521), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4897), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84756] = 16, - ACTIONS(4010), 1, + ACTIONS(4680), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86616] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(5583), 1, + ACTIONS(5700), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 11, + ACTIONS(5666), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 8, + anon_sym_BANG, anon_sym_in, 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, anon_sym_GT, - ACTIONS(4760), 15, + ACTIONS(4680), 16, 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -209386,477 +211105,497 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [84831] = 20, - ACTIONS(4010), 1, + anon_sym_satisfies, + [86691] = 22, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(5596), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - STATE(1633), 1, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4762), 5, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4682), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4760), 11, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [84914] = 27, - ACTIONS(4010), 1, + [86778] = 23, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - STATE(1633), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 6, + ACTIONS(4680), 9, 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_BQUOTE, anon_sym_satisfies, - [85011] = 31, - ACTIONS(4010), 1, + [86867] = 24, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4522), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4682), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85116] = 31, - ACTIONS(4010), 1, + ACTIONS(4680), 8, + 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, + [86958] = 15, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5700), 1, anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4767), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(4682), 10, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + anon_sym_GT, + ACTIONS(4680), 16, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85221] = 31, - ACTIONS(4010), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87031] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5700), 1, anon_sym_LT, - ACTIONS(5602), 1, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 11, + anon_sym_STAR, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4680), 15, + sym__ternary_qmark, + anon_sym_COLON, anon_sym_AMP_AMP, - ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, + 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, - ACTIONS(5618), 1, - sym__ternary_qmark, - STATE(1633), 1, + anon_sym_instanceof, + anon_sym_BQUOTE, + [87106] = 20, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4546), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4682), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(4680), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85326] = 31, - ACTIONS(4010), 1, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87189] = 27, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4554), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85431] = 31, - ACTIONS(4010), 1, + ACTIONS(4680), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87286] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -209864,1175 +211603,638 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4558), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85536] = 31, - ACTIONS(4010), 1, + [87391] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4769), 2, + ACTIONS(4791), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85641] = 31, - ACTIONS(4010), 1, + [87496] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4771), 2, + ACTIONS(4590), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5586), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85746] = 31, - ACTIONS(4010), 1, + [87601] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4598), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5039), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4734), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85851] = 31, - ACTIONS(4010), 1, + [87706] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4602), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5049), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4734), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85956] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4120), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4290), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [87811] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 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, - [86007] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4773), 2, + ACTIONS(4810), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86112] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(667), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86181] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5620), 2, - sym_number, - sym_private_property_identifier, - STATE(3787), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86240] = 4, - ACTIONS(4120), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4290), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5690), 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, - [86291] = 31, - ACTIONS(4588), 1, + [87916] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5233), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5239), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(5247), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5249), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5251), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5255), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4812), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5237), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5245), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5253), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5622), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5259), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86396] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(694), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86465] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5292), 2, - sym_number, - sym_private_property_identifier, - STATE(3853), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86524] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5507), 2, - sym_number, - sym_private_property_identifier, - STATE(3802), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86583] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4322), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4290), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [88021] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 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, - [86634] = 4, - ACTIONS(4322), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4288), 13, - anon_sym_STAR, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4290), 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, + ACTIONS(5670), 1, anon_sym_AMP_AMP, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, anon_sym_PERCENT, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86685] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5279), 2, - sym_number, - sym_private_property_identifier, - STATE(3863), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86744] = 17, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, - anon_sym_override, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(5624), 1, - anon_sym_RBRACE, - STATE(2813), 1, - sym_override_modifier, - STATE(4960), 1, - aux_sym_object_repeat1, + ACTIONS(5698), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4817), 2, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [86821] = 4, - ACTIONS(4915), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4911), 17, + anon_sym_BQUOTE, + ACTIONS(5666), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5668), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4913), 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(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [86872] = 31, - ACTIONS(4010), 1, + anon_sym_instanceof, + [88126] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4959), 1, anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5014), 2, + ACTIONS(5116), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4897), 3, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86977] = 8, - ACTIONS(4010), 1, + [88231] = 8, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 12, + ACTIONS(4819), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211045,7 +212247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4706), 23, + ACTIONS(4821), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACK, @@ -211069,415 +212271,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87036] = 31, - ACTIONS(4010), 1, + [88290] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4618), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87141] = 31, - ACTIONS(4010), 1, + [88395] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4744), 2, + ACTIONS(4823), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87246] = 31, - ACTIONS(4010), 1, + [88500] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4756), 2, + ACTIONS(4825), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87351] = 31, - ACTIONS(4010), 1, + [88605] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4827), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87456] = 31, - ACTIONS(4010), 1, + [88710] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4504), 2, + ACTIONS(4524), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87561] = 18, - ACTIONS(4010), 1, + [88815] = 18, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4762), 7, + ACTIONS(4682), 7, anon_sym_BANG, anon_sym_in, anon_sym_AMP, @@ -211485,7 +212687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 14, + ACTIONS(4680), 14, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -211500,32 +212702,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [87640] = 13, - ACTIONS(4010), 1, + [88894] = 13, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5739), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(4682), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211538,7 +212740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 17, + ACTIONS(4680), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -211556,287 +212758,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [87709] = 25, - ACTIONS(4010), 1, + [88963] = 25, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(5626), 1, - anon_sym_LT, - ACTIONS(5636), 1, - anon_sym_GT_GT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5644), 1, - anon_sym_PIPE, - ACTIONS(5648), 1, - anon_sym_PERCENT, - ACTIONS(5650), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5628), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5630), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5638), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5654), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5656), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87802] = 26, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, - anon_sym_AMP_AMP, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 7, + ACTIONS(4680), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [87897] = 16, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, - anon_sym_override, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - STATE(2813), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5665), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [87972] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, + [89056] = 26, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5703), 1, + anon_sym_LT, + ACTIONS(5709), 1, + anon_sym_AMP_AMP, + ACTIONS(5713), 1, + anon_sym_GT_GT, + ACTIONS(5717), 1, + anon_sym_AMP, + ACTIONS(5719), 1, + anon_sym_CARET, + ACTIONS(5721), 1, + anon_sym_PIPE, + ACTIONS(5725), 1, + anon_sym_PERCENT, + ACTIONS(5727), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5668), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3700), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88031] = 16, - ACTIONS(4010), 1, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5707), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5715), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5723), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5733), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5729), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89151] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5739), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4762), 8, + ACTIONS(4682), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -211845,7 +212937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 16, + ACTIONS(4680), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -211862,62 +212954,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88106] = 22, - ACTIONS(4010), 1, + [89226] = 22, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 3, + ACTIONS(4682), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 9, + ACTIONS(4680), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -211927,114 +213019,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88193] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5427), 2, - sym_number, - sym_private_property_identifier, - STATE(3804), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88252] = 23, - ACTIONS(4010), 1, + [89313] = 23, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 2, + ACTIONS(4682), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5628), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 9, + ACTIONS(4680), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -212044,65 +213085,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88341] = 24, - ACTIONS(4010), 1, + [89402] = 24, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 2, + ACTIONS(4682), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5628), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 8, + ACTIONS(4680), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -212111,31 +213152,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88432] = 12, - ACTIONS(4010), 1, + [89493] = 15, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5670), 1, + ACTIONS(5725), 1, + anon_sym_PERCENT, + ACTIONS(5727), 1, + anon_sym_STAR_STAR, + ACTIONS(5739), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(5705), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4682), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -212143,21 +213190,18 @@ 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, anon_sym_GT, - ACTIONS(4780), 18, + ACTIONS(4680), 16, 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_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -212166,36 +213210,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88499] = 15, - ACTIONS(4010), 1, + [89566] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5673), 1, + ACTIONS(5727), 1, + anon_sym_STAR_STAR, + ACTIONS(5739), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4682), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -212207,16 +213253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4638), 16, + ACTIONS(4680), 15, sym__ternary_qmark, - 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, @@ -212224,756 +213269,888 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [88572] = 31, - ACTIONS(4010), 1, + [89641] = 20, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, + ACTIONS(5703), 1, + anon_sym_LT, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5596), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5727), 1, + anon_sym_STAR_STAR, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4792), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5586), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5614), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88677] = 11, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5676), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4785), 12, - anon_sym_STAR, + ACTIONS(4682), 5, anon_sym_BANG, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4787), 20, + ACTIONS(4680), 11, 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88742] = 15, - ACTIONS(4010), 1, + [89724] = 27, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5648), 1, + ACTIONS(5703), 1, + anon_sym_LT, + ACTIONS(5709), 1, + anon_sym_AMP_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5713), 1, + anon_sym_GT_GT, + ACTIONS(5717), 1, + anon_sym_AMP, + ACTIONS(5719), 1, + anon_sym_CARET, + ACTIONS(5721), 1, + anon_sym_PIPE, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5662), 1, - anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4762), 10, - anon_sym_BANG, + ACTIONS(5707), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5715), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5729), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4680), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88815] = 16, - ACTIONS(4010), 1, + [89821] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5650), 1, - anon_sym_STAR_STAR, - ACTIONS(5662), 1, + ACTIONS(5703), 1, anon_sym_LT, - STATE(1633), 1, + ACTIONS(5709), 1, + anon_sym_AMP_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5713), 1, + anon_sym_GT_GT, + ACTIONS(5717), 1, + anon_sym_AMP, + ACTIONS(5719), 1, + anon_sym_CARET, + ACTIONS(5721), 1, + anon_sym_PIPE, + ACTIONS(5725), 1, + anon_sym_PERCENT, + ACTIONS(5727), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5737), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4558), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 11, + ACTIONS(5705), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5707), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5715), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 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_LT_EQ, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5729), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [88890] = 20, - ACTIONS(4010), 1, + [89926] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5626), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5636), 1, + ACTIONS(5709), 1, + anon_sym_AMP_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5648), 1, + ACTIONS(5717), 1, + anon_sym_AMP, + ACTIONS(5719), 1, + anon_sym_CARET, + ACTIONS(5721), 1, + anon_sym_PIPE, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5735), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5737), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(4791), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5652), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4762), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4760), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88973] = 31, - ACTIONS(4588), 1, + ACTIONS(5729), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90031] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5233), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5239), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5247), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5249), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5251), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5255), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4590), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5101), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5235), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5237), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5245), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5253), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5259), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89078] = 27, - ACTIONS(4010), 1, + [90136] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5626), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5735), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5737), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4598), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89175] = 31, - ACTIONS(4010), 1, + [90241] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4522), 2, + ACTIONS(4602), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89280] = 12, - ACTIONS(4010), 1, + [90346] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5679), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5703), 1, anon_sym_LT, - STATE(1633), 1, + ACTIONS(5709), 1, + anon_sym_AMP_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5713), 1, + anon_sym_GT_GT, + ACTIONS(5717), 1, + anon_sym_AMP, + ACTIONS(5719), 1, + anon_sym_CARET, + ACTIONS(5721), 1, + anon_sym_PIPE, + ACTIONS(5725), 1, + anon_sym_PERCENT, + ACTIONS(5727), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5737), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(4810), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5705), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5707), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5715), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4780), 18, - 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, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5729), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89347] = 15, - ACTIONS(4010), 1, + [90451] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5682), 1, + ACTIONS(5703), 1, anon_sym_LT, - STATE(1633), 1, + ACTIONS(5709), 1, + anon_sym_AMP_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5713), 1, + anon_sym_GT_GT, + ACTIONS(5717), 1, + anon_sym_AMP, + ACTIONS(5719), 1, + anon_sym_CARET, + ACTIONS(5721), 1, + anon_sym_PIPE, + ACTIONS(5725), 1, + anon_sym_PERCENT, + ACTIONS(5727), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5737), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4812), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5705), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5707), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5715), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4638), 16, - 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, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5729), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [89420] = 31, - ACTIONS(4010), 1, + [90556] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4792), 2, + ACTIONS(4817), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5628), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89525] = 11, - ACTIONS(4010), 1, + [90661] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5685), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, - STATE(1633), 1, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, + anon_sym_AMP_AMP, + ACTIONS(4733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4735), 1, + anon_sym_CARET, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4741), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 12, + ACTIONS(4678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4684), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4690), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4692), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4702), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4704), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5742), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4700), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90766] = 7, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(2361), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4182), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4185), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1692), 11, 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, + anon_sym_GT, + ACTIONS(1696), 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, + [90823] = 7, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4204), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4198), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4201), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4192), 11, + 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, anon_sym_GT, - ACTIONS(4787), 20, + ACTIONS(4196), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, @@ -212991,319 +214168,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89590] = 31, - ACTIONS(4010), 1, + [90880] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5339), 2, + sym_number, + sym_private_property_identifier, + STATE(3920), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90939] = 8, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5744), 2, + sym_number, + sym_private_property_identifier, + STATE(3385), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90998] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5361), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5375), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5377), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5379), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5395), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4767), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5628), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5746), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89695] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [91103] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5335), 2, + sym_number, + sym_private_property_identifier, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5626), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5632), 1, - anon_sym_AMP_AMP, - ACTIONS(5634), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, - anon_sym_GT_GT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5644), 1, - anon_sym_PIPE, - ACTIONS(5648), 1, - anon_sym_PERCENT, - ACTIONS(5650), 1, - anon_sym_STAR_STAR, - ACTIONS(5658), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91162] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4546), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(1740), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1744), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5630), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5638), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5646), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89800] = 31, - ACTIONS(4010), 1, + anon_sym_GT, + ACTIONS(1746), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_LT, - ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, - anon_sym_GT_GT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5644), 1, - anon_sym_PIPE, - ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [91213] = 6, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4921), 1, + anon_sym_of, + ACTIONS(5748), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4554), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(4192), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5630), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5638), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5646), 2, + anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + anon_sym_GT, + ACTIONS(4196), 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, - ACTIONS(5652), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89905] = 31, - ACTIONS(4010), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91268] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4558), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5412), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90010] = 5, - ACTIONS(3510), 1, - anon_sym_EQ, + [91373] = 7, + ACTIONS(4142), 1, + anon_sym_QMARK, + ACTIONS(4144), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3686), 3, + ACTIONS(4543), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4540), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3492), 13, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -213311,11 +214592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -213335,403 +214615,789 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90063] = 31, - ACTIONS(4010), 1, + [91430] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4769), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5628), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5751), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90168] = 31, - ACTIONS(4010), 1, + [91535] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91604] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(5626), 1, + ACTIONS(5361), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5375), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5377), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5379), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5395), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4771), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5628), 2, + ACTIONS(5219), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90273] = 31, - ACTIONS(4010), 1, + [91709] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5347), 2, + sym_number, + sym_private_property_identifier, + STATE(3932), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91768] = 4, + ACTIONS(4396), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4262), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4708), 1, - anon_sym_LT, - ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, - anon_sym_GT_GT, - ACTIONS(4722), 1, - anon_sym_AMP, - ACTIONS(4724), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4726), 1, - anon_sym_PIPE, - ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91819] = 6, + ACTIONS(4548), 1, + anon_sym_EQ, + ACTIONS(4883), 1, + anon_sym_of, + ACTIONS(5753), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(4546), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(4550), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91874] = 6, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(4991), 1, + anon_sym_of, + ACTIONS(5756), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1692), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5688), 2, + anon_sym_GT, + ACTIONS(1696), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4734), 3, + 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, - [90378] = 31, - ACTIONS(4010), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91929] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(4939), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(4941), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(4943), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(4947), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(4951), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(4955), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, + ACTIONS(4957), 1, anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(4959), 1, + anon_sym_LT, + ACTIONS(4967), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(4969), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4773), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5628), 2, + ACTIONS(4931), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(4937), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(4945), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(4963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(4965), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5045), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4961), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90483] = 31, - ACTIONS(4010), 1, + [92034] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5343), 2, + sym_number, + sym_private_property_identifier, + STATE(3792), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92093] = 31, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(5361), 1, anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(5375), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(5377), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(5379), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(5395), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5014), 2, + ACTIONS(5759), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5387), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92198] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92267] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5446), 2, + sym_number, + sym_private_property_identifier, + STATE(3845), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92326] = 7, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(4258), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4624), 2, anon_sym_RBRACE, - ACTIONS(4734), 3, + anon_sym_LBRACK, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3494), 11, + 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, + anon_sym_GT, + ACTIONS(3498), 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, - [90588] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92383] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5419), 2, + ACTIONS(5761), 2, sym_number, sym_private_property_identifier, - STATE(3882), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2351), 23, anon_sym_export, anon_sym_type, @@ -213756,61 +215422,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90647] = 19, - ACTIONS(231), 1, - anon_sym_STAR, + [92442] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2019), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5694), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5291), 2, + sym_number, + sym_private_property_identifier, + STATE(3803), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(5696), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(5698), 1, anon_sym_readonly, - ACTIONS(5704), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2808), 1, - sym_override_modifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92501] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5561), 2, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5692), 2, + ACTIONS(3906), 11, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5700), 2, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1967), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(5702), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3688), 3, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92552] = 7, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3524), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3514), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3494), 11, + 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, + anon_sym_GT, + ACTIONS(3498), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92609] = 7, + ACTIONS(3657), 1, + anon_sym_EQ, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4258), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 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(3498), 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, + [92666] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5517), 2, + sym_number, + sym_private_property_identifier, + STATE(3806), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5230), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5690), 14, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -213818,39 +215671,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90728] = 7, - ACTIONS(1696), 1, + [92725] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4208), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4206), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3494), 11, + 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, + anon_sym_GT, + ACTIONS(3498), 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, + [92778] = 6, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3683), 1, + anon_sym_in, + ACTIONS(3686), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3494), 12, + anon_sym_STAR, + 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, + anon_sym_GT, + ACTIONS(3498), 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, + [92833] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(2373), 1, + ACTIONS(4708), 1, + anon_sym_LBRACK, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92902] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4264), 2, + anon_sym_COMMA, anon_sym_extends, + ACTIONS(4260), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4262), 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, + [92953] = 12, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5763), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4829), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4831), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93020] = 15, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5766), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4716), 11, + anon_sym_STAR, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4720), 16, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [93093] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5670), 1, + anon_sym_AMP_AMP, + ACTIONS(5672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, + anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5698), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4126), 2, - anon_sym_RBRACE, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4729), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5666), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5668), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5692), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93198] = 11, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4129), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1694), 11, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5769), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4745), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(1698), 23, + ACTIONS(4747), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -213868,24 +216112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90785] = 8, - ACTIONS(1626), 1, + [93263] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, + ACTIONS(5533), 2, sym_number, sym_private_property_identifier, - STATE(3368), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213895,7 +216139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213919,38 +216163,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90844] = 6, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4850), 1, - anon_sym_of, - ACTIONS(5706), 1, - anon_sym_in, + [93322] = 12, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5772), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 12, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4829), 12, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(4148), 25, + ACTIONS(4831), 18, 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, @@ -213964,42 +216216,52 @@ 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, - [90899] = 6, - ACTIONS(3510), 1, - anon_sym_EQ, - ACTIONS(3681), 1, - anon_sym_in, - ACTIONS(3684), 1, - anon_sym_of, + [93389] = 15, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5775), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 12, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4716), 11, anon_sym_STAR, - anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(3496), 25, + ACTIONS(4720), 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_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -214013,149 +216275,145 @@ 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, - [90954] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5364), 2, - sym_number, - sym_private_property_identifier, - STATE(3798), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91013] = 32, - ACTIONS(4588), 1, + [93462] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5233), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5239), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5247), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5249), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5251), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5255), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5257), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5265), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - ACTIONS(5709), 1, - anon_sym_SEMI, - ACTIONS(5711), 1, - sym__automatic_semicolon, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4729), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5237), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5245), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5253), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5259), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91120] = 6, - ACTIONS(4604), 1, - anon_sym_EQ, - ACTIONS(4854), 1, - anon_sym_of, - ACTIONS(5713), 1, + [93567] = 11, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5778), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4745), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4747), 20, + 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, + [93632] = 4, + ACTIONS(4264), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 12, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -214166,12 +216424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4606), 25, + ACTIONS(4262), 26, 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, @@ -214192,30 +216451,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91175] = 8, + [93683] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5716), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3843), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3906), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -214243,34 +216507,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91234] = 13, + [93752] = 13, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(692), 1, - anon_sym_RBRACE, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -214299,220 +216563,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91303] = 31, - ACTIONS(4010), 1, + [93821] = 32, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4838), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4840), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4876), 1, anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(5361), 1, anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(5367), 1, anon_sym_AMP_AMP, - ACTIONS(4716), 1, + ACTIONS(5369), 1, anon_sym_PIPE_PIPE, - ACTIONS(4718), 1, + ACTIONS(5371), 1, anon_sym_GT_GT, - ACTIONS(4722), 1, + ACTIONS(5375), 1, anon_sym_AMP, - ACTIONS(4724), 1, + ACTIONS(5377), 1, anon_sym_CARET, - ACTIONS(4726), 1, + ACTIONS(5379), 1, anon_sym_PIPE, - ACTIONS(4730), 1, + ACTIONS(5383), 1, anon_sym_PERCENT, - ACTIONS(4732), 1, + ACTIONS(5385), 1, anon_sym_STAR_STAR, - ACTIONS(4740), 1, + ACTIONS(5393), 1, anon_sym_QMARK_QMARK, - ACTIONS(4742), 1, + ACTIONS(5395), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5781), 1, + anon_sym_SEMI, + ACTIONS(5783), 1, + sym__automatic_semicolon, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5365), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4720), 2, + ACTIONS(5373), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4728), 2, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4736), 2, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 2, + ACTIONS(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5718), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4734), 3, + ACTIONS(5387), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91408] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, + [93928] = 6, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5433), 2, - sym_number, - sym_private_property_identifier, - STATE(3836), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, + ACTIONS(4258), 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(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91467] = 31, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4798), 1, - anon_sym_as, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, - anon_sym_AMP_AMP, - ACTIONS(5241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, - anon_sym_CARET, - ACTIONS(5251), 1, - anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, - sym__ternary_qmark, - STATE(2019), 1, - sym_type_arguments, - STATE(2130), 1, - sym_arguments, - STATE(4524), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5237), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5245), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5263), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5720), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5259), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91572] = 7, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4156), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4150), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4153), 2, + ACTIONS(4627), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4144), 11, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -214523,12 +216662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4148), 23, + ACTIONS(3498), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -214548,157 +216687,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91629] = 8, + [93983] = 16, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5441), 2, - sym_number, - sym_private_property_identifier, - STATE(3753), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(2353), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(2355), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(2359), 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, - [91688] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + STATE(2801), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5449), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3828), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_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(2357), 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, - [91747] = 13, - ACTIONS(237), 1, + ACTIONS(5785), 2, anon_sym_COMMA, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - STATE(3816), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 23, + ACTIONS(2351), 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, @@ -214706,191 +216746,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91816] = 24, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [94058] = 6, + ACTIONS(4540), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 2, - anon_sym_BANG, + ACTIONS(4144), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4543), 3, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5586), 2, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 8, + ACTIONS(3498), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91907] = 15, - ACTIONS(4010), 1, + [94113] = 32, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4652), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5583), 1, + ACTIONS(4838), 1, + anon_sym_as, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(4876), 1, + anon_sym_satisfies, + ACTIONS(5361), 1, anon_sym_LT, - ACTIONS(5596), 1, + ACTIONS(5367), 1, + anon_sym_AMP_AMP, + ACTIONS(5369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5371), 1, + anon_sym_GT_GT, + ACTIONS(5375), 1, + anon_sym_AMP, + ACTIONS(5377), 1, + anon_sym_CARET, + ACTIONS(5379), 1, + anon_sym_PIPE, + ACTIONS(5383), 1, anon_sym_PERCENT, - STATE(1633), 1, + ACTIONS(5385), 1, + anon_sym_STAR_STAR, + ACTIONS(5393), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5395), 1, + sym__ternary_qmark, + ACTIONS(5788), 1, + anon_sym_SEMI, + ACTIONS(5790), 1, + sym__automatic_semicolon, + STATE(2049), 1, sym_type_arguments, - STATE(1655), 1, + STATE(2127), 1, sym_arguments, - STATE(4733), 1, + STATE(4851), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4874), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4762), 10, - anon_sym_BANG, + ACTIONS(5365), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5373), 2, 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_BQUOTE, - anon_sym_satisfies, - [91980] = 6, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(4859), 1, - anon_sym_of, - ACTIONS(5722), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1694), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5381), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1698), 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(5391), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5387), 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, - [92035] = 5, - ACTIONS(3550), 1, + [94220] = 5, + ACTIONS(3544), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 3, + ACTIONS(3621), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -214904,7 +216894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -214928,207 +216918,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92088] = 31, - ACTIONS(4010), 1, + [94273] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(4887), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_PERCENT, - ACTIONS(4893), 1, - anon_sym_STAR_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4903), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4867), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4873), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4881), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4889), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4899), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4901), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5718), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5751), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4897), 3, + anon_sym_RBRACK, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92193] = 4, + [94378] = 6, + ACTIONS(4530), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3814), 11, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4356), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_extends, + ACTIONS(4533), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4526), 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, - anon_sym_PIPE_RBRACE, - ACTIONS(1973), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92244] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5477), 2, - sym_number, - sym_private_property_identifier, - STATE(3898), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4528), 24, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92303] = 4, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94433] = 7, + ACTIONS(3645), 1, + anon_sym_EQ, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1730), 5, - sym__automatic_semicolon, + ACTIONS(4258), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1734), 13, + anon_sym_extends, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1736), 22, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -215146,109 +217089,109 @@ 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, - [92354] = 32, - ACTIONS(4588), 1, + [94490] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4590), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4798), 1, + ACTIONS(4688), 1, + anon_sym_GT_GT, + ACTIONS(4694), 1, + anon_sym_PERCENT, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4800), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4836), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5233), 1, - anon_sym_LT, - ACTIONS(5239), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(5241), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(5243), 1, - anon_sym_GT_GT, - ACTIONS(5247), 1, - anon_sym_AMP, - ACTIONS(5249), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(5251), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(5255), 1, - anon_sym_PERCENT, - ACTIONS(5257), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(5267), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - ACTIONS(5725), 1, - anon_sym_SEMI, - ACTIONS(5727), 1, - sym__automatic_semicolon, - STATE(2019), 1, + STATE(1566), 1, sym_type_arguments, - STATE(2130), 1, + STATE(1659), 1, sym_arguments, - STATE(4524), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4834), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5235), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5237), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5245), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5253), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5261), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5259), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5116), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92461] = 8, + [94595] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5405), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - STATE(3888), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2351), 23, anon_sym_export, anon_sym_type, @@ -215273,88 +217216,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92520] = 7, - ACTIONS(3642), 1, - anon_sym_EQ, - ACTIONS(4608), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4408), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 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(3496), 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, - [92577] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, + [94654] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5051), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5555), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3812), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2351), 23, anon_sym_export, anon_sym_type, @@ -215366,97 +217254,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_readonly, anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92646] = 8, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(5598), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4704), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4706), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92705] = 8, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94713] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5300), 2, + ACTIONS(5491), 2, sym_number, sym_private_property_identifier, - STATE(3780), 3, + STATE(3901), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2351), 23, anon_sym_export, anon_sym_type, @@ -215481,83 +217318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92764] = 7, - ACTIONS(3510), 1, - anon_sym_EQ, - ACTIONS(4408), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4608), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4611), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3492), 11, - 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, - anon_sym_GT, - ACTIONS(3496), 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, - [92821] = 8, + [94772] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5547), 2, + ACTIONS(5501), 2, sym_number, sym_private_property_identifier, - STATE(3851), 3, + STATE(3906), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2351), 23, anon_sym_export, anon_sym_type, @@ -215582,74 +217369,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92880] = 7, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3522), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3512), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3492), 11, - 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, - anon_sym_GT, - ACTIONS(3496), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92937] = 8, + [94831] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - STATE(3845), 3, + STATE(3910), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -215683,24 +217420,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92996] = 5, + [94890] = 5, + ACTIONS(3512), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 3, + ACTIONS(3688), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4182), 4, - anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3498), 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, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94943] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4396), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(3492), 11, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -215708,10 +217489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(4262), 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, @@ -215731,107 +217515,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93049] = 31, - ACTIONS(4010), 1, + [94994] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(5596), 1, + ACTIONS(4694), 1, anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(4696), 1, + anon_sym_STAR_STAR, + ACTIONS(4698), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4468), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5109), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4700), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93154] = 8, + [95099] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5376), 2, + ACTIONS(5619), 2, sym_number, sym_private_property_identifier, - STATE(3781), 3, + STATE(3800), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2351), 23, anon_sym_export, anon_sym_type, @@ -215856,359 +217640,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93213] = 31, - ACTIONS(4010), 1, + [95158] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, + ACTIONS(4688), 1, anon_sym_GT_GT, - ACTIONS(4883), 1, - anon_sym_AMP, - ACTIONS(4885), 1, - anon_sym_CARET, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4694), 1, anon_sym_PERCENT, - ACTIONS(4893), 1, + ACTIONS(4696), 1, anon_sym_STAR_STAR, - ACTIONS(4895), 1, + ACTIONS(4698), 1, anon_sym_LT, - ACTIONS(4903), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4905), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4852), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4867), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4881), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4889), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4901), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4897), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93318] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4714), 1, + anon_sym_AMP, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(4731), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(4733), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(4735), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(4737), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(4739), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(4741), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4744), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5586), 2, + ACTIONS(4678), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(4684), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(4690), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(4692), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(4702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(4704), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93423] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4756), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5586), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5612), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5614), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93528] = 7, - ACTIONS(4104), 1, - anon_sym_QMARK, - ACTIONS(4106), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4513), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4510), 3, + ACTIONS(5124), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3492), 11, - 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, - anon_sym_GT, - ACTIONS(3496), 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_RBRACE, + ACTIONS(4700), 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, - [93585] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [95263] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5586), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5612), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5614), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93690] = 4, - ACTIONS(3601), 1, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95332] = 6, + ACTIONS(4548), 1, anon_sym_EQ, + ACTIONS(4883), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(4761), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4546), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216222,13 +217795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 26, + ACTIONS(4550), 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, @@ -216249,35 +217819,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93741] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, + [95387] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5053), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5593), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -216305,107 +217870,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93810] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4504), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5586), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5612), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5614), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93915] = 8, + [95446] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5539), 2, + ACTIONS(5599), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + STATE(3796), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 9, + ACTIONS(3906), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2351), 23, anon_sym_export, anon_sym_type, @@ -216430,85 +217921,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93974] = 6, - ACTIONS(4608), 1, - anon_sym_LBRACK, + [95505] = 4, + ACTIONS(3626), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(3494), 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(3496), 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, - [94029] = 6, - ACTIONS(4510), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4106), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4513), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 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(3496), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3498), 26, 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, anon_sym_AMP_AMP, @@ -216528,55 +217968,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94084] = 23, - ACTIONS(1626), 1, + [95556] = 23, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(3828), 1, + ACTIONS(3808), 1, anon_sym_AT, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5729), 1, + ACTIONS(5792), 1, anon_sym_STAR, - ACTIONS(5731), 1, + ACTIONS(5794), 1, anon_sym_async, - ACTIONS(5735), 1, + ACTIONS(5798), 1, anon_sym_static, - ACTIONS(5737), 1, + ACTIONS(5800), 1, anon_sym_readonly, - ACTIONS(5741), 1, + ACTIONS(5804), 1, anon_sym_declare, - ACTIONS(5743), 1, + ACTIONS(5806), 1, anon_sym_abstract, - ACTIONS(5745), 1, + ACTIONS(5808), 1, anon_sym_accessor, - STATE(2699), 1, + STATE(2719), 1, sym_method_definition, - STATE(2732), 1, + STATE(2747), 1, sym_accessibility_modifier, - STATE(2761), 1, + STATE(2777), 1, aux_sym_export_statement_repeat1, - STATE(2802), 1, - sym_decorator, - STATE(2811), 1, + STATE(2813), 1, sym_override_modifier, + STATE(2818), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5733), 2, + ACTIONS(5796), 2, sym_number, sym_private_property_identifier, - ACTIONS(5739), 2, + ACTIONS(5802), 2, anon_sym_get, anon_sym_set, - ACTIONS(3720), 3, + ACTIONS(3724), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3045), 3, + STATE(3084), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -216594,324 +218034,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94173] = 18, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5586), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 14, - 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_BQUOTE, - anon_sym_satisfies, - [94252] = 6, - ACTIONS(4614), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4617), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4458), 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(4460), 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, - [94307] = 13, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5583), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4760), 17, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94376] = 25, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5586), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5612), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5614), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 8, - 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, - [94469] = 26, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5586), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5612), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5614), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94564] = 8, - ACTIONS(4010), 1, + [95645] = 8, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 12, + ACTIONS(4819), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216924,7 +218061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4706), 23, + ACTIONS(4821), 23, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -216948,415 +218085,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94623] = 31, - ACTIONS(4010), 1, + [95704] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4468), 2, + ACTIONS(4618), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94728] = 31, - ACTIONS(4010), 1, + [95809] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4744), 2, + ACTIONS(4823), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94833] = 31, - ACTIONS(4010), 1, + [95914] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4756), 2, + ACTIONS(4825), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94938] = 31, - ACTIONS(4010), 1, + [96019] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4827), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95043] = 31, - ACTIONS(4010), 1, + [96124] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4504), 2, + ACTIONS(4524), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95148] = 18, - ACTIONS(4010), 1, + [96229] = 18, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4762), 7, + ACTIONS(4682), 7, anon_sym_BANG, anon_sym_in, anon_sym_AMP, @@ -217364,7 +218501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 14, + ACTIONS(4680), 14, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217379,32 +218516,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95227] = 13, - ACTIONS(4010), 1, + [96308] = 13, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5783), 1, + ACTIONS(5846), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(4682), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217417,7 +218554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 17, + ACTIONS(4680), 17, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217435,66 +218572,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95296] = 25, - ACTIONS(4010), 1, + [96377] = 25, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(5747), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 8, + ACTIONS(4680), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217503,68 +218640,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95389] = 26, - ACTIONS(4010), 1, + [96470] = 26, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(5747), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 7, + ACTIONS(4680), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217572,40 +218709,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95484] = 16, - ACTIONS(4010), 1, + [96565] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5783), 1, + ACTIONS(5846), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4762), 8, + ACTIONS(4682), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -217614,7 +218751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 16, + ACTIONS(4680), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217631,62 +218768,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95559] = 22, - ACTIONS(4010), 1, + [96640] = 22, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 3, + ACTIONS(4682), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 9, + ACTIONS(4680), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217696,63 +218833,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95646] = 23, - ACTIONS(4010), 1, + [96727] = 23, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 2, + ACTIONS(4682), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5749), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 9, + ACTIONS(4680), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217762,65 +218899,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95735] = 24, - ACTIONS(4010), 1, + [96816] = 24, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 2, + ACTIONS(4682), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5749), 2, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 8, + ACTIONS(4680), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217829,37 +218966,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95826] = 15, - ACTIONS(4010), 1, + [96907] = 15, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5783), 1, + ACTIONS(5846), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4762), 10, + ACTIONS(4682), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -217870,7 +219007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 16, + ACTIONS(4680), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217887,38 +219024,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95899] = 16, - ACTIONS(4010), 1, + [96980] = 16, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5783), 1, + ACTIONS(5846), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 11, + ACTIONS(4682), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -217930,7 +219067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4760), 15, + ACTIONS(4680), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -217946,58 +219083,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [95974] = 20, - ACTIONS(4010), 1, + [97055] = 20, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4762), 5, + ACTIONS(4682), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4760), 11, + ACTIONS(4680), 11, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -218009,731 +219146,676 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96057] = 27, - ACTIONS(4010), 1, + [97138] = 27, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(5747), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 6, + ACTIONS(4680), 6, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96154] = 31, - ACTIONS(4010), 1, + [97235] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4522), 2, + ACTIONS(4558), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96259] = 31, - ACTIONS(4010), 1, + [97340] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4767), 2, + ACTIONS(4791), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96364] = 31, - ACTIONS(4010), 1, + [97445] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4546), 2, + ACTIONS(4590), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96469] = 31, - ACTIONS(4010), 1, + [97550] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4554), 2, + ACTIONS(4598), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96574] = 31, - ACTIONS(4010), 1, + [97655] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4558), 2, + ACTIONS(4602), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96679] = 31, - ACTIONS(4010), 1, + [97760] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4769), 2, + ACTIONS(4810), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96784] = 31, - ACTIONS(4010), 1, + [97865] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4771), 2, + ACTIONS(4812), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96889] = 31, - ACTIONS(4010), 1, + [97970] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4773), 2, + ACTIONS(4817), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5749), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5751), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5759), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96994] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, + [98075] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5411), 2, - sym_number, - sym_private_property_identifier, - STATE(3874), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97053] = 6, - ACTIONS(4604), 1, - anon_sym_EQ, - ACTIONS(4854), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4671), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4602), 13, + ACTIONS(1740), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1744), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218747,10 +219829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4606), 23, + ACTIONS(1746), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -218769,138 +219854,82 @@ 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, - [97108] = 16, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [98126] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5583), 1, - anon_sym_LT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5586), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5594), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 16, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97183] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1730), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1734), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(1736), 25, + ACTIONS(5623), 2, + sym_number, + sym_private_property_identifier, + STATE(3855), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 9, 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, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [97234] = 12, - ACTIONS(4010), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98185] = 12, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5786), 1, + ACTIONS(5849), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(4829), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218913,7 +219942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4780), 18, + ACTIONS(4831), 18, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -218932,36 +219961,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97301] = 15, - ACTIONS(4010), 1, + [98252] = 15, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5789), 1, + ACTIONS(5852), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4716), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -218973,7 +220002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4638), 16, + ACTIONS(4720), 16, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -218990,332 +220019,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [97374] = 31, - ACTIONS(4010), 1, + [98325] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5747), 1, + ACTIONS(5810), 1, anon_sym_LT, - ACTIONS(5753), 1, + ACTIONS(5816), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5820), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5824), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5826), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5828), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5832), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5842), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5844), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4792), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5749), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5751), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97479] = 11, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5792), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4785), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4787), 20, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4729), 2, 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, - [97544] = 22, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5586), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5612), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5614), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5600), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 9, - 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_BQUOTE, - anon_sym_satisfies, - [97631] = 23, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5606), 1, - anon_sym_AMP, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5586), 2, + ACTIONS(5812), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5814), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5838), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5836), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 9, - 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_BQUOTE, - anon_sym_satisfies, - [97720] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5211), 2, - sym_number, - sym_private_property_identifier, - STATE(3878), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97779] = 7, - ACTIONS(3658), 1, + [98430] = 7, + ACTIONS(3653), 1, anon_sym_EQ, - ACTIONS(4608), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 2, + ACTIONS(4258), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4611), 3, + ACTIONS(4627), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(3494), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219326,7 +220119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -219350,13 +220143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97836] = 4, - ACTIONS(3592), 1, + [98487] = 4, + ACTIONS(3594), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219370,7 +220163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 26, + ACTIONS(3498), 26, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -219397,219 +220190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [97887] = 7, - ACTIONS(3646), 1, - anon_sym_EQ, - ACTIONS(4608), 1, - anon_sym_LBRACK, + [98538] = 4, + ACTIONS(5041), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(5037), 17, 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(3496), 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, - [97944] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5330), 2, - sym_number, - sym_private_property_identifier, - STATE(3822), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98003] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3235), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3233), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [98051] = 9, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5797), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5795), 2, - sym_number, - sym_private_property_identifier, - STATE(3320), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98111] = 8, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(5799), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4704), 12, - anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -219618,12 +220207,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, anon_sym_GT, - ACTIONS(4706), 22, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(5039), 22, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -219639,389 +220234,139 @@ 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, - [98169] = 31, - ACTIONS(4010), 1, + [98589] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4468), 1, - anon_sym_BQUOTE, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5799), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5713), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5725), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, + ACTIONS(5727), 1, anon_sym_STAR_STAR, - ACTIONS(5831), 1, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5855), 1, + anon_sym_RBRACK, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98273] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4756), 1, - anon_sym_BQUOTE, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, - anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_CARET, - ACTIONS(5817), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [98693] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(4644), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5857), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5827), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98377] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4758), 1, - anon_sym_BQUOTE, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + anon_sym_in, anon_sym_GT_GT, - ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_CARET, - ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98481] = 31, - ACTIONS(4010), 1, + anon_sym_GT, + ACTIONS(5860), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4504), 1, - anon_sym_BQUOTE, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, - anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_CARET, - ACTIONS(5817), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5827), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98585] = 18, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5823), 1, anon_sym_STAR_STAR, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4760), 13, - 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98663] = 13, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [98743] = 6, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(4814), 1, + anon_sym_RBRACK, + ACTIONS(4921), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 12, + ACTIONS(4192), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220031,204 +220376,169 @@ 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_GT, - ACTIONS(4760), 16, + ACTIONS(4196), 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, - [98731] = 25, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [98797] = 6, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, - anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_CARET, - ACTIONS(5817), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(4627), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4258), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3494), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 7, + anon_sym_GT, + ACTIONS(3498), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98823] = 26, - ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, - anon_sym_BANG, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, - anon_sym_AMP, - ACTIONS(5815), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5817), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, anon_sym_STAR_STAR, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98851] = 6, + ACTIONS(4548), 1, + anon_sym_EQ, + ACTIONS(4761), 1, + anon_sym_RBRACK, + ACTIONS(4883), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(4546), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 6, + anon_sym_GT, + ACTIONS(4550), 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, - [98917] = 16, - ACTIONS(4010), 1, + [98905] = 13, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5865), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(4682), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, 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, anon_sym_GT, - ACTIONS(4760), 15, + ACTIONS(4680), 16, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -220236,6 +220546,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, @@ -220244,232 +220555,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [98991] = 22, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [98973] = 6, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(4807), 1, + anon_sym_RBRACK, + ACTIONS(4991), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(1692), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4762), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4760), 8, + anon_sym_GT, + ACTIONS(1696), 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, - [99077] = 23, - ACTIONS(4010), 1, + [99027] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5799), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5809), 1, + ACTIONS(5670), 1, + anon_sym_AMP_AMP, + ACTIONS(5672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5821), 1, + ACTIONS(5680), 1, + anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5698), 1, + sym__ternary_qmark, + ACTIONS(5868), 1, + anon_sym_COLON, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5801), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99165] = 24, - ACTIONS(4010), 1, + [99131] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5809), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4791), 1, + anon_sym_BQUOTE, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, + anon_sym_AMP_AMP, + ACTIONS(5876), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5878), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5821), 1, + ACTIONS(5886), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5902), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4762), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5801), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99255] = 15, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [99235] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, + ACTIONS(5904), 1, + anon_sym_readonly, + STATE(2857), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5744), 2, + sym_number, + sym_private_property_identifier, + STATE(3385), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 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, + [99299] = 9, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5906), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5744), 2, + sym_number, + sym_private_property_identifier, + STATE(3385), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99359] = 6, + ACTIONS(3994), 1, + anon_sym_LPAREN, + STATE(1667), 1, sym_arguments, - STATE(4733), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5908), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4240), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -220477,970 +220874,1514 @@ 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, anon_sym_GT, - ACTIONS(4760), 15, + ACTIONS(4242), 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_BQUOTE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [99327] = 16, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [99413] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(5912), 1, + anon_sym_readonly, + STATE(2827), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5910), 2, + sym_number, + sym_private_property_identifier, + STATE(3429), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 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, + [99477] = 9, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5916), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4762), 11, + ACTIONS(5914), 2, + sym_number, + sym_private_property_identifier, + STATE(3452), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99537] = 15, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, anon_sym_STAR, - anon_sym_in, - 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, - anon_sym_GT, - ACTIONS(4760), 14, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [99401] = 20, - ACTIONS(4010), 1, + STATE(2801), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [99609] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5922), 1, + anon_sym_readonly, + STATE(2855), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5920), 2, + sym_number, + sym_private_property_identifier, + STATE(3495), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 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, + [99673] = 9, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5926), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5924), 2, + sym_number, + sym_private_property_identifier, + STATE(3406), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99733] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5799), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5809), 1, + ACTIONS(5670), 1, + anon_sym_AMP_AMP, + ACTIONS(5672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(5821), 1, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, + anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5698), 1, + sym__ternary_qmark, + ACTIONS(5928), 1, + anon_sym_COLON, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4762), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4760), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99483] = 27, - ACTIONS(4010), 1, + ACTIONS(5690), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99837] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4590), 1, + anon_sym_BQUOTE, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4762), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5878), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5890), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - STATE(1633), 1, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5902), 1, + sym__ternary_qmark, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99579] = 31, - ACTIONS(4010), 1, + [99941] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4522), 1, + ACTIONS(4598), 1, anon_sym_BQUOTE, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5878), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5890), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99683] = 31, - ACTIONS(4010), 1, + [100045] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4767), 1, - anon_sym_BQUOTE, - ACTIONS(5799), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(5831), 1, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5930), 1, + anon_sym_COLON, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99787] = 31, - ACTIONS(4010), 1, + [100149] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4546), 1, + ACTIONS(4602), 1, anon_sym_BQUOTE, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5878), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5890), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99891] = 31, - ACTIONS(4010), 1, + [100253] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4554), 1, - anon_sym_BQUOTE, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5799), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(5831), 1, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5932), 1, + anon_sym_COLON, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99995] = 31, - ACTIONS(4010), 1, + [100357] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5936), 1, + anon_sym_readonly, + STATE(2860), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5934), 2, + sym_number, + sym_private_property_identifier, + STATE(3422), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 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, + [100421] = 12, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5785), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, - ACTIONS(4012), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 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, + [100487] = 9, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4558), 1, - anon_sym_BQUOTE, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(5940), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5938), 2, + sym_number, + sym_private_property_identifier, + STATE(3428), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5799), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100547] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5785), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, + anon_sym_QMARK, + ACTIONS(2351), 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, + [100615] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3233), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_CARET, - ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3231), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [100663] = 4, + ACTIONS(3634), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(3494), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(5811), 2, + ACTIONS(3498), 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, - ACTIONS(5819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5827), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5829), 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(5825), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100099] = 31, - ACTIONS(4010), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100713] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4769), 1, + ACTIONS(4810), 1, anon_sym_BQUOTE, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5878), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5890), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100203] = 31, - ACTIONS(4010), 1, + [100817] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1868), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5942), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(5945), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4771), 1, - anon_sym_BQUOTE, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, - anon_sym_AMP, - ACTIONS(5815), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5817), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5831), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100867] = 7, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(4258), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4627), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3494), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(3498), 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(5825), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100307] = 31, - ACTIONS(4010), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100923] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4773), 1, - anon_sym_BQUOTE, - ACTIONS(5799), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(5831), 1, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5948), 1, + anon_sym_COLON, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100411] = 32, - ACTIONS(4010), 1, + [101027] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5950), 1, + anon_sym_readonly, + STATE(2835), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4976), 2, + sym_number, + sym_private_property_identifier, + STATE(3387), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 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, + [101091] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5014), 1, - anon_sym_of, - ACTIONS(5747), 1, - anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_GT, - ACTIONS(5753), 1, + ACTIONS(4812), 1, + anon_sym_BQUOTE, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5755), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5757), 1, + ACTIONS(5878), 1, anon_sym_GT_GT, - ACTIONS(5761), 1, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5765), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5769), 1, + ACTIONS(5890), 1, anon_sym_PERCENT, - ACTIONS(5771), 1, - anon_sym_STAR_STAR, - ACTIONS(5779), 1, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5781), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - ACTIONS(5838), 1, - anon_sym_in, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5749), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5759), 2, + ACTIONS(5872), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5767), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5775), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5773), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100517] = 31, - ACTIONS(4010), 1, + [101195] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(4817), 1, + anon_sym_BQUOTE, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5878), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5890), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, - anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - ACTIONS(5841), 1, - anon_sym_RBRACK, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100621] = 6, - ACTIONS(4622), 1, - anon_sym_EQ, + [101299] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(5644), 1, + anon_sym_RBRACE, + STATE(5032), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1969), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221450,8 +222391,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, @@ -221464,71 +222403,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100675] = 6, - ACTIONS(4622), 1, - anon_sym_EQ, + [101367] = 26, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, + anon_sym_AMP_AMP, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5884), 1, + anon_sym_CARET, + ACTIONS(5886), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1975), 6, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1973), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100729] = 15, + anon_sym_SLASH, + ACTIONS(5872), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5896), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5898), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101461] = 14, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, - anon_sym_override, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, + ACTIONS(5084), 1, anon_sym_STAR, - STATE(2813), 1, - sym_override_modifier, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(5644), 1, + anon_sym_RBRACE, + STATE(5032), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -221538,19 +222497,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - ACTIONS(5843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3816), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 18, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221558,10 +222514,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, @@ -221569,221 +222527,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100801] = 6, - ACTIONS(4510), 1, + [101531] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, + anon_sym_LT, + ACTIONS(5670), 1, + anon_sym_AMP_AMP, + ACTIONS(5672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, + anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5698), 1, + sym__ternary_qmark, + ACTIONS(5952), 1, + anon_sym_COLON, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4106), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3492), 11, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5666), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5668), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3496), 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(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 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, - [100855] = 6, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4651), 1, - anon_sym_RBRACK, - ACTIONS(4850), 1, - anon_sym_COMMA, + [101635] = 16, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_LT, + ACTIONS(5890), 1, + anon_sym_PERCENT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_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_GT, - ACTIONS(4148), 23, + ACTIONS(4680), 15, 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, - [100909] = 6, - ACTIONS(4604), 1, - anon_sym_EQ, - ACTIONS(4671), 1, - anon_sym_RBRACK, - ACTIONS(4854), 1, - anon_sym_COMMA, + [101709] = 22, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5872), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4606), 23, + ACTIONS(5898), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4682), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5894), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 8, 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, - [100963] = 6, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(4775), 1, - anon_sym_RBRACK, - ACTIONS(4859), 1, - anon_sym_COMMA, + [101795] = 25, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_BANG, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5884), 1, + anon_sym_CARET, + ACTIONS(5886), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1694), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5872), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1698), 23, + ACTIONS(5898), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 7, 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, - [101017] = 3, + [101887] = 9, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4984), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3227), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + STATE(3387), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3225), 27, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -221803,62 +222840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [101065] = 6, - ACTIONS(3614), 1, - anon_sym_RBRACK, - ACTIONS(3622), 1, - anon_sym_COMMA, - ACTIONS(3693), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [101119] = 3, + [101947] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3239), 12, + ACTIONS(3241), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_LBRACK, @@ -221871,7 +222857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, anon_sym_QMARK, - ACTIONS(3237), 27, + ACTIONS(3239), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221899,68 +222885,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_accessor, anon_sym_extends, - [101167] = 6, - ACTIONS(4106), 1, - anon_sym_extends, + [101995] = 23, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4510), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4513), 2, - anon_sym_AMP, + ACTIONS(4682), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(3492), 11, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5872), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(5898), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 8, 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, - [101221] = 4, + [102083] = 6, + ACTIONS(4144), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4288), 13, + ACTIONS(4540), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4543), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3494), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -221968,12 +222974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4290), 24, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221993,129 +222998,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101271] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4322), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4290), 24, - sym__ternary_qmark, - anon_sym_as, + [102137] = 24, + ACTIONS(3994), 1, anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5884), 1, anon_sym_CARET, + ACTIONS(5890), 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, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101321] = 6, - ACTIONS(4608), 1, - anon_sym_LBRACK, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4611), 2, - anon_sym_AMP, + ACTIONS(4682), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4408), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3492), 11, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5872), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3496), 22, + ACTIONS(5898), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4680), 7, 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, - [101375] = 6, - ACTIONS(4614), 1, - anon_sym_LBRACK, + [102227] = 8, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4617), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4378), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4458), 11, + ACTIONS(4819), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(4460), 22, + ACTIONS(4821), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222135,249 +223114,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101429] = 13, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(5624), 1, - anon_sym_RBRACE, - STATE(4960), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, + [102285] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [101497] = 14, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4688), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(5624), 1, - anon_sym_RBRACE, - STATE(4960), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4618), 1, + anon_sym_BQUOTE, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, + anon_sym_AMP_AMP, + ACTIONS(5876), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5884), 1, + anon_sym_CARET, + ACTIONS(5886), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [101567] = 7, - ACTIONS(3494), 1, - anon_sym_EQ, - ACTIONS(4608), 1, - anon_sym_LBRACK, + ACTIONS(5900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5902), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4611), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3492), 10, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5872), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5896), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3496), 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_BANG_EQ, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 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, - [101623] = 31, - ACTIONS(4010), 1, + [102389] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, + ACTIONS(4823), 1, + anon_sym_BQUOTE, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - ACTIONS(5845), 1, - anon_sym_COLON, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101727] = 4, + [102493] = 15, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_LT, + ACTIONS(5890), 1, + anon_sym_PERCENT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4526), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5847), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4682), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -222385,92 +223298,132 @@ 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, anon_sym_GT, - ACTIONS(5850), 23, + ACTIONS(4680), 15, 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, - [101777] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1712), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5853), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(5856), 23, - sym__ternary_qmark, - anon_sym_as, + [102565] = 32, + ACTIONS(3994), 1, anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, + ACTIONS(3998), 1, anon_sym_DOT, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5116), 1, + anon_sym_of, + ACTIONS(5810), 1, + anon_sym_LT, + ACTIONS(5814), 1, + anon_sym_GT, + ACTIONS(5816), 1, anon_sym_AMP_AMP, + ACTIONS(5818), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5820), 1, + anon_sym_GT_GT, + ACTIONS(5824), 1, + anon_sym_AMP, + ACTIONS(5826), 1, anon_sym_CARET, + ACTIONS(5828), 1, + anon_sym_PIPE, + ACTIONS(5832), 1, anon_sym_PERCENT, + ACTIONS(5834), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5842), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5844), 1, + sym__ternary_qmark, + ACTIONS(5954), 1, + anon_sym_in, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5822), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5838), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5840), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5836), 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, + [102671] = 16, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, anon_sym_satisfies, - [101827] = 4, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4578), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5859), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4682), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -222478,43 +223431,33 @@ 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_GT, - ACTIONS(5862), 23, + ACTIONS(4680), 14, 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, - [101877] = 4, + [102745] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4582), 3, + ACTIONS(4562), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5865), 13, + ACTIONS(5957), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222528,7 +223471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5868), 23, + ACTIONS(5960), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222552,103 +223495,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101927] = 12, - ACTIONS(4010), 1, + [102795] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5871), 1, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5664), 1, anon_sym_LT, - STATE(1633), 1, + ACTIONS(5670), 1, + anon_sym_AMP_AMP, + ACTIONS(5672), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5680), 1, + anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5698), 1, + sym__ternary_qmark, + ACTIONS(5963), 1, + anon_sym_COLON, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4778), 12, + ACTIONS(5666), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5668), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5676), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4780), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5690), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101993] = 15, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, + [102899] = 6, + ACTIONS(4540), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_LT, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4634), 11, + ACTIONS(4543), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3494), 11, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(4638), 15, + ACTIONS(3498), 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, @@ -222662,969 +223612,733 @@ 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, - [102065] = 31, - ACTIONS(4010), 1, + anon_sym_satisfies, + [102953] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(4792), 1, - anon_sym_BQUOTE, - ACTIONS(5799), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5805), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5807), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, + ACTIONS(5674), 1, anon_sym_GT_GT, - ACTIONS(5813), 1, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5815), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5817), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5821), 1, + ACTIONS(5686), 1, anon_sym_PERCENT, - ACTIONS(5823), 1, + ACTIONS(5688), 1, anon_sym_STAR_STAR, - ACTIONS(5831), 1, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - STATE(1633), 1, + ACTIONS(5965), 1, + anon_sym_COLON, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5803), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5811), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5819), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5827), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102169] = 11, - ACTIONS(4010), 1, + [103057] = 20, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(5877), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, anon_sym_LT, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4785), 12, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5872), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5894), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4682), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4787), 19, + ACTIONS(4680), 10, 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, - [102233] = 12, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5665), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [102299] = 13, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5665), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 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, - [102367] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5880), 1, - anon_sym_readonly, - STATE(2847), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5668), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 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, - [102431] = 9, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5882), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5668), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102491] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5886), 1, - anon_sym_readonly, - STATE(2865), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5884), 2, - sym_number, - sym_private_property_identifier, - STATE(3446), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 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, - [102555] = 9, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5888), 2, - sym_number, - sym_private_property_identifier, - STATE(3449), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102615] = 31, - ACTIONS(4010), 1, + [103139] = 27, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4682), 1, anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, + ACTIONS(5890), 1, + anon_sym_PERCENT, ACTIONS(5892), 1, - anon_sym_COLON, - STATE(1633), 1, + anon_sym_LT, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102719] = 31, - ACTIONS(4010), 1, + ACTIONS(4680), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103235] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - ACTIONS(5894), 1, - anon_sym_COLON, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102823] = 31, - ACTIONS(4010), 1, + [103339] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4260), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(4262), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 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(5618), 1, - sym__ternary_qmark, - ACTIONS(5896), 1, - anon_sym_COLON, - STATE(1633), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103389] = 12, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5967), 1, + anon_sym_LT, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(4829), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + anon_sym_GT, + ACTIONS(4831), 17, + 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, - ACTIONS(5600), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102927] = 31, - ACTIONS(4010), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103455] = 15, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5970), 1, anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - ACTIONS(5898), 1, - anon_sym_COLON, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(4716), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, anon_sym_in, - anon_sym_GT, - ACTIONS(5592), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5594), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + anon_sym_GT, + ACTIONS(4720), 15, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [103031] = 31, - ACTIONS(4010), 1, + anon_sym_BQUOTE, + [103527] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5626), 1, - anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(4729), 1, + anon_sym_BQUOTE, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5634), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5636), 1, + ACTIONS(5878), 1, anon_sym_GT_GT, - ACTIONS(5640), 1, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5644), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5648), 1, + ACTIONS(5890), 1, anon_sym_PERCENT, - ACTIONS(5650), 1, - anon_sym_STAR_STAR, - ACTIONS(5658), 1, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5660), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - ACTIONS(5900), 1, - anon_sym_RBRACK, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5628), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5630), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5638), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5646), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5652), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103135] = 31, - ACTIONS(4010), 1, + [103631] = 11, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, - sym__ternary_qmark, - ACTIONS(5902), 1, - anon_sym_COLON, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4745), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, + anon_sym_GT, + ACTIONS(4747), 19, + 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, - ACTIONS(5586), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103695] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4396), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4260), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5588), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, - ACTIONS(5592), 2, + ACTIONS(4262), 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, - ACTIONS(5594), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103745] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1854), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5976), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + anon_sym_GT, + ACTIONS(5979), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [103239] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5904), 1, - anon_sym_readonly, - STATE(2814), 1, - sym_override_modifier, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103795] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, - sym_number, - sym_private_property_identifier, - STATE(3368), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4498), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 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, - [103303] = 9, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(5982), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(5985), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4848), 1, - anon_sym_abstract, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103845] = 6, + ACTIONS(4506), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, + ACTIONS(4058), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3368), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223648,94 +224362,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103363] = 31, - ACTIONS(4010), 1, + [103899] = 6, + ACTIONS(3601), 1, + anon_sym_COMMA, + ACTIONS(3621), 1, + anon_sym_RBRACK, + ACTIONS(3693), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3498), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4636), 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, + [103953] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5703), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5709), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5711), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5713), 1, + anon_sym_GT_GT, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5719), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5721), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5725), 1, + anon_sym_PERCENT, + ACTIONS(5727), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5737), 1, sym__ternary_qmark, - ACTIONS(5906), 1, - anon_sym_COLON, - STATE(1633), 1, + ACTIONS(5988), 1, + anon_sym_RBRACK, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5705), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5707), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5715), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5723), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5733), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5729), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103467] = 4, + [104057] = 6, + ACTIONS(4530), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1826), 3, + ACTIONS(4533), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4356), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5908), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4526), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -223743,11 +224508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5911), 23, + ACTIONS(4528), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -223767,15 +224531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103517] = 4, + [104111] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1836), 3, + ACTIONS(1802), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5914), 13, + ACTIONS(5990), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223789,7 +224553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5917), 23, + ACTIONS(5993), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223813,15 +224577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103567] = 4, + [104161] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4600), 3, + ACTIONS(1812), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5920), 13, + ACTIONS(5996), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223835,7 +224599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5923), 23, + ACTIONS(5999), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223859,238 +224623,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103617] = 4, - ACTIONS(3582), 1, - anon_sym_EQ, + [104211] = 31, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4825), 1, + anon_sym_BQUOTE, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, + anon_sym_AMP_AMP, + ACTIONS(5876), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5884), 1, + anon_sym_CARET, + ACTIONS(5886), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5902), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5872), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3496), 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, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 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, - [103667] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5928), 1, - anon_sym_readonly, - STATE(2868), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5926), 2, - sym_number, - sym_private_property_identifier, - STATE(3369), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 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, - [103731] = 31, - ACTIONS(4010), 1, + [104315] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, + ACTIONS(4827), 1, + anon_sym_BQUOTE, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, - anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5874), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5876), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5884), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5886), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5902), 1, sym__ternary_qmark, - ACTIONS(5930), 1, - anon_sym_COLON, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5870), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5880), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5894), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103835] = 9, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5934), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5932), 2, - sym_number, - sym_private_property_identifier, - STATE(3376), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103895] = 4, + [104419] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1872), 3, + ACTIONS(4632), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5936), 13, + ACTIONS(6002), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224104,7 +224791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5939), 23, + ACTIONS(6005), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224128,232 +224815,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103945] = 31, - ACTIONS(4010), 1, + [104469] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - ACTIONS(5942), 1, + ACTIONS(6008), 1, anon_sym_COLON, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104049] = 6, - ACTIONS(4010), 1, + [104573] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - STATE(1669), 1, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4524), 1, + anon_sym_BQUOTE, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, + anon_sym_AMP_AMP, + ACTIONS(5876), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5884), 1, + anon_sym_CARET, + ACTIONS(5886), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5902), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, sym_arguments, + STATE(4653), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4410), 13, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5872), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5896), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4412), 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, + ACTIONS(5898), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 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, - [104103] = 31, - ACTIONS(4010), 1, + [104677] = 31, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4636), 1, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, anon_sym_as, - ACTIONS(4640), 1, + ACTIONS(4722), 1, anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, + ACTIONS(4727), 1, anon_sym_satisfies, - ACTIONS(5581), 1, - anon_sym_STAR_STAR, - ACTIONS(5590), 1, - anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_PERCENT, - ACTIONS(5598), 1, + ACTIONS(5664), 1, anon_sym_LT, - ACTIONS(5602), 1, + ACTIONS(5670), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5672), 1, anon_sym_PIPE_PIPE, - ACTIONS(5606), 1, + ACTIONS(5674), 1, + anon_sym_GT_GT, + ACTIONS(5678), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5680), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5682), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5686), 1, + anon_sym_PERCENT, + ACTIONS(5688), 1, + anon_sym_STAR_STAR, + ACTIONS(5696), 1, anon_sym_QMARK_QMARK, - ACTIONS(5618), 1, + ACTIONS(5698), 1, sym__ternary_qmark, - ACTIONS(5946), 1, + ACTIONS(6010), 1, anon_sym_COLON, - STATE(1633), 1, + STATE(1566), 1, sym_type_arguments, - STATE(1655), 1, + STATE(1659), 1, sym_arguments, - STATE(4733), 1, + STATE(4653), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, + ACTIONS(4706), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5586), 2, + ACTIONS(5666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5588), 2, + ACTIONS(5668), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5592), 2, + ACTIONS(5676), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5594), 2, + ACTIONS(5684), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5612), 2, + ACTIONS(5692), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5614), 2, + ACTIONS(5694), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5600), 3, + ACTIONS(5690), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104207] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, + [104781] = 18, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(5950), 1, - anon_sym_readonly, - STATE(2862), 1, - sym_override_modifier, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4682), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4680), 13, + 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_BQUOTE, + anon_sym_satisfies, + [104859] = 6, + ACTIONS(4506), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 2, + ACTIONS(4058), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3459), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224362,12 +225127,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, @@ -224375,110 +225142,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104271] = 31, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4744), 1, - anon_sym_BQUOTE, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, - anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_CARET, - ACTIONS(5817), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, + [104913] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, + ACTIONS(3237), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5827), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104375] = 9, - ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(694), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1975), 6, - anon_sym_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1973), 23, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3235), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -224498,37 +225184,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104434] = 11, - ACTIONS(1550), 1, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [104961] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(6012), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3816), 3, + STATE(3492), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 21, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224538,6 +225222,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, @@ -224550,95 +225236,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104497] = 30, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, + [105018] = 8, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(4800), 1, - anon_sym_BANG, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, - anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_CARET, - ACTIONS(5817), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, - sym__ternary_qmark, - STATE(2130), 1, - sym_arguments, - STATE(2719), 1, - sym_type_arguments, - STATE(4524), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5827), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104598] = 8, - ACTIONS(1626), 1, + ACTIONS(6014), 2, + sym_number, + sym_private_property_identifier, + STATE(3462), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105075] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5952), 2, + ACTIONS(6016), 2, sym_number, sym_private_property_identifier, - STATE(3419), 3, + STATE(3378), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224670,33 +225334,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104655] = 9, - ACTIONS(237), 1, + [105132] = 11, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5303), 1, anon_sym_COMMA, - ACTIONS(667), 1, + ACTIONS(5644), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, + STATE(5032), 1, aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224720,33 +225386,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104714] = 9, + [105195] = 30, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4722), 1, + anon_sym_BANG, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, + anon_sym_AMP_AMP, + ACTIONS(5876), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5884), 1, + anon_sym_CARET, + ACTIONS(5886), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5902), 1, + sym__ternary_qmark, + STATE(1566), 1, + sym_type_arguments, + STATE(1659), 1, + sym_arguments, + STATE(4653), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5872), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5896), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5898), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105296] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(667), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1975), 6, + ACTIONS(1973), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1973), 23, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224770,33 +225507,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104773] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [105355] = 30, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(4718), 1, + anon_sym_as, + ACTIONS(4727), 1, + anon_sym_satisfies, + ACTIONS(4840), 1, + anon_sym_BANG, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5874), 1, + anon_sym_AMP_AMP, + ACTIONS(5876), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5878), 1, + anon_sym_GT_GT, + ACTIONS(5882), 1, + anon_sym_AMP, + ACTIONS(5884), 1, + anon_sym_CARET, + ACTIONS(5886), 1, + anon_sym_PIPE, + ACTIONS(5890), 1, + anon_sym_PERCENT, + ACTIONS(5892), 1, + anon_sym_LT, + ACTIONS(5900), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5902), 1, + sym__ternary_qmark, + STATE(2127), 1, + sym_arguments, + STATE(2726), 1, + sym_type_arguments, + STATE(4851), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(4706), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_SLASH, + ACTIONS(5872), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5880), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5896), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5898), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5894), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105456] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, + ACTIONS(1598), 1, anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6018), 2, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + STATE(3416), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224820,44 +225627,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104832] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [105513] = 12, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1973), 23, + ACTIONS(2351), 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, @@ -224870,33 +225680,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104891] = 9, + [105578] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(5053), 1, + ACTIONS(5126), 1, anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(1969), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224920,33 +225730,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104950] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5053), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [105637] = 8, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6020), 2, sym_number, sym_private_property_identifier, - ACTIONS(1973), 23, + STATE(3491), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224970,24 +225779,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105009] = 8, - ACTIONS(1626), 1, + [105694] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5954), 2, + ACTIONS(6022), 2, sym_number, sym_private_property_identifier, - STATE(3414), 3, + STATE(3499), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225019,33 +225828,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105066] = 9, + [105751] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(694), 1, + ACTIONS(667), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(1969), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225069,47 +225878,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105125] = 12, - ACTIONS(1550), 1, + [105810] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(6024), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3816), 3, + STATE(3367), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 20, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -225122,17 +225927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105190] = 6, - ACTIONS(3494), 1, + [105867] = 6, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_in, - ACTIONS(3684), 1, + ACTIONS(3686), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 12, + ACTIONS(3494), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_GT_GT, @@ -225145,7 +225950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -225169,34 +225974,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105243] = 10, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4622), 1, + [105920] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_LBRACK, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5665), 2, + ACTIONS(1967), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105979] = 9, + ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(667), 1, anon_sym_RBRACE, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 23, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225220,24 +226074,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105304] = 8, - ACTIONS(1626), 1, + [106038] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5956), 2, + ACTIONS(6026), 2, sym_number, sym_private_property_identifier, - STATE(3326), 3, + STATE(3442), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225269,32 +226123,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105361] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, + [106095] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 2, - sym_number, - sym_private_property_identifier, - STATE(3403), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225318,33 +226173,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105418] = 9, + [106154] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5051), 1, + ACTIONS(694), 1, anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(1969), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225368,83 +226223,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105477] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [106213] = 8, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6028), 2, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105536] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4622), 1, + STATE(3401), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1973), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225468,33 +226272,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105595] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5051), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [106270] = 8, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6030), 2, sym_number, sym_private_property_identifier, - ACTIONS(1973), 23, + STATE(3460), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225518,35 +226321,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105654] = 11, - ACTIONS(1550), 1, + [106327] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(5624), 1, - anon_sym_RBRACE, - STATE(4960), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(6032), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2351), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225570,32 +226370,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105717] = 8, - ACTIONS(1626), 1, + [106384] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5960), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3334), 3, + ACTIONS(5785), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225619,24 +226421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105774] = 8, - ACTIONS(1626), 1, + [106445] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 2, + ACTIONS(6034), 2, sym_number, sym_private_property_identifier, - STATE(3462), 3, + STATE(3424), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225668,32 +226470,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105831] = 8, - ACTIONS(1626), 1, + [106502] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5964), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3367), 3, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225703,8 +226510,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, @@ -225717,24 +226522,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105888] = 8, - ACTIONS(1626), 1, + [106565] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5966), 2, + ACTIONS(6036), 2, sym_number, sym_private_property_identifier, - STATE(3379), 3, + STATE(3486), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225766,24 +226571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105945] = 8, - ACTIONS(1626), 1, + [106622] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5968), 2, + ACTIONS(6038), 2, sym_number, sym_private_property_identifier, - STATE(3397), 3, + STATE(3413), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225815,32 +226620,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106002] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, + [106679] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 2, - sym_number, - sym_private_property_identifier, - STATE(3428), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225864,32 +226670,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106059] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, + [106738] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5972), 2, - sym_number, - sym_private_property_identifier, - STATE(3429), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225913,13 +226720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106116] = 4, - ACTIONS(4915), 1, + [106797] = 4, + ACTIONS(5041), 1, sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4911), 17, + ACTIONS(5037), 17, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -225937,7 +226744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(4913), 20, + ACTIONS(5039), 20, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -225958,32 +226765,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [106165] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, + [106846] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5974), 2, - sym_number, - sym_private_property_identifier, - STATE(3348), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226007,32 +226815,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106222] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, + [106905] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5976), 2, - sym_number, - sym_private_property_identifier, - STATE(3343), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226056,32 +226865,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106279] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, + [106964] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5978), 2, - sym_number, - sym_private_property_identifier, - STATE(3415), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3700), 23, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226105,13 +226915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106336] = 4, - ACTIONS(3642), 1, + [107023] = 4, + ACTIONS(3645), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226125,7 +226935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 24, + ACTIONS(3498), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -226150,13 +226960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106385] = 4, - ACTIONS(3658), 1, + [107072] = 4, + ACTIONS(3653), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226170,7 +226980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 24, + ACTIONS(3498), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -226195,133 +227005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106434] = 30, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4636), 1, - anon_sym_as, - ACTIONS(4640), 1, - anon_sym_BANG, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(4649), 1, - anon_sym_satisfies, - ACTIONS(5799), 1, - anon_sym_LT, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5809), 1, - anon_sym_GT_GT, - ACTIONS(5813), 1, - anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_CARET, - ACTIONS(5817), 1, - anon_sym_PIPE, - ACTIONS(5821), 1, - anon_sym_PERCENT, - ACTIONS(5823), 1, - anon_sym_STAR_STAR, - ACTIONS(5831), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5833), 1, - sym__ternary_qmark, - STATE(1633), 1, - sym_type_arguments, - STATE(1655), 1, - sym_arguments, - STATE(4733), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5803), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5811), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5819), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5827), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5829), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5825), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106535] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5980), 2, - sym_number, - sym_private_property_identifier, - STATE(3400), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3700), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106592] = 4, - ACTIONS(3646), 1, + [107121] = 4, + ACTIONS(3657), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226335,7 +227025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 24, + ACTIONS(3498), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -226360,24 +227050,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106641] = 8, - ACTIONS(1626), 1, + [107170] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5982), 2, + ACTIONS(6040), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3433), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -226409,25 +227099,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106698] = 4, - ACTIONS(5984), 1, - sym__automatic_semicolon, + [107227] = 8, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1878), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6042), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1880), 25, + STATE(3366), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226451,13 +227148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106746] = 3, + [107284] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6046), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226470,7 +227165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5986), 25, + ACTIONS(6044), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226496,11 +227191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106792] = 3, + [107330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(1764), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226513,7 +227208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(1766), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226539,12 +227234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106838] = 3, + [107376] = 4, + ACTIONS(6048), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 12, - sym__automatic_semicolon, + ACTIONS(1688), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226556,7 +227252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(1690), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226582,55 +227278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106884] = 4, - ACTIONS(3754), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [106932] = 3, + [107424] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(1786), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226643,7 +227295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(1788), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226669,11 +227321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106978] = 3, + [107470] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6052), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226686,7 +227338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5998), 25, + ACTIONS(6050), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226712,11 +227364,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107024] = 3, + [107516] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6004), 12, + ACTIONS(6056), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226729,7 +227381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6002), 25, + ACTIONS(6054), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226755,15 +227407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107070] = 3, + [107562] = 5, + ACTIONS(6062), 1, + anon_sym_SEMI, + ACTIONS(6065), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 12, - sym__automatic_semicolon, + ACTIONS(6060), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, @@ -226772,7 +227426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(6058), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226798,11 +227452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107116] = 3, + [107612] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6008), 12, + ACTIONS(6046), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226815,7 +227469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6006), 25, + ACTIONS(6044), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226841,11 +227495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107162] = 3, + [107658] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6069), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226858,7 +227512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5998), 25, + ACTIONS(6067), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226884,11 +227538,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107208] = 3, + [107704] = 4, + ACTIONS(3750), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3498), 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, + [107752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6012), 12, + ACTIONS(6046), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226901,7 +227599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6010), 25, + ACTIONS(6044), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226927,11 +227625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107254] = 3, + [107798] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6016), 12, + ACTIONS(6069), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226944,7 +227642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6014), 25, + ACTIONS(6067), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226970,11 +227668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107300] = 3, + [107844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 12, + ACTIONS(6056), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226987,7 +227685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(6054), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227013,11 +227711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107346] = 3, + [107890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6020), 12, + ACTIONS(6052), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227030,7 +227728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6018), 25, + ACTIONS(6050), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227056,11 +227754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107392] = 3, + [107936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, + ACTIONS(6056), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227073,7 +227771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(6054), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227099,11 +227797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107438] = 3, + [107982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6073), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227116,7 +227814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5998), 25, + ACTIONS(6071), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227142,11 +227840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107484] = 3, + [108028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(6077), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227159,7 +227857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6075), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227185,11 +227883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107530] = 3, + [108074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6081), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227202,7 +227900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5986), 25, + ACTIONS(6079), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227228,55 +227926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107576] = 4, - ACTIONS(3770), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [107624] = 3, + [108120] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(6085), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227289,7 +227943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6083), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227315,11 +227969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107670] = 3, + [108166] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, + ACTIONS(6089), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227332,7 +227986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(6087), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227358,11 +228012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107716] = 3, + [108212] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 12, + ACTIONS(6093), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227375,7 +228029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(6091), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227401,11 +228055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107762] = 3, + [108258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 12, + ACTIONS(6097), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227418,7 +228072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(6095), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227444,11 +228098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107808] = 3, + [108304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6004), 12, + ACTIONS(6056), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227461,7 +228115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6002), 25, + ACTIONS(6054), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227487,12 +228141,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107854] = 3, + [108350] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2160), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 12, + ACTIONS(1744), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(1746), 22, + 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_satisfies, + [108400] = 4, + ACTIONS(6099), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1764), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227504,7 +228204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6030), 25, + ACTIONS(1766), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227530,11 +228230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107900] = 3, + [108448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 12, + ACTIONS(6052), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227547,7 +228247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6030), 25, + ACTIONS(6050), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227573,143 +228273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107946] = 4, - ACTIONS(3782), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [107994] = 4, - ACTIONS(3792), 1, - anon_sym_EQ, + [108494] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [108042] = 4, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [108090] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1878), 12, + ACTIONS(6056), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227722,7 +228290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1880), 25, + ACTIONS(6054), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227748,11 +228316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108136] = 3, + [108540] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, + ACTIONS(6056), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227765,7 +228333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(6054), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227791,11 +228359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108182] = 3, + [108586] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 12, + ACTIONS(6052), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227808,7 +228376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6030), 25, + ACTIONS(6050), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227834,13 +228402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108228] = 4, - ACTIONS(6034), 1, - sym__automatic_semicolon, + [108632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1690), 11, + ACTIONS(6073), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227852,7 +228419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1692), 25, + ACTIONS(6071), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227878,76 +228445,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108276] = 4, - ACTIONS(3756), 1, - anon_sym_EQ, + [108678] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(6077), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3496), 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, - [108324] = 9, - ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2351), 23, + anon_sym_AT, + ACTIONS(6075), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227971,11 +228486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108382] = 3, + anon_sym_abstract, + anon_sym_accessor, + [108724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1716), 12, + ACTIONS(6046), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227988,7 +228505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1718), 25, + ACTIONS(6044), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228014,24 +228531,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108428] = 3, + [108770] = 9, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3814), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228055,57 +228580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [108474] = 4, - ACTIONS(3762), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [108522] = 3, + [108828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 12, + ACTIONS(6069), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228118,7 +228597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(6067), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228144,11 +228623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108568] = 3, + [108874] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6103), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228161,7 +228640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5998), 25, + ACTIONS(6101), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228187,55 +228666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108614] = 4, - ACTIONS(3778), 1, - anon_sym_EQ, + [108920] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_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_GT, - ACTIONS(3496), 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, - [108662] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5988), 12, + ACTIONS(6069), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228248,7 +228683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5986), 25, + ACTIONS(6067), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228274,11 +228709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108708] = 3, + [108966] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(6107), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228291,7 +228726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6105), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228317,11 +228752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108754] = 3, + [109012] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, + ACTIONS(6046), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228334,7 +228769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(6044), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228360,12 +228795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108800] = 3, + [109058] = 4, + ACTIONS(6109), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, - sym__automatic_semicolon, + ACTIONS(1764), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228377,7 +228813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(1766), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228403,15 +228839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108846] = 5, - ACTIONS(87), 1, - anon_sym_BQUOTE, - STATE(2228), 1, - sym_template_string, + [109106] = 4, + ACTIONS(3784), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1734), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228425,7 +228859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1736), 22, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228447,12 +228881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [108896] = 3, + [109154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6069), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228465,7 +228900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5986), 25, + ACTIONS(6067), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228491,11 +228926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108942] = 3, + [109200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6042), 12, + ACTIONS(6046), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228508,7 +228943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6040), 25, + ACTIONS(6044), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228534,13 +228969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108988] = 4, - ACTIONS(6044), 1, - sym__automatic_semicolon, + [109246] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1690), 11, + ACTIONS(6046), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228552,7 +228986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1692), 25, + ACTIONS(6044), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228578,13 +229012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109036] = 4, - ACTIONS(6046), 1, - sym__automatic_semicolon, + [109292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1878), 11, + ACTIONS(6081), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228596,7 +229029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1880), 25, + ACTIONS(6079), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228622,17 +229055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109084] = 5, - ACTIONS(6052), 1, - anon_sym_SEMI, - ACTIONS(6055), 1, - sym__automatic_semicolon, + [109338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 10, + ACTIONS(6073), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, @@ -228641,7 +229072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6048), 25, + ACTIONS(6071), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228667,17 +229098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109134] = 5, - ACTIONS(6061), 1, - anon_sym_SEMI, - ACTIONS(6064), 1, - sym__automatic_semicolon, + [109384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6059), 10, + ACTIONS(6073), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, @@ -228686,7 +229115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6057), 25, + ACTIONS(6071), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228712,11 +229141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109184] = 3, + [109430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, + ACTIONS(6073), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228729,7 +229158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(6071), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228755,11 +229184,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109230] = 3, + [109476] = 4, + ACTIONS(3780), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3498), 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, + [109524] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6107), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228772,7 +229245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(6105), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228798,54 +229271,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109276] = 3, + [109570] = 4, + ACTIONS(3776), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, - sym__automatic_semicolon, + ACTIONS(3494), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3498), 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, + [109618] = 4, + ACTIONS(3754), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6026), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109322] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3498), 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, + [109666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(6107), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228858,7 +229376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6105), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228884,11 +229402,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109368] = 3, + [109712] = 4, + ACTIONS(3760), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3498), 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, + [109760] = 4, + ACTIONS(3788), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_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_GT, + ACTIONS(3498), 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, + [109808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6107), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228901,7 +229507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5986), 25, + ACTIONS(6105), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228927,13 +229533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109414] = 4, - ACTIONS(3784), 1, + [109854] = 4, + ACTIONS(3748), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228947,7 +229553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228971,11 +229577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109462] = 3, + [109902] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 12, + ACTIONS(6056), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228988,7 +229594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6030), 25, + ACTIONS(6054), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229014,11 +229620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109508] = 3, + [109948] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 12, + ACTIONS(6052), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229031,7 +229637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(6050), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229057,13 +229663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109554] = 4, - ACTIONS(3744), 1, + [109994] = 4, + ACTIONS(3790), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229077,7 +229683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3496), 23, + ACTIONS(3498), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229101,15 +229707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109602] = 3, + [110042] = 5, + ACTIONS(6115), 1, + anon_sym_SEMI, + ACTIONS(6118), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6000), 12, - sym__automatic_semicolon, + ACTIONS(6113), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, @@ -229118,7 +229726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5998), 25, + ACTIONS(6111), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229144,29 +229752,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109648] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(6066), 1, - anon_sym_LPAREN, - ACTIONS(6068), 1, - anon_sym_DOT, - STATE(2810), 1, - sym_arguments, - STATE(5442), 1, - sym_type_arguments, + [110092] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 7, + ACTIONS(6107), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3570), 25, + ACTIONS(6105), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229192,11 +229795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109704] = 3, + [110138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 12, + ACTIONS(6122), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229209,7 +229812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6030), 25, + ACTIONS(6120), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229235,101 +229838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109750] = 6, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5665), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1971), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1969), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109801] = 6, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5665), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1973), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109852] = 3, + [110184] = 4, + ACTIONS(6124), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1878), 11, + ACTIONS(1688), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -229341,7 +229856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1880), 25, + ACTIONS(1690), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229367,65 +229882,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109897] = 3, + [110232] = 4, + ACTIONS(3770), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6072), 11, + ACTIONS(3494), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6070), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109942] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3498), 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, + [110280] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(6126), 1, + anon_sym_LPAREN, + ACTIONS(6128), 1, + anon_sym_DOT, + STATE(2810), 1, + sym_arguments, + STATE(5312), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6076), 11, + ACTIONS(3538), 7, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6074), 25, + ACTIONS(3536), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229451,11 +229974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109987] = 3, + [110336] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6080), 11, + ACTIONS(6132), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -229467,7 +229990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6078), 25, + ACTIONS(6130), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229493,15 +230016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110032] = 5, - ACTIONS(4588), 1, + [110381] = 5, + ACTIONS(4650), 1, anon_sym_LPAREN, - STATE(2220), 1, + STATE(2356), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4240), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229515,7 +230038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4412), 21, + ACTIONS(4242), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACK, @@ -229537,23 +230060,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [110081] = 3, + [110430] = 6, + ACTIONS(4506), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6080), 11, - anon_sym_STAR, + ACTIONS(5785), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1973), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6078), 25, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229577,25 +230105,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110126] = 3, + [110481] = 6, + ACTIONS(4506), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6084), 11, - anon_sym_STAR, + ACTIONS(5785), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1969), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6082), 25, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229619,54 +230150,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110171] = 14, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(2359), 1, - anon_sym_override, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(6086), 1, - anon_sym_STAR, - ACTIONS(6088), 1, - anon_sym_async, - ACTIONS(6092), 1, - anon_sym_readonly, - STATE(2807), 1, - sym_override_modifier, + [110532] = 7, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(5644), 1, + anon_sym_RBRACE, + STATE(5032), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6094), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3814), 3, + ACTIONS(3906), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3752), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2351), 18, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229674,23 +230196,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110238] = 3, + [110585] = 7, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(5644), 1, + anon_sym_RBRACE, + STATE(5032), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1716), 11, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1973), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1718), 25, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229714,31 +230242,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110283] = 7, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(5624), 1, - anon_sym_RBRACE, - STATE(4960), 1, - aux_sym_object_repeat1, + [110638] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(6136), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + anon_sym_AT, + ACTIONS(6134), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229762,29 +230282,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110336] = 7, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(5624), 1, - anon_sym_RBRACE, - STATE(4960), 1, - aux_sym_object_repeat1, + anon_sym_abstract, + anon_sym_accessor, + [110683] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1975), 6, + ACTIONS(6140), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1973), 23, + anon_sym_AT, + ACTIONS(6138), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229808,26 +230324,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110389] = 5, + anon_sym_abstract, + anon_sym_accessor, + [110728] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1971), 6, + ACTIONS(1786), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1969), 23, + anon_sym_AT, + ACTIONS(1788), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229851,35 +230366,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110437] = 11, + anon_sym_abstract, + anon_sym_accessor, + [110773] = 14, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6096), 1, + ACTIONS(6142), 1, anon_sym_STAR, - ACTIONS(6098), 1, + ACTIONS(6144), 1, anon_sym_async, + ACTIONS(6148), 1, + anon_sym_readonly, + STATE(2821), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6100), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - ACTIONS(6102), 2, + ACTIONS(6150), 2, anon_sym_get, anon_sym_set, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3872), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 20, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229887,12 +230410,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, @@ -229900,30 +230421,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110497] = 9, - ACTIONS(1550), 1, + [110840] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6154), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_EQ_GT, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6152), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [110885] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(1764), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3752), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2351), 23, + anon_sym_AT, + ACTIONS(1766), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229947,26 +230503,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110553] = 3, + anon_sym_abstract, + anon_sym_accessor, + [110930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3633), 9, + ACTIONS(6132), 11, anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3631), 26, + ACTIONS(6130), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -229988,29 +230547,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110597] = 10, + [110975] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6086), 1, + ACTIONS(6156), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6158), 2, sym_number, sym_private_property_identifier, - ACTIONS(6094), 2, + ACTIONS(6160), 2, anon_sym_get, anon_sym_set, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3752), 3, + STATE(3886), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230036,31 +230595,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110655] = 11, + [111033] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(6162), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6164), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6166), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3906), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3867), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 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, + [111091] = 11, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6086), 1, + ACTIONS(6162), 1, anon_sym_STAR, - ACTIONS(6088), 1, + ACTIONS(6168), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(6164), 2, sym_number, sym_private_property_identifier, - ACTIONS(6094), 2, + ACTIONS(6166), 2, anon_sym_get, anon_sym_set, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3752), 3, + STATE(3867), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230085,41 +230692,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110715] = 17, - ACTIONS(1626), 1, + [111151] = 17, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5076), 1, + ACTIONS(4774), 1, anon_sym_STAR, - ACTIONS(5078), 1, + ACTIONS(4778), 1, anon_sym_async, - ACTIONS(6108), 1, + ACTIONS(4803), 1, + anon_sym_accessor, + ACTIONS(6170), 1, anon_sym_static, - ACTIONS(6110), 1, + ACTIONS(6172), 1, anon_sym_readonly, - ACTIONS(6112), 1, + ACTIONS(6174), 1, anon_sym_declare, - ACTIONS(6114), 1, + ACTIONS(6176), 1, anon_sym_abstract, - ACTIONS(6116), 1, - anon_sym_accessor, - STATE(2798), 1, + STATE(2820), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5084), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6106), 2, + ACTIONS(4780), 2, sym_number, sym_private_property_identifier, - STATE(3069), 3, + ACTIONS(4784), 2, + anon_sym_get, + anon_sym_set, + STATE(3103), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230140,33 +230747,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110787] = 10, + [111223] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6096), 1, - anon_sym_STAR, + ACTIONS(6178), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6100), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - ACTIONS(6102), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3872), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 21, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111279] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1973), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1971), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230176,6 +230823,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, @@ -230188,29 +230837,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110845] = 10, + [111327] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, + ACTIONS(6142), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - ACTIONS(6122), 2, + ACTIONS(6150), 2, anon_sym_get, anon_sym_set, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3837), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230236,43 +230885,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110903] = 11, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(6118), 1, - anon_sym_STAR, - ACTIONS(6124), 1, - anon_sym_async, + [111385] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6120), 2, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1969), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6122), 2, + ACTIONS(1967), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(3814), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111433] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3616), 9, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_QMARK, - STATE(3837), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2351), 20, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3614), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -230285,41 +230967,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110963] = 17, - ACTIONS(1626), 1, + anon_sym_abstract, + anon_sym_accessor, + [111477] = 17, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4656), 1, + ACTIONS(5146), 1, anon_sym_STAR, - ACTIONS(4660), 1, + ACTIONS(5148), 1, anon_sym_async, - ACTIONS(4682), 1, - anon_sym_accessor, - ACTIONS(6126), 1, + ACTIONS(6182), 1, anon_sym_static, - ACTIONS(6128), 1, + ACTIONS(6184), 1, anon_sym_readonly, - ACTIONS(6130), 1, + ACTIONS(6186), 1, anon_sym_declare, - ACTIONS(6132), 1, + ACTIONS(6188), 1, anon_sym_abstract, - STATE(2793), 1, + ACTIONS(6190), 1, + anon_sym_accessor, + STATE(2819), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(5154), 2, anon_sym_get, anon_sym_set, - STATE(3082), 3, + ACTIONS(6180), 2, + sym_number, + sym_private_property_identifier, + STATE(3100), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230340,29 +231024,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111035] = 10, + [111549] = 10, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6134), 1, + ACTIONS(6192), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6194), 2, sym_number, sym_private_property_identifier, - ACTIONS(6138), 2, + ACTIONS(6196), 2, anon_sym_get, anon_sym_set, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3840), 3, + STATE(3835), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230388,37 +231072,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111093] = 5, + [111607] = 11, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(6192), 1, + anon_sym_STAR, + ACTIONS(6198), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3814), 4, + ACTIONS(6194), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6196), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3906), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1973), 23, + STATE(3835), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 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, @@ -230431,39 +231121,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111141] = 8, + [111667] = 11, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, + ACTIONS(6142), 1, + anon_sym_STAR, + ACTIONS(6144), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5507), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(6150), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3802), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(2351), 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, @@ -230476,24 +231170,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111194] = 8, + [111727] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5547), 2, + ACTIONS(6194), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3851), 3, + STATE(3835), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230521,24 +231215,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111247] = 8, + [111780] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(5473), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3752), 3, + STATE(3879), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230566,24 +231260,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111300] = 8, + [111833] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5539), 2, + ACTIONS(5555), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3890), 3, + STATE(3812), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230611,24 +231305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111353] = 8, + [111886] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5441), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3753), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230656,24 +231350,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111406] = 8, + [111939] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3845), 3, + STATE(3910), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230701,24 +231395,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111459] = 8, + [111992] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5620), 2, + ACTIONS(6200), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3787), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230746,24 +231440,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111512] = 8, + [112045] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5449), 2, + ACTIONS(6202), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3828), 3, + STATE(3790), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230791,28 +231485,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111565] = 8, - ACTIONS(1550), 1, + [112098] = 13, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(4978), 1, + anon_sym_static, + ACTIONS(4980), 1, + anon_sym_readonly, + ACTIONS(4982), 1, + anon_sym_abstract, + ACTIONS(4984), 1, + anon_sym_accessor, + STATE(2835), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5279), 2, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3863), 3, + STATE(3387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230820,15 +231522,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, @@ -230836,24 +231535,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111618] = 8, + [112161] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6100), 2, + ACTIONS(6164), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3872), 3, + STATE(3867), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230881,24 +231580,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111671] = 8, + [112214] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5364), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230926,24 +231625,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111724] = 8, + [112267] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6140), 2, + ACTIONS(5599), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3860), 3, + STATE(3796), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230971,24 +231670,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111777] = 8, + [112320] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5300), 2, + ACTIONS(5491), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3780), 3, + STATE(3901), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231016,24 +231715,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111830] = 8, + [112373] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6142), 2, + ACTIONS(5446), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3846), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231061,24 +231760,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111883] = 8, + [112426] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5330), 2, + ACTIONS(5343), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3822), 3, + STATE(3792), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231106,24 +231805,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111936] = 8, + [112479] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6204), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3837), 3, + STATE(3900), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231151,24 +231850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111989] = 8, + [112532] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5211), 2, + ACTIONS(5593), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3878), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231196,24 +231895,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112042] = 8, + [112585] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5405), 2, + ACTIONS(5353), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3888), 3, + STATE(3797), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231241,24 +231940,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112095] = 8, + [112638] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6144), 2, + ACTIONS(5291), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3880), 3, + STATE(3803), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231286,24 +231985,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112148] = 8, + [112691] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6146), 2, + ACTIONS(5517), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3841), 3, + STATE(3806), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231331,24 +232030,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112201] = 8, + [112744] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6206), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3840), 3, + STATE(3809), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231376,24 +232075,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112254] = 8, + [112797] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6148), 2, + ACTIONS(5761), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3897), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231421,67 +232120,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112307] = 6, - ACTIONS(6150), 1, - anon_sym_AT, - STATE(2761), 1, - aux_sym_export_statement_repeat1, - STATE(2802), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3626), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3624), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112356] = 8, + [112850] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5411), 2, + ACTIONS(6158), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3874), 3, + STATE(3886), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231509,24 +232165,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112409] = 8, + [112903] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6153), 2, + ACTIONS(5533), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3833), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231554,24 +232210,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112462] = 8, + [112956] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5433), 2, + ACTIONS(6208), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3836), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231599,24 +232255,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112515] = 8, + [113009] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5477), 2, + ACTIONS(6210), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3898), 3, + STATE(3919), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231644,32 +232300,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112568] = 13, - ACTIONS(1626), 1, + [113062] = 13, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6157), 1, + ACTIONS(6214), 1, anon_sym_static, - ACTIONS(6159), 1, + ACTIONS(6216), 1, anon_sym_readonly, - ACTIONS(6161), 1, + ACTIONS(6218), 1, anon_sym_abstract, - ACTIONS(6163), 1, + ACTIONS(6220), 1, anon_sym_accessor, - STATE(2872), 1, + STATE(2863), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6155), 2, + ACTIONS(6212), 2, sym_number, sym_private_property_identifier, - STATE(3458), 3, + STATE(3446), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231694,36 +232350,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112631] = 13, - ACTIONS(1626), 1, + [113125] = 6, + ACTIONS(6222), 1, + anon_sym_AT, + STATE(2777), 1, + aux_sym_export_statement_repeat1, + STATE(2818), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3584), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(4842), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(3582), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(4844), 1, anon_sym_readonly, - ACTIONS(4846), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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, - ACTIONS(4848), 1, anon_sym_accessor, - STATE(2814), 1, - sym_override_modifier, + [113174] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, + ACTIONS(5347), 2, sym_number, sym_private_property_identifier, - STATE(3368), 3, + ACTIONS(3906), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3932), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 20, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231731,12 +232422,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, @@ -231744,24 +232438,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112694] = 8, + [113227] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5419), 2, + ACTIONS(5335), 2, sym_number, sym_private_property_identifier, - ACTIONS(3814), 3, + ACTIONS(3906), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3882), 3, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231789,24 +232483,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112747] = 9, + [113280] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6165), 1, - anon_sym_RBRACE, - STATE(4692), 1, - sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6167), 2, + ACTIONS(5501), 2, sym_number, sym_private_property_identifier, - STATE(4151), 3, + ACTIONS(3906), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3906), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231834,97 +232528,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112801] = 22, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2381), 1, - anon_sym_type, - ACTIONS(2383), 1, - anon_sym_namespace, - ACTIONS(2385), 1, - anon_sym_import, - ACTIONS(2387), 1, - anon_sym_var, - ACTIONS(2389), 1, - anon_sym_let, - ACTIONS(2391), 1, - anon_sym_const, - ACTIONS(2393), 1, - anon_sym_class, - ACTIONS(2395), 1, - anon_sym_async, - ACTIONS(2397), 1, - anon_sym_function, - ACTIONS(2399), 1, - anon_sym_declare, - ACTIONS(2403), 1, - anon_sym_abstract, - ACTIONS(2407), 1, - anon_sym_interface, - ACTIONS(2409), 1, - anon_sym_enum, - ACTIONS(3816), 1, - anon_sym_module, - ACTIONS(6169), 1, - anon_sym_default, - STATE(1344), 1, - sym_decorator, - STATE(3925), 1, - sym_declaration, - STATE(4287), 1, - sym_internal_module, - STATE(4304), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4275), 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, - [112881] = 14, - ACTIONS(1626), 1, + [113333] = 14, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(4626), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(4630), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(6171), 1, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, + ACTIONS(6225), 1, anon_sym_static, - STATE(2805), 1, + STATE(2801), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(4632), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3144), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 17, + ACTIONS(2351), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231942,24 +232578,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112945] = 9, + [113397] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6173), 1, + ACTIONS(6227), 1, anon_sym_RBRACE, - STATE(4646), 1, + STATE(5357), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6175), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(3976), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231987,49 +232623,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112999] = 14, - ACTIONS(1626), 1, + [113451] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, - anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_STAR, - ACTIONS(5002), 1, - anon_sym_async, - ACTIONS(5006), 1, - anon_sym_readonly, - ACTIONS(6177), 1, - anon_sym_static, - STATE(2789), 1, - sym_override_modifier, + ACTIONS(6231), 1, + anon_sym_RBRACE, + STATE(5357), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5004), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - ACTIONS(5008), 2, - anon_sym_get, - anon_sym_set, - STATE(3147), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 17, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232037,31 +232668,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113063] = 12, - ACTIONS(1626), 1, + [113505] = 12, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6233), 1, anon_sym_STAR, - ACTIONS(6183), 1, + ACTIONS(6237), 1, anon_sym_readonly, - STATE(2796), 1, + STATE(2809), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6181), 2, + ACTIONS(6235), 2, sym_number, sym_private_property_identifier, - ACTIONS(6185), 2, + ACTIONS(6239), 2, anon_sym_get, anon_sym_set, - STATE(3044), 3, + STATE(3101), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232085,24 +232716,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113123] = 9, + [113565] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6187), 1, + ACTIONS(6241), 1, anon_sym_RBRACE, - STATE(5285), 1, + STATE(5357), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232130,24 +232761,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113177] = 9, + [113619] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6191), 1, + ACTIONS(6243), 1, anon_sym_RBRACE, - STATE(5285), 1, + STATE(5357), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232175,24 +232806,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113231] = 9, + [113673] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2381), 1, + anon_sym_type, + ACTIONS(2383), 1, + anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, + anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, + anon_sym_async, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, + anon_sym_declare, + ACTIONS(2401), 1, + anon_sym_module, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2405), 1, + anon_sym_global, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + STATE(1313), 1, + sym_decorator, + STATE(4188), 1, + sym_internal_module, + STATE(4324), 1, + aux_sym_export_statement_repeat1, + STATE(4407), 1, + sym_declaration, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4164), 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, + [113753] = 14, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4504), 1, + anon_sym_STAR, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_async, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(6245), 1, + anon_sym_static, + STATE(2816), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4512), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, + [113817] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6193), 1, + ACTIONS(6247), 1, anon_sym_RBRACE, - STATE(5285), 1, + STATE(5357), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232220,24 +232959,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113285] = 9, + [113871] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2161), 1, + anon_sym_namespace, + ACTIONS(2165), 1, + anon_sym_import, + ACTIONS(2167), 1, + anon_sym_var, + ACTIONS(2169), 1, + anon_sym_let, + ACTIONS(2171), 1, + anon_sym_const, + ACTIONS(2176), 1, + anon_sym_class, + ACTIONS(2178), 1, + anon_sym_async, + ACTIONS(2180), 1, + anon_sym_function, + ACTIONS(2185), 1, + anon_sym_declare, + ACTIONS(2189), 1, + anon_sym_abstract, + ACTIONS(2191), 1, + anon_sym_interface, + ACTIONS(2193), 1, + anon_sym_enum, + ACTIONS(2341), 1, + anon_sym_type, + ACTIONS(2343), 1, + anon_sym_module, + ACTIONS(2345), 1, + anon_sym_global, + STATE(868), 1, + sym_internal_module, + STATE(912), 1, + sym_declaration, + STATE(1313), 1, + sym_decorator, + STATE(4196), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(851), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [113951] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6195), 1, + ACTIONS(6249), 1, anon_sym_RBRACE, - STATE(5285), 1, + STATE(5357), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232265,24 +233062,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113339] = 9, + [114005] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6197), 1, + ACTIONS(6251), 1, anon_sym_RBRACE, - STATE(5285), 1, + STATE(4938), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6253), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + STATE(4307), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232310,28 +233107,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113393] = 9, - ACTIONS(1550), 1, + [114059] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2161), 1, + anon_sym_namespace, + ACTIONS(2165), 1, + anon_sym_import, + ACTIONS(2167), 1, + anon_sym_var, + ACTIONS(2169), 1, + anon_sym_let, + ACTIONS(2171), 1, + anon_sym_const, + ACTIONS(2176), 1, + anon_sym_class, + ACTIONS(2178), 1, + anon_sym_async, + ACTIONS(2180), 1, + anon_sym_function, + ACTIONS(2185), 1, + anon_sym_declare, + ACTIONS(2187), 1, + anon_sym_module, + ACTIONS(2189), 1, + anon_sym_abstract, + ACTIONS(2191), 1, + anon_sym_interface, + ACTIONS(2193), 1, + anon_sym_enum, + ACTIONS(2341), 1, + anon_sym_type, + ACTIONS(6255), 1, + anon_sym_default, + STATE(868), 1, + sym_internal_module, + STATE(907), 1, + sym_declaration, + STATE(1313), 1, + sym_decorator, + STATE(4196), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(851), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [114139] = 12, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(3726), 1, + anon_sym_override, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6199), 1, - anon_sym_RBRACE, - STATE(5285), 1, - sym_enum_assignment, + ACTIONS(5950), 1, + anon_sym_readonly, + ACTIONS(6257), 1, + anon_sym_STAR, + STATE(2804), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6259), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + ACTIONS(6261), 2, + anon_sym_get, + anon_sym_set, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232340,14 +233202,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, @@ -232355,43 +233213,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113447] = 12, - ACTIONS(1626), 1, + [114199] = 14, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(3722), 1, + ACTIONS(3726), 1, anon_sym_override, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5904), 1, - anon_sym_readonly, - ACTIONS(6201), 1, + ACTIONS(5060), 1, anon_sym_STAR, - STATE(2799), 1, + ACTIONS(5062), 1, + anon_sym_async, + ACTIONS(5066), 1, + anon_sym_readonly, + ACTIONS(6263), 1, + anon_sym_static, + STATE(2812), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6203), 2, + ACTIONS(5064), 2, sym_number, sym_private_property_identifier, - ACTIONS(6205), 2, + ACTIONS(5068), 2, anon_sym_get, anon_sym_set, - STATE(3065), 3, + STATE(3166), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 19, + ACTIONS(3700), 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, @@ -232403,24 +233263,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113507] = 9, + [114263] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6265), 1, anon_sym_RBRACE, - STATE(5285), 1, + STATE(4822), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6267), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + STATE(4212), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232448,24 +233308,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113561] = 9, + [114317] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6209), 1, + ACTIONS(6269), 1, anon_sym_RBRACE, - STATE(5285), 1, + STATE(5357), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232493,65 +233353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113615] = 22, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2137), 1, - anon_sym_namespace, - ACTIONS(2141), 1, - anon_sym_import, - ACTIONS(2143), 1, - anon_sym_var, - ACTIONS(2145), 1, - anon_sym_let, - ACTIONS(2147), 1, - anon_sym_const, - ACTIONS(2152), 1, - anon_sym_class, - ACTIONS(2154), 1, - anon_sym_async, - ACTIONS(2156), 1, - anon_sym_function, - ACTIONS(2161), 1, - anon_sym_declare, - ACTIONS(2165), 1, - anon_sym_abstract, - ACTIONS(2167), 1, - anon_sym_interface, - ACTIONS(2169), 1, - anon_sym_enum, - ACTIONS(2341), 1, - anon_sym_type, - ACTIONS(2343), 1, - anon_sym_module, - ACTIONS(2345), 1, - anon_sym_global, - STATE(824), 1, - sym_internal_module, - STATE(867), 1, - sym_declaration, - STATE(1344), 1, - sym_decorator, - STATE(4301), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(831), 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, - [113695] = 22, + [114371] = 22, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2381), 1, @@ -232574,28 +233376,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2401), 1, - anon_sym_module, ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2405), 1, - anon_sym_global, ACTIONS(2407), 1, anon_sym_interface, ACTIONS(2409), 1, anon_sym_enum, - STATE(1344), 1, + ACTIONS(3908), 1, + anon_sym_module, + ACTIONS(6271), 1, + anon_sym_default, + STATE(1313), 1, sym_decorator, - STATE(4287), 1, + STATE(4188), 1, sym_internal_module, - STATE(4304), 1, + STATE(4324), 1, aux_sym_export_statement_repeat1, - STATE(4310), 1, + STATE(4345), 1, sym_declaration, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4275), 13, + STATE(4164), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -232609,49 +233411,44 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113775] = 14, + [114451] = 9, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(2359), 1, - anon_sym_override, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_STAR, - ACTIONS(6211), 1, - anon_sym_static, - STATE(2813), 1, - sym_override_modifier, + ACTIONS(6273), 1, + anon_sym_RBRACE, + STATE(5357), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 17, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232659,109 +233456,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113839] = 22, + [114505] = 22, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2137), 1, - anon_sym_namespace, - ACTIONS(2141), 1, - anon_sym_import, - ACTIONS(2143), 1, - anon_sym_var, - ACTIONS(2145), 1, - anon_sym_let, - ACTIONS(2147), 1, - anon_sym_const, - ACTIONS(2152), 1, - anon_sym_class, - ACTIONS(2154), 1, - anon_sym_async, - ACTIONS(2156), 1, - anon_sym_function, ACTIONS(2161), 1, - anon_sym_declare, - ACTIONS(2163), 1, - anon_sym_module, - ACTIONS(2165), 1, - anon_sym_abstract, - ACTIONS(2167), 1, - anon_sym_interface, - ACTIONS(2169), 1, - anon_sym_enum, - ACTIONS(2341), 1, - anon_sym_type, - ACTIONS(6213), 1, - anon_sym_default, - STATE(824), 1, - sym_internal_module, - STATE(921), 1, - sym_declaration, - STATE(1344), 1, - sym_decorator, - STATE(4301), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(831), 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, - [113919] = 22, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2137), 1, anon_sym_namespace, - ACTIONS(2141), 1, + ACTIONS(2165), 1, anon_sym_import, - ACTIONS(2143), 1, + ACTIONS(2167), 1, anon_sym_var, - ACTIONS(2145), 1, + ACTIONS(2169), 1, anon_sym_let, - ACTIONS(2147), 1, + ACTIONS(2171), 1, anon_sym_const, - ACTIONS(2152), 1, + ACTIONS(2176), 1, anon_sym_class, - ACTIONS(2154), 1, + ACTIONS(2178), 1, anon_sym_async, - ACTIONS(2156), 1, + ACTIONS(2180), 1, anon_sym_function, - ACTIONS(2161), 1, + ACTIONS(2185), 1, anon_sym_declare, - ACTIONS(2163), 1, + ACTIONS(2187), 1, anon_sym_module, - ACTIONS(2165), 1, + ACTIONS(2189), 1, anon_sym_abstract, - ACTIONS(2167), 1, + ACTIONS(2191), 1, anon_sym_interface, - ACTIONS(2169), 1, + ACTIONS(2193), 1, anon_sym_enum, ACTIONS(2341), 1, anon_sym_type, - ACTIONS(6215), 1, + ACTIONS(6275), 1, anon_sym_default, - STATE(824), 1, + STATE(868), 1, sym_internal_module, - STATE(921), 1, + STATE(907), 1, sym_declaration, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, - STATE(4301), 1, + STATE(4196), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(831), 13, + STATE(851), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -232775,33 +233514,33 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113999] = 11, - ACTIONS(1626), 1, + [114585] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5103), 1, + ACTIONS(6142), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(6144), 1, anon_sym_async, - ACTIONS(5109), 1, + ACTIONS(6148), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5107), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - ACTIONS(5111), 2, + ACTIONS(6150), 2, anon_sym_get, anon_sym_set, - STATE(3135), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 19, + ACTIONS(2351), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232821,30 +233560,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114056] = 3, + [114642] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5060), 1, + anon_sym_STAR, + ACTIONS(5062), 1, + anon_sym_async, + ACTIONS(5066), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3652), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5064), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3650), 25, + ACTIONS(5068), 2, + anon_sym_get, + anon_sym_set, + STATE(3166), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, @@ -232857,31 +233606,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114097] = 11, - ACTIONS(1626), 1, + [114699] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5475), 1, + ACTIONS(5444), 1, anon_sym_STAR, - ACTIONS(5481), 1, + ACTIONS(5450), 1, anon_sym_async, - ACTIONS(6217), 1, + ACTIONS(6277), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5452), 2, sym_number, sym_private_property_identifier, - ACTIONS(5485), 2, + ACTIONS(5454), 2, anon_sym_get, anon_sym_set, - STATE(3074), 3, + STATE(3078), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232905,40 +233652,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114154] = 11, - ACTIONS(1626), 1, + [114756] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(4626), 1, - anon_sym_async, - ACTIONS(4630), 1, - anon_sym_readonly, + ACTIONS(6279), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 2, + ACTIONS(5761), 2, sym_number, sym_private_property_identifier, - ACTIONS(4632), 2, + ACTIONS(6281), 2, anon_sym_get, anon_sym_set, - STATE(3144), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 19, + ACTIONS(2351), 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, @@ -232951,29 +233696,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114211] = 11, - ACTIONS(1626), 1, + [114809] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5066), 1, + ACTIONS(5489), 1, anon_sym_STAR, - ACTIONS(5068), 1, + ACTIONS(5565), 1, anon_sym_async, - ACTIONS(5072), 1, + ACTIONS(6283), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5070), 2, + ACTIONS(5567), 2, sym_number, sym_private_property_identifier, - ACTIONS(5074), 2, + ACTIONS(5569), 2, anon_sym_get, anon_sym_set, - STATE(3064), 3, + STATE(3134), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232997,22 +233742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114268] = 8, + [114866] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - STATE(5285), 1, + STATE(5357), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(4446), 3, + STATE(4422), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233040,84 +233785,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114319] = 11, - ACTIONS(1626), 1, + [114917] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4656), 1, + ACTIONS(5191), 1, anon_sym_STAR, - ACTIONS(4660), 1, + ACTIONS(5193), 1, anon_sym_async, - ACTIONS(4664), 1, + ACTIONS(6287), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(5199), 2, anon_sym_get, anon_sym_set, - STATE(3082), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3700), 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, - [114376] = 9, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(6201), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5716), 2, + ACTIONS(6285), 2, sym_number, sym_private_property_identifier, - ACTIONS(6219), 2, - anon_sym_get, - anon_sym_set, - STATE(3843), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 21, + ACTIONS(3700), 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, @@ -233130,29 +233831,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114429] = 11, - ACTIONS(1626), 1, + [114974] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5271), 1, + ACTIONS(4504), 1, anon_sym_STAR, - ACTIONS(5273), 1, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, anon_sym_async, - ACTIONS(6223), 1, + ACTIONS(4514), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5277), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6221), 2, + ACTIONS(4512), 2, sym_number, sym_private_property_identifier, - STATE(3058), 3, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(3175), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233176,40 +233877,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114486] = 11, - ACTIONS(1626), 1, + [115031] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5137), 1, + ACTIONS(6257), 1, anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_async, - ACTIONS(6227), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5145), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6225), 2, + ACTIONS(5646), 2, sym_number, sym_private_property_identifier, - STATE(3043), 3, + ACTIONS(6289), 2, + anon_sym_get, + anon_sym_set, + STATE(3907), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 19, + ACTIONS(2351), 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, @@ -233222,29 +233921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114543] = 9, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - anon_sym_LBRACK, - ACTIONS(6229), 1, - anon_sym_STAR, + [115084] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5620), 2, + ACTIONS(3640), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6231), 2, - anon_sym_get, - anon_sym_set, - STATE(3787), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2351), 21, + anon_sym_AT, + ACTIONS(3638), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233254,6 +233943,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, @@ -233266,29 +233957,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114596] = 11, - ACTIONS(1626), 1, + anon_sym_abstract, + anon_sym_accessor, + [115125] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(4774), 1, anon_sym_STAR, - ACTIONS(5002), 1, + ACTIONS(4778), 1, anon_sym_async, - ACTIONS(5006), 1, + ACTIONS(4782), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5004), 2, + ACTIONS(4780), 2, sym_number, sym_private_property_identifier, - ACTIONS(5008), 2, + ACTIONS(4784), 2, anon_sym_get, anon_sym_set, - STATE(3147), 3, + STATE(3103), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233312,29 +234005,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114653] = 11, - ACTIONS(1626), 1, + [115182] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5137), 1, + ACTIONS(5164), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5166), 1, anon_sym_async, - ACTIONS(6235), 1, + ACTIONS(5170), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5145), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6233), 2, + ACTIONS(5168), 2, sym_number, sym_private_property_identifier, - STATE(3080), 3, + ACTIONS(5172), 2, + anon_sym_get, + anon_sym_set, + STATE(3139), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233358,30 +234051,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114710] = 3, + [115239] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5146), 1, + anon_sym_STAR, + ACTIONS(5148), 1, + anon_sym_async, + ACTIONS(6293), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3675), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5154), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6291), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3673), 25, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, @@ -233394,35 +234097,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114751] = 11, - ACTIONS(1626), 1, + [115296] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5505), 1, - anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(6237), 1, + ACTIONS(2355), 1, anon_sym_readonly, + ACTIONS(4708), 1, + anon_sym_LBRACK, + ACTIONS(5084), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5513), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5515), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3098), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 19, + ACTIONS(2351), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233442,11 +234143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114808] = 3, + [115353] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3667), 7, + ACTIONS(3671), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -233454,7 +234155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3665), 25, + ACTIONS(3669), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233480,29 +234181,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114849] = 11, - ACTIONS(1626), 1, + [115394] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5151), 1, + ACTIONS(5205), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5207), 1, anon_sym_async, - ACTIONS(5157), 1, + ACTIONS(5211), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5155), 2, + ACTIONS(5209), 2, sym_number, sym_private_property_identifier, - ACTIONS(5159), 2, + ACTIONS(5213), 2, anon_sym_get, anon_sym_set, - STATE(3097), 3, + STATE(3188), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233526,11 +234227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114906] = 3, + [115451] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 7, + ACTIONS(3651), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -233538,7 +234239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3570), 25, + ACTIONS(3649), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233564,33 +234265,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114947] = 11, - ACTIONS(1550), 1, + [115492] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3667), 7, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3665), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [115533] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6096), 1, + ACTIONS(5191), 1, anon_sym_STAR, - ACTIONS(6098), 1, + ACTIONS(5193), 1, anon_sym_async, - ACTIONS(6239), 1, + ACTIONS(6297), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6100), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6102), 2, + ACTIONS(5199), 2, anon_sym_get, anon_sym_set, - STATE(3872), 3, + ACTIONS(6295), 2, + sym_number, + sym_private_property_identifier, + STATE(3092), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233610,33 +234349,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115004] = 11, - ACTIONS(1550), 1, + [115590] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(2353), 1, - anon_sym_async, - ACTIONS(2355), 1, - anon_sym_readonly, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(4990), 1, + ACTIONS(5136), 1, anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5142), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5140), 2, sym_number, sym_private_property_identifier, - ACTIONS(2357), 2, + ACTIONS(5144), 2, anon_sym_get, anon_sym_set, - STATE(3816), 3, + STATE(3094), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233656,33 +234395,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115061] = 11, - ACTIONS(1626), 1, + [115647] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5393), 1, + ACTIONS(6162), 1, anon_sym_STAR, - ACTIONS(5395), 1, + ACTIONS(6168), 1, anon_sym_async, - ACTIONS(6241), 1, + ACTIONS(6299), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5397), 2, + ACTIONS(6164), 2, sym_number, sym_private_property_identifier, - ACTIONS(5399), 2, + ACTIONS(6166), 2, anon_sym_get, anon_sym_set, - STATE(3143), 3, + STATE(3867), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 19, + ACTIONS(2351), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233702,19 +234441,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115118] = 3, + [115704] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3656), 7, + ACTIONS(3906), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1969), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3654), 25, + ACTIONS(1967), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233738,42 +234480,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [115159] = 11, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, - anon_sym_LBRACK, - ACTIONS(5076), 1, - anon_sym_STAR, - ACTIONS(5078), 1, - anon_sym_async, - ACTIONS(6245), 1, - anon_sym_readonly, + [115747] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5084), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6243), 2, + ACTIONS(3538), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3070), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3700), 19, + anon_sym_AT, + ACTIONS(3536), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -233786,33 +234516,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115216] = 4, + anon_sym_abstract, + anon_sym_accessor, + [115788] = 11, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5351), 1, + anon_sym_STAR, + ACTIONS(5543), 1, + anon_sym_async, + ACTIONS(6303), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1975), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5547), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6301), 2, sym_number, sym_private_property_identifier, - ACTIONS(1973), 23, + STATE(3106), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 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, @@ -233825,33 +234564,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115259] = 11, - ACTIONS(1550), 1, + [115845] = 11, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6086), 1, + ACTIONS(5471), 1, anon_sym_STAR, - ACTIONS(6088), 1, + ACTIONS(5477), 1, anon_sym_async, - ACTIONS(6092), 1, + ACTIONS(6305), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(5479), 2, sym_number, sym_private_property_identifier, - ACTIONS(6094), 2, + ACTIONS(5481), 2, anon_sym_get, anon_sym_set, - STATE(3752), 3, + STATE(3167), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233871,22 +234610,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115316] = 8, - ACTIONS(1626), 1, + [115902] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(5880), 1, + ACTIONS(6309), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5668), 2, + ACTIONS(6307), 2, sym_number, sym_private_property_identifier, - STATE(3399), 3, + STATE(3456), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233913,22 +234652,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115366] = 8, - ACTIONS(1626), 1, + [115952] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, + ACTIONS(6313), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6247), 2, + ACTIONS(6311), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3388), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233955,24 +234694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115416] = 7, - ACTIONS(1626), 1, + [116002] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6251), 2, + ACTIONS(6204), 2, sym_number, sym_private_property_identifier, - STATE(3321), 3, + STATE(3900), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233996,20 +234735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115464] = 7, + [116050] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6090), 2, + ACTIONS(5619), 2, sym_number, sym_private_property_identifier, - STATE(3752), 3, + STATE(3800), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234037,20 +234776,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115512] = 7, + [116098] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5507), 2, + ACTIONS(6164), 2, sym_number, sym_private_property_identifier, - STATE(3802), 3, + STATE(3867), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234078,24 +234817,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115560] = 7, - ACTIONS(1550), 1, + [116146] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(6315), 2, sym_number, sym_private_property_identifier, - STATE(3845), 3, + STATE(3398), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234119,24 +234858,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115608] = 7, - ACTIONS(1550), 1, + [116194] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5364), 2, + ACTIONS(4795), 2, sym_number, sym_private_property_identifier, - STATE(3798), 3, + STATE(3397), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234160,24 +234899,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115656] = 7, - ACTIONS(1626), 1, + [116242] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5668), 2, + ACTIONS(5347), 2, sym_number, sym_private_property_identifier, - STATE(3399), 3, + STATE(3932), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234201,20 +234940,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115704] = 7, + [116290] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5419), 2, + ACTIONS(5446), 2, sym_number, sym_private_property_identifier, - STATE(3882), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234242,24 +234981,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115752] = 7, - ACTIONS(1550), 1, + [116338] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(5904), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5620), 2, + ACTIONS(5744), 2, sym_number, sym_private_property_identifier, - STATE(3787), 3, + STATE(3385), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234268,7 +235009,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, @@ -234283,20 +235023,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115800] = 7, - ACTIONS(1626), 1, + [116388] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4674), 2, + ACTIONS(5744), 2, sym_number, sym_private_property_identifier, - STATE(3360), 3, + STATE(3385), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234324,20 +235064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115848] = 7, + [116436] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5477), 2, + ACTIONS(5761), 2, sym_number, sym_private_property_identifier, - STATE(3898), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234365,20 +235105,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115896] = 7, - ACTIONS(1626), 1, + [116484] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, + ACTIONS(6317), 2, sym_number, sym_private_property_identifier, - STATE(3368), 3, + STATE(3405), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234406,24 +235146,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115944] = 7, - ACTIONS(1550), 1, + [116532] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(6321), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6136), 2, + ACTIONS(6319), 2, sym_number, sym_private_property_identifier, - STATE(3840), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234432,7 +235174,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, @@ -234447,24 +235188,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115992] = 7, - ACTIONS(1550), 1, + [116582] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5433), 2, + ACTIONS(6323), 2, sym_number, sym_private_property_identifier, - STATE(3836), 3, + STATE(3440), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234488,26 +235229,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116040] = 8, - ACTIONS(1626), 1, + [116630] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(5904), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4840), 2, + ACTIONS(6208), 2, sym_number, sym_private_property_identifier, - STATE(3368), 3, + STATE(3832), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234516,6 +235255,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, @@ -234530,24 +235270,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116090] = 7, - ACTIONS(1550), 1, + [116678] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(6327), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5716), 2, + ACTIONS(6325), 2, sym_number, sym_private_property_identifier, - STATE(3843), 3, + STATE(3364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234556,7 +235298,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, @@ -234571,24 +235312,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116138] = 7, - ACTIONS(1550), 1, + [116728] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5441), 2, + ACTIONS(6329), 2, sym_number, sym_private_property_identifier, - STATE(3753), 3, + STATE(3365), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234612,20 +235353,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116186] = 7, + [116776] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5292), 2, + ACTIONS(4710), 2, sym_number, sym_private_property_identifier, - STATE(3853), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234653,24 +235394,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116234] = 7, - ACTIONS(1626), 1, + [116824] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6253), 2, + ACTIONS(5473), 2, sym_number, sym_private_property_identifier, - STATE(3442), 3, + STATE(3879), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234694,20 +235435,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116282] = 7, + [116872] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4690), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234735,20 +235476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116330] = 7, + [116920] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5449), 2, + ACTIONS(5491), 2, sym_number, sym_private_property_identifier, - STATE(3828), 3, + STATE(3901), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234776,20 +235517,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116378] = 7, + [116968] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5539), 2, + ACTIONS(5501), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + STATE(3906), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234817,20 +235558,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116426] = 7, + [117016] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5330), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - STATE(3822), 3, + STATE(3910), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234858,20 +235599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116474] = 7, + [117064] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6140), 2, + ACTIONS(6200), 2, sym_number, sym_private_property_identifier, - STATE(3860), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234899,20 +235640,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116522] = 7, + [117112] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5547), 2, + ACTIONS(6194), 2, sym_number, sym_private_property_identifier, - STATE(3851), 3, + STATE(3835), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234940,20 +235681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116570] = 7, + [117160] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6100), 2, + ACTIONS(6158), 2, sym_number, sym_private_property_identifier, - STATE(3872), 3, + STATE(3886), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234981,20 +235722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116618] = 7, + [117208] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5211), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3878), 3, + STATE(3814), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235022,20 +235763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116666] = 7, + [117256] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6153), 2, + ACTIONS(5533), 2, sym_number, sym_private_property_identifier, - STATE(3833), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235063,22 +235804,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116714] = 8, - ACTIONS(1626), 1, + [117304] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6257), 1, + ACTIONS(6333), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6255), 2, + ACTIONS(6331), 2, sym_number, sym_private_property_identifier, - STATE(3451), 3, + STATE(3465), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235105,24 +235846,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116764] = 7, - ACTIONS(1550), 1, + [117354] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5405), 2, + ACTIONS(6335), 2, sym_number, sym_private_property_identifier, - STATE(3888), 3, + STATE(3485), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235146,24 +235887,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116812] = 7, - ACTIONS(1550), 1, + [117402] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(6337), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6148), 2, + ACTIONS(6034), 2, sym_number, sym_private_property_identifier, - STATE(3897), 3, + STATE(3424), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235172,7 +235915,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, @@ -235187,24 +235929,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116860] = 7, - ACTIONS(1550), 1, + [117452] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6034), 2, sym_number, sym_private_property_identifier, - STATE(3837), 3, + STATE(3424), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235228,26 +235970,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116908] = 8, - ACTIONS(1626), 1, + [117500] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6259), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5982), 2, + ACTIONS(6210), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3919), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235256,6 +235996,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, @@ -235270,24 +236011,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116958] = 7, - ACTIONS(1626), 1, + [117548] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(6341), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5982), 2, + ACTIONS(6339), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3496), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235296,7 +236039,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, @@ -235311,20 +236053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117006] = 7, - ACTIONS(1626), 1, + [117598] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6261), 2, + ACTIONS(6343), 2, sym_number, sym_private_property_identifier, - STATE(3452), 3, + STATE(3497), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235352,26 +236094,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117054] = 8, - ACTIONS(1626), 1, + [117646] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6263), 2, + ACTIONS(6345), 2, sym_number, sym_private_property_identifier, - STATE(3402), 3, + STATE(3425), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235380,6 +236120,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, @@ -235394,22 +236135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117104] = 8, - ACTIONS(1626), 1, + [117694] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6269), 1, + ACTIONS(6349), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6267), 2, + ACTIONS(6347), 2, sym_number, sym_private_property_identifier, - STATE(3422), 3, + STATE(3361), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235436,20 +236177,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117154] = 7, - ACTIONS(1626), 1, + [117744] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6351), 2, sym_number, sym_private_property_identifier, - STATE(3425), 3, + STATE(3461), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235477,22 +236218,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117202] = 8, - ACTIONS(1626), 1, + [117792] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6275), 1, + ACTIONS(6355), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6273), 2, + ACTIONS(6353), 2, sym_number, sym_private_property_identifier, - STATE(3461), 3, + STATE(3432), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235519,20 +236260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117252] = 7, - ACTIONS(1626), 1, + [117842] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6277), 2, + ACTIONS(6357), 2, sym_number, sym_private_property_identifier, - STATE(3350), 3, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235560,20 +236301,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117300] = 7, + [117890] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6144), 2, + ACTIONS(5335), 2, sym_number, sym_private_property_identifier, - STATE(3880), 3, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235601,24 +236342,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117348] = 7, - ACTIONS(1550), 1, + [117938] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(6361), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5411), 2, + ACTIONS(6359), 2, sym_number, sym_private_property_identifier, - STATE(3874), 3, + STATE(3493), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235627,7 +236370,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, @@ -235642,26 +236384,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117396] = 8, - ACTIONS(1626), 1, + [117988] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6281), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6279), 2, + ACTIONS(5555), 2, sym_number, sym_private_property_identifier, - STATE(3392), 3, + STATE(3812), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235670,6 +236410,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, @@ -235684,24 +236425,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117446] = 7, - ACTIONS(1550), 1, + [118036] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5376), 2, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - STATE(3781), 3, + STATE(3387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235725,24 +236466,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117494] = 7, - ACTIONS(1626), 1, + [118084] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6283), 2, + ACTIONS(6202), 2, sym_number, sym_private_property_identifier, - STATE(3394), 3, + STATE(3790), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235766,24 +236507,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117542] = 7, - ACTIONS(1550), 1, + [118132] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(5950), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5300), 2, + ACTIONS(4976), 2, sym_number, sym_private_property_identifier, - STATE(3780), 3, + STATE(3387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235792,7 +236535,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, @@ -235807,20 +236549,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117590] = 7, + [118182] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(5646), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3907), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235848,26 +236590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117638] = 8, - ACTIONS(1626), 1, + [118230] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6287), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6285), 2, + ACTIONS(5599), 2, sym_number, sym_private_property_identifier, - STATE(3423), 3, + STATE(3796), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235876,6 +236616,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, @@ -235890,24 +236631,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117688] = 7, - ACTIONS(1626), 1, + [118278] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6289), 2, + ACTIONS(5339), 2, sym_number, sym_private_property_identifier, - STATE(3426), 3, + STATE(3920), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235931,20 +236672,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117736] = 7, + [118326] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6146), 2, + ACTIONS(5343), 2, sym_number, sym_private_property_identifier, - STATE(3841), 3, + STATE(3792), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235972,26 +236713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117784] = 8, - ACTIONS(1626), 1, + [118374] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6293), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6291), 2, + ACTIONS(5593), 2, sym_number, sym_private_property_identifier, - STATE(3391), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236000,6 +236739,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, @@ -236014,24 +236754,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117834] = 7, - ACTIONS(1626), 1, + [118422] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6295), 2, + ACTIONS(5623), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3855), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236055,20 +236795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117882] = 7, + [118470] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5427), 2, + ACTIONS(5353), 2, sym_number, sym_private_property_identifier, - STATE(3804), 3, + STATE(3797), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236096,26 +236836,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117930] = 8, - ACTIONS(1626), 1, + [118518] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6299), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6297), 2, + ACTIONS(5291), 2, sym_number, sym_private_property_identifier, - STATE(3405), 3, + STATE(3803), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236124,6 +236862,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, @@ -236138,20 +236877,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117980] = 7, + [118566] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5279), 2, + ACTIONS(5517), 2, sym_number, sym_private_property_identifier, - STATE(3863), 3, + STATE(3806), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236179,26 +236918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118028] = 8, - ACTIONS(1626), 1, + [118614] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, - ACTIONS(6303), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6206), 2, sym_number, sym_private_property_identifier, - STATE(3323), 3, + STATE(3809), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236207,6 +236944,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, @@ -236221,24 +236959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118078] = 7, - ACTIONS(1626), 1, + [118662] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(6365), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6305), 2, + ACTIONS(6363), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + STATE(3420), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236247,7 +236987,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, @@ -236262,26 +237001,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118126] = 8, - ACTIONS(1626), 1, + [118712] = 7, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, - ACTIONS(6309), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6307), 2, + ACTIONS(6367), 2, sym_number, sym_private_property_identifier, - STATE(3333), 3, + STATE(3421), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 22, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236290,6 +237027,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, @@ -236304,24 +237042,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118176] = 7, - ACTIONS(1626), 1, + [118760] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6311), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - STATE(3408), 3, + STATE(3873), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3700), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236345,24 +237083,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118224] = 7, - ACTIONS(1550), 1, + [118808] = 8, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1552), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4508), 1, anon_sym_LBRACK, + ACTIONS(6371), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6142), 2, + ACTIONS(6369), 2, sym_number, sym_private_property_identifier, - STATE(3846), 3, + STATE(3455), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2351), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236371,7 +237111,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, @@ -236386,15 +237125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118272] = 4, - ACTIONS(6313), 1, + [118858] = 4, + ACTIONS(6373), 1, sym_identifier, - STATE(5613), 1, + STATE(5897), 1, sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6315), 22, + ACTIONS(6375), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236417,26 +237156,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118307] = 9, - ACTIONS(3514), 1, + [118893] = 9, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3576), 1, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(6317), 1, + ACTIONS(6377), 1, anon_sym_DOT, - ACTIONS(6319), 1, + ACTIONS(6379), 1, anon_sym_QMARK_DOT, - STATE(2918), 1, + STATE(2934), 1, sym_arguments, - STATE(2975), 1, + STATE(3044), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4068), 2, + ACTIONS(4064), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4070), 12, + ACTIONS(4066), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236449,26 +237188,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_extends, - [118348] = 9, - ACTIONS(3514), 1, + [118934] = 9, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3576), 1, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(6321), 1, + ACTIONS(6381), 1, anon_sym_DOT, - ACTIONS(6323), 1, + ACTIONS(6383), 1, anon_sym_QMARK_DOT, - STATE(2920), 1, + STATE(2949), 1, sym_arguments, - STATE(2973), 1, + STATE(3025), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4060), 2, + ACTIONS(4070), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4062), 12, + ACTIONS(4072), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236481,26 +237220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_extends, - [118389] = 9, - ACTIONS(3514), 1, + [118975] = 9, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3516), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3520), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3576), 1, + ACTIONS(3542), 1, anon_sym_LT, - STATE(2917), 1, + STATE(2947), 1, sym_arguments, - STATE(3015), 1, + STATE(2958), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, + ACTIONS(3524), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3512), 12, + ACTIONS(3514), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236513,14 +237252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_extends, - [118430] = 3, + [119016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 2, + ACTIONS(4188), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4382), 17, + ACTIONS(4190), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236538,14 +237277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118458] = 3, + [119044] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 2, + ACTIONS(4392), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4286), 17, + ACTIONS(4394), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236563,14 +237302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118486] = 3, + [119072] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 2, + ACTIONS(4392), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4286), 17, + ACTIONS(4394), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236588,14 +237327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118514] = 3, + [119100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 2, + ACTIONS(4420), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4310), 17, + ACTIONS(4422), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236613,14 +237352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118542] = 3, + [119128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 2, + ACTIONS(4420), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4248), 17, + ACTIONS(4422), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236638,14 +237377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118570] = 3, + [119156] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 2, + ACTIONS(4420), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4244), 17, + ACTIONS(4422), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236663,14 +237402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118598] = 3, + [119184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 2, + ACTIONS(4447), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4248), 17, + ACTIONS(4449), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236688,14 +237427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118626] = 3, + [119212] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 2, + ACTIONS(4447), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4248), 17, + ACTIONS(4449), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236713,14 +237452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118654] = 3, + [119240] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 2, + ACTIONS(4447), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4244), 17, + ACTIONS(4449), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236738,14 +237477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118682] = 3, + [119268] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 2, + ACTIONS(4384), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4278), 17, + ACTIONS(4386), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236763,14 +237502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118710] = 3, + [119296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4158), 2, + ACTIONS(4462), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4160), 17, + ACTIONS(4464), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236788,14 +237527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118738] = 3, + [119324] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 2, + ACTIONS(4432), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4314), 17, + ACTIONS(4434), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236813,14 +237552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118766] = 3, + [119352] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 2, + ACTIONS(4178), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4282), 17, + ACTIONS(4180), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236838,14 +237577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118794] = 3, + [119380] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 2, + ACTIONS(4218), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4124), 17, + ACTIONS(4220), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236863,14 +237602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118822] = 3, + [119408] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 2, + ACTIONS(4178), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4282), 17, + ACTIONS(4180), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236888,14 +237627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118850] = 3, + [119436] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 2, + ACTIONS(4188), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4310), 17, + ACTIONS(4190), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236913,14 +237652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118878] = 3, + [119464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 2, + ACTIONS(4222), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4124), 17, + ACTIONS(4224), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236938,14 +237677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118906] = 3, + [119492] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 2, + ACTIONS(4210), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4134), 17, + ACTIONS(4212), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236963,14 +237702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118934] = 3, + [119520] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 2, + ACTIONS(4214), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4138), 17, + ACTIONS(4216), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236988,14 +237727,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118962] = 3, + [119548] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 2, + ACTIONS(4210), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4212), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119576] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4160), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4162), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119604] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4214), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4286), 17, + ACTIONS(4216), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237013,14 +237802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118990] = 3, + [119632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 2, + ACTIONS(4222), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4134), 17, + ACTIONS(4224), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237038,14 +237827,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119018] = 3, + [119660] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 2, + ACTIONS(4486), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4488), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119688] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4218), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4220), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119716] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4490), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4492), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119744] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4490), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4492), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119772] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4490), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4492), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119800] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4158), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119828] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4158), 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_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_extends, + [119856] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4138), 17, + ACTIONS(4158), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237063,14 +238027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119046] = 3, + [119884] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 2, + ACTIONS(4160), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4164), 17, + ACTIONS(4162), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237088,14 +238052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119074] = 3, + [119912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 2, + ACTIONS(4160), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4236), 17, + ACTIONS(4162), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237113,14 +238077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119102] = 3, + [119940] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 2, + ACTIONS(4392), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4240), 17, + ACTIONS(4394), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237138,40 +238102,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119130] = 3, + [119968] = 3, + ACTIONS(1846), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 2, + ACTIONS(1844), 17, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4240), 17, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119158] = 3, + anon_sym_PIPE_RBRACE, + [119995] = 5, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4114), 1, + anon_sym_EQ, + STATE(2937), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4168), 17, - anon_sym_as, + ACTIONS(4116), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237182,21 +238147,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119186] = 3, + [120026] = 3, + ACTIONS(1860), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 2, + ACTIONS(1858), 17, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4240), 17, - anon_sym_as, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120053] = 5, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3673), 1, + anon_sym_EQ, + STATE(2935), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3466), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237207,21 +238197,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119214] = 3, + [120084] = 5, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4121), 1, + anon_sym_EQ, + STATE(2938), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4164), 17, - anon_sym_as, + ACTIONS(4123), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237232,21 +238223,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119242] = 3, + [120115] = 5, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3679), 1, + anon_sym_EQ, + STATE(2936), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4168), 17, - anon_sym_as, + ACTIONS(3458), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237257,21 +238249,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119270] = 3, + [120146] = 5, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4128), 1, + anon_sym_EQ, + STATE(2939), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4244), 17, - anon_sym_as, + ACTIONS(4130), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237282,21 +238275,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119298] = 3, + [120177] = 5, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(2933), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4310), 17, - anon_sym_as, + ACTIONS(4137), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237307,20 +238301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119326] = 3, + [120208] = 3, + ACTIONS(4320), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4282), 17, + ACTIONS(4322), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237332,25 +238324,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119354] = 3, + [120234] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 2, + ACTIONS(4412), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4382), 17, + ACTIONS(4414), 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, @@ -237360,64 +238350,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119382] = 3, - ACTIONS(1728), 1, - anon_sym_PIPE, + [120260] = 3, + ACTIONS(4272), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1726), 17, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4274), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119409] = 3, - ACTIONS(1756), 1, - anon_sym_PIPE, + [120286] = 3, + ACTIONS(4292), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1754), 17, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4294), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119436] = 3, - ACTIONS(4418), 1, + [120312] = 3, + ACTIONS(4152), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 16, + ACTIONS(4154), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237434,63 +238421,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119462] = 5, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, + [120338] = 3, + ACTIONS(4304), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3522), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3512), 13, + ACTIONS(4306), 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_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119492] = 3, + [120364] = 3, + ACTIONS(4312), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4322), 15, + ACTIONS(4314), 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_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119518] = 3, + [120390] = 7, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4052), 1, + anon_sym_EQ, + ACTIONS(6385), 1, + anon_sym_DOT, + ACTIONS(6387), 1, + anon_sym_is, + STATE(3049), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4330), 15, - anon_sym_as, + ACTIONS(3551), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237498,132 +238489,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, anon_sym_extends, - [119544] = 3, - ACTIONS(4426), 1, + [120424] = 4, + ACTIONS(1758), 1, + anon_sym_DOT, + ACTIONS(4440), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 16, + ACTIONS(4442), 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_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119570] = 3, + [120452] = 9, + ACTIONS(3516), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + anon_sym_DOT, + ACTIONS(3522), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3180), 1, + sym_arguments, + STATE(3253), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 2, + ACTIONS(3514), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4348), 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_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, anon_sym_extends, - [119596] = 15, - ACTIONS(1626), 1, + anon_sym_PIPE_RBRACE, + [120490] = 15, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(6325), 1, + ACTIONS(6391), 1, sym_identifier, - ACTIONS(6327), 1, + ACTIONS(6393), 1, anon_sym_STAR, - ACTIONS(6329), 1, + ACTIONS(6395), 1, anon_sym_type, - ACTIONS(6331), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - ACTIONS(6333), 1, + ACTIONS(6399), 1, anon_sym_typeof, - ACTIONS(6337), 1, + ACTIONS(6403), 1, anon_sym_DOT, - STATE(4113), 1, - sym_string, - STATE(4131), 1, + STATE(4179), 1, sym_import_require_clause, - STATE(5136), 1, + STATE(4409), 1, + sym_string, + STATE(5198), 1, sym__import_identifier, - STATE(5258), 1, + STATE(5486), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5844), 2, + STATE(5873), 2, sym_namespace_import, sym_named_imports, - ACTIONS(6335), 3, + ACTIONS(6401), 3, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT, - [119646] = 5, - ACTIONS(6339), 1, - anon_sym_DOT, - ACTIONS(6341), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4224), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4226), 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_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [119676] = 6, - ACTIONS(3576), 1, + [120540] = 6, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(4054), 1, + ACTIONS(4052), 1, anon_sym_EQ, - ACTIONS(6343), 1, + ACTIONS(6385), 1, anon_sym_DOT, - STATE(2964), 1, + STATE(3049), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 13, + ACTIONS(3551), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237637,49 +238608,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119708] = 4, - ACTIONS(1888), 1, + [120572] = 9, + ACTIONS(3516), 1, + anon_sym_LPAREN, + ACTIONS(4070), 1, + anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + ACTIONS(6405), 1, anon_sym_DOT, - ACTIONS(4384), 1, - anon_sym_EQ, + ACTIONS(6407), 1, + anon_sym_QMARK_DOT, + STATE(3112), 1, + sym_arguments, + STATE(3254), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 15, - anon_sym_as, + ACTIONS(4072), 10, + sym__automatic_semicolon, + anon_sym_EQ, 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_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119736] = 9, - ACTIONS(3522), 1, - anon_sym_PIPE, - ACTIONS(3528), 1, + anon_sym_PIPE_RBRACE, + [120610] = 9, + ACTIONS(3516), 1, anon_sym_LPAREN, - ACTIONS(3530), 1, + ACTIONS(4064), 1, + anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + ACTIONS(6409), 1, anon_sym_DOT, - ACTIONS(3532), 1, + ACTIONS(6411), 1, anon_sym_QMARK_DOT, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3086), 1, + STATE(3113), 1, sym_arguments, - STATE(3215), 1, + STATE(3255), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 10, + ACTIONS(4066), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237690,84 +238666,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119774] = 3, - ACTIONS(3691), 1, - anon_sym_EQ, + [120648] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3474), 16, + ACTIONS(4398), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4396), 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119800] = 3, - ACTIONS(3679), 1, - anon_sym_EQ, + [120674] = 5, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3478), 16, + ACTIONS(3524), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3514), 13, 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_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119826] = 3, - ACTIONS(4414), 1, - anon_sym_EQ, + [120704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 16, + ACTIONS(4404), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4406), 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119852] = 4, - ACTIONS(1892), 1, + [120730] = 4, + ACTIONS(1882), 1, anon_sym_DOT, - ACTIONS(4384), 1, + ACTIONS(4440), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 15, + ACTIONS(4442), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237783,73 +238761,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119880] = 3, - ACTIONS(4422), 1, - anon_sym_EQ, + [120758] = 5, + ACTIONS(6413), 1, + anon_sym_DOT, + ACTIONS(6415), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4424), 16, + ACTIONS(4334), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4336), 13, 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_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119906] = 9, - ACTIONS(3528), 1, - anon_sym_LPAREN, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6347), 1, - anon_sym_DOT, - ACTIONS(6349), 1, - anon_sym_QMARK_DOT, - STATE(3089), 1, - sym_arguments, - STATE(3255), 1, - sym_type_arguments, + [120788] = 3, + ACTIONS(4148), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4070), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4150), 15, + 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_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119944] = 7, - ACTIONS(3576), 1, + anon_sym_is, + [120813] = 5, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(4054), 1, + ACTIONS(4095), 1, anon_sym_EQ, - ACTIONS(6343), 1, - anon_sym_DOT, - ACTIONS(6351), 1, - anon_sym_is, - STATE(2964), 1, + STATE(2984), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 12, + ACTIONS(4097), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237861,43 +238830,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119978] = 9, + [120842] = 6, ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(4060), 1, - anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6353), 1, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(6417), 1, anon_sym_DOT, - ACTIONS(6355), 1, - anon_sym_QMARK_DOT, - STATE(3090), 1, + STATE(2957), 1, sym_arguments, - STATE(3257), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4062), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4101), 12, 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_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120016] = 3, - ACTIONS(4178), 1, + [120873] = 3, + ACTIONS(4266), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 15, + ACTIONS(4264), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237913,7 +238879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120041] = 3, + [120898] = 3, ACTIONS(1900), 1, anon_sym_EQ, ACTIONS(5), 2, @@ -237935,13 +238901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_is, - [120066] = 3, - ACTIONS(4118), 1, + [120923] = 3, + ACTIONS(4388), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 15, + ACTIONS(4390), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237957,40 +238923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120091] = 6, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(4078), 1, - anon_sym_EQ, - ACTIONS(6357), 1, - anon_sym_DOT, - STATE(2934), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4080), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [120122] = 4, - ACTIONS(4250), 1, + [120948] = 3, + ACTIONS(4400), 1, anon_sym_EQ, - ACTIONS(6359), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 14, + ACTIONS(4402), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238005,17 +238944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120149] = 5, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4108), 1, + [120972] = 3, + ACTIONS(4248), 1, anon_sym_EQ, - STATE(3030), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 13, + ACTIONS(4250), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -238029,13 +238965,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120178] = 3, - ACTIONS(4084), 1, + [120996] = 3, + ACTIONS(4252), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 15, + ACTIONS(4254), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238050,14 +238986,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [120203] = 3, - ACTIONS(4284), 1, + [121020] = 3, + ACTIONS(4156), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 14, + ACTIONS(4158), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238072,23 +239007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120227] = 8, + [121044] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6363), 1, + ACTIONS(6421), 1, sym_number, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - STATE(5699), 1, - sym_string, - STATE(5715), 1, - sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + STATE(5697), 2, + sym_string, + sym_predefined_type, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238098,44 +239032,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120261] = 3, - ACTIONS(4238), 1, - anon_sym_PIPE, + [121076] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6425), 1, + sym_number, + STATE(5748), 1, + sym_string, + STATE(5763), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 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, - [120285] = 8, + ACTIONS(6419), 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, + [121110] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6367), 1, + ACTIONS(6427), 1, sym_number, - STATE(5717), 1, + STATE(5771), 1, sym_string, - STATE(5719), 1, + STATE(5780), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238145,23 +239084,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120319] = 8, + [121144] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6369), 1, + ACTIONS(6429), 1, sym_number, - STATE(5721), 1, + STATE(5822), 1, sym_string, - STATE(5728), 1, + STATE(5837), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238171,34 +239110,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120353] = 3, - ACTIONS(4242), 1, - anon_sym_PIPE, + [121178] = 3, + ACTIONS(4326), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4328), 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_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120377] = 3, - ACTIONS(4196), 1, + [121202] = 3, + ACTIONS(4330), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4198), 14, + ACTIONS(4332), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238213,44 +239152,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120401] = 7, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6371), 1, - sym_number, + [121226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5510), 2, - sym_string, - sym_predefined_type, - ACTIONS(6361), 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, - [120433] = 5, - ACTIONS(4450), 1, + ACTIONS(6431), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121248] = 4, + ACTIONS(4376), 1, anon_sym_EQ, - ACTIONS(6373), 1, + ACTIONS(6433), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4452), 10, + ACTIONS(4378), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238259,15 +239189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_GT, anon_sym_QMARK, - [120461] = 3, - ACTIONS(4380), 1, + anon_sym_extends, + [121274] = 3, + ACTIONS(4462), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 14, + ACTIONS(4464), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238282,39 +239215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120485] = 8, - ACTIONS(6375), 1, - anon_sym_LPAREN, - ACTIONS(6377), 1, - anon_sym_DOT, - ACTIONS(6379), 1, - anon_sym_QMARK_DOT, - ACTIONS(6381), 1, - anon_sym_LT, - STATE(3226), 1, - sym_arguments, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4062), 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, - [120519] = 3, - ACTIONS(4122), 1, + [121298] = 3, + ACTIONS(4432), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 14, + ACTIONS(4434), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238329,13 +239236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120543] = 3, - ACTIONS(4132), 1, + [121322] = 3, + ACTIONS(4218), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 14, + ACTIONS(4220), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238350,34 +239257,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120567] = 3, - ACTIONS(4136), 1, - anon_sym_PIPE, + [121346] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6435), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 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, - [120591] = 3, - ACTIONS(4260), 1, + STATE(5834), 2, + sym_string, + sym_predefined_type, + ACTIONS(6419), 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, + [121378] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6437), 1, + sym_number, + STATE(5839), 1, + sym_string, + STATE(5840), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6419), 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, + [121412] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6439), 1, + sym_number, + STATE(5846), 1, + sym_string, + STATE(5848), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6419), 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, + [121446] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6441), 1, + sym_number, + STATE(5857), 1, + sym_string, + STATE(5858), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6419), 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, + [121480] = 3, + ACTIONS(4424), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 14, + ACTIONS(4426), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238392,34 +239381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120615] = 3, - ACTIONS(4276), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4278), 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, - [120639] = 3, - ACTIONS(4186), 1, + [121504] = 3, + ACTIONS(4428), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 14, + ACTIONS(4430), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238434,34 +239402,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120663] = 3, - ACTIONS(4280), 1, - anon_sym_PIPE, + [121528] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6443), 1, + sym_number, + STATE(5538), 1, + sym_string, + STATE(5539), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 14, - sym__automatic_semicolon, + ACTIONS(6419), 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, + [121562] = 4, + ACTIONS(4276), 1, anon_sym_EQ, + ACTIONS(6445), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4278), 13, 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_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120687] = 3, - ACTIONS(4280), 1, + [121588] = 3, + ACTIONS(4178), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 14, + ACTIONS(4180), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238476,13 +239471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120711] = 3, - ACTIONS(4312), 1, + [121612] = 3, + ACTIONS(4222), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 14, + ACTIONS(4224), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238497,13 +239492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120735] = 3, - ACTIONS(4280), 1, + [121636] = 3, + ACTIONS(4160), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 14, + ACTIONS(4162), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238518,13 +239513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120759] = 3, - ACTIONS(4316), 1, + [121660] = 3, + ACTIONS(4380), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 14, + ACTIONS(4382), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238539,34 +239534,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120783] = 3, - ACTIONS(4284), 1, - anon_sym_PIPE, + [121684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 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, - [120807] = 3, - ACTIONS(4391), 1, + ACTIONS(6447), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121706] = 3, + ACTIONS(4436), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 14, + ACTIONS(4438), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238581,13 +239575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120831] = 3, - ACTIONS(4284), 1, + [121730] = 3, + ACTIONS(4160), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 14, + ACTIONS(4162), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238602,13 +239596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120855] = 3, - ACTIONS(4308), 1, + [121754] = 3, + ACTIONS(4188), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 14, + ACTIONS(4190), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238623,44 +239617,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120879] = 3, - ACTIONS(4308), 1, - anon_sym_PIPE, + [121778] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6449), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 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, - [120903] = 8, + STATE(5745), 2, + sym_string, + sym_predefined_type, + ACTIONS(6419), 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, + [121810] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6383), 1, + ACTIONS(6451), 1, sym_number, - STATE(5540), 1, - sym_string, STATE(5756), 1, + sym_string, + STATE(5758), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6419), 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, + [121844] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6453), 1, + sym_number, + STATE(5767), 1, + sym_string, + STATE(5789), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6419), 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, + [121878] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_unique, + ACTIONS(6455), 1, + sym_number, + STATE(5827), 1, + sym_string, + STATE(5854), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238670,63 +239720,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120937] = 3, - ACTIONS(4308), 1, + [121912] = 7, + ACTIONS(4052), 1, anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_DOT, + ACTIONS(6459), 1, + anon_sym_is, + STATE(3281), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 14, + ACTIONS(3551), 10, 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, - [120961] = 3, - ACTIONS(4368), 1, - anon_sym_EQ, + [121944] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 14, - anon_sym_as, + ACTIONS(4180), 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_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [120985] = 4, - ACTIONS(4212), 1, + anon_sym_PIPE_RBRACE, + [121968] = 3, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(6373), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 13, + ACTIONS(4284), 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_EQ_GT, anon_sym_AMP, @@ -238734,20 +239787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121011] = 3, - ACTIONS(4264), 1, + [121992] = 4, + ACTIONS(4282), 1, anon_sym_EQ, + ACTIONS(6433), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 14, + ACTIONS(4284), 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_EQ_GT, anon_sym_AMP, @@ -238755,13 +239809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121035] = 3, - ACTIONS(4350), 1, + [122018] = 3, + ACTIONS(4095), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 14, + ACTIONS(4097), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238776,59 +239830,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121059] = 7, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6385), 1, - sym_number, + [122042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5669), 2, - sym_string, - sym_predefined_type, - ACTIONS(6361), 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, - [121091] = 3, - ACTIONS(4342), 1, - anon_sym_EQ, + ACTIONS(6461), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122064] = 3, + ACTIONS(4160), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 14, - anon_sym_as, + ACTIONS(4162), 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_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [121115] = 3, - ACTIONS(4446), 1, + anon_sym_PIPE_RBRACE, + [122088] = 3, + ACTIONS(4300), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4448), 14, + ACTIONS(4302), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238843,23 +239892,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121139] = 8, + [122112] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6387), 1, + ACTIONS(6463), 1, sym_number, - STATE(5684), 1, - sym_string, - STATE(5691), 1, - sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + STATE(5584), 2, + sym_string, + sym_predefined_type, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238869,106 +239917,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121173] = 3, - ACTIONS(4114), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4116), 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_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_extends, - [121197] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6389), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121219] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6391), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121241] = 4, - ACTIONS(4170), 1, - anon_sym_EQ, - ACTIONS(6373), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4172), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_extends, - [121267] = 8, + [122144] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6393), 1, + ACTIONS(6465), 1, sym_number, - STATE(5583), 1, + STATE(5600), 1, sym_string, - STATE(5624), 1, + STATE(5614), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238978,44 +239943,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121301] = 3, - ACTIONS(4242), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4244), 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, - [121325] = 8, + [122178] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6395), 1, + ACTIONS(6467), 1, sym_number, - STATE(5697), 1, + STATE(5622), 1, sym_string, - STATE(5701), 1, + STATE(5623), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239025,23 +239969,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121359] = 8, + [122212] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6397), 1, + ACTIONS(6469), 1, sym_number, - STATE(5703), 1, + STATE(5627), 1, sym_string, - STATE(5706), 1, + STATE(5634), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239051,33 +239995,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121393] = 2, + [122246] = 3, + ACTIONS(4188), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6399), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121415] = 3, - ACTIONS(4158), 1, + ACTIONS(4190), 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, + [122270] = 3, + ACTIONS(4210), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 14, + ACTIONS(4212), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239092,13 +240037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121439] = 3, - ACTIONS(4184), 1, + [122294] = 3, + ACTIONS(4346), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 14, + ACTIONS(4348), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239113,13 +240058,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121463] = 3, - ACTIONS(4242), 1, + [122318] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6471), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122340] = 3, + ACTIONS(4214), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4216), 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, + [122364] = 3, + ACTIONS(4210), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 14, + ACTIONS(4212), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239134,13 +240120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121487] = 3, - ACTIONS(4246), 1, + [122388] = 3, + ACTIONS(4384), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 14, + ACTIONS(4386), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239155,13 +240141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121511] = 3, - ACTIONS(4270), 1, + [122412] = 3, + ACTIONS(4208), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 14, + ACTIONS(4206), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239176,13 +240162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121535] = 3, - ACTIONS(4256), 1, + [122436] = 3, + ACTIONS(4340), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 14, + ACTIONS(4342), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239197,13 +240183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121559] = 3, - ACTIONS(4238), 1, + [122460] = 3, + ACTIONS(4392), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 14, + ACTIONS(4394), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239218,13 +240204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121583] = 3, - ACTIONS(4406), 1, + [122484] = 3, + ACTIONS(4244), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 14, + ACTIONS(4246), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239239,43 +240225,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121607] = 3, - ACTIONS(4234), 1, - anon_sym_PIPE, + [122508] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 14, - sym__automatic_semicolon, + ACTIONS(6473), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122530] = 3, + ACTIONS(4164), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4166), 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_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121631] = 7, + [122554] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6401), 1, + ACTIONS(6475), 1, sym_number, + STATE(5544), 1, + sym_string, + STATE(5545), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5846), 2, - sym_string, - sym_predefined_type, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239285,13 +240292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121663] = 3, - ACTIONS(4246), 1, + [122588] = 3, + ACTIONS(4392), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 14, + ACTIONS(4394), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239306,28 +240313,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121687] = 3, - ACTIONS(4216), 1, - anon_sym_EQ, + [122612] = 3, + ACTIONS(4392), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 14, - anon_sym_as, + ACTIONS(4394), 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_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [121711] = 3, + anon_sym_PIPE_RBRACE, + [122636] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6477), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122658] = 3, ACTIONS(4354), 1, anon_sym_EQ, ACTIONS(5), 2, @@ -239348,126 +240375,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121735] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6403), 1, - sym_number, - STATE(5862), 1, - sym_string, - STATE(5864), 1, - sym_predefined_type, + [122682] = 3, + ACTIONS(4214), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 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, - [121769] = 3, - ACTIONS(4358), 1, + ACTIONS(4216), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4360), 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_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [121793] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6405), 1, - sym_number, - STATE(5497), 1, - sym_predefined_type, - STATE(5718), 1, - sym_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6361), 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, - [121827] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6407), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121849] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6409), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121871] = 3, - ACTIONS(4380), 1, + anon_sym_PIPE_RBRACE, + [122706] = 3, + ACTIONS(4420), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 14, + ACTIONS(4422), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239482,39 +240417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121895] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6411), 1, - sym_number, - STATE(5514), 1, - sym_string, - STATE(5546), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6361), 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, - [121929] = 3, - ACTIONS(4170), 1, + [122730] = 3, + ACTIONS(4408), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 14, + ACTIONS(4410), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239529,59 +240438,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121953] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6413), 1, - sym_number, - STATE(5512), 1, - sym_string, - STATE(5749), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6361), 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, - [121987] = 2, + [122754] = 3, + ACTIONS(4494), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6415), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122009] = 3, - ACTIONS(4230), 1, + ACTIONS(4204), 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122778] = 3, + ACTIONS(4458), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 14, + ACTIONS(4460), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239596,13 +240480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122033] = 3, - ACTIONS(4372), 1, + [122802] = 3, + ACTIONS(4466), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 14, + ACTIONS(4468), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239617,32 +240501,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122057] = 3, - ACTIONS(4122), 1, - anon_sym_PIPE, + [122826] = 3, + ACTIONS(4470), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4472), 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_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122081] = 2, + [122850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 15, + ACTIONS(6479), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239658,13 +240542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122103] = 3, - ACTIONS(4132), 1, + [122872] = 3, + ACTIONS(4420), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 14, + ACTIONS(4422), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239679,59 +240563,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122127] = 3, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4326), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_extends, - [122151] = 7, - ACTIONS(4054), 1, + [122896] = 3, + ACTIONS(4218), 1, anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_DOT, - ACTIONS(6421), 1, - anon_sym_is, - STATE(3250), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 10, + ACTIONS(4220), 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, - [122183] = 3, - ACTIONS(4136), 1, + [122920] = 3, + ACTIONS(4420), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 14, + ACTIONS(4422), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239746,13 +240605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122207] = 3, - ACTIONS(4220), 1, + [122944] = 3, + ACTIONS(4454), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 14, + ACTIONS(4456), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239767,32 +240626,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122231] = 3, - ACTIONS(4300), 1, - anon_sym_EQ, + [122968] = 3, + ACTIONS(4447), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 14, - anon_sym_as, + ACTIONS(4449), 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_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122992] = 3, + ACTIONS(4447), 1, anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4449), 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, - [122255] = 2, + anon_sym_PIPE_RBRACE, + [123016] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6481), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [123038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6423), 15, + ACTIONS(6483), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239808,13 +240708,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122277] = 3, - ACTIONS(4430), 1, + [123060] = 3, + ACTIONS(4447), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4449), 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, + [123084] = 3, + ACTIONS(4474), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4432), 14, + ACTIONS(4476), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239829,13 +240750,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122301] = 3, - ACTIONS(4246), 1, + [123108] = 5, + ACTIONS(4366), 1, + anon_sym_EQ, + ACTIONS(6433), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4284), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4368), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + anon_sym_QMARK, + [123136] = 3, + ACTIONS(4486), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 14, + ACTIONS(4488), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239850,13 +240794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122325] = 3, - ACTIONS(4402), 1, + [123160] = 3, + ACTIONS(4482), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 14, + ACTIONS(4484), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239871,13 +240815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122349] = 3, - ACTIONS(4104), 1, + [123184] = 3, + ACTIONS(4416), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 14, + ACTIONS(4418), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239892,59 +240836,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122373] = 2, + [123208] = 3, + ACTIONS(4490), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6425), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122395] = 8, - ACTIONS(6375), 1, + ACTIONS(4492), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6381), 1, - anon_sym_LT, - ACTIONS(6427), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6429), 1, anon_sym_QMARK_DOT, - STATE(3224), 1, - sym_arguments, - STATE(3401), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123232] = 3, + ACTIONS(4490), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 9, + ACTIONS(4492), 14, 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_extends, - [122429] = 3, - ACTIONS(4162), 1, + anon_sym_PIPE_RBRACE, + [123256] = 3, + ACTIONS(4490), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 14, + ACTIONS(4492), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239959,13 +240899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122453] = 3, - ACTIONS(4166), 1, + [123280] = 5, + ACTIONS(3673), 1, anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3163), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4168), 14, + ACTIONS(3466), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239975,38 +240919,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - [122477] = 2, + [123308] = 3, + ACTIONS(4358), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6431), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122499] = 3, - ACTIONS(4174), 1, + ACTIONS(4360), 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [123332] = 3, + ACTIONS(4107), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 14, + ACTIONS(4109), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240021,13 +240964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122523] = 3, - ACTIONS(4162), 1, + [123356] = 3, + ACTIONS(4156), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 14, + ACTIONS(4158), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240042,38 +240985,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122547] = 7, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6433), 1, - sym_number, + [123380] = 5, + ACTIONS(3679), 1, + anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3168), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5694), 2, - sym_string, - sym_predefined_type, - ACTIONS(6361), 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, - [122579] = 3, - ACTIONS(4166), 1, + ACTIONS(3458), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123408] = 5, + ACTIONS(4114), 1, anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3171), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4168), 14, + ACTIONS(4116), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240083,27 +241028,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - [122603] = 7, + [123436] = 3, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4258), 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [123460] = 7, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6435), 1, + ACTIONS(6485), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5784), 2, + STATE(5524), 2, sym_string, sym_predefined_type, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240113,49 +241077,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122635] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6437), 1, - sym_number, - STATE(5791), 1, - sym_string, - STATE(5794), 1, - sym_predefined_type, + [123492] = 5, + ACTIONS(4121), 1, + anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3179), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 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, - [122669] = 8, + ACTIONS(4123), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123520] = 5, + ACTIONS(4128), 1, + anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3183), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4130), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123548] = 8, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6365), 1, + ACTIONS(6423), 1, anon_sym_unique, - ACTIONS(6439), 1, + ACTIONS(6487), 1, sym_number, - STATE(5799), 1, + STATE(5532), 1, sym_string, - STATE(5806), 1, + STATE(5533), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 9, + ACTIONS(6419), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240165,23 +241149,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122703] = 8, - ACTIONS(6375), 1, - anon_sym_LPAREN, - ACTIONS(6381), 1, + [123582] = 3, + ACTIONS(4142), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4144), 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [123606] = 5, + ACTIONS(4135), 1, + anon_sym_PIPE, + ACTIONS(6389), 1, anon_sym_LT, - ACTIONS(6441), 1, + STATE(3185), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4137), 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, - ACTIONS(6443), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123634] = 8, + ACTIONS(6489), 1, + anon_sym_LPAREN, + ACTIONS(6491), 1, + anon_sym_DOT, + ACTIONS(6493), 1, anon_sym_QMARK_DOT, - STATE(3225), 1, + ACTIONS(6495), 1, + anon_sym_LT, + STATE(3290), 1, sym_arguments, - STATE(3420), 1, + STATE(3394), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4070), 9, + ACTIONS(3514), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240191,103 +241219,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [122737] = 3, - ACTIONS(4238), 1, - anon_sym_PIPE, + [123668] = 8, + ACTIONS(6489), 1, + anon_sym_LPAREN, + ACTIONS(6495), 1, + anon_sym_LT, + ACTIONS(6497), 1, + anon_sym_DOT, + ACTIONS(6499), 1, + anon_sym_QMARK_DOT, + STATE(3268), 1, + sym_arguments, + STATE(3391), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 14, + ACTIONS(4072), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122761] = 3, - ACTIONS(4108), 1, - anon_sym_EQ, + [123702] = 8, + ACTIONS(6489), 1, + anon_sym_LPAREN, + ACTIONS(6495), 1, + anon_sym_LT, + ACTIONS(6501), 1, + anon_sym_DOT, + ACTIONS(6503), 1, + anon_sym_QMARK_DOT, + STATE(3317), 1, + sym_arguments, + STATE(3426), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 14, - anon_sym_as, + ACTIONS(4066), 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [122785] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(6365), 1, - anon_sym_unique, - ACTIONS(6445), 1, - sym_number, - STATE(5809), 1, - sym_string, - STATE(5811), 1, - sym_predefined_type, + [123736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6361), 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, - [122819] = 3, - ACTIONS(4140), 1, - anon_sym_EQ, + ACTIONS(6505), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [123758] = 3, + ACTIONS(4156), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 14, - anon_sym_as, + ACTIONS(4158), 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_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123782] = 3, + ACTIONS(4222), 1, anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4224), 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, - [122843] = 3, - ACTIONS(4376), 1, + anon_sym_PIPE_RBRACE, + [123806] = 4, + ACTIONS(4107), 1, anon_sym_EQ, + ACTIONS(6387), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 14, - anon_sym_as, + ACTIONS(4109), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240299,301 +241353,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [122867] = 13, - ACTIONS(2499), 1, + [123831] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6451), 1, + ACTIONS(6511), 1, anon_sym_BANG, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6457), 1, + ACTIONS(6517), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4162), 1, + STATE(3982), 1, sym_type_annotation, - STATE(4706), 1, + STATE(4598), 1, sym__initializer, - STATE(5256), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [122910] = 13, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6461), 1, - anon_sym_BANG, - ACTIONS(6463), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(4234), 1, - sym_type_annotation, - STATE(4859), 1, + STATE(5418), 1, sym__call_signature, - STATE(4860), 1, - sym__initializer, - STATE(5233), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6459), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122953] = 13, - ACTIONS(2499), 1, + [123874] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6467), 1, + ACTIONS(6521), 1, anon_sym_BANG, - ACTIONS(6469), 1, + ACTIONS(6523), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4246), 1, + STATE(4288), 1, sym_type_annotation, - STATE(4880), 1, + STATE(4975), 1, sym__initializer, - STATE(5155), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5329), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6465), 3, + ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122996] = 14, - ACTIONS(1626), 1, + [123917] = 14, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(6327), 1, + ACTIONS(6393), 1, anon_sym_STAR, - ACTIONS(6331), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - ACTIONS(6471), 1, + ACTIONS(6525), 1, sym_identifier, - ACTIONS(6473), 1, + ACTIONS(6527), 1, anon_sym_type, - ACTIONS(6475), 1, + ACTIONS(6529), 1, anon_sym_COMMA, - ACTIONS(6477), 1, + ACTIONS(6531), 1, anon_sym_from, - STATE(4299), 1, + STATE(4173), 1, sym_string, - STATE(4300), 1, + STATE(4175), 1, sym_import_require_clause, - STATE(5136), 1, + STATE(5198), 1, sym__import_identifier, - STATE(5337), 1, + STATE(5477), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5844), 2, + STATE(5873), 2, sym_namespace_import, sym_named_imports, - [123041] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(3286), 1, - sym_type_predicate, - STATE(5724), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6479), 2, - sym_identifier, - sym_this, - ACTIONS(216), 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, - [123070] = 11, - ACTIONS(2499), 1, + [123962] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(3615), 1, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6535), 1, + anon_sym_BANG, + ACTIONS(6537), 1, + anon_sym_QMARK, + STATE(3860), 1, sym_formal_parameters, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - STATE(5411), 1, + STATE(4389), 1, + sym_type_annotation, + STATE(5123), 1, + sym__initializer, + STATE(5217), 1, sym_type_parameters, + STATE(5467), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 5, + ACTIONS(6533), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123109] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(1939), 1, - sym_type_predicate, - STATE(5747), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6481), 2, - sym_identifier, - sym_this, - ACTIONS(216), 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, - [123138] = 11, - ACTIONS(2499), 1, + [124005] = 13, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(3615), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6541), 1, + anon_sym_BANG, + ACTIONS(6543), 1, + anon_sym_QMARK, + STATE(3332), 1, sym_formal_parameters, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - STATE(5411), 1, + STATE(4234), 1, + sym_type_annotation, + STATE(4912), 1, + sym__call_signature, + STATE(4913), 1, + sym__initializer, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 5, + ACTIONS(6539), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123177] = 11, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, + [124048] = 6, + ACTIONS(3516), 1, anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(3615), 1, - sym_formal_parameters, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - STATE(5411), 1, - sym_type_parameters, + ACTIONS(4099), 1, + anon_sym_PIPE, + ACTIONS(6545), 1, + anon_sym_DOT, + STATE(3200), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 5, + ACTIONS(4101), 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, - [123216] = 11, - ACTIONS(2499), 1, + [124077] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(3615), 1, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6547), 1, + anon_sym_BANG, + ACTIONS(6549), 1, + anon_sym_QMARK, + STATE(3860), 1, sym_formal_parameters, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - STATE(5411), 1, + STATE(4106), 1, + sym_type_annotation, + STATE(4977), 1, + sym__initializer, + STATE(5217), 1, sym_type_parameters, + STATE(5429), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 5, + ACTIONS(6533), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123255] = 6, - ACTIONS(214), 1, + [124120] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(1637), 1, + STATE(3050), 1, sym_type_predicate, - STATE(5570), 1, + STATE(5715), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 2, + ACTIONS(6551), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240603,41 +241581,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123284] = 4, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(6351), 1, - anon_sym_is, + [124149] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(3274), 1, + sym_type_predicate, + STATE(5772), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [123309] = 6, - ACTIONS(214), 1, + ACTIONS(6553), 2, + sym_identifier, + sym_this, + ACTIONS(215), 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, + [124178] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(2978), 1, + STATE(2055), 1, sym_type_predicate, - STATE(5861), 1, + STATE(5891), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6485), 2, + ACTIONS(6555), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240647,15 +241627,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123338] = 4, - ACTIONS(4108), 1, + [124207] = 13, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6487), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6559), 1, + anon_sym_BANG, + ACTIONS(6561), 1, + anon_sym_LPAREN, + ACTIONS(6563), 1, + anon_sym_QMARK, + STATE(3372), 1, + sym_formal_parameters, + STATE(3908), 1, + sym__call_signature, + STATE(4354), 1, + sym_type_annotation, + STATE(5072), 1, + sym__initializer, + STATE(5484), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6557), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124250] = 4, + ACTIONS(4142), 1, + anon_sym_EQ, + ACTIONS(6387), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 12, + ACTIONS(4144), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240668,131 +241678,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_extends, - [123363] = 13, - ACTIONS(2499), 1, + [124275] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6491), 1, + ACTIONS(6565), 1, anon_sym_BANG, - ACTIONS(6493), 1, + ACTIONS(6567), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3949), 1, + STATE(4160), 1, sym_type_annotation, - STATE(5042), 1, + STATE(4791), 1, sym__initializer, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5373), 1, + STATE(5333), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123406] = 13, - ACTIONS(2499), 1, + [124318] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6495), 1, + ACTIONS(6569), 1, anon_sym_BANG, - ACTIONS(6497), 1, + ACTIONS(6571), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3956), 1, + STATE(4397), 1, sym_type_annotation, - STATE(4528), 1, + STATE(5131), 1, sym__initializer, - STATE(5257), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6489), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123449] = 4, - ACTIONS(4114), 1, - anon_sym_EQ, - ACTIONS(6351), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4116), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [123474] = 13, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6499), 1, - anon_sym_BANG, - ACTIONS(6501), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(4014), 1, - sym_type_annotation, - STATE(4805), 1, - sym__initializer, - STATE(5139), 1, + STATE(5475), 1, sym__call_signature, - STATE(5328), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123517] = 6, - ACTIONS(214), 1, + [124361] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(2978), 1, + STATE(3050), 1, sym_type_predicate, - STATE(5673), 1, + STATE(5703), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6503), 2, + ACTIONS(6573), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240802,89 +241761,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123546] = 13, - ACTIONS(2499), 1, + [124390] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, ACTIONS(6507), 1, - anon_sym_BANG, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6511), 1, - anon_sym_QMARK, - STATE(3330), 1, - sym_formal_parameters, - STATE(3900), 1, - sym__call_signature, - STATE(4003), 1, - sym_type_annotation, - STATE(4741), 1, - sym__initializer, - STATE(5249), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6505), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123589] = 13, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, ACTIONS(6515), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(4126), 1, - sym_type_annotation, - STATE(4632), 1, - sym__initializer, - STATE(5131), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123632] = 13, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6521), 1, + ACTIONS(6575), 1, anon_sym_BANG, - ACTIONS(6523), 1, + ACTIONS(6577), 1, anon_sym_QMARK, - STATE(3330), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3754), 1, - sym__call_signature, - STATE(4313), 1, + STATE(4247), 1, sym_type_annotation, - STATE(5010), 1, + STATE(4916), 1, sym__initializer, - STATE(5249), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5280), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -240892,387 +241791,388 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123675] = 13, - ACTIONS(2499), 1, + [124433] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6521), 1, + ACTIONS(6581), 1, anon_sym_BANG, - ACTIONS(6525), 1, + ACTIONS(6583), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4313), 1, + STATE(4078), 1, sym_type_annotation, - STATE(5077), 1, - sym__call_signature, - STATE(5084), 1, + STATE(4746), 1, sym__initializer, - STATE(5233), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5488), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6519), 3, + ACTIONS(6579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123718] = 13, - ACTIONS(2499), 1, + [124476] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6529), 1, + ACTIONS(6585), 1, anon_sym_BANG, - ACTIONS(6531), 1, + ACTIONS(6587), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4077), 1, sym_type_annotation, - STATE(5089), 1, + STATE(4745), 1, sym__initializer, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5431), 1, + STATE(5309), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6527), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123761] = 13, - ACTIONS(2499), 1, + [124519] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6533), 1, + ACTIONS(6589), 1, anon_sym_BANG, - ACTIONS(6535), 1, + ACTIONS(6591), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4361), 1, + STATE(4251), 1, sym_type_annotation, - STATE(5093), 1, + STATE(4924), 1, sym__initializer, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5436), 1, + STATE(5287), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6527), 3, + ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123804] = 11, - ACTIONS(2499), 1, + [124562] = 11, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3808), 1, + ACTIONS(3900), 1, anon_sym_COMMA, ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - STATE(3615), 1, + STATE(3560), 1, sym_formal_parameters, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, - STATE(5411), 1, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(5362), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 5, + ACTIONS(3906), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123843] = 13, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, + [124601] = 4, + ACTIONS(4095), 1, anon_sym_EQ, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6537), 1, - anon_sym_BANG, - ACTIONS(6539), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(4060), 1, - sym_type_annotation, - STATE(4563), 1, - sym__initializer, - STATE(5265), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + ACTIONS(6593), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6527), 3, - sym__automatic_semicolon, + ACTIONS(4097), 12, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [123886] = 13, - ACTIONS(2499), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [124626] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6541), 1, + ACTIONS(6597), 1, anon_sym_BANG, - ACTIONS(6543), 1, + ACTIONS(6599), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4059), 1, + STATE(4327), 1, sym_type_annotation, - STATE(4884), 1, + STATE(5039), 1, sym__initializer, - STATE(5226), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5381), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6527), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123929] = 13, - ACTIONS(2499), 1, + [124669] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6545), 1, + ACTIONS(6561), 1, + anon_sym_LPAREN, + ACTIONS(6603), 1, anon_sym_BANG, - ACTIONS(6547), 1, + ACTIONS(6605), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(4028), 1, + STATE(3875), 1, + sym__call_signature, + STATE(3955), 1, sym_type_annotation, - STATE(4864), 1, + STATE(5030), 1, sym__initializer, - STATE(5185), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123972] = 13, - ACTIONS(2499), 1, + [124712] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(3450), 1, + sym_type_predicate, + STATE(5841), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6607), 2, + sym_identifier, + sym_this, + ACTIONS(215), 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, + [124741] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6549), 1, + ACTIONS(6609), 1, anon_sym_BANG, - ACTIONS(6551), 1, + ACTIONS(6611), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4183), 1, + STATE(4004), 1, sym_type_annotation, - STATE(4516), 1, - sym__initializer, - STATE(5328), 1, - sym_type_parameters, - STATE(5367), 1, + STATE(4609), 1, + sym__initializer, + STATE(5189), 1, sym__call_signature, + STATE(5217), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124015] = 13, - ACTIONS(2499), 1, + [124784] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6509), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6555), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6613), 1, anon_sym_BANG, - ACTIONS(6557), 1, + ACTIONS(6615), 1, anon_sym_QMARK, - STATE(3330), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3819), 1, - sym__call_signature, - STATE(4333), 1, + STATE(4033), 1, sym_type_annotation, - STATE(5058), 1, + STATE(4657), 1, sym__initializer, - STATE(5249), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5443), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6553), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124058] = 13, - ACTIONS(2499), 1, + [124827] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(6561), 1, + ACTIONS(6541), 1, anon_sym_BANG, - ACTIONS(6563), 1, + ACTIONS(6561), 1, + anon_sym_LPAREN, + ACTIONS(6617), 1, anon_sym_QMARK, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3751), 1, + STATE(3848), 1, sym__call_signature, - STATE(4235), 1, + STATE(4234), 1, sym_type_annotation, - STATE(4848), 1, + STATE(4890), 1, sym__initializer, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6539), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124101] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(2978), 1, - sym_type_predicate, - STATE(5675), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6565), 2, - sym_identifier, - sym_this, - ACTIONS(216), 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, - [124130] = 6, - ACTIONS(3528), 1, + [124870] = 11, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(6567), 1, - anon_sym_DOT, - STATE(3168), 1, - sym_arguments, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(3560), 1, + sym_formal_parameters, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(5362), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4080), 10, + ACTIONS(3906), 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_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124159] = 6, - ACTIONS(4054), 1, - anon_sym_PIPE, - ACTIONS(6345), 1, + [124909] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6419), 1, - anon_sym_DOT, - STATE(3250), 1, - sym_type_arguments, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(3560), 1, + sym_formal_parameters, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(5362), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 10, + ACTIONS(3906), 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_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124188] = 6, - ACTIONS(214), 1, + [124948] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(3336), 1, + STATE(3050), 1, sym_type_predicate, - STATE(5501), 1, + STATE(5753), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6569), 2, + ACTIONS(6619), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241282,272 +242182,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [124217] = 13, - ACTIONS(2499), 1, + [124977] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(3560), 1, + sym_formal_parameters, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(5362), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6571), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [125016] = 13, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6561), 1, + anon_sym_LPAREN, + ACTIONS(6623), 1, anon_sym_BANG, - ACTIONS(6573), 1, + ACTIONS(6625), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(4295), 1, + STATE(3787), 1, + sym__call_signature, + STATE(4276), 1, sym_type_annotation, - STATE(4985), 1, + STATE(4792), 1, sym__initializer, - STATE(5322), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6621), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124260] = 13, - ACTIONS(2499), 1, + [125059] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6575), 1, + ACTIONS(6627), 1, anon_sym_BANG, - ACTIONS(6577), 1, + ACTIONS(6629), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4325), 1, + STATE(4283), 1, sym_type_annotation, - STATE(5028), 1, + STATE(4969), 1, sym__initializer, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5381), 1, + STATE(5323), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124303] = 13, - ACTIONS(2499), 1, + [125102] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6579), 1, + ACTIONS(6633), 1, anon_sym_BANG, - ACTIONS(6581), 1, + ACTIONS(6635), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4344), 1, + STATE(4045), 1, sym_type_annotation, - STATE(5070), 1, + STATE(4713), 1, + sym__call_signature, + STATE(4714), 1, sym__initializer, - STATE(5328), 1, + STATE(5331), 1, sym_type_parameters, - STATE(5412), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6631), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124346] = 13, - ACTIONS(2499), 1, + [125145] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(6455), 1, + STATE(3560), 1, + sym_formal_parameters, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + STATE(5362), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6461), 1, - anon_sym_BANG, - ACTIONS(6509), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [125184] = 13, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6561), 1, anon_sym_LPAREN, - ACTIONS(6583), 1, + ACTIONS(6633), 1, + anon_sym_BANG, + ACTIONS(6637), 1, anon_sym_QMARK, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3848), 1, + STATE(3894), 1, sym__call_signature, - STATE(4234), 1, + STATE(4045), 1, sym_type_annotation, - STATE(4849), 1, + STATE(4685), 1, sym__initializer, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6459), 3, + ACTIONS(6631), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124389] = 13, - ACTIONS(2499), 1, + [125227] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6585), 1, + ACTIONS(6639), 1, anon_sym_BANG, - ACTIONS(6587), 1, + ACTIONS(6641), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4049), 1, + STATE(4011), 1, sym_type_annotation, - STATE(4944), 1, + STATE(4568), 1, sym__initializer, - STATE(5267), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5313), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124432] = 2, + [125270] = 6, + ACTIONS(4052), 1, + anon_sym_PIPE, + ACTIONS(6389), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_DOT, + STATE(3281), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 13, + ACTIONS(3551), 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, - [124452] = 10, - ACTIONS(2499), 1, + anon_sym_PIPE_RBRACE, + [125299] = 13, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6591), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6593), 1, + ACTIONS(6643), 1, + anon_sym_BANG, + ACTIONS(6645), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3714), 1, - sym__call_signature, - STATE(4084), 1, + STATE(3987), 1, sym_type_annotation, - STATE(5233), 1, + STATE(4610), 1, + sym__initializer, + STATE(5217), 1, sym_type_parameters, + STATE(5225), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6589), 5, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124488] = 3, - ACTIONS(4320), 1, - anon_sym_PIPE, + [125342] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(1555), 1, + sym_type_predicate, + STATE(5512), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 12, + ACTIONS(6647), 2, + sym_identifier, + sym_this, + ACTIONS(215), 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, + [125371] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4212), 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, - [124510] = 11, - ACTIONS(3576), 1, + [125391] = 6, + ACTIONS(6495), 1, anon_sym_LT, - ACTIONS(6343), 1, + ACTIONS(6649), 1, anon_sym_DOT, - ACTIONS(6595), 1, - anon_sym_EQ, - ACTIONS(6600), 1, - anon_sym_COLON, - ACTIONS(6602), 1, - anon_sym_extends, - STATE(2964), 1, + ACTIONS(6651), 1, + anon_sym_is, + STATE(3477), 1, sym_type_arguments, - STATE(4499), 1, - sym_constraint, - STATE(5417), 1, - sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6597), 2, + ACTIONS(3551), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3548), 3, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [124548] = 3, - ACTIONS(3225), 1, - anon_sym_PIPE, + anon_sym_extends, + [125419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3227), 12, + ACTIONS(4394), 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, - [124570] = 3, - ACTIONS(4328), 1, + [125439] = 6, + ACTIONS(4362), 1, + anon_sym_EQ, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4364), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125467] = 3, + ACTIONS(4404), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 12, + ACTIONS(4406), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241560,13 +242563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124592] = 3, - ACTIONS(4346), 1, + [125489] = 3, + ACTIONS(4412), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 12, + ACTIONS(4414), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241579,96 +242582,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124614] = 4, - ACTIONS(1888), 1, - anon_sym_DOT, - ACTIONS(4384), 1, - anon_sym_PIPE, + [125511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 11, + ACTIONS(4162), 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, - [124638] = 3, - ACTIONS(3691), 1, + [125531] = 6, + ACTIONS(4330), 1, + anon_sym_EQ, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3474), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4332), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125559] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4162), 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_extends, - anon_sym_PIPE_RBRACE, - [124660] = 3, - ACTIONS(3679), 1, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3478), 12, + ACTIONS(4190), 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, - [124682] = 3, - ACTIONS(3233), 1, + [125599] = 4, + ACTIONS(4370), 1, + anon_sym_EQ, + ACTIONS(6659), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + [125623] = 4, + ACTIONS(6495), 1, + anon_sym_LT, + STATE(3246), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3235), 12, + ACTIONS(3466), 11, 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_extends, - anon_sym_PIPE_RBRACE, - [124704] = 6, - ACTIONS(4402), 1, + [125647] = 4, + ACTIONS(4350), 1, anon_sym_EQ, - ACTIONS(6605), 1, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4352), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [125671] = 6, + ACTIONS(4454), 1, + anon_sym_EQ, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 9, + ACTIONS(4456), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -241678,15 +242740,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_GT, - [124732] = 4, - ACTIONS(4438), 1, + [125699] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4220), 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, + [125719] = 6, + ACTIONS(4226), 1, anon_sym_EQ, - ACTIONS(6605), 1, + ACTIONS(6653), 1, anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4440), 11, + ACTIONS(4228), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -241695,89 +242779,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_GT, + [125747] = 6, + ACTIONS(4230), 1, + anon_sym_EQ, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, anon_sym_extends, - [124756] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6613), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(3524), 1, - sym__call_signature, - STATE(4050), 1, - sym_type_annotation, - STATE(5233), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6611), 5, - sym__automatic_semicolon, + ACTIONS(4232), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124792] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6617), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(4282), 1, - sym__call_signature, - STATE(4283), 1, - sym_type_annotation, - STATE(5233), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125775] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6615), 5, + ACTIONS(4180), 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, - [124828] = 3, - ACTIONS(3237), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125795] = 4, + ACTIONS(6495), 1, + anon_sym_LT, + STATE(3248), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3239), 12, + ACTIONS(3458), 11, 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_extends, - anon_sym_PIPE_RBRACE, - [124850] = 4, - ACTIONS(1892), 1, + [125819] = 4, + ACTIONS(1758), 1, anon_sym_DOT, - ACTIONS(4384), 1, + ACTIONS(4440), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 11, + ACTIONS(4442), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241789,32 +242860,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124874] = 3, - ACTIONS(4414), 1, - anon_sym_PIPE, + [125843] = 4, + ACTIONS(6495), 1, + anon_sym_LT, + STATE(3250), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 12, + ACTIONS(4116), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, + [125867] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6663), 1, + anon_sym_QMARK, + STATE(3332), 1, + sym_formal_parameters, + STATE(3704), 1, + sym__call_signature, + STATE(4149), 1, + sym_type_annotation, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6661), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124896] = 3, - ACTIONS(4418), 1, + [125903] = 3, + ACTIONS(3411), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 12, + ACTIONS(3413), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241827,32 +242925,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124918] = 3, - ACTIONS(4422), 1, + [125925] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4224), 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, + [125945] = 3, + ACTIONS(3239), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4424), 12, + ACTIONS(3241), 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_extends, anon_sym_PIPE_RBRACE, - [124940] = 3, - ACTIONS(4426), 1, + [125967] = 3, + ACTIONS(3329), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 12, + ACTIONS(3331), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241865,111 +242981,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124962] = 10, - ACTIONS(2499), 1, + [125989] = 10, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6621), 1, + ACTIONS(6667), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4029), 1, + STATE(3697), 1, sym__call_signature, - STATE(4030), 1, + STATE(4319), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6619), 5, + ACTIONS(6665), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124998] = 4, - ACTIONS(4190), 1, - anon_sym_EQ, - ACTIONS(6623), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4192), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, + [126025] = 5, + ACTIONS(4095), 1, anon_sym_PIPE, - anon_sym_GT, - [125022] = 2, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3308), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, + ACTIONS(4097), 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, - [125042] = 2, + anon_sym_PIPE_RBRACE, + [126051] = 4, + ACTIONS(1882), 1, + anon_sym_DOT, + ACTIONS(4440), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(4442), 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, - [125062] = 2, + anon_sym_PIPE_RBRACE, + [126075] = 4, + ACTIONS(4478), 1, + anon_sym_EQ, + ACTIONS(6653), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4480), 11, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [125082] = 2, + [126099] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 13, + ACTIONS(4190), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241983,37 +243086,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125102] = 10, - ACTIONS(2499), 1, + [126119] = 10, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6625), 1, + ACTIONS(6671), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4083), 1, + STATE(4296), 1, sym__call_signature, - STATE(4084), 1, + STATE(4297), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6589), 5, + ACTIONS(6669), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125138] = 2, + [126155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4220), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242027,11 +243130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125158] = 2, + [126175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 13, + ACTIONS(4158), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242045,29 +243148,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125178] = 2, + [126195] = 5, + ACTIONS(3518), 1, + anon_sym_DOT, + ACTIONS(3522), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 13, + ACTIONS(3514), 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_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126221] = 5, + ACTIONS(4334), 1, + anon_sym_PIPE, + ACTIONS(6673), 1, anon_sym_DOT, + ACTIONS(6675), 1, anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4336), 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, + [126247] = 3, + ACTIONS(3235), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3237), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [125198] = 2, + anon_sym_PIPE_RBRACE, + [126269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 13, + ACTIONS(4394), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242081,11 +243227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125218] = 2, + [126289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 13, + ACTIONS(4394), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242099,11 +243245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125238] = 2, + [126309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 13, + ACTIONS(4158), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242117,11 +243263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125258] = 2, + [126329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4168), 13, + ACTIONS(4422), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242135,11 +243281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125278] = 2, + [126349] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 13, + ACTIONS(4224), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242153,11 +243299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125298] = 2, + [126369] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4168), 13, + ACTIONS(4422), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242171,11 +243317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125318] = 2, + [126389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 13, + ACTIONS(4216), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242189,11 +243335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125338] = 2, + [126409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 13, + ACTIONS(4158), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242207,11 +243353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125358] = 2, + [126429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 13, + ACTIONS(4422), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242225,32 +243371,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125378] = 5, - ACTIONS(4224), 1, - anon_sym_PIPE, - ACTIONS(6627), 1, - anon_sym_DOT, - ACTIONS(6629), 1, - anon_sym_QMARK_DOT, + [126449] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(6681), 1, + anon_sym_QMARK, + STATE(3332), 1, + sym_formal_parameters, + STATE(3629), 1, + sym__call_signature, + STATE(4399), 1, + sym_type_annotation, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 10, + ACTIONS(6677), 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, - [125404] = 2, + [126485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4464), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242264,11 +243415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125424] = 2, + [126505] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4449), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242282,11 +243433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125444] = 2, + [126525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4212), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242300,11 +243451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125464] = 2, + [126545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 13, + ACTIONS(4449), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242318,33 +243469,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125484] = 6, - ACTIONS(6381), 1, - anon_sym_LT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6633), 1, - anon_sym_is, - STATE(3319), 1, - sym_type_arguments, + [126565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 9, + ACTIONS(4449), 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, - [125512] = 2, + [126585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 13, + ACTIONS(4434), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242358,11 +243505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125532] = 2, + [126605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 13, + ACTIONS(4488), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242376,47 +243523,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125552] = 2, + [126625] = 3, + ACTIONS(3353), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(3355), 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_extends, - [125572] = 2, + anon_sym_PIPE_RBRACE, + [126647] = 3, + ACTIONS(4272), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 13, + ACTIONS(4274), 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_extends, + anon_sym_PIPE_RBRACE, + [126669] = 3, + ACTIONS(3231), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3233), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [125592] = 2, + anon_sym_PIPE_RBRACE, + [126691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 13, + ACTIONS(4216), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242430,73 +243598,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125612] = 10, - ACTIONS(2499), 1, + [126711] = 10, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6635), 1, + ACTIONS(6685), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4037), 1, + STATE(4109), 1, sym__call_signature, - STATE(4050), 1, + STATE(4110), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6611), 5, + ACTIONS(6683), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125648] = 2, + [126747] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6687), 1, + anon_sym_QMARK, + STATE(3332), 1, + sym_formal_parameters, + STATE(4262), 1, + sym__call_signature, + STATE(4319), 1, + sym_type_annotation, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 13, + ACTIONS(6665), 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_RBRACE, + [126783] = 3, + ACTIONS(4292), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125668] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 13, + ACTIONS(4294), 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_extends, - [125688] = 2, + anon_sym_PIPE_RBRACE, + [126805] = 4, + ACTIONS(6495), 1, + anon_sym_LT, + STATE(3263), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 13, + ACTIONS(4137), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242505,52 +243686,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [126829] = 11, + ACTIONS(3542), 1, anon_sym_LT, + ACTIONS(6385), 1, + anon_sym_DOT, + ACTIONS(6689), 1, + anon_sym_EQ, + ACTIONS(6694), 1, + anon_sym_COLON, + ACTIONS(6696), 1, anon_sym_extends, - [125708] = 2, + STATE(3049), 1, + sym_type_arguments, + STATE(4510), 1, + sym_constraint, + STATE(5237), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6691), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_GT, + ACTIONS(3551), 3, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125728] = 2, + [126867] = 3, + ACTIONS(4152), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4154), 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_extends, + anon_sym_PIPE_RBRACE, + [126889] = 6, + ACTIONS(4168), 1, + anon_sym_EQ, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6657), 1, anon_sym_extends, - [125748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4170), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [126917] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4492), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242564,11 +243775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125768] = 2, + [126937] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4162), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242582,163 +243793,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125788] = 10, - ACTIONS(2499), 1, + [126957] = 10, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6637), 1, + ACTIONS(6699), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3606), 1, + STATE(3654), 1, sym__call_signature, - STATE(4283), 1, + STATE(4110), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6615), 5, + ACTIONS(6683), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125824] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6641), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(3597), 1, - sym__call_signature, - STATE(4262), 1, - sym_type_annotation, - STATE(5233), 1, - sym_type_parameters, + [126993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 5, + ACTIONS(4386), 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, - [125860] = 6, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(6605), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + anon_sym_LT, anon_sym_extends, + [127013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4204), 9, + ACTIONS(4180), 13, + 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_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_GT, - [125888] = 6, - ACTIONS(4220), 1, - anon_sym_EQ, - ACTIONS(6605), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + anon_sym_LT, anon_sym_extends, + [127033] = 4, + ACTIONS(6495), 1, + anon_sym_LT, + STATE(3261), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 9, + ACTIONS(4123), 11, + 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_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_GT, - [125916] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6643), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(4261), 1, - sym__call_signature, - STATE(4262), 1, - sym_type_annotation, - STATE(5233), 1, - sym_type_parameters, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127057] = 3, + ACTIONS(4304), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6639), 5, + ACTIONS(4306), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125952] = 6, - ACTIONS(4434), 1, - anon_sym_EQ, - ACTIONS(6605), 1, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127079] = 3, + ACTIONS(4398), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4436), 9, + ACTIONS(4396), 12, + sym__automatic_semicolon, + anon_sym_EQ, 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_EQ_GT, - anon_sym_GT, - [125980] = 6, - ACTIONS(4442), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127101] = 6, + ACTIONS(4268), 1, anon_sym_EQ, - ACTIONS(6605), 1, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4444), 9, + ACTIONS(4270), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -242748,143 +243935,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_GT, - [126008] = 4, - ACTIONS(4304), 1, - anon_sym_EQ, - ACTIONS(6605), 1, - anon_sym_AMP, + [127129] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 11, + ACTIONS(4492), 13, + 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_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, + anon_sym_LT, anon_sym_extends, - [126032] = 5, - ACTIONS(4108), 1, + [127149] = 3, + ACTIONS(4312), 1, anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3217), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 10, + ACTIONS(4314), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126058] = 10, - ACTIONS(2499), 1, + [127171] = 4, + ACTIONS(6495), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6645), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(3627), 1, - sym__call_signature, - STATE(4030), 1, - sym_type_annotation, - STATE(5233), 1, - sym_type_parameters, + STATE(3262), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6619), 5, + ACTIONS(4130), 11, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126094] = 6, - ACTIONS(4292), 1, - anon_sym_EQ, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4294), 9, + sym__function_signature_automatic_semicolon, 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_EQ_GT, - anon_sym_GT, - [126122] = 6, - ACTIONS(4332), 1, - anon_sym_EQ, - ACTIONS(6605), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4334), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_GT, - [126150] = 5, - ACTIONS(3522), 1, + [127195] = 3, + ACTIONS(4320), 1, anon_sym_PIPE, - ACTIONS(3530), 1, - anon_sym_DOT, - ACTIONS(3532), 1, - anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 10, + ACTIONS(4322), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126176] = 2, + [127217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 13, + ACTIONS(4492), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242898,233 +244029,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126196] = 11, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6509), 1, + [127237] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3330), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6701), 1, + anon_sym_QMARK, + STATE(3332), 1, sym_formal_parameters, - STATE(3870), 1, + STATE(4322), 1, sym__call_signature, - STATE(4241), 1, + STATE(4399), 1, sym_type_annotation, - STATE(4866), 1, - sym__initializer, - STATE(5249), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6647), 3, + ACTIONS(6677), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126233] = 5, - ACTIONS(6381), 1, + anon_sym_PIPE_RBRACE, + [127273] = 10, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6631), 1, - anon_sym_DOT, - STATE(3319), 1, - sym_type_arguments, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6703), 1, + anon_sym_QMARK, + STATE(3332), 1, + sym_formal_parameters, + STATE(3681), 1, + sym__call_signature, + STATE(4297), 1, + sym_type_annotation, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 9, + ACTIONS(6669), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126258] = 9, - ACTIONS(2499), 1, + anon_sym_PIPE_RBRACE, + [127309] = 10, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + ACTIONS(6705), 1, + anon_sym_QMARK, + STATE(3332), 1, sym_formal_parameters, - STATE(4055), 1, + STATE(4142), 1, sym__call_signature, - STATE(4058), 1, + STATE(4149), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6649), 5, + ACTIONS(6661), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126291] = 11, - ACTIONS(2499), 1, + [127345] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3952), 1, + STATE(4029), 1, sym_type_annotation, - STATE(5114), 1, + STATE(4604), 1, sym__initializer, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5443), 1, + STATE(5305), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126328] = 11, - ACTIONS(2499), 1, + [127382] = 9, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6509), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3330), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3332), 1, sym_formal_parameters, - STATE(3757), 1, + STATE(3696), 1, sym__call_signature, - STATE(4314), 1, + STATE(4176), 1, sym_type_annotation, - STATE(5015), 1, - sym__initializer, - STATE(5249), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(6709), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126365] = 11, - ACTIONS(2499), 1, + anon_sym_PIPE_RBRACE, + [127415] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3902), 1, + STATE(3954), 1, sym_type_annotation, - STATE(5124), 1, + STATE(4813), 1, sym__initializer, - STATE(5137), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5235), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6655), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126402] = 11, - ACTIONS(2499), 1, + [127452] = 7, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127481] = 8, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6447), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3315), 1, + STATE(3560), 1, sym_formal_parameters, - STATE(4314), 1, - sym_type_annotation, - STATE(5045), 1, - sym__call_signature, - STATE(5046), 1, - sym__initializer, - STATE(5233), 1, + STATE(5362), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, - sym__automatic_semicolon, + ACTIONS(4058), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3906), 5, + sym__automatic_semicolon, anon_sym_SEMI, - [126439] = 11, - ACTIONS(2499), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127512] = 9, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3960), 1, - sym_type_annotation, - STATE(4538), 1, - sym__initializer, - STATE(5148), 1, + STATE(3655), 1, sym__call_signature, - STATE(5328), 1, + STATE(4120), 1, + sym_type_annotation, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6713), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126476] = 3, - ACTIONS(3423), 1, + anon_sym_PIPE_RBRACE, + [127545] = 4, + ACTIONS(3994), 1, + anon_sym_LPAREN, + STATE(1667), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4402), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [127568] = 3, + ACTIONS(4148), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 11, + ACTIONS(4150), 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_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [126497] = 4, - ACTIONS(4114), 1, + [127589] = 3, + ACTIONS(4266), 1, anon_sym_PIPE, - ACTIONS(6421), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 10, + ACTIONS(4264), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243132,38 +244303,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126520] = 7, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, + [127610] = 11, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_formal_parameters, + STATE(3836), 1, + sym__call_signature, + STATE(4193), 1, + sym_type_annotation, + STATE(4862), 1, + sym__initializer, + STATE(5484), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, + ACTIONS(6715), 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, - [126549] = 3, - ACTIONS(4178), 1, + [127647] = 3, + ACTIONS(4388), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 11, + ACTIONS(4390), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243175,430 +244351,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126570] = 11, - ACTIONS(2499), 1, + [127668] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4128), 1, + STATE(4228), 1, sym_type_annotation, - STATE(4635), 1, + STATE(4877), 1, sym__initializer, - STATE(5141), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5245), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126607] = 11, - ACTIONS(2499), 1, + [127705] = 9, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6509), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3330), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3332), 1, sym_formal_parameters, - STATE(3783), 1, + STATE(4165), 1, sym__call_signature, - STATE(4328), 1, + STATE(4219), 1, sym_type_annotation, - STATE(5047), 1, - sym__initializer, - STATE(5249), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6659), 3, + ACTIONS(6717), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126644] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(3615), 1, - sym_formal_parameters, - STATE(5411), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [127738] = 4, + ACTIONS(4142), 1, + anon_sym_PIPE, + ACTIONS(6459), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 2, + ACTIONS(4144), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3814), 5, - sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [126675] = 11, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3806), 1, - sym_formal_parameters, - STATE(4019), 1, - sym_type_annotation, - STATE(4816), 1, - sym__initializer, - STATE(5151), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + [127761] = 4, + ACTIONS(4095), 1, + anon_sym_PIPE, + ACTIONS(6719), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(4097), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126712] = 9, - ACTIONS(2499), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127784] = 9, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3608), 1, + STATE(3703), 1, sym__call_signature, - STATE(4267), 1, + STATE(4137), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6661), 5, + ACTIONS(6721), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126745] = 4, - ACTIONS(4010), 1, + [127817] = 9, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(1669), 1, - sym_arguments, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3332), 1, + sym_formal_parameters, + STATE(4115), 1, + sym__call_signature, + STATE(4120), 1, + sym_type_annotation, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 10, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_extends, - [126768] = 7, - ACTIONS(3808), 1, + ACTIONS(6713), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3906), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126797] = 11, - ACTIONS(2499), 1, + [127850] = 9, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4022), 1, - sym_type_annotation, - STATE(4833), 1, - sym__initializer, - STATE(5164), 1, + STATE(3708), 1, sym__call_signature, - STATE(5328), 1, + STATE(4219), 1, + sym_type_annotation, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6717), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126834] = 12, - ACTIONS(1626), 1, + anon_sym_PIPE_RBRACE, + [127883] = 12, + ACTIONS(1596), 1, anon_sym_DQUOTE, - ACTIONS(1628), 1, + ACTIONS(1598), 1, anon_sym_SQUOTE, - ACTIONS(6327), 1, + ACTIONS(6393), 1, anon_sym_STAR, - ACTIONS(6331), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - ACTIONS(6471), 1, + ACTIONS(6525), 1, sym_identifier, - ACTIONS(6473), 1, + ACTIONS(6527), 1, anon_sym_type, - STATE(4299), 1, + STATE(4173), 1, sym_string, - STATE(4300), 1, + STATE(4175), 1, sym_import_require_clause, - STATE(5136), 1, + STATE(5198), 1, sym__import_identifier, - STATE(5337), 1, + STATE(5477), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5844), 2, + STATE(5873), 2, sym_namespace_import, sym_named_imports, - [126873] = 11, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, + [127922] = 8, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(6723), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3806), 1, - sym_formal_parameters, - STATE(4204), 1, - sym_type_annotation, - STATE(4773), 1, - sym__initializer, - STATE(5328), 1, - sym_type_parameters, - STATE(5402), 1, - sym__call_signature, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126910] = 3, - ACTIONS(3417), 1, + ACTIONS(3514), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [127953] = 8, + ACTIONS(6381), 1, + anon_sym_DOT, + ACTIONS(6383), 1, + anon_sym_QMARK_DOT, + ACTIONS(6723), 1, + anon_sym_LPAREN, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2949), 1, + sym_arguments, + STATE(3025), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4072), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127984] = 8, + ACTIONS(6377), 1, + anon_sym_DOT, + ACTIONS(6379), 1, + anon_sym_QMARK_DOT, + ACTIONS(6723), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2934), 1, + sym_arguments, + STATE(3044), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4066), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126931] = 11, - ACTIONS(2499), 1, + [128015] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6509), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3855), 1, + STATE(3899), 1, sym__call_signature, - STATE(4054), 1, + STATE(4339), 1, sym_type_annotation, - STATE(5007), 1, + STATE(5054), 1, sym__initializer, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6665), 3, + ACTIONS(6727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126968] = 5, - ACTIONS(6375), 1, + [128052] = 11, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOT, - STATE(3289), 1, - sym_arguments, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3332), 1, + sym_formal_parameters, + STATE(4339), 1, + sym_type_annotation, + STATE(5105), 1, + sym__call_signature, + STATE(5106), 1, + sym__initializer, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4080), 9, + ACTIONS(6727), 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, - [126993] = 11, - ACTIONS(2499), 1, + [128089] = 7, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [128118] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4141), 1, + STATE(4402), 1, sym_type_annotation, - STATE(4660), 1, + STATE(5138), 1, sym__initializer, - STATE(5177), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5480), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127030] = 11, - ACTIONS(2499), 1, + [128155] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4065), 1, + STATE(4318), 1, sym_type_annotation, - STATE(5040), 1, + STATE(5028), 1, sym__initializer, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5393), 1, + STATE(5372), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127067] = 7, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, + [128192] = 4, + ACTIONS(4107), 1, + anon_sym_PIPE, + ACTIONS(6459), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, + ACTIONS(4109), 10, 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_PIPE_RBRACE, - [127096] = 11, - ACTIONS(2499), 1, + [128215] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4346), 1, + STATE(3996), 1, sym_type_annotation, - STATE(5072), 1, + STATE(4624), 1, sym__initializer, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5415), 1, + STATE(5269), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127133] = 7, - ACTIONS(3808), 1, + [128252] = 7, + ACTIONS(3900), 1, anon_sym_COMMA, - ACTIONS(3811), 1, + ACTIONS(3922), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - STATE(4792), 1, + STATE(4647), 1, aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -243606,156 +244800,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127162] = 11, - ACTIONS(2499), 1, + [128281] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6509), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3330), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3860), 1, sym_formal_parameters, - STATE(3847), 1, - sym__call_signature, - STATE(4100), 1, + STATE(3984), 1, sym_type_annotation, - STATE(4574), 1, + STATE(4603), 1, sym__initializer, - STATE(5249), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5483), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6669), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127199] = 9, - ACTIONS(2499), 1, + [128318] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4181), 1, - sym__call_signature, - STATE(4182), 1, + STATE(4331), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5045), 1, + sym__initializer, + STATE(5217), 1, sym_type_parameters, + STATE(5389), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 5, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127232] = 8, - ACTIONS(3557), 1, - anon_sym_COLON, - ACTIONS(3576), 1, + [128355] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6343), 1, - anon_sym_DOT, - ACTIONS(6673), 1, - anon_sym_QMARK, - STATE(2964), 1, - sym_type_arguments, - STATE(5159), 1, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3860), 1, + sym_formal_parameters, + STATE(4304), 1, sym_type_annotation, + STATE(4921), 1, + sym__initializer, + STATE(5217), 1, + sym_type_parameters, + STATE(5230), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 6, + ACTIONS(6729), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127263] = 9, - ACTIONS(2499), 1, + anon_sym_SEMI, + [128392] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3626), 1, - sym__call_signature, - STATE(4027), 1, + STATE(3986), 1, sym_type_annotation, - STATE(5233), 1, + STATE(4962), 1, + sym__initializer, + STATE(5217), 1, sym_type_parameters, + STATE(5314), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 5, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127296] = 11, - ACTIONS(2499), 1, + [128429] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4170), 1, + STATE(4127), 1, sym_type_annotation, - STATE(4729), 1, + STATE(4763), 1, sym__initializer, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5336), 1, + STATE(5304), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127333] = 11, - ACTIONS(2499), 1, + [128466] = 9, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4337), 1, + STATE(4174), 1, + sym__call_signature, + STATE(4176), 1, sym_type_annotation, - STATE(5063), 1, - sym__initializer, - STATE(5328), 1, + STATE(5331), 1, sym_type_parameters, - STATE(5406), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6709), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127370] = 3, + anon_sym_PIPE_RBRACE, + [128499] = 3, ACTIONS(1900), 1, anon_sym_PIPE, ACTIONS(5), 2, @@ -243773,241 +244972,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_is, anon_sym_PIPE_RBRACE, - [127391] = 9, - ACTIONS(2499), 1, + [128520] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, sym_formal_parameters, - STATE(3527), 1, + STATE(3849), 1, sym__call_signature, - STATE(4058), 1, + STATE(4236), 1, sym_type_annotation, - STATE(5233), 1, + STATE(4895), 1, + sym__initializer, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6649), 5, + ACTIONS(6733), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127424] = 9, - ACTIONS(2499), 1, + [128557] = 8, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(3575), 1, anon_sym_COLON, - STATE(3315), 1, - sym_formal_parameters, - STATE(3604), 1, - sym__call_signature, - STATE(4278), 1, - sym_type_annotation, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6678), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127457] = 8, - ACTIONS(3516), 1, + ACTIONS(6385), 1, anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_QMARK_DOT, - ACTIONS(6680), 1, - anon_sym_LPAREN, - ACTIONS(6682), 1, - anon_sym_LT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, + ACTIONS(6735), 1, + anon_sym_QMARK, + STATE(3049), 1, sym_type_arguments, + STATE(5433), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 6, - anon_sym_as, + ACTIONS(3551), 6, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127488] = 8, - ACTIONS(6317), 1, - anon_sym_DOT, - ACTIONS(6319), 1, - anon_sym_QMARK_DOT, - ACTIONS(6680), 1, - anon_sym_LPAREN, - ACTIONS(6682), 1, + [128588] = 9, + ACTIONS(2515), 1, anon_sym_LT, - STATE(2918), 1, - sym_arguments, - STATE(2975), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4070), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127519] = 8, - ACTIONS(6321), 1, - anon_sym_DOT, - ACTIONS(6323), 1, - anon_sym_QMARK_DOT, - ACTIONS(6680), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6682), 1, - anon_sym_LT, - STATE(2920), 1, - sym_arguments, - STATE(2973), 1, - sym_type_arguments, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3332), 1, + sym_formal_parameters, + STATE(3682), 1, + sym__call_signature, + STATE(4299), 1, + sym_type_annotation, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4062), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127550] = 11, - ACTIONS(2499), 1, + ACTIONS(6738), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [128621] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4100), 1, + STATE(4091), 1, sym_type_annotation, - STATE(4978), 1, - sym__call_signature, - STATE(4979), 1, + STATE(4761), 1, sym__initializer, - STATE(5233), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5324), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6669), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127587] = 4, - ACTIONS(4250), 1, - anon_sym_PIPE, - ACTIONS(6684), 1, - anon_sym_DOT, + [128658] = 11, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3860), 1, + sym_formal_parameters, + STATE(4111), 1, + sym_type_annotation, + STATE(4783), 1, + sym__initializer, + STATE(5217), 1, + sym_type_parameters, + STATE(5356), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 10, + ACTIONS(6707), 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, - [127610] = 3, - ACTIONS(3427), 1, - anon_sym_PIPE, + [128695] = 11, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3332), 1, + sym_formal_parameters, + STATE(4236), 1, + sym_type_annotation, + STATE(4907), 1, + sym__call_signature, + STATE(4908), 1, + sym__initializer, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 11, + ACTIONS(6733), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127631] = 9, - ACTIONS(2499), 1, + [128732] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, sym_formal_parameters, - STATE(4026), 1, + STATE(3913), 1, sym__call_signature, - STATE(4027), 1, + STATE(4061), 1, sym_type_annotation, - STATE(5233), 1, + STATE(4721), 1, + sym__initializer, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 5, + ACTIONS(6740), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127664] = 9, - ACTIONS(2499), 1, + [128769] = 9, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4266), 1, + STATE(4136), 1, sym__call_signature, - STATE(4267), 1, + STATE(4137), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6661), 5, + ACTIONS(6721), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127697] = 3, - ACTIONS(4084), 1, + [128802] = 4, + ACTIONS(4276), 1, anon_sym_PIPE, + ACTIONS(6742), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 11, + ACTIONS(4278), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244017,245 +245191,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [127718] = 11, - ACTIONS(2499), 1, + [128825] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, sym_formal_parameters, - STATE(4302), 1, + STATE(3834), 1, + sym__call_signature, + STATE(3939), 1, sym_type_annotation, - STATE(4995), 1, + STATE(4970), 1, sym__initializer, - STATE(5328), 1, + STATE(5484), 1, sym_type_parameters, - STATE(5335), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6744), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127755] = 3, - ACTIONS(4118), 1, - anon_sym_PIPE, + [128862] = 11, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3860), 1, + sym_formal_parameters, + STATE(4270), 1, + sym_type_annotation, + STATE(4954), 1, + sym__initializer, + STATE(5217), 1, + sym_type_parameters, + STATE(5370), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4120), 11, + ACTIONS(6746), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, + [128899] = 7, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127776] = 4, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(6421), 1, - anon_sym_is, + [128928] = 5, + ACTIONS(6489), 1, + anon_sym_LPAREN, + ACTIONS(6748), 1, + anon_sym_DOT, + STATE(3356), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 10, + ACTIONS(4101), 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, - [127799] = 11, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, + [128953] = 7, + ACTIONS(3900), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3806), 1, - sym_formal_parameters, - STATE(4334), 1, - sym_type_annotation, - STATE(5055), 1, - sym__initializer, - STATE(5328), 1, - sym_type_parameters, - STATE(5401), 1, - sym__call_signature, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(3906), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127836] = 11, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + anon_sym_SEMI, anon_sym_COLON, - STATE(3806), 1, - sym_formal_parameters, - STATE(4123), 1, - sym_type_annotation, - STATE(4619), 1, - sym__initializer, - STATE(5328), 1, - sym_type_parameters, - STATE(5439), 1, - sym__call_signature, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [128982] = 5, + ACTIONS(6495), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_DOT, + STATE(3477), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(3551), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [127873] = 9, - ACTIONS(2499), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129007] = 9, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4274), 1, + STATE(4298), 1, sym__call_signature, - STATE(4278), 1, + STATE(4299), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 5, + ACTIONS(6738), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127906] = 11, - ACTIONS(2499), 1, + [129040] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6447), 1, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4231), 1, + STATE(3977), 1, sym_type_annotation, - STATE(4834), 1, + STATE(5051), 1, sym__initializer, - STATE(5170), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5396), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127943] = 4, - ACTIONS(4108), 1, - anon_sym_PIPE, - ACTIONS(6688), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4110), 10, + ACTIONS(6707), 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, - [127966] = 9, - ACTIONS(2499), 1, + [129077] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3633), 1, - sym__call_signature, - STATE(4182), 1, + STATE(4394), 1, sym_type_annotation, - STATE(5233), 1, + STATE(5127), 1, + sym__initializer, + STATE(5217), 1, sym_type_parameters, + STATE(5469), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 5, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127999] = 7, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [128028] = 3, - ACTIONS(4324), 1, + [129114] = 3, + ACTIONS(2363), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 10, + ACTIONS(2361), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244266,35 +245421,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128048] = 5, - ACTIONS(4170), 1, - anon_sym_PIPE, - ACTIONS(6690), 1, - anon_sym_LBRACK, + [129134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4452), 7, + ACTIONS(4274), 11, 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_PIPE_RBRACE, - [128072] = 3, - ACTIONS(4174), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129152] = 5, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4400), 1, anon_sym_PIPE, + STATE(1667), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 10, + ACTIONS(4402), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -244302,88 +245456,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128092] = 3, - ACTIONS(2371), 1, - anon_sym_PIPE, + [129176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2369), 10, + ACTIONS(4294), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128112] = 4, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(6692), 1, anon_sym_extends, + [129194] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4192), 9, + ACTIONS(3355), 11, 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_PIPE_RBRACE, - [128134] = 4, - ACTIONS(6427), 1, anon_sym_DOT, - ACTIONS(6429), 1, - anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 9, + ACTIONS(4154), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128156] = 4, - ACTIONS(6694), 1, - anon_sym_DOT, - ACTIONS(6696), 1, - anon_sym_QMARK_DOT, + [129230] = 11, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + anon_sym_SQUOTE, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6752), 1, + anon_sym_type, + ACTIONS(6754), 1, + anon_sym_COMMA, + ACTIONS(6756), 1, + anon_sym_RBRACE, + ACTIONS(6758), 1, + anon_sym_typeof, + STATE(4833), 1, + sym_import_specifier, + STATE(5491), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5874), 2, + sym__module_export_name, + sym_string, + [129266] = 3, + ACTIONS(2375), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 9, + ACTIONS(2373), 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, - [128178] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6700), 1, + anon_sym_PIPE_RBRACE, + [129286] = 3, + ACTIONS(4400), 1, anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 8, + ACTIONS(4402), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244391,111 +245560,118 @@ 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, - [128202] = 2, + [129306] = 3, + ACTIONS(4408), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3227), 11, + ACTIONS(4410), 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, - [128220] = 2, + anon_sym_PIPE_RBRACE, + [129326] = 3, + ACTIONS(4416), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 11, + ACTIONS(4418), 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, - [128238] = 2, + anon_sym_PIPE_RBRACE, + [129346] = 3, + ACTIONS(4340), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 11, + ACTIONS(4342), 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, - [128256] = 2, + anon_sym_PIPE_RBRACE, + [129366] = 3, + ACTIONS(4164), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 11, + ACTIONS(4166), 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, - [128274] = 2, + anon_sym_PIPE_RBRACE, + [129386] = 3, + ACTIONS(4424), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 11, + ACTIONS(4426), 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, - [128292] = 3, - ACTIONS(1888), 1, - anon_sym_DOT, + [129406] = 3, + ACTIONS(4428), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 10, + ACTIONS(4430), 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, - [128312] = 3, - ACTIONS(4402), 1, + anon_sym_PIPE_RBRACE, + [129426] = 3, + ACTIONS(4436), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 10, + ACTIONS(4438), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244506,11 +245682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128332] = 2, + [129446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3474), 11, + ACTIONS(4306), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244522,11 +245698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128350] = 2, + [129464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3478), 11, + ACTIONS(4314), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244538,77 +245714,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128368] = 3, - ACTIONS(4256), 1, - anon_sym_PIPE, + [129482] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 10, + ACTIONS(4322), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128388] = 3, - ACTIONS(1892), 1, - anon_sym_DOT, + [129500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 10, + ACTIONS(3906), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_COLON, anon_sym_LT, - anon_sym_extends, - [128408] = 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [129518] = 3, + ACTIONS(4454), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 11, + ACTIONS(4456), 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_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [129538] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6762), 1, anon_sym_PIPE, + ACTIONS(6764), 1, anon_sym_extends, - [128426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 11, + ACTIONS(4456), 8, 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_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128444] = 2, + anon_sym_PIPE_RBRACE, + [129562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4424), 11, + ACTIONS(3331), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244620,45 +245798,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128462] = 2, + [129580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 11, + ACTIONS(4406), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128480] = 2, + [129598] = 3, + ACTIONS(4474), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3235), 11, + ACTIONS(4476), 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, - [128498] = 3, - ACTIONS(4260), 1, + anon_sym_PIPE_RBRACE, + [129618] = 4, + ACTIONS(4478), 1, anon_sym_PIPE, + ACTIONS(6760), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 10, + ACTIONS(4480), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244666,16 +245847,15 @@ 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, - [128518] = 3, - ACTIONS(4264), 1, + [129640] = 3, + ACTIONS(4482), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 10, + ACTIONS(4484), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244686,13 +245866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128538] = 3, - ACTIONS(2363), 1, + [129660] = 3, + ACTIONS(4494), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2361), 10, + ACTIONS(4204), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244703,17 +245883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128558] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6700), 1, + [129680] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 8, + ACTIONS(4348), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244721,14 +245897,16 @@ 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, - [128582] = 3, - ACTIONS(4316), 1, + [129700] = 3, + ACTIONS(4107), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 10, + ACTIONS(4109), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244739,17 +245917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128602] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6700), 1, + [129720] = 4, + ACTIONS(4350), 1, anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_extends, + ACTIONS(6760), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 8, + ACTIONS(4352), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244757,8 +245933,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [128626] = 3, + [129742] = 3, ACTIONS(2379), 1, anon_sym_PIPE, ACTIONS(5), 2, @@ -244775,48 +245952,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128646] = 3, - ACTIONS(4430), 1, - anon_sym_PIPE, + [129762] = 3, + ACTIONS(3411), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4432), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3413), 10, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128666] = 2, + anon_sym_LBRACE_PIPE, + [129782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3239), 11, + ACTIONS(3413), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128684] = 4, - ACTIONS(4438), 1, + [129800] = 3, + ACTIONS(4208), 1, anon_sym_PIPE, - ACTIONS(6698), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4440), 9, + ACTIONS(4206), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244824,15 +245999,16 @@ 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, - [128706] = 3, - ACTIONS(4446), 1, + [129820] = 3, + ACTIONS(4354), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4448), 10, + ACTIONS(4356), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244843,13 +246019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128726] = 3, - ACTIONS(4391), 1, + [129840] = 3, + ACTIONS(4358), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 10, + ACTIONS(4360), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244860,83 +246036,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128746] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_extends, + [129860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4444), 8, + ACTIONS(3241), 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_PIPE_RBRACE, - [128770] = 3, - ACTIONS(2367), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [129878] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2365), 10, + ACTIONS(3237), 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, + [129896] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6762), 1, + anon_sym_PIPE, + ACTIONS(6764), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 11, + ACTIONS(4170), 8, 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_PIPE_RBRACE, - [128808] = 4, - ACTIONS(4212), 1, + [129920] = 3, + ACTIONS(4248), 1, anon_sym_PIPE, - ACTIONS(6690), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 9, + ACTIONS(4250), 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, - [128830] = 3, - ACTIONS(4342), 1, + [129940] = 3, + ACTIONS(4252), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 10, + ACTIONS(4254), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244947,38 +246121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128850] = 11, - ACTIONS(3109), 1, - anon_sym_DQUOTE, - ACTIONS(3111), 1, - anon_sym_SQUOTE, - ACTIONS(6704), 1, - sym_identifier, - ACTIONS(6706), 1, - anon_sym_type, - ACTIONS(6708), 1, - anon_sym_COMMA, - ACTIONS(6710), 1, - anon_sym_RBRACE, - ACTIONS(6712), 1, - anon_sym_typeof, - STATE(5029), 1, - sym_import_specifier, - STATE(5384), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5604), 2, - sym__module_export_name, - sym_string, - [128886] = 3, - ACTIONS(4350), 1, + [129960] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6762), 1, anon_sym_PIPE, + ACTIONS(6764), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 10, + ACTIONS(4270), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244986,16 +246139,14 @@ 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, - [128906] = 3, - ACTIONS(4354), 1, + [129984] = 3, + ACTIONS(4244), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 10, + ACTIONS(4246), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245006,13 +246157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128926] = 3, - ACTIONS(4186), 1, + [130004] = 3, + ACTIONS(4256), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 10, + ACTIONS(4258), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245023,30 +246174,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128946] = 3, - ACTIONS(4358), 1, - anon_sym_PIPE, + [130024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 10, + ACTIONS(4396), 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, - [128966] = 3, - ACTIONS(4196), 1, + [130042] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6762), 1, anon_sym_PIPE, + ACTIONS(6764), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4198), 10, + ACTIONS(4364), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245054,36 +246208,35 @@ 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, - [128986] = 6, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(6343), 1, - anon_sym_DOT, - ACTIONS(6714), 1, - anon_sym_is, - STATE(2964), 1, - sym_type_arguments, + [130066] = 5, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(6766), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4284), 2, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [129012] = 3, - ACTIONS(4372), 1, + ACTIONS(4368), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [130090] = 4, + ACTIONS(4370), 1, anon_sym_PIPE, + ACTIONS(6768), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 10, + ACTIONS(4372), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245092,15 +246245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129032] = 3, - ACTIONS(4368), 1, + [130112] = 3, + ACTIONS(4326), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 10, + ACTIONS(4328), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245111,13 +246263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129052] = 3, - ACTIONS(4406), 1, + [130132] = 3, + ACTIONS(4330), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 10, + ACTIONS(4332), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245128,13 +246280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129072] = 3, - ACTIONS(4104), 1, + [130152] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6762), 1, anon_sym_PIPE, + ACTIONS(6764), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 10, + ACTIONS(4332), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245142,20 +246298,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, - [129092] = 5, - ACTIONS(6698), 1, + [130176] = 5, + ACTIONS(6760), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6762), 1, anon_sym_PIPE, - ACTIONS(6702), 1, + ACTIONS(6764), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4204), 8, + ACTIONS(4228), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245164,32 +246318,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [129116] = 5, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4324), 1, + [130200] = 4, + ACTIONS(4376), 1, anon_sym_PIPE, - STATE(1669), 1, - sym_arguments, + ACTIONS(6766), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 8, + ACTIONS(4378), 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, - [129140] = 3, - ACTIONS(4216), 1, + [130222] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6762), 1, anon_sym_PIPE, + ACTIONS(6764), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 10, + ACTIONS(4232), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245197,16 +246354,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [130246] = 3, + ACTIONS(3329), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3331), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129160] = 3, - ACTIONS(4220), 1, + anon_sym_LBRACE_PIPE, + [130266] = 3, + ACTIONS(2371), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 10, + ACTIONS(2369), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245217,65 +246389,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129180] = 3, - ACTIONS(4170), 1, + [130286] = 6, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(6385), 1, + anon_sym_DOT, + ACTIONS(6770), 1, + anon_sym_is, + STATE(3049), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3551), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [130312] = 3, + ACTIONS(1758), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 10, + ACTIONS(4442), 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, - [129200] = 4, - ACTIONS(4170), 1, + [130332] = 3, + ACTIONS(4282), 1, anon_sym_PIPE, - ACTIONS(6690), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 9, + ACTIONS(4284), 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, - [129222] = 3, - ACTIONS(4108), 1, + [130352] = 4, + ACTIONS(4282), 1, anon_sym_PIPE, + ACTIONS(6766), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 10, + ACTIONS(4284), 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, - [129242] = 3, - ACTIONS(4140), 1, + [130374] = 3, + ACTIONS(4095), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 10, + ACTIONS(4097), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245286,17 +246478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129262] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6700), 1, + [130394] = 3, + ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 8, + ACTIONS(4302), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245304,18 +246492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [129286] = 5, - ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_PIPE, - ACTIONS(6702), 1, anon_sym_extends, + anon_sym_PIPE_RBRACE, + [130414] = 3, + ACTIONS(4380), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4436), 8, + ACTIONS(4382), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245323,55 +246509,56 @@ 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, - [129310] = 3, - ACTIONS(2375), 1, - anon_sym_PIPE, + [130434] = 3, + ACTIONS(1882), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2373), 10, + ACTIONS(4442), 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_extends, - anon_sym_PIPE_RBRACE, - [129330] = 4, - ACTIONS(6381), 1, + anon_sym_PIPE, anon_sym_LT, - STATE(3363), 1, - sym_type_arguments, + anon_sym_extends, + [130454] = 3, + ACTIONS(4458), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 9, + ACTIONS(4460), 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, - [129352] = 6, - ACTIONS(2499), 1, + anon_sym_PIPE_RBRACE, + [130474] = 6, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3615), 1, + STATE(3560), 1, sym_formal_parameters, - STATE(5411), 1, + STATE(5362), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 7, + ACTIONS(3906), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -245379,13 +246566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [129378] = 3, - ACTIONS(4230), 1, + [130500] = 3, + ACTIONS(4466), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 10, + ACTIONS(4468), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245396,30 +246583,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129398] = 3, - ACTIONS(4270), 1, - anon_sym_PIPE, + [130520] = 4, + ACTIONS(6495), 1, + anon_sym_LT, + STATE(3488), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 10, + ACTIONS(4097), 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, - [129418] = 3, - ACTIONS(4300), 1, + [130542] = 3, + ACTIONS(4470), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 10, + ACTIONS(4472), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245430,15 +246618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129438] = 4, - ACTIONS(4304), 1, + [130562] = 3, + ACTIONS(2367), 1, anon_sym_PIPE, - ACTIONS(6698), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 9, + ACTIONS(2365), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245446,64 +246632,68 @@ 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, - [129460] = 3, - ACTIONS(4184), 1, - anon_sym_PIPE, + [130582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 10, + ACTIONS(5280), 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, - [129480] = 3, - ACTIONS(4376), 1, - anon_sym_PIPE, + [130600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 10, + ACTIONS(4414), 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_extends, - anon_sym_PIPE_RBRACE, - [129500] = 3, - ACTIONS(4114), 1, anon_sym_PIPE, + anon_sym_extends, + [130618] = 4, + ACTIONS(6491), 1, + anon_sym_DOT, + ACTIONS(6493), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 10, + ACTIONS(3514), 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, - [129520] = 2, + [130640] = 4, + ACTIONS(6772), 1, + anon_sym_DOT, + ACTIONS(6774), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1898), 10, + ACTIONS(4336), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245513,298 +246703,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - [129537] = 3, - ACTIONS(6633), 1, - anon_sym_is, + [130662] = 3, + ACTIONS(3353), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3355), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [130682] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 9, + ACTIONS(3233), 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, - [129556] = 2, + [130700] = 3, + ACTIONS(4142), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 10, + ACTIONS(4144), 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_extends, + anon_sym_PIPE_RBRACE, + [130720] = 6, + ACTIONS(6385), 1, + anon_sym_DOT, + ACTIONS(6725), 1, + anon_sym_LT, + ACTIONS(6776), 1, + anon_sym_is, + STATE(3049), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3551), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130745] = 5, + ACTIONS(6126), 1, + anon_sym_LPAREN, + ACTIONS(6417), 1, + anon_sym_DOT, + STATE(2957), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4101), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [130768] = 4, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2933), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4137), 8, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129573] = 11, - ACTIONS(2499), 1, + [130789] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6716), 1, + ACTIONS(6778), 1, sym_identifier, - ACTIONS(6718), 1, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - STATE(2266), 1, + STATE(2362), 1, sym_class_body, - STATE(3685), 1, + STATE(3693), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5418), 1, + STATE(5434), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129608] = 11, - ACTIONS(2499), 1, + [130824] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6718), 1, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6724), 1, + ACTIONS(6786), 1, sym_identifier, - STATE(2277), 1, + STATE(2345), 1, sym_class_body, - STATE(3578), 1, + STATE(3752), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5201), 1, + STATE(5380), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129643] = 10, - ACTIONS(3109), 1, + [130859] = 9, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(3111), 1, + ACTIONS(3071), 1, anon_sym_SQUOTE, - ACTIONS(6704), 1, + ACTIONS(6750), 1, sym_identifier, - ACTIONS(6706), 1, + ACTIONS(6788), 1, anon_sym_type, - ACTIONS(6712), 1, - anon_sym_typeof, - ACTIONS(6726), 1, - anon_sym_RBRACE, - STATE(5314), 1, - sym_import_specifier, - STATE(5384), 1, + ACTIONS(6790), 1, + anon_sym_as, + STATE(5459), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5604), 2, + ACTIONS(6529), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5785), 2, sym__module_export_name, sym_string, - [129676] = 11, - ACTIONS(2499), 1, + [130890] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6718), 1, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6728), 1, + ACTIONS(6792), 1, sym_identifier, - STATE(2277), 1, + STATE(2362), 1, sym_class_body, - STATE(3578), 1, + STATE(3693), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5201), 1, + STATE(5434), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129711] = 11, - ACTIONS(2499), 1, + [130925] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6730), 1, + ACTIONS(6794), 1, sym_identifier, - ACTIONS(6732), 1, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(1673), 1, + STATE(1676), 1, sym_class_body, - STATE(3716), 1, + STATE(3582), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5149), 1, + STATE(5173), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129746] = 10, - ACTIONS(3109), 1, - anon_sym_DQUOTE, - ACTIONS(3111), 1, - anon_sym_SQUOTE, - ACTIONS(6704), 1, - sym_identifier, - ACTIONS(6706), 1, - anon_sym_type, - ACTIONS(6712), 1, - anon_sym_typeof, - ACTIONS(6734), 1, - anon_sym_RBRACE, - STATE(5314), 1, - sym_import_specifier, - STATE(5384), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5604), 2, - sym__module_export_name, - sym_string, - [129779] = 9, - ACTIONS(3109), 1, - anon_sym_DQUOTE, - ACTIONS(3111), 1, - anon_sym_SQUOTE, - ACTIONS(6736), 1, - sym_identifier, - ACTIONS(6740), 1, - anon_sym_COMMA, - ACTIONS(6742), 1, - anon_sym_RBRACE, - STATE(4730), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6738), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4735), 2, - sym__module_export_name, - sym_string, - [129810] = 11, - ACTIONS(2499), 1, + [130960] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6718), 1, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6744), 1, + ACTIONS(6798), 1, sym_identifier, - STATE(2266), 1, + STATE(2345), 1, sym_class_body, - STATE(3685), 1, + STATE(3752), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5418), 1, + STATE(5380), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129845] = 11, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6718), 1, + [130995] = 4, + ACTIONS(6802), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3846), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6800), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6720), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [131016] = 11, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6746), 1, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6804), 1, sym_identifier, - STATE(2266), 1, + STATE(1674), 1, sym_class_body, - STATE(3685), 1, + STATE(3595), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5418), 1, + STATE(5354), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129880] = 4, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3814), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [129901] = 11, - ACTIONS(2499), 1, + [131051] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6718), 1, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6748), 1, + ACTIONS(6806), 1, sym_identifier, - STATE(2266), 1, + STATE(2362), 1, sym_class_body, - STATE(3685), 1, + STATE(3693), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5418), 1, + STATE(5434), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129936] = 3, - ACTIONS(6633), 1, + [131086] = 3, + ACTIONS(6651), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 9, + ACTIONS(4144), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245814,66 +247030,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129955] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_extends, + [131105] = 9, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + anon_sym_SQUOTE, + ACTIONS(6808), 1, + sym_identifier, + ACTIONS(6812), 1, + anon_sym_COMMA, + ACTIONS(6814), 1, + anon_sym_RBRACE, + STATE(4616), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6750), 7, + ACTIONS(6810), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4618), 2, + sym__module_export_name, + sym_string, + [131136] = 4, + ACTIONS(6802), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3872), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6816), 6, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [129978] = 5, - ACTIONS(6066), 1, + [131157] = 4, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2938), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 8, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(6357), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - STATE(2934), 1, - sym_arguments, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131178] = 4, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2939), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4080), 7, - anon_sym_COMMA, + ACTIONS(4130), 8, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [130001] = 4, - ACTIONS(6754), 1, - anon_sym_COLON, + [131199] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3886), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6752), 6, + ACTIONS(1898), 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, + [131216] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6762), 1, + anon_sym_PIPE, + ACTIONS(6764), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6818), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [130022] = 3, - ACTIONS(6756), 1, + [131239] = 3, + ACTIONS(6820), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 9, + ACTIONS(4097), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245883,328 +247152,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130041] = 6, - ACTIONS(6343), 1, - anon_sym_DOT, - ACTIONS(6682), 1, - anon_sym_LT, - ACTIONS(6758), 1, + [131258] = 3, + ACTIONS(6651), 1, anon_sym_is, - STATE(2964), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 6, - anon_sym_as, + ACTIONS(4109), 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, - [130066] = 11, - ACTIONS(2499), 1, + [131277] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6732), 1, + ACTIONS(6796), 1, anon_sym_LBRACE, - ACTIONS(6760), 1, + ACTIONS(6822), 1, sym_identifier, - STATE(2573), 1, + STATE(2591), 1, sym_class_body, - STATE(3670), 1, + STATE(3547), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5171), 1, + STATE(5315), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130101] = 11, - ACTIONS(2499), 1, + [131312] = 3, + ACTIONS(6824), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4278), 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, + [131331] = 4, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4058), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3906), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [131352] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6718), 1, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6762), 1, + ACTIONS(6826), 1, sym_identifier, - STATE(2277), 1, + STATE(2345), 1, sym_class_body, - STATE(3578), 1, + STATE(3752), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5201), 1, + STATE(5380), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130136] = 2, + [131387] = 8, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6828), 1, + anon_sym_EQ, + ACTIONS(6832), 1, + anon_sym_BANG, + STATE(3979), 1, + sym__initializer, + STATE(4205), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 10, + ACTIONS(6834), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6830), 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, - anon_sym_is, - [130153] = 11, - ACTIONS(2499), 1, + [131416] = 11, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6718), 1, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6782), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6784), 1, anon_sym_implements, - ACTIONS(6764), 1, + ACTIONS(6836), 1, sym_identifier, - STATE(2277), 1, + STATE(2362), 1, sym_class_body, - STATE(3578), 1, + STATE(3693), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5201), 1, + STATE(5434), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130188] = 3, - ACTIONS(6766), 1, + [131451] = 9, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6832), 1, + anon_sym_BANG, + ACTIONS(6838), 1, + sym__automatic_semicolon, + STATE(4205), 1, + sym_type_annotation, + STATE(4850), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6830), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6834), 2, + anon_sym_in, + anon_sym_of, + [131482] = 4, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2935), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3466), 8, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131503] = 4, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2936), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3458), 8, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131524] = 10, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + anon_sym_SQUOTE, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6752), 1, + anon_sym_type, + ACTIONS(6758), 1, + anon_sym_typeof, + ACTIONS(6841), 1, + anon_sym_RBRACE, + STATE(5249), 1, + sym_import_specifier, + STATE(5491), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5874), 2, + sym__module_export_name, + sym_string, + [131557] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4150), 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, + [131574] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4264), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 9, + ACTIONS(4390), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130207] = 9, - ACTIONS(3109), 1, + [131608] = 10, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(3111), 1, + ACTIONS(3071), 1, anon_sym_SQUOTE, - ACTIONS(6704), 1, + ACTIONS(6750), 1, sym_identifier, - ACTIONS(6768), 1, + ACTIONS(6752), 1, anon_sym_type, - ACTIONS(6770), 1, - anon_sym_as, - STATE(5355), 1, + ACTIONS(6758), 1, + anon_sym_typeof, + ACTIONS(6843), 1, + anon_sym_RBRACE, + STATE(5249), 1, + sym_import_specifier, + STATE(5491), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6475), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5579), 2, + STATE(5874), 2, sym__module_export_name, sym_string, - [130238] = 8, - ACTIONS(6455), 1, + [131641] = 4, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2937), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4116), 8, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131662] = 11, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6782), 1, + anon_sym_extends, + ACTIONS(6784), 1, + anon_sym_implements, + ACTIONS(6845), 1, + sym_identifier, + STATE(2345), 1, + sym_class_body, + STATE(3752), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5380), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131697] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6847), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(241), 1, + sym_class_body, + STATE(3564), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5436), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131729] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6772), 1, + ACTIONS(6853), 1, + anon_sym_BANG, + ACTIONS(6855), 1, + anon_sym_QMARK, + STATE(3956), 1, + sym_type_annotation, + STATE(5161), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131757] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6776), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6857), 1, anon_sym_BANG, - STATE(4215), 1, + ACTIONS(6859), 1, + anon_sym_QMARK, + STATE(4278), 1, + sym_type_annotation, + STATE(4866), 1, sym__initializer, - STATE(4338), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6533), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131785] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1844), 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, + [131801] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6861), 1, + anon_sym_BANG, + ACTIONS(6863), 1, + anon_sym_QMARK, + STATE(3963), 1, sym_type_annotation, + STATE(5008), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6774), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130267] = 9, - ACTIONS(6447), 1, + [131829] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6776), 1, + ACTIONS(6865), 1, anon_sym_BANG, - ACTIONS(6780), 1, + ACTIONS(6867), 1, + anon_sym_QMARK, + STATE(4039), 1, + sym_type_annotation, + STATE(4555), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6533), 3, sym__automatic_semicolon, - STATE(4338), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [131857] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6871), 1, + anon_sym_BANG, + ACTIONS(6873), 1, + anon_sym_QMARK, + STATE(4256), 1, sym_type_annotation, - STATE(5056), 1, + STATE(4743), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 2, + ACTIONS(6869), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [130298] = 4, - ACTIONS(6754), 1, + [131885] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6875), 1, + anon_sym_BANG, + ACTIONS(6877), 1, + anon_sym_QMARK, + STATE(4063), 1, + sym_type_annotation, + STATE(4723), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131913] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2132), 1, + sym_class_body, + STATE(3605), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5479), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131945] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2266), 1, + sym_class_body, + STATE(3625), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5421), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131977] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2128), 1, + sym_class_body, + STATE(3619), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5385), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132009] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(3596), 1, + sym_type_parameters, + STATE(4376), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5360), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132041] = 4, + ACTIONS(6881), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3825), 3, + STATE(3958), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(6783), 6, + ACTIONS(6800), 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, - [130319] = 11, - ACTIONS(2499), 1, + [132061] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6883), 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, + [132077] = 10, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6720), 1, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6722), 1, + ACTIONS(6851), 1, anon_sym_implements, - ACTIONS(6732), 1, + ACTIONS(6879), 1, anon_sym_LBRACE, - ACTIONS(6785), 1, - sym_identifier, - STATE(1653), 1, - sym_class_body, - STATE(3666), 1, + STATE(3606), 1, sym_type_parameters, - STATE(5080), 1, + STATE(4020), 1, + sym_class_body, + STATE(5037), 1, sym_extends_clause, - STATE(5449), 1, + STATE(5489), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130354] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4120), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130371] = 8, - ACTIONS(3109), 1, + [132109] = 8, + ACTIONS(3069), 1, anon_sym_DQUOTE, - ACTIONS(3111), 1, + ACTIONS(3071), 1, anon_sym_SQUOTE, - ACTIONS(6736), 1, + ACTIONS(6808), 1, sym_identifier, - ACTIONS(6787), 1, + ACTIONS(6885), 1, anon_sym_RBRACE, - STATE(5379), 1, + STATE(5321), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6738), 2, + ACTIONS(6810), 2, anon_sym_type, anon_sym_typeof, - STATE(4735), 2, + STATE(4618), 2, sym__module_export_name, sym_string, - [130399] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4393), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [132137] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6796), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6849), 1, anon_sym_extends, - [130415] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6789), 1, - anon_sym_BANG, - ACTIONS(6791), 1, - anon_sym_QMARK, - STATE(3908), 1, - sym_type_annotation, - STATE(4610), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6489), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130443] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6793), 1, - anon_sym_BANG, - ACTIONS(6795), 1, - anon_sym_QMARK, - STATE(4124), 1, - sym_type_annotation, - STATE(4627), 1, - sym__initializer, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(1725), 1, + sym_class_body, + STATE(3607), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5164), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130471] = 2, + [132169] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 9, + ACTIONS(2369), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246214,113 +247834,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130487] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6797), 1, - anon_sym_BANG, - ACTIONS(6799), 1, - anon_sym_QMARK, - STATE(3911), 1, - sym_type_annotation, - STATE(4680), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6489), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130515] = 8, - ACTIONS(6447), 1, + [132185] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6801), 1, + ACTIONS(6887), 1, anon_sym_BANG, - ACTIONS(6803), 1, + ACTIONS(6889), 1, anon_sym_QMARK, - STATE(3913), 1, + STATE(4350), 1, sym_type_annotation, - STATE(4825), 1, + STATE(5068), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130543] = 2, + [132213] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2604), 1, + sym_class_body, + STATE(3644), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5279), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [132245] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6796), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6849), 1, anon_sym_extends, - [130559] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6805), 1, - anon_sym_BANG, - ACTIONS(6807), 1, - anon_sym_QMARK, - STATE(4379), 1, - sym_type_annotation, - STATE(4707), 1, - sym__initializer, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(1679), 1, + sym_class_body, + STATE(3597), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5373), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130587] = 2, + [132277] = 5, + ACTIONS(6723), 1, + anon_sym_LPAREN, + ACTIONS(6891), 1, + anon_sym_DOT, + STATE(2957), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4101), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130603] = 2, + [132299] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2140), 1, + sym_class_body, + STATE(3627), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5450), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 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, - [130619] = 2, + [132331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 9, + ACTIONS(4426), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246330,41 +247951,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130635] = 4, - ACTIONS(6809), 1, - anon_sym_COLON, + [132347] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4647), 1, + aux_sym_object_repeat1, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4324), 3, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [132373] = 7, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4354), 1, sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6783), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [130655] = 2, + STATE(5079), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2361), 9, + ACTIONS(6559), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6557), 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, - [130671] = 2, + [132399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 9, + ACTIONS(1858), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246374,68 +248003,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130687] = 8, - ACTIONS(6447), 1, + [132415] = 7, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6811), 1, - anon_sym_BANG, - ACTIONS(6813), 1, - anon_sym_QMARK, - STATE(3936), 1, + STATE(4234), 1, sym_type_annotation, - STATE(4665), 1, + STATE(4902), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6541), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6539), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130715] = 8, - ACTIONS(6447), 1, + [132441] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6815), 1, + ACTIONS(6893), 1, anon_sym_BANG, - ACTIONS(6817), 1, + ACTIONS(6895), 1, anon_sym_QMARK, - STATE(3937), 1, + STATE(4273), 1, sym_type_annotation, - STATE(4774), 1, + STATE(4959), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130743] = 5, - ACTIONS(6819), 1, + [132469] = 6, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6821), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6823), 1, + ACTIONS(6657), 1, anon_sym_extends, + ACTIONS(6897), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6818), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130765] = 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [132493] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(3603), 1, + sym_type_parameters, + STATE(3997), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5457), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 9, + [132525] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246445,43 +248096,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130781] = 2, + [132541] = 5, + ACTIONS(6899), 1, + anon_sym_AMP, + ACTIONS(6901), 1, + anon_sym_PIPE, + ACTIONS(6903), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2373), 9, + ACTIONS(4228), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + [132563] = 5, + ACTIONS(6899), 1, anon_sym_AMP, + ACTIONS(6901), 1, anon_sym_PIPE, + ACTIONS(6903), 1, anon_sym_extends, - [130797] = 4, - ACTIONS(6825), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4452), 5, + ACTIONS(4170), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130817] = 3, - ACTIONS(6827), 1, - anon_sym_extends, + anon_sym_LBRACK, + [132585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4192), 8, + ACTIONS(4402), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246490,122 +248143,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [130835] = 6, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(6829), 1, - anon_sym_EQ, + [132601] = 9, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + anon_sym_SQUOTE, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6752), 1, + anon_sym_type, + ACTIONS(6758), 1, + anon_sym_typeof, + STATE(5249), 1, + sym_import_specifier, + STATE(5491), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6750), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [130859] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, + STATE(5874), 2, + sym__module_export_name, + sym_string, + [132631] = 5, + ACTIONS(6899), 1, + anon_sym_AMP, + ACTIONS(6901), 1, + anon_sym_PIPE, + ACTIONS(6903), 1, anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2173), 1, - sym_class_body, - STATE(3555), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5300), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130891] = 8, - ACTIONS(6447), 1, + ACTIONS(4232), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [132653] = 7, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6835), 1, - anon_sym_BANG, - ACTIONS(6837), 1, - anon_sym_QMARK, - STATE(4098), 1, + STATE(4045), 1, sym_type_annotation, - STATE(4560), 1, + STATE(4707), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6633), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6631), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130919] = 8, - ACTIONS(6447), 1, + [132679] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6839), 1, + ACTIONS(6905), 1, anon_sym_BANG, - ACTIONS(6841), 1, + ACTIONS(6907), 1, anon_sym_QMARK, - STATE(4138), 1, + STATE(4280), 1, sym_type_annotation, - STATE(4662), 1, + STATE(4963), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130947] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4318), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [132707] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130963] = 5, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6821), 1, - anon_sym_PIPE, - ACTIONS(6823), 1, - anon_sym_extends, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130985] = 2, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [132733] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1726), 9, + ACTIONS(2377), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246615,152 +248254,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131001] = 3, - ACTIONS(6825), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4214), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131019] = 8, - ACTIONS(6447), 1, + [132749] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6843), 1, + ACTIONS(6909), 1, anon_sym_BANG, - ACTIONS(6845), 1, + ACTIONS(6911), 1, anon_sym_QMARK, - STATE(4353), 1, + STATE(4009), 1, sym_type_annotation, - STATE(5085), 1, + STATE(5047), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6869), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131047] = 10, - ACTIONS(2499), 1, + [132777] = 10, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6831), 1, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - ACTIONS(6847), 1, + ACTIONS(6913), 1, anon_sym_LBRACE, - STATE(209), 1, + STATE(818), 1, sym_class_body, - STATE(3675), 1, + STATE(3611), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5299), 1, + STATE(5259), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131079] = 8, - ACTIONS(6447), 1, + [132809] = 5, + ACTIONS(6899), 1, + anon_sym_AMP, + ACTIONS(6901), 1, + anon_sym_PIPE, + ACTIONS(6903), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4270), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [132831] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6849), 1, + anon_sym_LT, + anon_sym_QMARK, + [132857] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6915), 1, anon_sym_BANG, - ACTIONS(6851), 1, + ACTIONS(6917), 1, anon_sym_QMARK, - STATE(3958), 1, + STATE(4400), 1, sym_type_annotation, - STATE(4534), 1, + STATE(5134), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131107] = 2, + [132885] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6919), 1, + anon_sym_BANG, + ACTIONS(6921), 1, + anon_sym_QMARK, + STATE(4030), 1, + sym_type_annotation, + STATE(4661), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 9, + ACTIONS(6509), 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, - [131123] = 2, + [132913] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1754), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6923), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131139] = 7, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132929] = 7, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(667), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [131165] = 5, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6821), 1, - anon_sym_PIPE, - ACTIONS(6823), 1, - anon_sym_extends, + [132955] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4444), 6, + ACTIONS(4430), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131187] = 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132971] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 9, + ACTIONS(4476), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246770,61 +248433,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131203] = 5, - ACTIONS(6819), 1, + [132987] = 3, + ACTIONS(6899), 1, anon_sym_AMP, - ACTIONS(6821), 1, - anon_sym_PIPE, - ACTIONS(6823), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 6, + ACTIONS(4480), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131225] = 2, + anon_sym_PIPE, + anon_sym_extends, + [133005] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(3608), 1, + sym_type_parameters, + STATE(4084), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5202), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 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, - [131241] = 7, - ACTIONS(6447), 1, + [133037] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4333), 1, + ACTIONS(6925), 1, + anon_sym_BANG, + ACTIONS(6927), 1, + anon_sym_QMARK, + STATE(4295), 1, sym_type_annotation, - STATE(5053), 1, + STATE(4984), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6555), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6553), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131267] = 2, + [133065] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 9, + ACTIONS(4438), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246834,68 +248504,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131283] = 7, - ACTIONS(6447), 1, + [133081] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4234), 1, + ACTIONS(6929), 1, + anon_sym_BANG, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(4258), 1, sym_type_annotation, - STATE(4855), 1, + STATE(4941), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6461), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6459), 3, + ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131309] = 4, - ACTIONS(6809), 1, + [133109] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, + ACTIONS(6933), 1, + anon_sym_BANG, + ACTIONS(6935), 1, + anon_sym_QMARK, + STATE(4308), 1, + sym_type_annotation, + STATE(5000), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3921), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6752), 5, + ACTIONS(6595), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131329] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2284), 1, - sym_class_body, - STATE(3610), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5452), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [133137] = 7, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6828), 1, + anon_sym_EQ, + STATE(3980), 1, + sym__initializer, + STATE(4205), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131361] = 2, + ACTIONS(6834), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6830), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133163] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 9, + ACTIONS(4166), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246905,346 +248577,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131377] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4622), 1, + [133179] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(5051), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, + ACTIONS(6515), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131403] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_class_body, - STATE(3744), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5408), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131435] = 2, + ACTIONS(6838), 1, + sym__automatic_semicolon, + STATE(4205), 1, + sym_type_annotation, + STATE(4857), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6855), 9, - anon_sym_EQ, + ACTIONS(6830), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(6834), 2, anon_sym_in, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [131451] = 7, - ACTIONS(6447), 1, + [133207] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4056), 1, - sym_type_annotation, - STATE(4991), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6859), 2, + ACTIONS(6937), 1, anon_sym_BANG, + ACTIONS(6939), 1, anon_sym_QMARK, - ACTIONS(6857), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131477] = 7, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4313), 1, + STATE(4265), 1, sym_type_annotation, - STATE(5036), 1, + STATE(4949), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6521), 2, - anon_sym_BANG, - anon_sym_QMARK, ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131503] = 8, - ACTIONS(6447), 1, + [133235] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6861), 1, + ACTIONS(6941), 1, anon_sym_BANG, - ACTIONS(6863), 1, + ACTIONS(6943), 1, anon_sym_QMARK, - STATE(3963), 1, + STATE(4268), 1, sym_type_annotation, - STATE(4570), 1, + STATE(4952), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131531] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5053), 1, - anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131557] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6865), 9, + [133263] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(6515), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(6945), 1, + anon_sym_BANG, + ACTIONS(6947), 1, anon_sym_QMARK, - [131573] = 3, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3419), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [131591] = 2, + STATE(4405), 1, + sym_type_annotation, + STATE(5143), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4432), 9, + ACTIONS(6533), 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, - [131607] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(692), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4810), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, + [133291] = 4, + ACTIONS(6881), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131633] = 3, - ACTIONS(6819), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4440), 8, + STATE(4337), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6816), 5, 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, - [131651] = 8, - ACTIONS(6447), 1, + [133311] = 7, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6867), 1, - anon_sym_BANG, - ACTIONS(6869), 1, - anon_sym_QMARK, - STATE(3966), 1, + STATE(3955), 1, sym_type_annotation, - STATE(4581), 1, + STATE(4987), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131679] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6871), 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, + ACTIONS(6603), 2, + anon_sym_BANG, anon_sym_QMARK, - [131695] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4448), 9, + ACTIONS(6601), 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, - [131711] = 8, - ACTIONS(6447), 1, + [133337] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6873), 1, + ACTIONS(6949), 1, anon_sym_BANG, - ACTIONS(6875), 1, + ACTIONS(6951), 1, anon_sym_QMARK, - STATE(4077), 1, + STATE(3942), 1, sym_type_annotation, - STATE(5123), 1, + STATE(5089), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131739] = 9, - ACTIONS(3109), 1, - anon_sym_DQUOTE, - ACTIONS(3111), 1, - anon_sym_SQUOTE, - ACTIONS(6704), 1, - sym_identifier, - ACTIONS(6706), 1, - anon_sym_type, - ACTIONS(6712), 1, - anon_sym_typeof, - STATE(5314), 1, - sym_import_specifier, - STATE(5384), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5604), 2, - sym__module_export_name, - sym_string, - [131769] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2320), 1, - sym_class_body, - STATE(3709), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5268), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131801] = 3, - ACTIONS(3423), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3425), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [131819] = 2, + [133365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 9, + ACTIONS(4418), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247254,120 +248726,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131835] = 5, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6821), 1, - anon_sym_PIPE, - ACTIONS(6823), 1, - anon_sym_extends, + [133381] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4436), 6, + ACTIONS(2373), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131857] = 7, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6772), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133397] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4216), 1, - sym__initializer, - STATE(4338), 1, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6953), 1, + anon_sym_BANG, + ACTIONS(6955), 1, + anon_sym_QMARK, + STATE(4408), 1, sym_type_annotation, + STATE(5148), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6774), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131883] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2365), 9, + ACTIONS(6533), 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, - [131899] = 8, - ACTIONS(6447), 1, + [133425] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6780), 1, - sym__automatic_semicolon, - STATE(4338), 1, + ACTIONS(6957), 1, + anon_sym_BANG, + ACTIONS(6959), 1, + anon_sym_QMARK, + STATE(4275), 1, sym_type_annotation, - STATE(4561), 1, + STATE(4882), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 2, + ACTIONS(6509), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [131927] = 5, - ACTIONS(6357), 1, - anon_sym_DOT, - ACTIONS(6680), 1, - anon_sym_LPAREN, - STATE(2934), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4080), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131949] = 10, - ACTIONS(2499), 1, + [133453] = 10, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6718), 1, + ACTIONS(6847), 1, anon_sym_LBRACE, - ACTIONS(6831), 1, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - STATE(2184), 1, + STATE(233), 1, sym_class_body, - STATE(3616), 1, + STATE(3614), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5409), 1, + STATE(5307), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131981] = 2, + [133485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2377), 9, + ACTIONS(4456), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247377,155 +248816,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131997] = 8, - ACTIONS(6447), 1, + [133501] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6877), 1, + ACTIONS(6961), 1, anon_sym_BANG, - ACTIONS(6879), 1, + ACTIONS(6963), 1, anon_sym_QMARK, - STATE(4360), 1, + STATE(4048), 1, sym_type_annotation, - STATE(5092), 1, + STATE(4687), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132025] = 8, - ACTIONS(6447), 1, + [133529] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6881), 1, + ACTIONS(6965), 1, anon_sym_BANG, - ACTIONS(6883), 1, + ACTIONS(6967), 1, anon_sym_QMARK, - STATE(3969), 1, + STATE(4243), 1, sym_type_annotation, - STATE(4603), 1, + STATE(4903), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132053] = 8, - ACTIONS(6447), 1, + [133557] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6885), 1, + ACTIONS(6969), 1, anon_sym_BANG, - ACTIONS(6887), 1, + ACTIONS(6971), 1, anon_sym_QMARK, - STATE(4362), 1, + STATE(4052), 1, sym_type_annotation, - STATE(5095), 1, + STATE(4697), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132081] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6889), 1, - anon_sym_BANG, - ACTIONS(6891), 1, - anon_sym_QMARK, - STATE(3973), 1, - sym_type_annotation, - STATE(4618), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6489), 3, - sym__automatic_semicolon, + [133585] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_SEMI, - [132109] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2254), 1, - sym_class_body, - STATE(3689), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5227), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132141] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6732), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2574), 1, - sym_class_body, - STATE(3513), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5153), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(4506), 1, + anon_sym_EQ, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132173] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(3906), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6893), 1, - anon_sym_BANG, - ACTIONS(6895), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4095), 1, - sym_type_annotation, - STATE(4551), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132201] = 2, + [133611] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 9, + ACTIONS(4246), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247535,50 +248909,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132217] = 7, - ACTIONS(6447), 1, + [133627] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4235), 1, + ACTIONS(6973), 1, + anon_sym_BANG, + ACTIONS(6975), 1, + anon_sym_QMARK, + STATE(4412), 1, sym_type_annotation, - STATE(4951), 1, + STATE(5155), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6561), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6559), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132243] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6899), 1, - anon_sym_BANG, - ACTIONS(6901), 1, - anon_sym_QMARK, - STATE(4205), 1, - sym_type_annotation, - STATE(4775), 1, - sym__initializer, + [133655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6897), 3, + ACTIONS(4258), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132271] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 9, + ACTIONS(4144), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247588,93 +248957,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132287] = 8, - ACTIONS(6447), 1, + [133687] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6903), 1, + ACTIONS(6977), 1, anon_sym_BANG, - ACTIONS(6905), 1, + ACTIONS(6979), 1, anon_sym_QMARK, - STATE(3978), 1, + STATE(4415), 1, sym_type_annotation, - STATE(4657), 1, + STATE(5158), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132315] = 8, - ACTIONS(6447), 1, + [133715] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6981), 9, anon_sym_EQ, - ACTIONS(6455), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(6907), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + [133731] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6983), 1, anon_sym_BANG, - ACTIONS(6909), 1, + ACTIONS(6985), 1, anon_sym_QMARK, - STATE(3990), 1, + STATE(4255), 1, sym_type_annotation, - STATE(4701), 1, + STATE(4939), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132343] = 10, - ACTIONS(2499), 1, + [133759] = 10, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6831), 1, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(3717), 1, - sym_type_parameters, - STATE(3931), 1, + STATE(2293), 1, sym_class_body, - STATE(5080), 1, + STATE(3587), 1, + sym_type_parameters, + STATE(5037), 1, sym_extends_clause, - STATE(5231), 1, + STATE(5199), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132375] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6913), 1, - anon_sym_QMARK, - STATE(4142), 1, - sym_type_annotation, - STATE(4673), 1, - sym__initializer, + [133791] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, - sym__automatic_semicolon, + ACTIONS(6987), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [132403] = 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [133807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 9, + ACTIONS(4284), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247684,263 +249061,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132419] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6732), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(1676), 1, - sym_class_body, - STATE(3720), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5145), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132451] = 8, - ACTIONS(6447), 1, + [133823] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6915), 1, + ACTIONS(6989), 1, anon_sym_BANG, - ACTIONS(6917), 1, + ACTIONS(6991), 1, anon_sym_QMARK, - STATE(4144), 1, + STATE(4346), 1, sym_type_annotation, - STATE(4675), 1, + STATE(5036), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132479] = 2, + [133851] = 3, + ACTIONS(6993), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6919), 9, - anon_sym_EQ, + ACTIONS(4284), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + 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, - [132495] = 2, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6921), 9, - anon_sym_EQ, + ACTIONS(4097), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + 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, - [132511] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6831), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6847), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_class_body, - STATE(3581), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5397), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [133885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132543] = 5, - ACTIONS(6343), 1, - anon_sym_DOT, - ACTIONS(6682), 1, - anon_sym_LT, - STATE(2964), 1, - sym_type_arguments, + ACTIONS(4302), 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, + [133901] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3548), 6, - anon_sym_as, + ACTIONS(4109), 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, - [132565] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6831), 1, + [133917] = 5, + ACTIONS(6899), 1, + anon_sym_AMP, + ACTIONS(6901), 1, + anon_sym_PIPE, + ACTIONS(6903), 1, anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6923), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_class_body, - STATE(3619), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5255), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132597] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6925), 1, - anon_sym_BANG, - ACTIONS(6927), 1, - anon_sym_QMARK, - STATE(4152), 1, - sym_type_annotation, - STATE(4689), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, + ACTIONS(4456), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132625] = 8, - ACTIONS(6447), 1, + anon_sym_LBRACK, + [133939] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6929), 1, + ACTIONS(6995), 1, anon_sym_BANG, - ACTIONS(6931), 1, + ACTIONS(6997), 1, anon_sym_QMARK, - STATE(4367), 1, + STATE(4325), 1, sym_type_annotation, - STATE(5103), 1, + STATE(4948), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132653] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6923), 1, - anon_sym_LBRACE, - STATE(912), 1, - sym_class_body, - STATE(3621), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5304), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132685] = 7, + [133967] = 7, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4622), 1, + ACTIONS(4506), 1, anon_sym_EQ, - ACTIONS(4992), 1, + ACTIONS(5160), 1, anon_sym_RBRACE, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, + STATE(4651), 1, aux_sym_object_pattern_repeat1, + STATE(4665), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, + ACTIONS(3906), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [132711] = 8, - ACTIONS(6447), 1, + [133993] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2148), 1, + sym_class_body, + STATE(3771), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5442), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134025] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6933), 1, + ACTIONS(6999), 1, anon_sym_BANG, - ACTIONS(6935), 1, + ACTIONS(7001), 1, anon_sym_QMARK, - STATE(4366), 1, + STATE(4336), 1, sym_type_annotation, - STATE(5104), 1, + STATE(4967), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6527), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132739] = 8, - ACTIONS(6447), 1, + [134053] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6937), 1, + ACTIONS(7003), 1, anon_sym_BANG, - ACTIONS(6939), 1, + ACTIONS(7005), 1, anon_sym_QMARK, - STATE(4236), 1, + STATE(4168), 1, sym_type_annotation, - STATE(4851), 1, + STATE(4795), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6897), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132767] = 2, + [134081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 9, + ACTIONS(4484), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247950,194 +249270,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132783] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(3594), 1, - sym_type_parameters, - STATE(4043), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5341), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132815] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6941), 1, - anon_sym_BANG, - ACTIONS(6943), 1, - anon_sym_QMARK, - STATE(4372), 1, - sym_type_annotation, - STATE(5113), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6527), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132843] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6945), 1, - anon_sym_BANG, - ACTIONS(6947), 1, - anon_sym_QMARK, - STATE(4099), 1, - sym_type_annotation, - STATE(4562), 1, - sym__initializer, + [134097] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, + ACTIONS(4460), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132871] = 10, - ACTIONS(2499), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134113] = 10, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6831), 1, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - ACTIONS(6853), 1, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(3645), 1, - sym_type_parameters, - STATE(3979), 1, + STATE(801), 1, sym_class_body, - STATE(5080), 1, + STATE(3617), 1, + sym_type_parameters, + STATE(5037), 1, sym_extends_clause, - STATE(5144), 1, + STATE(5337), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132903] = 8, - ACTIONS(6447), 1, + [134145] = 7, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6949), 1, - anon_sym_BANG, - ACTIONS(6951), 1, - anon_sym_QMARK, - STATE(4377), 1, + STATE(4203), 1, sym_type_annotation, - STATE(5120), 1, + STATE(4847), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6527), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132931] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6953), 1, + ACTIONS(7009), 2, anon_sym_BANG, - ACTIONS(6955), 1, anon_sym_QMARK, - STATE(4101), 1, - sym_type_annotation, - STATE(4567), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6513), 3, + ACTIONS(7007), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132959] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(694), 1, - anon_sym_RBRACE, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(4792), 1, - aux_sym_object_repeat1, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [132985] = 8, - ACTIONS(6447), 1, + [134171] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6957), 1, + ACTIONS(7011), 1, anon_sym_BANG, - ACTIONS(6959), 1, + ACTIONS(7013), 1, anon_sym_QMARK, - STATE(4105), 1, + STATE(3991), 1, sym_type_annotation, - STATE(4575), 1, + STATE(4612), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133013] = 8, - ACTIONS(6447), 1, + [134199] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6961), 1, + ACTIONS(7015), 1, anon_sym_BANG, - ACTIONS(6963), 1, + ACTIONS(7017), 1, anon_sym_QMARK, - STATE(4117), 1, + STATE(4254), 1, sym_type_annotation, - STATE(4598), 1, + STATE(4840), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6513), 3, + ACTIONS(6533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133041] = 2, + [134227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 9, + ACTIONS(4250), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248147,11 +249379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133057] = 2, + [134243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 9, + ACTIONS(2361), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248161,101 +249393,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133073] = 2, + [134259] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7019), 1, + anon_sym_BANG, + ACTIONS(7021), 1, + anon_sym_QMARK, + STATE(4362), 1, + sym_type_annotation, + STATE(5080), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4198), 9, + ACTIONS(6595), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + [134287] = 5, + ACTIONS(6385), 1, + anon_sym_DOT, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(3049), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3551), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133089] = 5, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6821), 1, - anon_sym_PIPE, - ACTIONS(6823), 1, - anon_sym_extends, + [134309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4204), 6, + ACTIONS(4468), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133111] = 10, - ACTIONS(2499), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134325] = 10, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - STATE(2345), 1, + ACTIONS(6913), 1, + anon_sym_LBRACE, + STATE(903), 1, sym_class_body, - STATE(3545), 1, + STATE(3713), 1, sym_type_parameters, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5175), 1, + STATE(5191), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133143] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(3558), 1, - sym_type_parameters, - STATE(4002), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5204), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [134357] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133175] = 3, - ACTIONS(6819), 1, - anon_sym_AMP, + ACTIONS(7023), 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, + [134373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 8, + ACTIONS(4342), 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, - [133193] = 2, + [134389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 9, + ACTIONS(4472), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248265,33 +249508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133209] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6732), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(1694), 1, - sym_class_body, - STATE(3605), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5223), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [134405] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133241] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4106), 9, + ACTIONS(4204), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248301,88 +249522,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133257] = 8, - ACTIONS(3109), 1, - anon_sym_DQUOTE, - ACTIONS(3111), 1, - anon_sym_SQUOTE, - ACTIONS(6736), 1, - sym_identifier, - ACTIONS(6965), 1, - anon_sym_RBRACE, - STATE(5379), 1, - sym_export_specifier, + [134421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6738), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4735), 2, - sym__module_export_name, - sym_string, - [133285] = 10, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6853), 1, + ACTIONS(4348), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(794), 1, - sym_class_body, - STATE(3590), 1, - sym_type_parameters, - STATE(5080), 1, - sym_extends_clause, - STATE(5219), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133317] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6967), 1, - anon_sym_BANG, - ACTIONS(6969), 1, - anon_sym_QMARK, - STATE(4331), 1, - sym_type_annotation, - STATE(5048), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134437] = 3, + ACTIONS(6899), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(4352), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133345] = 3, - ACTIONS(3427), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [134455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 8, - anon_sym_as, + ACTIONS(4206), 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, - anon_sym_LBRACE_PIPE, - [133363] = 2, + [134471] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 9, + ACTIONS(4356), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248392,11 +249579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133379] = 2, + [134487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 9, + ACTIONS(4360), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248406,48 +249593,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133395] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6971), 1, - anon_sym_BANG, - ACTIONS(6973), 1, - anon_sym_QMARK, - STATE(4352), 1, - sym_type_annotation, - STATE(5082), 1, - sym__initializer, + [134503] = 5, + ACTIONS(6899), 1, + anon_sym_AMP, + ACTIONS(6901), 1, + anon_sym_PIPE, + ACTIONS(6903), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(4364), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133423] = 5, - ACTIONS(6819), 1, + anon_sym_LBRACK, + [134525] = 4, + ACTIONS(6993), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4284), 3, anon_sym_AMP, - ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6823), 1, + anon_sym_extends, + ACTIONS(4368), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [134545] = 3, + ACTIONS(7025), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 6, + ACTIONS(4372), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133445] = 2, + anon_sym_AMP, + anon_sym_PIPE, + [134563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 9, + ACTIONS(4254), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248457,86 +249655,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133461] = 8, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(6975), 1, - anon_sym_BANG, - ACTIONS(6977), 1, - anon_sym_QMARK, - STATE(4365), 1, - sym_type_annotation, - STATE(5094), 1, - sym__initializer, + [134579] = 3, + ACTIONS(6993), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(4378), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133489] = 3, - ACTIONS(6825), 1, - anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 8, + ACTIONS(4328), 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, - [133507] = 8, - ACTIONS(6447), 1, + [134613] = 8, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + anon_sym_SQUOTE, + ACTIONS(6808), 1, + sym_identifier, + ACTIONS(7027), 1, + anon_sym_RBRACE, + STATE(5321), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6810), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4618), 2, + sym__module_export_name, + sym_string, + [134641] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6979), 1, + ACTIONS(7029), 1, anon_sym_BANG, - ACTIONS(6981), 1, + ACTIONS(7031), 1, anon_sym_QMARK, - STATE(3905), 1, + STATE(4366), 1, sym_type_annotation, - STATE(4674), 1, + STATE(5086), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133535] = 8, - ACTIONS(6447), 1, + [134669] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6983), 1, + ACTIONS(7033), 1, anon_sym_BANG, - ACTIONS(6985), 1, + ACTIONS(7035), 1, anon_sym_QMARK, - STATE(3907), 1, + STATE(4371), 1, sym_type_annotation, - STATE(4604), 1, + STATE(5092), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133563] = 2, + [134697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 9, + ACTIONS(4332), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248546,11 +249758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133579] = 2, + [134713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 9, + ACTIONS(4382), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248560,39 +249772,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133595] = 2, + [134729] = 5, + ACTIONS(6899), 1, + anon_sym_AMP, + ACTIONS(6901), 1, + anon_sym_PIPE, + ACTIONS(6903), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 9, + ACTIONS(4332), 6, 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, + [134751] = 10, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6849), 1, anon_sym_extends, - [133611] = 2, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(804), 1, + sym_class_body, + STATE(3720), 1, + sym_type_parameters, + STATE(5037), 1, + sym_extends_clause, + STATE(5238), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2369), 9, + [134783] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7037), 1, + anon_sym_BANG, + ACTIONS(7039), 1, + anon_sym_QMARK, + STATE(4382), 1, + sym_type_annotation, + STATE(5107), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6595), 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, - [133627] = 2, + [134811] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7041), 1, + anon_sym_BANG, + ACTIONS(7043), 1, + anon_sym_QMARK, + STATE(4114), 1, + sym_type_annotation, + STATE(4747), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 9, + ACTIONS(6509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134839] = 8, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7045), 1, + anon_sym_BANG, + ACTIONS(7047), 1, + anon_sym_QMARK, + STATE(3938), 1, + sym_type_annotation, + STATE(4710), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134867] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2365), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248602,443 +249885,572 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133643] = 8, - ACTIONS(6447), 1, + [134883] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6987), 1, + ACTIONS(7049), 1, anon_sym_BANG, - ACTIONS(6989), 1, + ACTIONS(7051), 1, anon_sym_QMARK, - STATE(3957), 1, + STATE(4022), 1, sym_type_annotation, - STATE(4525), 1, + STATE(4652), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133671] = 8, - ACTIONS(6447), 1, + [134911] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6991), 1, + ACTIONS(7053), 1, anon_sym_BANG, - ACTIONS(6993), 1, + ACTIONS(7055), 1, anon_sym_QMARK, - STATE(3904), 1, + STATE(4133), 1, sym_type_annotation, - STATE(4728), 1, + STATE(4769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6489), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133699] = 8, - ACTIONS(6447), 1, + [134939] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6995), 1, + ACTIONS(7057), 1, anon_sym_BANG, - ACTIONS(6997), 1, + ACTIONS(7059), 1, anon_sym_QMARK, - STATE(4114), 1, + STATE(4141), 1, sym_type_annotation, - STATE(4593), 1, + STATE(4774), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133727] = 8, - ACTIONS(6447), 1, + [134967] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6999), 1, + ACTIONS(7061), 1, anon_sym_BANG, - ACTIONS(7001), 1, + ACTIONS(7063), 1, anon_sym_QMARK, - STATE(3965), 1, + STATE(4169), 1, sym_type_annotation, - STATE(4573), 1, + STATE(4794), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133755] = 8, - ACTIONS(6447), 1, + [134995] = 8, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7003), 1, + ACTIONS(7065), 1, anon_sym_BANG, - ACTIONS(7005), 1, + ACTIONS(7067), 1, anon_sym_QMARK, - STATE(3967), 1, + STATE(3962), 1, sym_type_annotation, - STATE(4579), 1, + STATE(4559), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6449), 3, + ACTIONS(6509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133783] = 2, + [135023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(1844), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133799] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6700), 1, - anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_extends, + [135038] = 6, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7069), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7071), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7073), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7007), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133820] = 6, - ACTIONS(6455), 1, + STATE(4284), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [135061] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7075), 1, + sym_identifier, + ACTIONS(7077), 1, + sym_this, + STATE(2951), 1, + sym__type_query_call_expression, + STATE(3013), 1, + sym__type_query_instantiation_expression, + STATE(3210), 1, + sym__type_query_member_expression, + STATE(3211), 1, + sym__type_query_subscript_expression, + STATE(4474), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135090] = 6, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7009), 1, + ACTIONS(7069), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, + ACTIONS(7071), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, + ACTIONS(7073), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4316), 4, + STATE(4306), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133843] = 5, - ACTIONS(6698), 1, + [135113] = 5, + ACTIONS(6760), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6762), 1, anon_sym_PIPE, - ACTIONS(6702), 1, + ACTIONS(6764), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7015), 5, + ACTIONS(7079), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [133864] = 5, - ACTIONS(6698), 1, + [135134] = 5, + ACTIONS(6760), 1, anon_sym_AMP, - ACTIONS(6700), 1, + ACTIONS(6762), 1, anon_sym_PIPE, - ACTIONS(6702), 1, + ACTIONS(6764), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7017), 5, + ACTIONS(7081), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [133885] = 6, - ACTIONS(6455), 1, + [135155] = 7, + ACTIONS(7083), 1, + sym_escape_sequence, + ACTIONS(7085), 1, + anon_sym_BQUOTE, + ACTIONS(7087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7089), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4059), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [135180] = 7, + ACTIONS(7083), 1, + sym_escape_sequence, + ACTIONS(7087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7089), 1, + sym__template_chars, + ACTIONS(7091), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4059), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [135205] = 6, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7009), 1, + ACTIONS(7069), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, + ACTIONS(7071), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, + ACTIONS(7073), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4318), 4, + STATE(4180), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133908] = 7, - ACTIONS(3405), 1, - sym_identifier, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(7019), 1, - anon_sym_enum, - STATE(4416), 1, - sym_variable_declarator, + [135228] = 7, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(6832), 1, + anon_sym_BANG, + STATE(4205), 1, + sym_type_annotation, + STATE(4850), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3718), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [133933] = 6, - ACTIONS(6455), 1, + ACTIONS(6830), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135253] = 6, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7009), 1, + ACTIONS(7069), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, + ACTIONS(7071), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, + ACTIONS(7073), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4307), 4, + STATE(4189), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133956] = 4, - ACTIONS(4588), 1, - anon_sym_LPAREN, - STATE(2220), 1, - sym_arguments, + [135276] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6762), 1, + anon_sym_PIPE, + ACTIONS(6764), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 6, + ACTIONS(7093), 5, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135297] = 6, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7069), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7071), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7073), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4320), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [135320] = 4, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2984), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4097), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, anon_sym_extends, - [133975] = 9, - ACTIONS(1538), 1, - anon_sym_import, - ACTIONS(7021), 1, + [135339] = 5, + ACTIONS(7095), 1, + anon_sym_LBRACE, + ACTIONS(7097), 1, + anon_sym_DOT, + STATE(3989), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1672), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135360] = 5, + ACTIONS(7095), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_DOT, + STATE(3989), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1672), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135381] = 6, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7069), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7071), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7073), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4227), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [135404] = 7, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(7023), 1, - sym_this, - STATE(2951), 1, - sym__type_query_subscript_expression, - STATE(3037), 1, - sym__type_query_member_expression, - STATE(3221), 1, - sym__type_query_call_expression, - STATE(3383), 1, - sym__type_query_instantiation_expression, - STATE(4468), 1, - sym_import, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7101), 1, + anon_sym_enum, + STATE(4539), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134004] = 7, - ACTIONS(7025), 1, - sym_escape_sequence, - ACTIONS(7027), 1, - anon_sym_BQUOTE, - ACTIONS(7029), 1, + STATE(3548), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [135429] = 7, + ACTIONS(7087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7031), 1, + ACTIONS(7089), 1, sym__template_chars, + ACTIONS(7103), 1, + sym_escape_sequence, + ACTIONS(7105), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3785), 2, + STATE(3842), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4108), 2, + STATE(4059), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134029] = 9, + [135454] = 9, ACTIONS(1538), 1, anon_sym_import, - ACTIONS(7033), 1, + ACTIONS(7107), 1, sym_identifier, - ACTIONS(7035), 1, + ACTIONS(7109), 1, sym_this, - STATE(2931), 1, + STATE(1728), 1, sym__type_query_member_expression, - STATE(2933), 1, + STATE(1750), 1, sym__type_query_subscript_expression, - STATE(3124), 1, + STATE(1918), 1, sym__type_query_call_expression, - STATE(3280), 1, + STATE(1919), 1, sym__type_query_instantiation_expression, - STATE(4502), 1, + STATE(4509), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134058] = 7, - ACTIONS(7025), 1, - sym_escape_sequence, - ACTIONS(7029), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7031), 1, - sym__template_chars, - ACTIONS(7037), 1, - anon_sym_BQUOTE, + [135483] = 7, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + anon_sym_SQUOTE, + ACTIONS(6808), 1, + sym_identifier, + STATE(5321), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3785), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4108), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134083] = 7, - ACTIONS(7025), 1, - sym_escape_sequence, - ACTIONS(7029), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7031), 1, - sym__template_chars, - ACTIONS(7039), 1, - anon_sym_BQUOTE, + ACTIONS(6810), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4618), 2, + sym__module_export_name, + sym_string, + [135508] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7111), 1, + sym_identifier, + ACTIONS(7113), 1, + sym_this, + STATE(3062), 1, + sym__type_query_member_expression, + STATE(3063), 1, + sym__type_query_subscript_expression, + STATE(3319), 1, + sym__type_query_call_expression, + STATE(3470), 1, + sym__type_query_instantiation_expression, + STATE(4431), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3785), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4108), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134108] = 7, - ACTIONS(7025), 1, - sym_escape_sequence, - ACTIONS(7029), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7031), 1, - sym__template_chars, - ACTIONS(7041), 1, - anon_sym_BQUOTE, + [135537] = 3, + ACTIONS(6770), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3785), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4108), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134133] = 7, - ACTIONS(7029), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7031), 1, - sym__template_chars, - ACTIONS(7043), 1, - sym_escape_sequence, - ACTIONS(7045), 1, - anon_sym_BQUOTE, + ACTIONS(4109), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [135554] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7077), 1, + sym_this, + ACTIONS(7115), 1, + sym_identifier, + STATE(2888), 1, + sym__type_query_subscript_expression, + STATE(2889), 1, + sym__type_query_member_expression, + STATE(2951), 1, + sym__type_query_call_expression, + STATE(3013), 1, + sym__type_query_instantiation_expression, + STATE(4464), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135583] = 6, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7069), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7071), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7073), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3764), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4108), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134158] = 7, - ACTIONS(7025), 1, + STATE(4360), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [135606] = 7, + ACTIONS(7083), 1, sym_escape_sequence, - ACTIONS(7029), 1, + ACTIONS(7087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7031), 1, + ACTIONS(7089), 1, sym__template_chars, - ACTIONS(7047), 1, + ACTIONS(7117), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3785), 2, + STATE(3936), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4057), 2, + STATE(4403), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134183] = 7, - ACTIONS(3405), 1, - sym_identifier, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(7049), 1, - anon_sym_enum, - STATE(4451), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3718), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134208] = 9, - ACTIONS(1538), 1, - anon_sym_import, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - sym_this, - STATE(2876), 1, - sym__type_query_member_expression, - STATE(2877), 1, - sym__type_query_subscript_expression, - STATE(2922), 1, - sym__type_query_call_expression, - STATE(3010), 1, - sym__type_query_instantiation_expression, - STATE(4382), 1, - sym_import, + [135631] = 3, + ACTIONS(6770), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134237] = 2, + ACTIONS(4144), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [135648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1726), 8, + ACTIONS(1858), 8, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -249047,111 +250459,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134252] = 2, + [135663] = 4, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2356), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4402), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [135682] = 3, + ACTIONS(7119), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1754), 8, - anon_sym_as, + ACTIONS(4097), 7, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [134267] = 7, - ACTIONS(7025), 1, + [135699] = 7, + ACTIONS(7083), 1, sym_escape_sequence, - ACTIONS(7029), 1, + ACTIONS(7087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7031), 1, + ACTIONS(7089), 1, sym__template_chars, - ACTIONS(7055), 1, + ACTIONS(7121), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3785), 2, + STATE(3936), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4108), 2, + STATE(4059), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134292] = 6, - ACTIONS(6455), 1, - anon_sym_COLON, - ACTIONS(7009), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4051), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134315] = 9, + [135724] = 9, ACTIONS(1538), 1, anon_sym_import, - ACTIONS(7053), 1, - sym_this, - ACTIONS(7057), 1, + ACTIONS(7123), 1, sym_identifier, - STATE(2922), 1, + ACTIONS(7125), 1, + sym_this, + STATE(1508), 1, + sym__type_query_subscript_expression, + STATE(1509), 1, + sym__type_query_member_expression, + STATE(1595), 1, sym__type_query_call_expression, - STATE(3010), 1, + STATE(1596), 1, sym__type_query_instantiation_expression, - STATE(3197), 1, - sym__type_query_member_expression, - STATE(3198), 1, - sym__type_query_subscript_expression, - STATE(4384), 1, + STATE(4524), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134344] = 4, - ACTIONS(6682), 1, - anon_sym_LT, - STATE(3030), 1, - sym_type_arguments, + [135753] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 6, + ACTIONS(3237), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134363] = 6, - ACTIONS(6455), 1, + [135768] = 6, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7009), 1, + ACTIONS(7069), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, + ACTIONS(7071), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, + ACTIONS(7073), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4267), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [135791] = 6, + ACTIONS(6515), 1, + anon_sym_COLON, + ACTIONS(7069), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7071), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7073), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4052), 4, + STATE(4410), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134386] = 2, + [135814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3235), 8, + ACTIONS(3241), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -249160,11 +250586,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134401] = 2, + [135829] = 5, + ACTIONS(6899), 1, + anon_sym_AMP, + ACTIONS(6901), 1, + anon_sym_PIPE, + ACTIONS(6903), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6818), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [135850] = 7, + ACTIONS(7087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7089), 1, + sym__template_chars, + ACTIONS(7103), 1, + sym_escape_sequence, + ACTIONS(7127), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3842), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4059), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [135875] = 7, + ACTIONS(3419), 1, + sym_identifier, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7129), 1, + anon_sym_enum, + STATE(4453), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3548), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [135900] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7131), 1, + sym_identifier, + ACTIONS(7133), 1, + sym_this, + STATE(2945), 1, + sym__type_query_member_expression, + STATE(2946), 1, + sym__type_query_subscript_expression, + STATE(3143), 1, + sym__type_query_call_expression, + STATE(3256), 1, + sym__type_query_instantiation_expression, + STATE(4523), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3239), 8, + [135929] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3233), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -249173,16626 +250671,16484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134416] = 7, - ACTIONS(6447), 1, + [135944] = 7, + ACTIONS(7083), 1, + sym_escape_sequence, + ACTIONS(7087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7089), 1, + sym__template_chars, + ACTIONS(7135), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4059), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [135969] = 7, + ACTIONS(7083), 1, + sym_escape_sequence, + ACTIONS(7087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7089), 1, + sym__template_chars, + ACTIONS(7137), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4059), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [135994] = 8, + ACTIONS(6725), 1, + anon_sym_LT, + ACTIONS(7139), 1, + anon_sym_LBRACE, + ACTIONS(7141), 1, + anon_sym_COMMA, + ACTIONS(7143), 1, + anon_sym_DOT, + ACTIONS(7145), 1, + anon_sym_LBRACE_PIPE, + STATE(4488), 1, + aux_sym_extends_type_clause_repeat1, + STATE(4880), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136020] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(6776), 1, - anon_sym_BANG, - STATE(4338), 1, + STATE(4192), 1, sym_type_annotation, - STATE(5056), 1, + STATE(4811), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134441] = 7, - ACTIONS(3109), 1, - anon_sym_DQUOTE, - ACTIONS(3111), 1, - anon_sym_SQUOTE, - ACTIONS(6736), 1, - sym_identifier, - STATE(5379), 1, - sym_export_specifier, + [136042] = 6, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2151), 1, + sym_arguments, + STATE(5446), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6738), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4735), 2, - sym__module_export_name, - sym_string, - [134466] = 3, - ACTIONS(6714), 1, - anon_sym_is, + ACTIONS(7147), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [136064] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3950), 1, + sym_type_annotation, + STATE(5142), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 7, + ACTIONS(6707), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_SEMI, + [136086] = 8, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, anon_sym_extends, - [134483] = 3, - ACTIONS(7059), 1, - anon_sym_is, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2538), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5303), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134500] = 6, - ACTIONS(6455), 1, + [136112] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7009), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, - anon_sym_QMARK_COLON, + STATE(4205), 1, + sym_type_annotation, + STATE(4857), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4281), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + ACTIONS(6830), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136134] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3953), 1, sym_type_annotation, - [134523] = 9, - ACTIONS(1538), 1, - anon_sym_import, - ACTIONS(7061), 1, - sym_identifier, - ACTIONS(7063), 1, - sym_this, - STATE(1735), 1, - sym__type_query_member_expression, - STATE(1737), 1, - sym__type_query_subscript_expression, - STATE(1977), 1, - sym__type_query_call_expression, - STATE(1978), 1, - sym__type_query_instantiation_expression, - STATE(4500), 1, - sym_import, + STATE(5154), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134552] = 6, - ACTIONS(6455), 1, + ACTIONS(6707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136156] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7009), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, - anon_sym_QMARK_COLON, + STATE(4107), 1, + sym_type_annotation, + STATE(4674), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4186), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134575] = 6, - ACTIONS(6455), 1, + ACTIONS(7149), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136178] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7009), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, - anon_sym_QMARK_COLON, + STATE(4123), 1, + sym_type_annotation, + STATE(4684), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4187), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + ACTIONS(7149), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136200] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4061), 1, sym_type_annotation, - [134598] = 5, - ACTIONS(7065), 1, - anon_sym_LBRACE, - ACTIONS(7067), 1, - anon_sym_DOT, - STATE(4280), 1, - sym_statement_block, + STATE(4716), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 5, + ACTIONS(6740), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134619] = 5, - ACTIONS(7065), 1, + [136222] = 4, + ACTIONS(7095), 1, anon_sym_LBRACE, - ACTIONS(7069), 1, - anon_sym_DOT, - STATE(4280), 1, + STATE(3989), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 5, + ACTIONS(1672), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134640] = 7, - ACTIONS(7029), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7031), 1, - sym__template_chars, - ACTIONS(7043), 1, - sym_escape_sequence, - ACTIONS(7071), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3764), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4108), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134665] = 5, - ACTIONS(6819), 1, - anon_sym_AMP, - ACTIONS(6821), 1, - anon_sym_PIPE, - ACTIONS(6823), 1, - anon_sym_extends, + [136240] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3992), 1, + sym_type_annotation, + STATE(4614), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6750), 5, + ACTIONS(6707), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [134686] = 3, - ACTIONS(6714), 1, - anon_sym_is, + [136262] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3965), 1, + sym_type_annotation, + STATE(4564), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 7, + ACTIONS(6707), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134703] = 9, - ACTIONS(1538), 1, - anon_sym_import, - ACTIONS(7073), 1, - sym_identifier, - ACTIONS(7075), 1, - sym_this, - STATE(1506), 1, - sym__type_query_subscript_expression, - STATE(1509), 1, - sym__type_query_member_expression, - STATE(1562), 1, - sym__type_query_call_expression, - STATE(1563), 1, - sym__type_query_instantiation_expression, - STATE(4388), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134732] = 6, - ACTIONS(6455), 1, + anon_sym_SEMI, + [136284] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - ACTIONS(7009), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7011), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7013), 1, - anon_sym_QMARK_COLON, + STATE(4135), 1, + sym_type_annotation, + STATE(4742), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4315), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + ACTIONS(7149), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136306] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4139), 1, sym_type_annotation, - [134755] = 2, + STATE(4750), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3227), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134770] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7077), 1, - sym_identifier, - ACTIONS(7079), 1, - anon_sym_STAR, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5421), 1, - sym__call_signature, + ACTIONS(7149), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134796] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(7081), 1, + ACTIONS(1758), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_DOT, - STATE(2350), 1, - sym_arguments, - STATE(5286), 1, - sym_optional_chain, - STATE(5293), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [136342] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134822] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(1882), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [136356] = 4, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4140), 1, + STATE(4105), 1, sym_type_annotation, - STATE(4666), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(7151), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134844] = 6, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [136374] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4237), 1, + STATE(3968), 1, sym_type_annotation, - STATE(4852), 1, + STATE(4567), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134866] = 6, - ACTIONS(6447), 1, + [136396] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4238), 1, + STATE(3970), 1, sym_type_annotation, - STATE(4853), 1, + STATE(4574), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134888] = 6, - ACTIONS(6447), 1, + [136418] = 6, + ACTIONS(6689), 1, anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4239), 1, - sym_type_annotation, - STATE(4856), 1, - sym__initializer, + STATE(4510), 1, + sym_constraint, + STATE(5237), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, - sym__automatic_semicolon, + ACTIONS(6694), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7153), 2, anon_sym_COMMA, - anon_sym_SEMI, - [134910] = 8, - ACTIONS(6732), 1, + anon_sym_GT, + [136440] = 8, + ACTIONS(6847), 1, anon_sym_LBRACE, - ACTIONS(6831), 1, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - STATE(2597), 1, + STATE(237), 1, sym_class_body, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5343), 1, + STATE(5163), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134936] = 6, - ACTIONS(6447), 1, + [136466] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4166), 1, + STATE(3971), 1, sym_type_annotation, - STATE(4715), 1, + STATE(4576), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134958] = 6, - ACTIONS(6447), 1, + [136488] = 8, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7155), 1, + sym_identifier, + ACTIONS(7157), 1, + anon_sym_STAR, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5478), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136514] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4240), 1, + STATE(4053), 1, sym_type_annotation, - STATE(4857), 1, + STATE(4699), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134980] = 6, - ACTIONS(6447), 1, + [136536] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4242), 1, + STATE(4054), 1, sym_type_annotation, - STATE(4868), 1, + STATE(4701), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135002] = 6, - ACTIONS(6447), 1, + [136558] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4243), 1, + STATE(4064), 1, sym_type_annotation, - STATE(4870), 1, + STATE(4724), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135024] = 6, - ACTIONS(6447), 1, + [136580] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4244), 1, + STATE(4065), 1, sym_type_annotation, - STATE(4876), 1, + STATE(4725), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135046] = 6, - ACTIONS(6447), 1, + [136602] = 6, + ACTIONS(6689), 1, anon_sym_EQ, - ACTIONS(6455), 1, + STATE(4439), 1, + sym_constraint, + STATE(5500), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6694), 2, anon_sym_COLON, - STATE(4245), 1, + anon_sym_extends, + ACTIONS(7159), 2, + anon_sym_COMMA, + anon_sym_GT, + [136624] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4193), 1, sym_type_annotation, - STATE(4883), 1, + STATE(4837), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135068] = 6, - ACTIONS(6447), 1, + [136646] = 4, + ACTIONS(4095), 1, + anon_sym_extends, + ACTIONS(7161), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4097), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + [136664] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4209), 1, + STATE(4067), 1, sym_type_annotation, - STATE(4779), 1, + STATE(4729), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135090] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5465), 1, - sym_statement_block, + [136686] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4068), 1, + sym_type_annotation, + STATE(4733), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135108] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5316), 1, - sym_statement_block, + [136708] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(7163), 1, + anon_sym_DOT, + STATE(1572), 1, + sym_arguments, + STATE(5394), 1, + sym_optional_chain, + STATE(5395), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135126] = 6, - ACTIONS(6447), 1, + [136734] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + STATE(1659), 1, + sym_arguments, + STATE(5394), 1, + sym_optional_chain, + STATE(5395), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136760] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4369), 1, + STATE(4220), 1, sym_type_annotation, - STATE(5107), 1, + STATE(4875), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135148] = 4, - ACTIONS(2483), 1, + [136782] = 6, + ACTIONS(3421), 1, anon_sym_LBRACE, - STATE(5463), 1, - sym_statement_block, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7165), 1, + sym_identifier, + STATE(4453), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3548), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136804] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 5, + ACTIONS(6987), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135166] = 4, - ACTIONS(4622), 1, - anon_sym_EQ, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [136818] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + STATE(1617), 1, + sym_arguments, + STATE(3196), 1, + sym_type_arguments, + STATE(5394), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5665), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3814), 4, + [136844] = 8, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(1720), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5209), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136870] = 8, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + sym_identifier, + ACTIONS(7169), 1, + anon_sym_DOT, + STATE(3515), 1, + sym_nested_identifier, + STATE(3553), 1, + sym_string, + STATE(4414), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136896] = 8, + ACTIONS(1040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1580), 1, + anon_sym_LBRACE, + ACTIONS(7171), 1, + anon_sym_LT, + ACTIONS(7173), 1, + anon_sym_extends, + STATE(4112), 1, + sym_type_parameters, + STATE(4197), 1, + sym_object_type, + STATE(4749), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136922] = 6, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3994), 1, anon_sym_LPAREN, + STATE(1672), 1, + sym_arguments, + STATE(5347), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7147), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [136944] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6883), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, + [136958] = 8, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2219), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5383), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136984] = 8, + ACTIONS(3542), 1, anon_sym_LT, - anon_sym_QMARK, - [135184] = 6, - ACTIONS(6595), 1, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(7175), 1, + anon_sym_DOT, + STATE(1970), 1, + sym_arguments, + STATE(5266), 1, + sym_optional_chain, + STATE(5275), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137010] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4499), 1, - sym_constraint, - STATE(5417), 1, - sym_default_type, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4235), 1, + sym_type_annotation, + STATE(4889), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6600), 2, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137032] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - anon_sym_extends, - ACTIONS(7087), 2, + STATE(4238), 1, + sym_type_annotation, + STATE(5162), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [135206] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5464), 1, - sym_statement_block, + anon_sym_SEMI, + [137054] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4244), 1, + sym_type_annotation, + STATE(4914), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135224] = 6, - ACTIONS(6447), 1, + [137076] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4370), 1, + STATE(4246), 1, sym_type_annotation, - STATE(5110), 1, + STATE(4915), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135246] = 6, - ACTIONS(6447), 1, + [137098] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4376), 1, + STATE(4248), 1, sym_type_annotation, - STATE(5111), 1, + STATE(4918), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135268] = 6, - ACTIONS(6447), 1, + [137120] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4167), 1, + STATE(4250), 1, sym_type_annotation, - STATE(4718), 1, + STATE(4920), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135290] = 6, - ACTIONS(6447), 1, + [137142] = 8, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(1714), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5481), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137168] = 8, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(4019), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5482), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137194] = 8, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(1723), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5503), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137220] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4314), 1, + STATE(4252), 1, sym_type_annotation, - STATE(5012), 1, + STATE(4929), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137242] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4253), 1, + sym_type_annotation, + STATE(4931), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6653), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135312] = 6, - ACTIONS(3576), 1, + [137264] = 6, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7165), 1, + sym_identifier, + STATE(4438), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3548), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [137286] = 8, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(4588), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - STATE(2255), 1, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + STATE(1999), 1, sym_arguments, - STATE(5181), 1, + STATE(3528), 1, sym_type_arguments, + STATE(5266), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137312] = 4, + ACTIONS(4506), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7089), 3, + ACTIONS(5785), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [137330] = 8, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(4072), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5190), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137356] = 3, + ACTIONS(6776), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4109), 6, + anon_sym_as, anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [135334] = 6, - ACTIONS(6447), 1, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [137372] = 8, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2311), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5200), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137398] = 8, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(4089), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5211), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137424] = 8, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(1671), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5219), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137450] = 8, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(4151), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5251), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137476] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4159), 1, + STATE(4259), 1, sym_type_annotation, - STATE(4699), 1, + STATE(4943), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135356] = 6, - ACTIONS(6447), 1, + [137498] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4263), 1, + STATE(4260), 1, sym_type_annotation, - STATE(4904), 1, + STATE(4944), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7091), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135378] = 6, - ACTIONS(6595), 1, - anon_sym_EQ, - STATE(4414), 1, - sym_constraint, - STATE(5419), 1, - sym_default_type, + [137520] = 8, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6913), 1, + anon_sym_LBRACE, + STATE(891), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5174), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6600), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7093), 2, - anon_sym_COMMA, - anon_sym_GT, - [135400] = 6, - ACTIONS(6447), 1, + [137546] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4168), 1, + STATE(4281), 1, sym_type_annotation, - STATE(4720), 1, + STATE(4966), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135422] = 6, - ACTIONS(6447), 1, + [137568] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4264), 1, + STATE(4285), 1, sym_type_annotation, - STATE(4906), 1, + STATE(4968), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7091), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135444] = 6, - ACTIONS(6447), 1, + [137590] = 8, + ACTIONS(6847), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(226), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5188), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137616] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4347), 1, + STATE(4300), 1, sym_type_annotation, - STATE(5074), 1, + STATE(4986), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135466] = 6, - ACTIONS(6447), 1, + [137638] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4268), 1, + STATE(4302), 1, sym_type_annotation, - STATE(4924), 1, + STATE(4988), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7091), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135488] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - STATE(1647), 1, - sym_arguments, - STATE(3174), 1, - sym_type_arguments, - STATE(5286), 1, - sym_optional_chain, + [137660] = 8, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(794), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5201), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135514] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4269), 1, - sym_type_annotation, - STATE(4926), 1, - sym__initializer, + [137686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7091), 3, - sym__automatic_semicolon, + ACTIONS(5280), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [135536] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [137700] = 8, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2136), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5423), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [135556] = 8, - ACTIONS(3576), 1, + [137726] = 8, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(4588), 1, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(7101), 1, + ACTIONS(7163), 1, anon_sym_DOT, - STATE(2372), 1, + STATE(2474), 1, sym_arguments, - STATE(5280), 1, + STATE(5394), 1, sym_optional_chain, - STATE(5376), 1, + STATE(5395), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135582] = 6, - ACTIONS(6447), 1, + [137752] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6923), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6455), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4169), 1, + [137766] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4303), 1, + sym_type_annotation, + STATE(4992), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137788] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4305), 1, sym_type_annotation, - STATE(4727), 1, + STATE(4993), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137810] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7023), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [135604] = 8, - ACTIONS(6718), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137824] = 8, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6831), 1, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - STATE(2247), 1, + STATE(2319), 1, sym_class_body, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5340), 1, + STATE(5224), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135630] = 8, - ACTIONS(3576), 1, + [137850] = 8, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(4588), 1, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4592), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - STATE(2381), 1, + STATE(2446), 1, sym_arguments, - STATE(3471), 1, + STATE(3196), 1, sym_type_arguments, - STATE(5280), 1, + STATE(5394), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135656] = 2, + [137876] = 8, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2145), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5473), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7103), 7, + ACTIONS(6981), 7, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137916] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, + STATE(5405), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7177), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [135670] = 6, - ACTIONS(6447), 1, + [137934] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4349), 1, + STATE(4309), 1, sym_type_annotation, - STATE(5078), 1, + STATE(5002), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135692] = 3, - ACTIONS(6758), 1, - anon_sym_is, + [137956] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4310), 1, + sym_type_annotation, + STATE(5003), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4116), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [135708] = 6, - ACTIONS(6447), 1, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137978] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4146), 1, + STATE(4311), 1, sym_type_annotation, - STATE(4676), 1, + STATE(5006), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135730] = 6, - ACTIONS(6447), 1, + [138000] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3915), 1, + STATE(4314), 1, sym_type_annotation, - STATE(4907), 1, + STATE(5014), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135752] = 6, - ACTIONS(6447), 1, + [138022] = 5, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(5644), 1, + anon_sym_RBRACE, + STATE(5032), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [138042] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(7179), 1, + anon_sym_DOT, + STATE(2201), 1, + sym_arguments, + STATE(5394), 1, + sym_optional_chain, + STATE(5395), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138068] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4149), 1, + STATE(4317), 1, sym_type_annotation, - STATE(4679), 1, + STATE(5024), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135774] = 6, - ACTIONS(6447), 1, + [138090] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3601), 7, anon_sym_EQ, - ACTIONS(6455), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [138104] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3998), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + STATE(2202), 1, + sym_arguments, + STATE(3196), 1, + sym_type_arguments, + STATE(5394), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138130] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4241), 1, + STATE(4083), 1, sym_type_annotation, - STATE(4863), 1, + STATE(4748), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6647), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135796] = 6, - ACTIONS(6447), 1, + [138152] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3916), 1, + STATE(4330), 1, sym_type_annotation, - STATE(5100), 1, + STATE(5043), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135818] = 8, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2181), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5374), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [138174] = 8, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7181), 1, + anon_sym_COLON, + ACTIONS(7183), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5463), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135844] = 6, - ACTIONS(6447), 1, + [138200] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3938), 1, + STATE(4338), 1, sym_type_annotation, - STATE(4822), 1, + STATE(5050), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135866] = 6, - ACTIONS(6447), 1, + [138222] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4378), 1, + STATE(4340), 1, sym_type_annotation, - STATE(5122), 1, + STATE(5055), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6655), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135888] = 8, - ACTIONS(6831), 1, + [138244] = 8, + ACTIONS(6796), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(4047), 1, + STATE(2611), 1, sym_class_body, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5362), 1, + STATE(5246), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135914] = 2, + [138270] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + ACTIONS(7185), 1, + anon_sym_DOT, + STATE(2464), 1, + sym_arguments, + STATE(5266), 1, + sym_optional_chain, + STATE(5275), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7105), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [135928] = 6, - ACTIONS(6447), 1, + [138296] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + STATE(2493), 1, + sym_arguments, + STATE(3528), 1, + sym_type_arguments, + STATE(5266), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138322] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3940), 1, + STATE(4100), 1, sym_type_annotation, - STATE(4830), 1, + STATE(4766), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135950] = 6, - ACTIONS(6447), 1, + [138344] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3942), 1, + STATE(4356), 1, sym_type_annotation, - STATE(4877), 1, + STATE(5070), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135972] = 6, - ACTIONS(6447), 1, + [138366] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3947), 1, + STATE(4357), 1, sym_type_annotation, - STATE(4917), 1, + STATE(5075), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135994] = 8, - ACTIONS(3576), 1, + [138388] = 8, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(4010), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(7107), 1, - anon_sym_DOT, - STATE(2376), 1, - sym_arguments, - STATE(5286), 1, - sym_optional_chain, - STATE(5293), 1, - sym_type_arguments, + ACTIONS(7187), 1, + sym_identifier, + ACTIONS(7189), 1, + anon_sym_STAR, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136020] = 6, - ACTIONS(6447), 1, + [138414] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4130), 1, + STATE(4367), 1, sym_type_annotation, - STATE(4642), 1, + STATE(5088), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136042] = 6, - ACTIONS(6447), 1, + [138436] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4134), 1, + STATE(4368), 1, sym_type_annotation, - STATE(4645), 1, + STATE(5090), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136064] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3950), 1, - sym_type_annotation, - STATE(5059), 1, - sym__initializer, + [138458] = 4, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5343), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(7191), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136086] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4155), 1, - sym_type_annotation, - STATE(4690), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [138476] = 4, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5371), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(7191), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136108] = 6, - ACTIONS(3407), 1, + anon_sym_PIPE_RBRACE, + [138494] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(7109), 1, - sym_identifier, - STATE(4601), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3718), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136130] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4211), 1, - sym_type_annotation, - STATE(4788), 1, - sym__initializer, + STATE(5375), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(7193), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136152] = 8, - ACTIONS(3576), 1, + anon_sym_PIPE_RBRACE, + [138512] = 8, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(4010), 1, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(7111), 1, + ACTIONS(7195), 1, anon_sym_DOT, - STATE(2565), 1, + STATE(2598), 1, sym_arguments, - STATE(5286), 1, + STATE(5394), 1, sym_optional_chain, - STATE(5293), 1, + STATE(5395), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136178] = 4, - ACTIONS(6455), 1, + [138538] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3920), 1, + STATE(4372), 1, sym_type_annotation, + STATE(5094), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7113), 5, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136196] = 8, - ACTIONS(3576), 1, + [138560] = 8, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(4010), 1, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4014), 1, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - STATE(2566), 1, + STATE(2603), 1, sym_arguments, - STATE(3174), 1, + STATE(3196), 1, sym_type_arguments, - STATE(5286), 1, + STATE(5394), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136222] = 6, - ACTIONS(6447), 1, + [138586] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4212), 1, + STATE(4236), 1, sym_type_annotation, - STATE(4791), 1, + STATE(4893), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6733), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138608] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4373), 1, + sym_type_annotation, + STATE(5095), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136244] = 8, - ACTIONS(3576), 1, + [138630] = 8, + ACTIONS(3542), 1, anon_sym_LT, - ACTIONS(4588), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(7115), 1, + ACTIONS(7197), 1, anon_sym_DOT, - STATE(1951), 1, + STATE(2065), 1, sym_arguments, - STATE(5286), 1, + STATE(5394), 1, sym_optional_chain, - STATE(5293), 1, + STATE(5395), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136270] = 8, - ACTIONS(4014), 1, + [138656] = 8, + ACTIONS(3998), 1, anon_sym_DOT, - ACTIONS(4588), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(6345), 1, + ACTIONS(6389), 1, anon_sym_LT, - STATE(1952), 1, + STATE(2066), 1, sym_arguments, - STATE(3268), 1, + STATE(3247), 1, sym_type_arguments, - STATE(5286), 1, + STATE(5394), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136296] = 4, - ACTIONS(6455), 1, + [138682] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4076), 1, + STATE(4374), 1, sym_type_annotation, + STATE(5098), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7117), 5, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136314] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7119), 1, - sym_identifier, - ACTIONS(7121), 1, - anon_sym_STAR, - STATE(3806), 1, - sym_formal_parameters, - STATE(5247), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136340] = 8, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2260), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5332), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [138704] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4375), 1, + sym_type_annotation, + STATE(5100), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136366] = 6, - ACTIONS(3407), 1, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138726] = 6, + ACTIONS(3421), 1, anon_sym_LBRACE, - ACTIONS(3409), 1, + ACTIONS(3423), 1, anon_sym_LBRACK, - ACTIONS(7109), 1, + ACTIONS(7165), 1, sym_identifier, - STATE(4385), 1, + STATE(4537), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3718), 3, + STATE(3548), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [136388] = 6, - ACTIONS(6447), 1, + [138748] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4213), 1, + STATE(4385), 1, sym_type_annotation, - STATE(4796), 1, + STATE(5114), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136410] = 8, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6847), 1, - anon_sym_LBRACE, - STATE(225), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5237), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136436] = 6, - ACTIONS(6447), 1, + [138770] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4356), 1, + STATE(4386), 1, sym_type_annotation, - STATE(5087), 1, + STATE(5118), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136458] = 6, - ACTIONS(6447), 1, + [138792] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4156), 1, + STATE(4387), 1, sym_type_annotation, - STATE(4691), 1, + STATE(5120), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136480] = 6, - ACTIONS(6447), 1, + [138814] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4158), 1, + STATE(4388), 1, sym_type_annotation, - STATE(4696), 1, + STATE(5121), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136502] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3959), 1, - sym_type_annotation, - STATE(4536), 1, - sym__initializer, + [138836] = 6, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7165), 1, + sym_identifier, + STATE(4539), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136524] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4358), 1, - sym_type_annotation, - STATE(5090), 1, - sym__initializer, + STATE(3548), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138858] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7199), 1, + sym_identifier, + ACTIONS(7201), 1, + anon_sym_DOT, + STATE(772), 1, + sym_nested_identifier, + STATE(789), 1, + sym_string, + STATE(917), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136546] = 2, + [138884] = 8, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7203), 1, + sym_identifier, + ACTIONS(7205), 1, + anon_sym_STAR, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5227), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6855), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136560] = 6, - ACTIONS(6447), 1, + [138910] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4192), 1, + STATE(4404), 1, sym_type_annotation, - STATE(4747), 1, + STATE(5135), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136582] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5433), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7123), 5, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136600] = 8, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(811), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5394), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136626] = 6, - ACTIONS(6447), 1, + [138932] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4328), 1, + STATE(4269), 1, sym_type_annotation, - STATE(5037), 1, + STATE(4953), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6659), 3, + ACTIONS(6746), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136648] = 2, + [138954] = 8, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7207), 1, + sym_identifier, + ACTIONS(7209), 1, + anon_sym_STAR, + STATE(3860), 1, + sym_formal_parameters, + STATE(5215), 1, + sym__call_signature, + STATE(5217), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136662] = 8, - ACTIONS(3576), 1, + [138980] = 8, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(4010), 1, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7211), 1, + sym_identifier, + ACTIONS(7213), 1, + anon_sym_STAR, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5478), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139006] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(4642), 1, + ACTIONS(4686), 1, anon_sym_QMARK_DOT, - ACTIONS(7107), 1, + ACTIONS(7215), 1, anon_sym_DOT, - STATE(1588), 1, + STATE(1572), 1, sym_arguments, - STATE(5286), 1, + STATE(5394), 1, sym_optional_chain, - STATE(5293), 1, + STATE(5395), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136688] = 8, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(4073), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5422), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136714] = 6, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(7109), 1, - sym_identifier, - STATE(4451), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3718), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136736] = 6, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(7109), 1, - sym_identifier, - STATE(4416), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3718), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136758] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5368), 1, - sym_statement_block, + [139032] = 4, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4293), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7123), 5, + ACTIONS(7217), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136776] = 4, - ACTIONS(2483), 1, + [139050] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5416), 1, + STATE(5205), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7125), 5, + ACTIONS(7219), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136794] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - STATE(2382), 1, - sym_arguments, - STATE(3174), 1, - sym_type_arguments, - STATE(5286), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136820] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7127), 1, - sym_identifier, - ACTIONS(7129), 1, - anon_sym_STAR, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5453), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136846] = 4, - ACTIONS(2483), 1, + [139068] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5434), 1, + STATE(5207), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7131), 5, + ACTIONS(7221), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136864] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4135), 1, - sym_type_annotation, - STATE(4637), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136886] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4214), 1, - sym_type_annotation, - STATE(4799), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6686), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136908] = 4, - ACTIONS(2483), 1, + [139086] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5259), 1, + STATE(5460), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7125), 5, + ACTIONS(7221), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136926] = 8, - ACTIONS(6732), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(1702), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5369), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136952] = 4, - ACTIONS(2483), 1, + [139104] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5297), 1, + STATE(5461), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7131), 5, + ACTIONS(7219), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136970] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4859), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + [139122] = 4, + ACTIONS(6515), 1, anon_sym_COLON, - [136984] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5441), 1, - sym_statement_block, + STATE(4301), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7133), 5, + ACTIONS(7223), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137002] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - STATE(2351), 1, - sym_arguments, - STATE(3174), 1, - sym_type_arguments, - STATE(5286), 1, - sym_optional_chain, + [139140] = 3, + ACTIONS(6776), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137028] = 8, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, + ACTIONS(4144), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2327), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5326), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [139156] = 3, + ACTIONS(7225), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137054] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4219), 1, - sym_type_annotation, - STATE(4811), 1, - sym__initializer, + ACTIONS(4097), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [139172] = 5, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, - sym__automatic_semicolon, + ACTIONS(4456), 4, anon_sym_COMMA, - anon_sym_SEMI, - [137076] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4139), 1, - sym_type_annotation, - STATE(4664), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139192] = 3, + ACTIONS(7227), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, - sym__automatic_semicolon, + ACTIONS(4480), 6, anon_sym_COMMA, - anon_sym_SEMI, - [137098] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4054), 1, - sym_type_annotation, - STATE(4983), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139208] = 8, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4686), 1, + anon_sym_QMARK_DOT, + STATE(2127), 1, + sym_arguments, + STATE(5266), 1, + sym_optional_chain, + STATE(5275), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6665), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137120] = 2, + [139234] = 5, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6865), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4270), 4, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [137134] = 4, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4259), 1, - sym_type_annotation, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139254] = 5, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7135), 5, - sym__automatic_semicolon, + ACTIONS(4332), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137152] = 8, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139274] = 5, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2191), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5430), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137178] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4221), 1, - sym_type_annotation, - STATE(4817), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, - sym_comment, - ACTIONS(6686), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137200] = 5, - ACTIONS(5555), 1, + sym_comment, + ACTIONS(4228), 4, anon_sym_COMMA, - ACTIONS(5624), 1, - anon_sym_RBRACE, - STATE(4960), 1, - aux_sym_object_repeat1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139294] = 5, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(4232), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - [137220] = 8, - ACTIONS(6831), 1, + [139314] = 8, + ACTIONS(6780), 1, + anon_sym_LBRACE, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - ACTIONS(6923), 1, - anon_sym_LBRACE, - STATE(936), 1, + STATE(2260), 1, sym_class_body, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5287), 1, + STATE(5311), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137246] = 8, - ACTIONS(6682), 1, - anon_sym_LT, - ACTIONS(7137), 1, + [139340] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - ACTIONS(7139), 1, - anon_sym_COMMA, - ACTIONS(7141), 1, - anon_sym_DOT, - ACTIONS(7143), 1, - anon_sym_LBRACE_PIPE, - STATE(4399), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5075), 1, - sym_type_arguments, + STATE(5365), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137272] = 8, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6923), 1, + ACTIONS(7233), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139358] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(825), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5395), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + STATE(5367), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137298] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4363), 1, - sym_type_annotation, - STATE(5097), 1, - sym__initializer, + ACTIONS(7235), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139376] = 4, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5168), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(7233), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137320] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4064), 1, - sym_type_annotation, - STATE(5035), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [139394] = 4, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5169), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(7235), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137342] = 7, - ACTIONS(3557), 1, + anon_sym_PIPE_RBRACE, + [139412] = 5, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4170), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139432] = 7, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + anon_sym_SQUOTE, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6788), 1, + anon_sym_type, + STATE(5459), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5785), 2, + sym__module_export_name, + sym_string, + [139456] = 7, + ACTIONS(3575), 1, anon_sym_COLON, - ACTIONS(7145), 1, + ACTIONS(7237), 1, anon_sym_EQ, - ACTIONS(7149), 1, + ACTIONS(7241), 1, anon_sym_QMARK, - STATE(4383), 1, + STATE(4421), 1, sym_type_annotation, - STATE(5272), 1, + STATE(5355), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7147), 2, + ACTIONS(7239), 2, anon_sym_COMMA, anon_sym_RPAREN, - [137366] = 4, - ACTIONS(2483), 1, + [139480] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5348), 1, + STATE(5449), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7151), 5, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137384] = 4, - ACTIONS(2483), 1, + [139498] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5420), 1, + STATE(5458), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7153), 5, + ACTIONS(7245), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137402] = 4, - ACTIONS(2483), 1, + [139516] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5134), 1, + STATE(5177), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7151), 5, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137420] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4336), 1, - sym_type_annotation, - STATE(5061), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6651), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137442] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4345), 1, - sym_type_annotation, - STATE(5071), 1, - sym__initializer, + [139534] = 4, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5180), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(7245), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137464] = 6, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [139552] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4066), 1, + STATE(4005), 1, sym_type_annotation, - STATE(5088), 1, + STATE(4793), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(7247), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137486] = 4, - ACTIONS(2483), 1, + [139574] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5214), 1, + STATE(5465), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7155), 5, + ACTIONS(7249), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137504] = 4, - ACTIONS(2483), 1, + [139592] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5221), 1, + STATE(5470), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 5, + ACTIONS(7251), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137522] = 4, - ACTIONS(2483), 1, + [139610] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5147), 1, + STATE(5192), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7155), 5, + ACTIONS(7249), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137540] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7159), 1, - sym_identifier, - ACTIONS(7161), 1, - anon_sym_STAR, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5421), 1, - sym__call_signature, + [139628] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137566] = 6, - ACTIONS(6447), 1, + ACTIONS(4991), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6455), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4075), 1, - sym_type_annotation, - STATE(5112), 1, - sym__initializer, + [139642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(4921), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [137588] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - STATE(2130), 1, - sym_arguments, - STATE(5280), 1, - sym_optional_chain, - STATE(5376), 1, - sym_type_arguments, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [139656] = 4, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5427), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137614] = 4, - ACTIONS(2483), 1, + ACTIONS(7253), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139674] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5389), 1, + STATE(5415), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 5, + ACTIONS(7255), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137632] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7165), 1, - sym_identifier, - ACTIONS(7167), 1, - anon_sym_STAR, - STATE(3806), 1, - sym_formal_parameters, - STATE(5235), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + [139692] = 8, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(6913), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5363), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137658] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(4014), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - STATE(1655), 1, - sym_arguments, - STATE(5286), 1, - sym_optional_chain, - STATE(5293), 1, - sym_type_arguments, + [139718] = 6, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7165), 1, + sym_identifier, + STATE(5140), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137684] = 4, - ACTIONS(2483), 1, + STATE(3548), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [139740] = 4, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(5392), 1, + STATE(5439), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7169), 5, + ACTIONS(7257), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137702] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4079), 1, - sym_type_annotation, - STATE(4518), 1, - sym__initializer, + [139758] = 8, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + ACTIONS(7171), 1, + anon_sym_LT, + ACTIONS(7173), 1, + anon_sym_extends, + STATE(901), 1, + sym_object_type, + STATE(3952), 1, + sym_type_parameters, + STATE(5149), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139784] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(7259), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137724] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7171), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [139798] = 6, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7261), 1, sym_identifier, - ACTIONS(7173), 1, - anon_sym_STAR, - STATE(3806), 1, - sym_formal_parameters, - STATE(5247), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + STATE(4438), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137750] = 8, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(7175), 1, + STATE(3417), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [139820] = 6, + ACTIONS(3421), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7263), 1, sym_identifier, - ACTIONS(7177), 1, - anon_sym_DOT, - STATE(783), 1, - sym_nested_identifier, - STATE(798), 1, - sym_string, - STATE(878), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137776] = 2, + STATE(4453), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6871), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [137790] = 8, - ACTIONS(6831), 1, + STATE(3419), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [139842] = 8, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - ACTIONS(6853), 1, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(4033), 1, + STATE(799), 1, sym_class_body, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5296), 1, + STATE(5334), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137816] = 6, - ACTIONS(6447), 1, + [139868] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3974), 1, + STATE(4339), 1, sym_type_annotation, - STATE(4628), 1, + STATE(5052), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137838] = 7, - ACTIONS(3109), 1, - anon_sym_DQUOTE, - ACTIONS(3111), 1, - anon_sym_SQUOTE, - ACTIONS(6704), 1, - sym_identifier, - ACTIONS(6768), 1, - anon_sym_type, - STATE(5355), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5579), 2, - sym__module_export_name, - sym_string, - [137862] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7179), 1, - anon_sym_COLON, - ACTIONS(7181), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(5301), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137888] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5238), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7183), 5, + ACTIONS(6727), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137906] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7185), 1, - sym_identifier, - ACTIONS(7187), 1, - anon_sym_STAR, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5421), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137932] = 6, - ACTIONS(6447), 1, + [139890] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3975), 1, + STATE(4204), 1, sym_type_annotation, - STATE(4630), 1, + STATE(4972), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137954] = 8, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1534), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - anon_sym_LT, - ACTIONS(7191), 1, - anon_sym_extends, - STATE(897), 1, - sym_object_type, - STATE(4208), 1, - sym_type_parameters, - STATE(4780), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137980] = 6, - ACTIONS(6447), 1, + [139912] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4100), 1, + STATE(4206), 1, sym_type_annotation, - STATE(4565), 1, + STATE(5042), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6669), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138002] = 3, - ACTIONS(7193), 1, - anon_sym_EQ, + [139934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 6, + ACTIONS(7265), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [138018] = 6, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [139948] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4080), 1, + STATE(4393), 1, sym_type_annotation, - STATE(4519), 1, + STATE(5125), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138040] = 6, - ACTIONS(6447), 1, + [139970] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4081), 1, + STATE(4401), 1, sym_type_annotation, - STATE(4521), 1, + STATE(5136), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138062] = 6, - ACTIONS(6447), 1, + [139992] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4082), 1, + STATE(4214), 1, sym_type_annotation, - STATE(4526), 1, + STATE(4625), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138084] = 6, - ACTIONS(6447), 1, + [140014] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4086), 1, + STATE(4215), 1, sym_type_annotation, - STATE(4532), 1, + STATE(4646), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138106] = 4, - ACTIONS(6455), 1, + [140036] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4284), 1, + STATE(4057), 1, sym_type_annotation, + STATE(5160), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7195), 5, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138124] = 3, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4306), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [138140] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4294), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138160] = 3, - ACTIONS(7197), 1, - anon_sym_extends, + [140058] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4321), 1, + sym_type_annotation, + STATE(4898), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4192), 6, + ACTIONS(6729), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [138176] = 8, - ACTIONS(3576), 1, + anon_sym_SEMI, + [140080] = 8, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(4010), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(7199), 1, - anon_sym_DOT, - STATE(1588), 1, - sym_arguments, - STATE(5286), 1, - sym_optional_chain, - STATE(5293), 1, - sym_type_arguments, + ACTIONS(7267), 1, + sym_identifier, + ACTIONS(7269), 1, + anon_sym_STAR, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138202] = 6, - ACTIONS(6447), 1, + [140106] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4364), 1, + STATE(4279), 1, sym_type_annotation, - STATE(5098), 1, + STATE(4858), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138224] = 6, - ACTIONS(6447), 1, + [140128] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4230), 1, + STATE(3944), 1, sym_type_annotation, - STATE(4832), 1, + STATE(4950), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138246] = 8, - ACTIONS(6732), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(1664), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5234), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138272] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6921), 7, - sym__automatic_semicolon, + [140150] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + ACTIONS(6515), 1, anon_sym_COLON, - [138286] = 2, + STATE(3985), 1, + sym_type_annotation, + STATE(5157), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7201), 7, + ACTIONS(6729), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [138300] = 6, - ACTIONS(6447), 1, + [140172] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4093), 1, + STATE(4129), 1, sym_type_annotation, - STATE(4539), 1, + STATE(4656), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138322] = 8, - ACTIONS(6732), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2576), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5157), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138348] = 6, - ACTIONS(6447), 1, + [140194] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4165), 1, + STATE(4286), 1, sym_type_annotation, - STATE(4709), 1, + STATE(4790), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138370] = 6, - ACTIONS(6447), 1, + [140216] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4368), 1, + STATE(4326), 1, sym_type_annotation, - STATE(5105), 1, + STATE(4800), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138392] = 6, - ACTIONS(6447), 1, + [140238] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3991), 1, + STATE(4328), 1, sym_type_annotation, - STATE(4704), 1, + STATE(4810), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138414] = 6, - ACTIONS(6447), 1, + [140260] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3993), 1, + STATE(4347), 1, sym_type_annotation, - STATE(4710), 1, + STATE(4814), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138436] = 8, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6847), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5303), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138462] = 8, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(7203), 1, - sym_identifier, - ACTIONS(7205), 1, - anon_sym_DOT, - STATE(3500), 1, - sym_nested_identifier, - STATE(3698), 1, - sym_string, - STATE(4311), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138488] = 8, - ACTIONS(1034), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1610), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - anon_sym_LT, - ACTIONS(7191), 1, - anon_sym_extends, - STATE(3951), 1, - sym_type_parameters, - STATE(4374), 1, - sym_object_type, - STATE(5108), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138514] = 6, - ACTIONS(6447), 1, + [140282] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4096), 1, + STATE(4122), 1, sym_type_annotation, - STATE(4556), 1, + STATE(4708), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138536] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4097), 1, - sym_type_annotation, - STATE(4558), 1, - sym__initializer, + [140304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(7271), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138558] = 6, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4010), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, - STATE(5298), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7089), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [138580] = 6, - ACTIONS(6447), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [140318] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4232), 1, + STATE(4069), 1, sym_type_annotation, - STATE(4841), 1, + STATE(4705), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6729), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138602] = 6, - ACTIONS(6447), 1, + [140340] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4006), 1, + STATE(4396), 1, sym_type_annotation, - STATE(4759), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138624] = 6, - ACTIONS(6447), 1, + [140362] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4008), 1, + STATE(4406), 1, sym_type_annotation, - STATE(4768), 1, + STATE(4830), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138646] = 2, + [140384] = 4, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(4323), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 7, - anon_sym_EQ, + ACTIONS(7273), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [138660] = 8, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2234), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5414), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138686] = 6, - ACTIONS(6447), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140402] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4015), 1, + STATE(3951), 1, sym_type_annotation, - STATE(4807), 1, + STATE(4879), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138708] = 2, + [140424] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3964), 1, + sym_type_annotation, + STATE(4894), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4850), 7, + ACTIONS(6731), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [138722] = 8, - ACTIONS(2499), 1, + [140446] = 8, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7181), 1, + ACTIONS(7183), 1, anon_sym_QMARK, - ACTIONS(7207), 1, + ACTIONS(7275), 1, anon_sym_COLON, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5301), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5463), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138748] = 8, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2170), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5183), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [140472] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138774] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(7277), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COLON, - STATE(4021), 1, - sym_type_annotation, - STATE(4828), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [140486] = 8, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7279), 1, + sym_identifier, + ACTIONS(7281), 1, + anon_sym_STAR, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6651), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138796] = 6, - ACTIONS(6447), 1, + [140512] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4188), 1, + STATE(3978), 1, sym_type_annotation, - STATE(4749), 1, + STATE(4957), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7209), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138818] = 6, - ACTIONS(3407), 1, + [140534] = 8, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(7109), 1, - sym_identifier, - STATE(4450), 1, - sym_variable_declarator, + ACTIONS(6849), 1, + anon_sym_extends, + ACTIONS(6851), 1, + anon_sym_implements, + STATE(2171), 1, + sym_class_body, + STATE(5037), 1, + sym_extends_clause, + STATE(5448), 1, + sym_class_heritage, + STATE(5628), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3718), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138840] = 8, - ACTIONS(2499), 1, + [140560] = 8, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7211), 1, + ACTIONS(7283), 1, sym_identifier, - ACTIONS(7213), 1, + ACTIONS(7285), 1, anon_sym_STAR, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5247), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5478), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138866] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5494), 7, + [140586] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(6515), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [138880] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - ACTIONS(7215), 1, - anon_sym_DOT, - STATE(1983), 1, - sym_arguments, - STATE(5280), 1, - sym_optional_chain, - STATE(5376), 1, - sym_type_arguments, + STATE(3983), 1, + sym_type_annotation, + STATE(4601), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138906] = 3, - ACTIONS(6758), 1, - anon_sym_is, + ACTIONS(6707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140608] = 3, + ACTIONS(7287), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4106), 6, + ACTIONS(4278), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [138922] = 3, - ACTIONS(7217), 1, - anon_sym_is, + [140624] = 3, + ACTIONS(7289), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 6, - anon_sym_as, + ACTIONS(3610), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [140640] = 6, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(3939), 1, + sym_type_annotation, + STATE(4961), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6744), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140662] = 3, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4352), 6, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [140678] = 5, + ACTIONS(7227), 1, anon_sym_AMP, + ACTIONS(7229), 1, anon_sym_PIPE, + ACTIONS(7231), 1, anon_sym_extends, - [138938] = 4, - ACTIONS(7065), 1, - anon_sym_LBRACE, - STATE(4280), 1, - sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 5, - sym__automatic_semicolon, + ACTIONS(4364), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138956] = 6, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(7219), 1, - sym_identifier, - STATE(4416), 1, - sym_variable_declarator, + anon_sym_RBRACK, + anon_sym_QMARK, + [140698] = 3, + ACTIONS(7291), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3387), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138978] = 6, - ACTIONS(6447), 1, + ACTIONS(4372), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + [140714] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4102), 1, + STATE(3994), 1, sym_type_annotation, - STATE(4569), 1, + STATE(4989), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139000] = 6, - ACTIONS(6447), 1, + [140736] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4103), 1, + STATE(4003), 1, sym_type_annotation, - STATE(4571), 1, + STATE(5011), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139022] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6919), 7, + ACTIONS(6731), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [139036] = 6, - ACTIONS(6447), 1, + [140758] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4106), 1, + STATE(4013), 1, sym_type_annotation, - STATE(4577), 1, + STATE(5067), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139058] = 6, - ACTIONS(6447), 1, + [140780] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4109), 1, + STATE(4028), 1, sym_type_annotation, - STATE(4580), 1, + STATE(5074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139080] = 6, - ACTIONS(6447), 1, + [140802] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4110), 1, + STATE(4040), 1, sym_type_annotation, - STATE(4583), 1, + STATE(5087), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139102] = 6, - ACTIONS(6447), 1, + [140824] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4111), 1, + STATE(4043), 1, sym_type_annotation, - STATE(4584), 1, + STATE(5096), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139124] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7221), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139138] = 6, - ACTIONS(6447), 1, + [140846] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4118), 1, + STATE(4044), 1, sym_type_annotation, - STATE(4605), 1, + STATE(5159), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139160] = 8, - ACTIONS(6718), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(2282), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5446), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139186] = 6, - ACTIONS(6447), 1, + [140868] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4119), 1, + STATE(4047), 1, sym_type_annotation, - STATE(4607), 1, + STATE(4554), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139208] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4404), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139228] = 6, - ACTIONS(6447), 1, + [140890] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4120), 1, + STATE(4051), 1, sym_type_annotation, - STATE(4609), 1, + STATE(4590), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139250] = 3, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4440), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [139266] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5262), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7223), 5, + ACTIONS(6731), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139284] = 6, - ACTIONS(3407), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(7225), 1, - sym_identifier, - STATE(4450), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3385), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139306] = 8, - ACTIONS(6732), 1, - anon_sym_LBRACE, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - STATE(1690), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5188), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139332] = 8, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(4000), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5192), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139358] = 6, - ACTIONS(6447), 1, + [140912] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4338), 1, + STATE(4055), 1, sym_type_annotation, - STATE(4561), 1, + STATE(4607), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 3, + ACTIONS(6731), 3, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139380] = 8, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7227), 1, - sym_identifier, - ACTIONS(7229), 1, - anon_sym_STAR, - STATE(3806), 1, - sym_formal_parameters, - STATE(5247), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139406] = 8, - ACTIONS(6732), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [140934] = 8, + ACTIONS(6780), 1, anon_sym_LBRACE, - ACTIONS(6831), 1, + ACTIONS(6849), 1, anon_sym_extends, - ACTIONS(6833), 1, + ACTIONS(6851), 1, anon_sym_implements, - STATE(1692), 1, + STATE(2263), 1, sym_class_body, - STATE(5080), 1, + STATE(5037), 1, sym_extends_clause, - STATE(5215), 1, + STATE(5391), 1, sym_class_heritage, - STATE(5792), 1, + STATE(5628), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139432] = 6, - ACTIONS(6447), 1, + [140960] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4297), 1, + STATE(3976), 1, sym_type_annotation, - STATE(4986), 1, + STATE(5046), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139454] = 3, - ACTIONS(7231), 1, + [140982] = 8, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7293), 1, + sym_identifier, + ACTIONS(7295), 1, + anon_sym_STAR, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141008] = 3, + ACTIONS(7297), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 6, + ACTIONS(3601), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [139470] = 8, - ACTIONS(2499), 1, + [141024] = 8, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7234), 1, + ACTIONS(7300), 1, sym_identifier, - ACTIONS(7236), 1, + ACTIONS(7302), 1, anon_sym_STAR, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5421), 1, + STATE(5478), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139496] = 6, - ACTIONS(6447), 1, + [141050] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4121), 1, + STATE(4023), 1, sym_type_annotation, - STATE(4611), 1, + STATE(4577), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139518] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4194), 1, - sym_type_annotation, - STATE(4756), 1, - sym__initializer, + [141072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(4883), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [139540] = 6, - ACTIONS(6447), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [141086] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4332), 1, + STATE(4056), 1, sym_type_annotation, - STATE(5051), 1, + STATE(4655), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139562] = 6, - ACTIONS(6447), 1, + [141108] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4058), 1, sym_type_annotation, - STATE(4617), 1, + STATE(4662), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139584] = 6, - ACTIONS(6447), 1, + [141130] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4195), 1, + STATE(4116), 1, sym_type_annotation, - STATE(4757), 1, + STATE(4752), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139606] = 6, - ACTIONS(6447), 1, + [141152] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4198), 1, + STATE(4118), 1, sym_type_annotation, - STATE(4766), 1, + STATE(4756), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139628] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4204), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139648] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4222), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139668] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4436), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139688] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4444), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139708] = 6, - ACTIONS(6447), 1, + [141174] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4233), 1, + STATE(4153), 1, sym_type_annotation, - STATE(4843), 1, + STATE(4776), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139730] = 6, - ACTIONS(6447), 1, + [141196] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3909), 1, + STATE(4161), 1, sym_type_annotation, - STATE(4631), 1, + STATE(4784), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139752] = 6, - ACTIONS(6447), 1, + [141218] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(3912), 1, + STATE(4177), 1, sym_type_annotation, - STATE(4677), 1, + STATE(4796), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139774] = 6, - ACTIONS(6447), 1, + [141240] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4127), 1, + STATE(4183), 1, sym_type_annotation, - STATE(4634), 1, + STATE(4801), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139796] = 6, - ACTIONS(6447), 1, + [141262] = 6, + ACTIONS(6507), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(6515), 1, anon_sym_COLON, - STATE(4199), 1, + STATE(4249), 1, sym_type_annotation, - STATE(4767), 1, + STATE(4828), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139818] = 8, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(4592), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - anon_sym_QMARK_DOT, - STATE(2030), 1, - sym_arguments, - STATE(3471), 1, - sym_type_arguments, - STATE(5280), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139844] = 2, + [141284] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2694), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1888), 7, + ACTIONS(7177), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [139858] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(4206), 1, - sym_type_annotation, - STATE(4777), 1, - sym__initializer, + [141301] = 7, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7306), 1, + anon_sym_COMMA, + ACTIONS(7308), 1, + anon_sym_GT, + STATE(5065), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141324] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(7313), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139880] = 4, - ACTIONS(4108), 1, - anon_sym_extends, - ACTIONS(7238), 1, - sym_identifier, + [141341] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7315), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5472), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4110), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - [139898] = 2, + [141364] = 4, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1892), 7, + ACTIONS(7319), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7317), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [139912] = 8, - ACTIONS(6831), 1, - anon_sym_extends, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_class_body, - STATE(5080), 1, - sym_extends_clause, - STATE(5312), 1, - sym_class_heritage, - STATE(5792), 1, - sym_implements_clause, + [141381] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7321), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5501), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139938] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3968), 1, - sym_type_annotation, - STATE(4600), 1, - sym__initializer, + [141404] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7323), 1, + sym_identifier, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5386), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139960] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3970), 1, - sym_type_annotation, - STATE(4606), 1, - sym__initializer, + [141427] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7325), 1, + sym_identifier, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5495), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139982] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(3977), 1, - sym_type_annotation, - STATE(4648), 1, - sym__initializer, + [141450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(7265), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [140004] = 6, - ACTIONS(6447), 1, - anon_sym_EQ, - ACTIONS(6455), 1, anon_sym_COLON, - STATE(3988), 1, - sym_type_annotation, - STATE(4658), 1, - sym__initializer, + [141463] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(7327), 1, + anon_sym_QMARK, + STATE(3332), 1, + sym_formal_parameters, + STATE(4104), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141486] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7329), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5214), 1, + sym__call_signature, + STATE(5217), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141509] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(3758), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7331), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140026] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5345), 1, - sym_statement_block, + [141526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7153), 5, - sym__automatic_semicolon, + ACTIONS(3906), 6, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [140044] = 4, - STATE(3834), 1, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [141539] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + ACTIONS(7333), 1, + anon_sym_QMARK, + STATE(3372), 1, + sym_formal_parameters, + STATE(3868), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141562] = 4, + STATE(3808), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3752), 2, + ACTIONS(3796), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7240), 3, + ACTIONS(7335), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140061] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2710), 1, - sym_statement_block, + [141579] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7131), 4, + ACTIONS(3796), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7335), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140078] = 7, - ACTIONS(2499), 1, + [141596] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7244), 1, + ACTIONS(7337), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5438), 1, + STATE(5257), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140101] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(7246), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(3625), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + [141619] = 5, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, + sym_identifier, + ACTIONS(7341), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140124] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2702), 1, - sym_statement_block, + STATE(4536), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [141638] = 4, + STATE(3854), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 4, + ACTIONS(7345), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7343), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140141] = 7, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7248), 1, - anon_sym_COMMA, - ACTIONS(7250), 1, - anon_sym_GT, - STATE(4588), 1, - aux_sym_implements_clause_repeat1, + [141655] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7347), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5271), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140164] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2712), 1, - sym_statement_block, + [141678] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7153), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7349), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [140181] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2704), 1, - sym_statement_block, + anon_sym_GT, + [141697] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 4, + ACTIONS(3768), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7351), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140198] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, + [141714] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7353), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5277), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [140217] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2653), 1, - sym_statement_block, + [141737] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7151), 4, + ACTIONS(7271), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [140234] = 2, + anon_sym_COLON, + [141750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2365), 6, + ACTIONS(2361), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [140247] = 7, - ACTIONS(2499), 1, + [141763] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7254), 1, - sym_identifier, - STATE(3806), 1, + ACTIONS(7355), 1, + anon_sym_QMARK, + STATE(3332), 1, sym_formal_parameters, - STATE(5250), 1, + STATE(4134), 1, sym__call_signature, - STATE(5328), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140270] = 2, + [141786] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2677), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7201), 6, + ACTIONS(7249), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140283] = 5, - ACTIONS(7256), 1, - anon_sym_AMP, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4436), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140302] = 5, - ACTIONS(7264), 1, - anon_sym_BQUOTE, - ACTIONS(7266), 1, - anon_sym_DOLLAR_LBRACE, + [141803] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7357), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5302), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7262), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3832), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140321] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, + [141826] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2678), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6752), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5199), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [140338] = 5, - ACTIONS(7256), 1, - anon_sym_AMP, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_extends, + ACTIONS(7251), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141843] = 4, + ACTIONS(5273), 1, + anon_sym_COMMA, + STATE(3821), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4444), 3, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(7359), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_RBRACK, - [140357] = 3, - ACTIONS(7256), 1, - anon_sym_AMP, + [141860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 5, + ACTIONS(2373), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [140372] = 7, - ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7270), 1, - anon_sym_COMMA, - ACTIONS(7272), 1, - anon_sym_GT, - STATE(4636), 1, - aux_sym_implements_clause_repeat1, + [141873] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140395] = 5, - ACTIONS(7256), 1, - anon_sym_AMP, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_extends, + ACTIONS(7243), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141890] = 7, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(7361), 1, + anon_sym_RPAREN, + ACTIONS(7363), 1, + anon_sym_DOT, + STATE(1285), 1, + sym_arguments, + STATE(5392), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140414] = 4, - ACTIONS(7242), 1, + [141913] = 4, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2662), 1, + STATE(2676), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7183), 4, + ACTIONS(7245), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140431] = 3, - ACTIONS(7274), 1, - anon_sym_extends, + [141930] = 4, + ACTIONS(7365), 1, + anon_sym_COMMA, + STATE(3821), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4192), 5, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(5045), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [140446] = 2, + [141947] = 4, + STATE(3798), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2369), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140459] = 6, - ACTIONS(7095), 1, + ACTIONS(7370), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7368), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141964] = 7, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(7097), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(7099), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7278), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7276), 2, + ACTIONS(7372), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [140480] = 7, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7280), 1, - anon_sym_export, - ACTIONS(7282), 1, - anon_sym_class, - ACTIONS(7284), 1, - anon_sym_abstract, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, + ACTIONS(7374), 1, + anon_sym_GT, + STATE(4805), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140503] = 7, - ACTIONS(6605), 1, + [141987] = 7, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7286), 1, + ACTIONS(7376), 1, anon_sym_COMMA, - ACTIONS(7288), 1, + ACTIONS(7378), 1, anon_sym_GT, - STATE(4693), 1, + STATE(4584), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140526] = 2, + [142010] = 4, + STATE(3829), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2361), 6, + ACTIONS(7382), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7380), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142027] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2377), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [140539] = 4, - STATE(3801), 1, + [142040] = 4, + STATE(3837), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 2, + ACTIONS(3782), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7290), 3, + ACTIONS(7384), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140556] = 6, - ACTIONS(3557), 1, - anon_sym_COLON, - ACTIONS(7145), 1, - anon_sym_EQ, - STATE(4491), 1, - sym_type_annotation, - STATE(5132), 1, - sym__initializer, + [142057] = 5, + ACTIONS(7386), 1, + anon_sym_default, + ACTIONS(7389), 1, + anon_sym_RBRACE, + ACTIONS(7391), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7294), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [140577] = 2, + STATE(3828), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142076] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 6, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3782), 2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [140590] = 7, - ACTIONS(2499), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(7384), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142093] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - ACTIONS(7296), 1, + ACTIONS(7394), 1, anon_sym_QMARK, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3800), 1, + STATE(3815), 1, sym__call_signature, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140613] = 7, - ACTIONS(2499), 1, + [142116] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2369), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142129] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - ACTIONS(7298), 1, + ACTIONS(7396), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(4257), 1, + STATE(3905), 1, sym__call_signature, - STATE(5233), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140636] = 7, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(7175), 1, - sym_identifier, - STATE(783), 1, - sym_nested_identifier, - STATE(798), 1, - sym_string, - STATE(887), 1, - sym__module, + [142152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140659] = 4, - ACTIONS(7242), 1, + ACTIONS(2365), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142165] = 4, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2707), 1, + STATE(2689), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7153), 4, + ACTIONS(7243), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140676] = 7, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7300), 1, - anon_sym_COMMA, - ACTIONS(7302), 1, - anon_sym_GT, - STATE(5016), 1, - aux_sym_implements_clause_repeat1, + [142182] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7398), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5369), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140699] = 5, - ACTIONS(7266), 1, - anon_sym_DOLLAR_LBRACE, + [142205] = 4, ACTIONS(7304), 1, - anon_sym_BQUOTE, + anon_sym_LBRACE, + STATE(2703), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7262), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3832), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140718] = 4, - STATE(3794), 1, + ACTIONS(7249), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142222] = 4, + STATE(3789), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3764), 2, + ACTIONS(3744), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7306), 3, + ACTIONS(7400), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140735] = 7, - ACTIONS(2499), 1, + [142239] = 7, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7308), 1, + ACTIONS(7402), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4968), 1, + STATE(3653), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140758] = 7, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7310), 1, - anon_sym_COMMA, - ACTIONS(7312), 1, - anon_sym_GT, - STATE(5006), 1, - aux_sym_implements_clause_repeat1, + [142262] = 5, + ACTIONS(7404), 1, + anon_sym_default, + ACTIONS(7406), 1, + anon_sym_RBRACE, + ACTIONS(7408), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140781] = 2, + STATE(3866), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142281] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2679), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7221), 6, + ACTIONS(7253), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140794] = 4, - STATE(3808), 1, - aux_sym_object_type_repeat1, + [142298] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2681), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3752), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7240), 3, + ACTIONS(7257), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140811] = 5, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(7314), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4829), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140830] = 4, - ACTIONS(5217), 1, - anon_sym_COMMA, - STATE(3807), 1, - aux_sym_sequence_expression_repeat1, + [142315] = 5, + ACTIONS(7412), 1, + anon_sym_BQUOTE, + ACTIONS(7414), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7318), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, - [140847] = 4, - STATE(3803), 1, - aux_sym_object_type_repeat1, + ACTIONS(7410), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3915), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142334] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2664), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3772), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7320), 3, + ACTIONS(7219), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140864] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, + [142351] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3780), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7322), 3, + ACTIONS(7221), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140881] = 3, + [142368] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + ACTIONS(7416), 1, + anon_sym_QMARK, + STATE(3372), 1, + sym_formal_parameters, + STATE(3897), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3814), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [140896] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2655), 1, - sym_statement_block, + [142391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7155), 4, + ACTIONS(7418), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140913] = 4, - STATE(3834), 1, + anon_sym_PIPE_RBRACE, + [142404] = 4, + STATE(3883), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3774), 2, + ACTIONS(3786), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7324), 3, + ACTIONS(7420), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140930] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(7326), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(3917), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140953] = 4, - ACTIONS(7242), 1, + [142421] = 4, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2695), 1, + STATE(2716), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7123), 4, + ACTIONS(7221), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140970] = 4, - ACTIONS(7242), 1, + [142438] = 4, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2657), 1, + STATE(2717), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 4, + ACTIONS(7219), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140987] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, + [142455] = 5, + ACTIONS(7414), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7422), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3772), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7320), 3, - sym__automatic_semicolon, + ACTIONS(7103), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3842), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142474] = 7, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7424), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141004] = 7, - ACTIONS(2499), 1, + ACTIONS(7426), 1, + anon_sym_GT, + STATE(4630), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142497] = 7, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7328), 1, + ACTIONS(7428), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4272), 1, + STATE(5083), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141027] = 4, - STATE(3834), 1, + [142520] = 4, + STATE(3857), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3748), 2, + ACTIONS(7432), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7330), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141044] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6509), 1, - anon_sym_LPAREN, - ACTIONS(7332), 1, - anon_sym_QMARK, - STATE(3330), 1, - sym_formal_parameters, - STATE(3799), 1, - sym__call_signature, - STATE(5249), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141067] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7103), 6, + ACTIONS(7430), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141080] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6783), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5306), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141097] = 4, - ACTIONS(7334), 1, anon_sym_COMMA, - STATE(3807), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4852), 4, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, - [141114] = 4, - STATE(3834), 1, + [142537] = 4, + STATE(3789), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3790), 2, + ACTIONS(3786), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7337), 3, + ACTIONS(7420), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141131] = 4, - STATE(3879), 1, - aux_sym_object_type_repeat1, + [142554] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(7434), 1, + anon_sym_QMARK, + STATE(3332), 1, + sym_formal_parameters, + STATE(4102), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7341), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7339), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141148] = 4, - STATE(3889), 1, + [142577] = 4, + STATE(3859), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7345), 2, + ACTIONS(3746), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7343), 3, + ACTIONS(7436), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141165] = 2, + [142594] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7347), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3746), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [141178] = 7, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(7175), 1, - sym_identifier, - STATE(783), 1, - sym_nested_identifier, - STATE(798), 1, - sym_string, - STATE(878), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141201] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7169), 4, + ACTIONS(7436), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141218] = 4, - STATE(3797), 1, + [142611] = 4, + STATE(3931), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3786), 2, + ACTIONS(3758), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7349), 3, + ACTIONS(7331), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141235] = 4, - STATE(3864), 1, + [142628] = 4, + STATE(3789), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7353), 2, + ACTIONS(3742), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7351), 3, + ACTIONS(7438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141252] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7355), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(5242), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141275] = 5, - ACTIONS(7357), 1, - anon_sym_default, - ACTIONS(7360), 1, - anon_sym_RBRACE, - ACTIONS(7362), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3817), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141294] = 7, - ACTIONS(6682), 1, - anon_sym_LT, - ACTIONS(7139), 1, - anon_sym_COMMA, - ACTIONS(7365), 1, - anon_sym_LBRACE, - ACTIONS(7367), 1, - anon_sym_LBRACE_PIPE, - STATE(4400), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5076), 1, - sym_type_arguments, + [142645] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141317] = 4, - ACTIONS(7242), 1, + ACTIONS(6800), 2, anon_sym_LBRACE, - STATE(2650), 1, - sym_statement_block, + anon_sym_EQ_GT, + STATE(5447), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [142662] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7151), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141334] = 4, - ACTIONS(7242), 1, + ACTIONS(7442), 3, anon_sym_LBRACE, - STATE(2687), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7125), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [141351] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7369), 1, - sym_identifier, - STATE(3806), 1, - sym_formal_parameters, - STATE(5250), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141374] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7371), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(5213), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141397] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7373), 1, - sym_identifier, - STATE(3806), 1, - sym_formal_parameters, - STATE(5187), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141420] = 5, - ACTIONS(7256), 1, + anon_sym_GT, + [142681] = 5, + ACTIONS(7444), 1, anon_sym_AMP, - ACTIONS(7258), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7448), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4204), 3, + ACTIONS(4456), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141439] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7375), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141452] = 7, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(7377), 1, - anon_sym_RPAREN, - ACTIONS(7379), 1, - anon_sym_DOT, - STATE(1288), 1, - sym_arguments, - STATE(5440), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141475] = 5, - ACTIONS(7381), 1, - anon_sym_default, - ACTIONS(7383), 1, - anon_sym_RBRACE, - ACTIONS(7385), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3877), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141494] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(7387), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(3632), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + [142700] = 3, + ACTIONS(7444), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141517] = 5, - ACTIONS(3407), 1, + ACTIONS(4480), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [142715] = 5, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3409), 1, + ACTIONS(7341), 1, anon_sym_LBRACK, - ACTIONS(7389), 1, + ACTIONS(7450), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4813), 3, + STATE(4663), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [141536] = 7, + [142734] = 7, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7284), 1, - anon_sym_abstract, - ACTIONS(7391), 1, + ACTIONS(7452), 1, anon_sym_export, - ACTIONS(7393), 1, + ACTIONS(7454), 1, anon_sym_class, - STATE(1269), 1, + ACTIONS(7456), 1, + anon_sym_abstract, + STATE(1249), 1, aux_sym_export_statement_repeat1, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141559] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7395), 1, - sym_identifier, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5429), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141582] = 5, - ACTIONS(7400), 1, - anon_sym_BQUOTE, - ACTIONS(7402), 1, - anon_sym_DOLLAR_LBRACE, + [142757] = 5, + ACTIONS(7404), 1, + anon_sym_default, + ACTIONS(7408), 1, + anon_sym_case, + ACTIONS(7458), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7397), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3832), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141601] = 7, - ACTIONS(2499), 1, + STATE(3828), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142776] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7405), 1, + ACTIONS(7460), 1, anon_sym_QMARK, - STATE(3330), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3813), 1, + STATE(5210), 1, sym__call_signature, - STATE(5249), 1, + STATE(5217), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141624] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, + [142799] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2720), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7410), 2, + ACTIONS(7191), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142816] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7462), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(7407), 3, + [142829] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7277), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141641] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, + anon_sym_COLON, + [142842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7412), 3, - anon_sym_EQ, + ACTIONS(7464), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [141660] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(7414), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(3601), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141683] = 7, - ACTIONS(2499), 1, + ACTIONS(7466), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142868] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7416), 1, + ACTIONS(7468), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5435), 1, + STATE(5350), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141706] = 5, - ACTIONS(7256), 1, + [142891] = 7, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(7258), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(6657), 1, anon_sym_extends, + ACTIONS(7470), 1, + anon_sym_COMMA, + ACTIONS(7472), 1, + anon_sym_GT, + STATE(4675), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141725] = 4, - ACTIONS(7242), 1, + [142914] = 4, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2688), 1, + STATE(2690), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7131), 4, + ACTIONS(7245), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141742] = 7, - ACTIONS(2499), 1, + [142931] = 4, + STATE(3888), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7476), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7474), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142948] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - ACTIONS(7418), 1, + ACTIONS(7478), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5350), 1, + STATE(3844), 1, sym__call_signature, + STATE(5484), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142971] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141765] = 7, - ACTIONS(2499), 1, + ACTIONS(6816), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5341), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [142988] = 7, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7420), 1, + ACTIONS(7480), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(5060), 1, + STATE(4159), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141788] = 7, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3576), 1, - anon_sym_LT, - ACTIONS(7379), 1, - anon_sym_DOT, - ACTIONS(7422), 1, - anon_sym_RPAREN, - STATE(1288), 1, - sym_arguments, - STATE(5440), 1, - sym_type_arguments, + [143011] = 5, + ACTIONS(7414), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7482), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7083), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3936), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [143030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141811] = 7, - ACTIONS(2499), 1, + ACTIONS(5918), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3906), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [143045] = 7, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7424), 1, + ACTIONS(7484), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(5044), 1, + STATE(3680), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141834] = 4, - STATE(3750), 1, + [143068] = 4, + STATE(3789), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7428), 2, + ACTIONS(3764), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7426), 3, + ACTIONS(7486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141851] = 7, - ACTIONS(2499), 1, + [143085] = 6, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(7237), 1, + anon_sym_EQ, + STATE(4445), 1, + sym_type_annotation, + STATE(5261), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7488), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [143106] = 6, + ACTIONS(6725), 1, anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(7430), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(4179), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + ACTIONS(7143), 1, + anon_sym_DOT, + ACTIONS(7490), 1, + anon_sym_LBRACE, + STATE(4880), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141874] = 7, - ACTIONS(2499), 1, + ACTIONS(7492), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [143127] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7432), 1, + ACTIONS(7494), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4255), 1, + STATE(5167), 1, sym__call_signature, - STATE(5233), 1, + STATE(5217), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141897] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2708), 1, - sym_statement_block, + [143150] = 4, + STATE(3890), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7125), 4, + ACTIONS(3792), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7496), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141914] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2690), 1, - sym_statement_block, + [143167] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7123), 4, + ACTIONS(3792), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7496), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141931] = 5, - ACTIONS(7256), 1, + [143184] = 5, + ACTIONS(7444), 1, anon_sym_AMP, - ACTIONS(7258), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7448), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 3, + ACTIONS(4270), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141950] = 3, - ACTIONS(7256), 1, + [143203] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3772), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7498), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143220] = 5, + ACTIONS(7444), 1, anon_sym_AMP, + ACTIONS(7446), 1, + anon_sym_PIPE, + ACTIONS(7448), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4440), 5, + ACTIONS(4332), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + [143239] = 5, + ACTIONS(7444), 1, + anon_sym_AMP, + ACTIONS(7446), 1, anon_sym_PIPE, + ACTIONS(7448), 1, anon_sym_extends, - [141965] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7434), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5365), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141988] = 5, - ACTIONS(7266), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7436), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7025), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3785), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142007] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7438), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(5133), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142030] = 7, - ACTIONS(2499), 1, + ACTIONS(4228), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143258] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7440), 1, + ACTIONS(7500), 1, sym_identifier, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5250), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5495), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142053] = 4, - ACTIONS(7242), 1, + [143281] = 4, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2672), 1, + STATE(2708), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7155), 4, + ACTIONS(7191), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142070] = 7, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7442), 1, + [143298] = 4, + ACTIONS(7304), 1, anon_sym_LBRACE, - ACTIONS(7444), 1, - anon_sym_COMMA, - STATE(4905), 1, - aux_sym_implements_clause_repeat1, + STATE(2670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142093] = 5, - ACTIONS(7256), 1, + ACTIONS(7233), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143315] = 5, + ACTIONS(7444), 1, anon_sym_AMP, - ACTIONS(7258), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7448), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 3, + ACTIONS(4232), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [142112] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7446), 1, - sym_identifier, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5429), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142135] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7448), 1, - sym_identifier, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5429), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142158] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - ACTIONS(7450), 1, - anon_sym_QMARK, - STATE(3315), 1, - sym_formal_parameters, - STATE(3640), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142181] = 5, - ACTIONS(7266), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7452), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7043), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3764), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142200] = 2, + [143334] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2671), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7454), 6, + ACTIONS(7235), 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, - [142213] = 7, - ACTIONS(2499), 1, + [143351] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7502), 1, anon_sym_QMARK, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3895), 1, + STATE(3820), 1, sym__call_signature, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142236] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, + [143374] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2667), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3786), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7349), 3, + ACTIONS(7233), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142253] = 7, - ACTIONS(2499), 1, + [143391] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7458), 1, - sym_identifier, - STATE(3806), 1, + ACTIONS(7504), 1, + anon_sym_QMARK, + STATE(3332), 1, sym_formal_parameters, - STATE(5250), 1, + STATE(4097), 1, sym__call_signature, - STATE(5328), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142276] = 7, - ACTIONS(2499), 1, + [143414] = 7, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7460), 1, + ACTIONS(7506), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3589), 1, + STATE(3695), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142299] = 7, - ACTIONS(2499), 1, + [143437] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7462), 1, + ACTIONS(7508), 1, sym_identifier, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5236), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5278), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142322] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, + [143460] = 7, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + sym_identifier, + STATE(3515), 1, + sym_nested_identifier, + STATE(3553), 1, + sym_string, + STATE(3957), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3766), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7464), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142339] = 6, - ACTIONS(6682), 1, - anon_sym_LT, - ACTIONS(7141), 1, - anon_sym_DOT, - ACTIONS(7466), 1, - anon_sym_LBRACE, - STATE(5075), 1, - sym_type_arguments, + [143483] = 7, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + ACTIONS(7167), 1, + sym_identifier, + STATE(3515), 1, + sym_nested_identifier, + STATE(3553), 1, + sym_string, + STATE(4414), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7468), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [142360] = 4, - ACTIONS(7242), 1, + [143506] = 4, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2696), 1, + STATE(2680), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7133), 4, + ACTIONS(7255), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142377] = 7, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(7203), 1, - sym_identifier, - STATE(3500), 1, - sym_nested_identifier, - STATE(3698), 1, - sym_string, - STATE(4270), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142400] = 7, - ACTIONS(2499), 1, + [143523] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7470), 1, + ACTIONS(7510), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(5318), 1, + STATE(3702), 1, sym__call_signature, - STATE(5328), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142423] = 7, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - ACTIONS(7203), 1, - sym_identifier, - STATE(3500), 1, - sym_nested_identifier, - STATE(3698), 1, - sym_string, - STATE(4311), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142446] = 7, - ACTIONS(2499), 1, + [143546] = 7, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7472), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4025), 1, + STATE(4906), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142469] = 4, - STATE(3868), 1, - aux_sym_object_type_repeat1, + [143569] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2668), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3760), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7474), 3, + ACTIONS(7235), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142486] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2373), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [142499] = 5, - ACTIONS(7381), 1, - anon_sym_default, - ACTIONS(7385), 1, - anon_sym_case, - ACTIONS(7476), 1, - anon_sym_RBRACE, + [143586] = 7, + ACTIONS(6725), 1, + anon_sym_LT, + ACTIONS(7141), 1, + anon_sym_COMMA, + ACTIONS(7514), 1, + anon_sym_LBRACE, + ACTIONS(7516), 1, + anon_sym_LBRACE_PIPE, + STATE(4552), 1, + aux_sym_extends_type_clause_repeat1, + STATE(4885), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3817), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142518] = 7, - ACTIONS(2499), 1, + [143609] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7478), 1, + ACTIONS(7518), 1, anon_sym_QMARK, - STATE(3806), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5426), 1, + STATE(3707), 1, sym__call_signature, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142541] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, + [143632] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7456), 1, + anon_sym_abstract, + ACTIONS(7520), 1, + anon_sym_export, + ACTIONS(7522), 1, + anon_sym_class, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3760), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7474), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142558] = 7, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(7480), 1, - anon_sym_QMARK, - STATE(3806), 1, - sym_formal_parameters, - STATE(5240), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + [143655] = 5, + ACTIONS(7444), 1, + anon_sym_AMP, + ACTIONS(7446), 1, + anon_sym_PIPE, + ACTIONS(7448), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142581] = 2, + ACTIONS(4170), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143674] = 4, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2721), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7105), 6, + ACTIONS(7193), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142594] = 7, - ACTIONS(2499), 1, + [143691] = 7, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7482), 1, + ACTIONS(7524), 1, anon_sym_QMARK, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3522), 1, + STATE(3712), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142617] = 7, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7484), 1, - anon_sym_COMMA, - ACTIONS(7486), 1, - anon_sym_GT, - STATE(4542), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142640] = 4, - STATE(3896), 1, - aux_sym_object_type_repeat1, + [143714] = 5, + ACTIONS(7529), 1, + anon_sym_BQUOTE, + ACTIONS(7531), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3768), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142657] = 4, - ACTIONS(7242), 1, + ACTIONS(7526), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3915), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [143733] = 5, + ACTIONS(3421), 1, anon_sym_LBRACE, - STATE(2668), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7083), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142674] = 2, + ACTIONS(3423), 1, + anon_sym_LBRACK, + ACTIONS(7534), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7490), 6, - sym__automatic_semicolon, + STATE(4619), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [143752] = 7, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7536), 1, anon_sym_LBRACE, + ACTIONS(7538), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142687] = 4, - STATE(3891), 1, - aux_sym_object_type_repeat1, + STATE(4873), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7494), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7492), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142704] = 7, - ACTIONS(2499), 1, + [143775] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7496), 1, - anon_sym_QMARK, - STATE(3806), 1, + ACTIONS(7540), 1, + sym_identifier, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5451), 1, + STATE(5278), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142727] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3768), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142744] = 7, - ACTIONS(2499), 1, + [143798] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7542), 1, anon_sym_QMARK, - STATE(3330), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3759), 1, + STATE(5044), 1, sym__call_signature, - STATE(5249), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142767] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3764), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7306), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142784] = 2, + [143821] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7544), 1, + anon_sym_QMARK, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5368), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2377), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [143844] = 6, + ACTIONS(7227), 1, anon_sym_AMP, + ACTIONS(7229), 1, anon_sym_PIPE, + ACTIONS(7231), 1, anon_sym_extends, - [142797] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2659), 1, - sym_statement_block, + ACTIONS(7548), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7546), 2, anon_sym_COMMA, - anon_sym_SEMI, - [142814] = 7, - ACTIONS(2499), 1, + anon_sym_RBRACK, + [143865] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7500), 1, + ACTIONS(7550), 1, sym_identifier, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5429), 1, + STATE(5218), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142837] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2669), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7085), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142854] = 4, - STATE(3834), 1, - aux_sym_object_type_repeat1, + [143888] = 7, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3542), 1, + anon_sym_LT, + ACTIONS(7363), 1, + anon_sym_DOT, + ACTIONS(7552), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym_arguments, + STATE(5392), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3776), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7502), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142871] = 7, - ACTIONS(2499), 1, + [143911] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7504), 1, - anon_sym_QMARK, - STATE(3806), 1, + ACTIONS(7554), 1, + sym_identifier, + STATE(3860), 1, sym_formal_parameters, - STATE(5128), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5495), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142894] = 7, - ACTIONS(2499), 1, + [143934] = 7, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - ACTIONS(7506), 1, - anon_sym_QMARK, - STATE(3330), 1, + ACTIONS(7556), 1, + sym_identifier, + STATE(3860), 1, sym_formal_parameters, - STATE(3839), 1, - sym__call_signature, - STATE(5249), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5278), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142917] = 5, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(7316), 1, - anon_sym_LBRACK, - ACTIONS(7508), 1, + [143957] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7558), 1, sym_identifier, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5495), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4431), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [142936] = 4, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2693), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7223), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142953] = 5, - ACTIONS(7510), 1, - anon_sym_BQUOTE, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7514), 1, - sym__template_chars, + [143980] = 7, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + ACTIONS(7560), 1, + sym_identifier, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5278), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4136), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [142971] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4798), 1, - sym__initializer, + [144003] = 3, + ACTIONS(7444), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7516), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142987] = 5, - ACTIONS(7518), 1, - sym_identifier, - ACTIONS(7520), 1, - anon_sym_LPAREN, - STATE(2711), 1, - sym_decorator_member_expression, + ACTIONS(4352), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [144018] = 5, + ACTIONS(7444), 1, + anon_sym_AMP, + ACTIONS(7446), 1, + anon_sym_PIPE, + ACTIONS(7448), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2806), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [143005] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4559), 1, - sym__initializer, + ACTIONS(4364), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [144037] = 3, + ACTIONS(7562), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143021] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(5109), 1, - sym__initializer, + ACTIONS(4372), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [144052] = 4, + STATE(3789), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(3794), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7564), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143037] = 6, - ACTIONS(2499), 1, + [144069] = 7, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3315), 1, + ACTIONS(7566), 1, + anon_sym_QMARK, + STATE(3332), 1, sym_formal_parameters, - STATE(4251), 1, + STATE(4292), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143057] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4743), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143073] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4572), 1, - sym__initializer, + [144092] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7259), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143089] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4823), 1, - sym__initializer, + anon_sym_COLON, + [144105] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7199), 1, + sym_identifier, + STATE(772), 1, + sym_nested_identifier, + STATE(789), 1, + sym_string, + STATE(917), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, - sym__automatic_semicolon, + [144128] = 7, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7568), 1, anon_sym_COMMA, - anon_sym_SEMI, - [143105] = 2, + ACTIONS(7570), 1, + anon_sym_GT, + STATE(4730), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143117] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4582), 1, - sym__initializer, + [144151] = 5, + ACTIONS(7414), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7572), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143133] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4954), 1, - sym__initializer, + ACTIONS(7410), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3915), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [144170] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7199), 1, + sym_identifier, + STATE(772), 1, + sym_nested_identifier, + STATE(789), 1, + sym_string, + STATE(872), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143149] = 4, - ACTIONS(6447), 1, + [144193] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4585), 1, + STATE(5119), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143165] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5223), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143177] = 4, - ACTIONS(6447), 1, + [144209] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4589), 1, + STATE(4831), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143193] = 4, - ACTIONS(6447), 1, + [144225] = 3, + ACTIONS(7578), 1, anon_sym_EQ, - STATE(4592), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143209] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7085), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143221] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7347), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [143233] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7454), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [143245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7532), 5, - sym__automatic_semicolon, + ACTIONS(3610), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143257] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7490), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [143269] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5231), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - [143281] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7534), 1, - anon_sym_BQUOTE, - ACTIONS(7536), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3901), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143299] = 2, + anon_sym_RBRACK, + [144239] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5231), 5, + ACTIONS(5079), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143311] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2901), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143323] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2561), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143335] = 2, + [144251] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4995), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2561), 5, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143347] = 2, + [144267] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7454), 1, + anon_sym_class, + ACTIONS(7456), 1, + anon_sym_abstract, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2969), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143359] = 2, + [144287] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4586), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2977), 5, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143371] = 2, + [144303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5231), 5, + ACTIONS(4883), 5, anon_sym_EQ, - anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_QMARK, - [143383] = 2, + [144315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1842), 5, + ACTIONS(2763), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143395] = 2, + [144327] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2561), 5, + ACTIONS(2951), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143407] = 2, + [144339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2561), 5, + ACTIONS(2955), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143419] = 2, + [144351] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5340), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2561), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143431] = 2, + [144371] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4996), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2561), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143443] = 4, - ACTIONS(6447), 1, + [144387] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4608), 1, + STATE(4711), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143459] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4612), 1, - sym__initializer, + [144403] = 6, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + ACTIONS(7173), 1, + anon_sym_extends, + STATE(820), 1, + sym_object_type, + STATE(4926), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143475] = 4, - ACTIONS(6447), 1, + [144423] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4613), 1, + STATE(4997), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143491] = 6, - ACTIONS(3814), 1, - anon_sym_COLON, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5060), 1, - anon_sym_COMMA, - ACTIONS(7538), 1, - anon_sym_RBRACE, - STATE(4815), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143511] = 4, - ACTIONS(6447), 1, + [144439] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4614), 1, + STATE(4644), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143527] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4854), 5, + [144455] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [143539] = 4, - ACTIONS(6447), 1, + STATE(4841), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7588), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144471] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4615), 1, + STATE(5005), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143555] = 2, + [144487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2629), 5, + ACTIONS(1792), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143567] = 6, - ACTIONS(4336), 1, - anon_sym_LBRACE, - ACTIONS(7540), 1, - anon_sym_SEMI, - ACTIONS(7542), 1, + [144499] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7418), 5, sym__automatic_semicolon, - ACTIONS(7544), 1, sym__function_signature_automatic_semicolon, - STATE(2199), 1, - sym_statement_block, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [144511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143587] = 2, + ACTIONS(2911), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144523] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2641), 5, + ACTIONS(2911), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143599] = 2, + [144535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2657), 5, + ACTIONS(2911), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143611] = 4, - ACTIONS(6447), 1, + [144547] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4616), 1, + STATE(5015), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143627] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7546), 1, - anon_sym_EQ_GT, + [144563] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4726), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5306), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143643] = 4, - ACTIONS(6447), 1, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144579] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4623), 1, + STATE(4712), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143659] = 4, - ACTIONS(6447), 1, + [144595] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4624), 1, + STATE(5017), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143675] = 6, - ACTIONS(1034), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1610), 1, + [144611] = 5, + ACTIONS(7592), 1, + anon_sym_BQUOTE, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7596), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3973), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144629] = 6, + ACTIONS(1676), 1, anon_sym_LBRACE, - ACTIONS(7191), 1, - anon_sym_extends, - STATE(3984), 1, - sym_object_type, - STATE(4643), 1, - sym_extends_type_clause, + ACTIONS(7598), 1, + anon_sym_SEMI, + ACTIONS(7600), 1, + sym__automatic_semicolon, + ACTIONS(7602), 1, + sym__function_signature_automatic_semicolon, + STATE(212), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143695] = 4, - ACTIONS(6447), 1, + [144649] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4626), 1, + STATE(5018), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143711] = 2, + [144665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2839), 5, + ACTIONS(2923), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143723] = 2, + [144677] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5020), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2839), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143735] = 2, + [144693] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5021), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2839), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143747] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4640), 1, - sym__initializer, + [144709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143763] = 4, - ACTIONS(6447), 1, + ACTIONS(5331), 5, anon_sym_EQ, - STATE(4535), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [144721] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7604), 1, + anon_sym_BQUOTE, + ACTIONS(7606), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + STATE(4094), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144739] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2935), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143779] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [144751] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(4868), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144771] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4652), 1, + STATE(4871), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143795] = 4, - ACTIONS(6447), 1, + [144787] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4655), 1, + STATE(4874), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143811] = 4, - ACTIONS(6447), 1, + [144803] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4659), 1, + STATE(4719), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143827] = 6, - ACTIONS(7065), 1, - anon_sym_LBRACE, - ACTIONS(7549), 1, - anon_sym_SEMI, - ACTIONS(7551), 1, - sym__automatic_semicolon, - ACTIONS(7553), 1, - sym__function_signature_automatic_semicolon, - STATE(3981), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143847] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6702), 1, - anon_sym_extends, - ACTIONS(7557), 1, - anon_sym_PIPE, + [144819] = 4, + ACTIONS(7610), 1, + anon_sym_in, + ACTIONS(7612), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7555), 2, + ACTIONS(7608), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [143865] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4667), 1, - sym__initializer, + [144835] = 4, + ACTIONS(7614), 1, + anon_sym_in, + ACTIONS(7616), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7608), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143881] = 6, - ACTIONS(4336), 1, - anon_sym_LBRACE, - ACTIONS(7559), 1, - anon_sym_SEMI, - ACTIONS(7561), 1, - sym__automatic_semicolon, - ACTIONS(7563), 1, - sym__function_signature_automatic_semicolon, - STATE(2165), 1, - sym_statement_block, + [144851] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, + ACTIONS(7618), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143901] = 4, - ACTIONS(6447), 1, + STATE(5447), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144867] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4858), 1, + STATE(4553), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143917] = 4, - ACTIONS(6447), 1, + [144883] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4682), 1, + STATE(5031), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143933] = 4, - ACTIONS(6447), 1, + [144899] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4945), 1, + STATE(5033), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143949] = 4, - ACTIONS(6447), 1, + [144915] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4947), 1, + STATE(4589), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143965] = 4, - ACTIONS(6447), 1, + [144931] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4694), 1, + STATE(4728), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143981] = 4, - ACTIONS(6447), 1, + [144947] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4948), 1, + STATE(5048), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143997] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7565), 1, - anon_sym_EQ_GT, + [144963] = 5, + ACTIONS(7621), 1, + sym_identifier, + ACTIONS(7623), 1, + anon_sym_LPAREN, + STATE(2724), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5306), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144013] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7568), 1, - anon_sym_EQ_GT, + STATE(2823), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [144981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5199), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144029] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4702), 1, - sym__initializer, + ACTIONS(1838), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, - sym__automatic_semicolon, + ACTIONS(5331), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [144045] = 4, - ACTIONS(6447), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145005] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4703), 1, + STATE(5060), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144061] = 4, - ACTIONS(6447), 1, + [145021] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4705), 1, + STATE(5064), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144077] = 6, - ACTIONS(7571), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_COMMA, - ACTIONS(7575), 1, - anon_sym_RBRACE, - STATE(4712), 1, - aux_sym_enum_body_repeat1, - STATE(5290), 1, - sym__initializer, + [145037] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7625), 1, + anon_sym_BQUOTE, + ACTIONS(7627), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144097] = 4, - ACTIONS(6447), 1, + STATE(3999), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145055] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4953), 1, + STATE(4731), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144113] = 4, - ACTIONS(6447), 1, + [145071] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5434), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145083] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4717), 1, + STATE(5066), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144129] = 2, + [145099] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2553), 5, + ACTIONS(2575), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144141] = 6, - ACTIONS(7065), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_SEMI, - ACTIONS(7579), 1, - sym__automatic_semicolon, - ACTIONS(7581), 1, - sym__function_signature_automatic_semicolon, - STATE(3997), 1, - sym_statement_block, + [145111] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_formal_parameters, + STATE(4223), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145131] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7606), 1, + sym__template_chars, + ACTIONS(7629), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4094), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145149] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144161] = 3, - ACTIONS(5318), 1, + ACTIONS(2579), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145161] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1810), 4, + ACTIONS(2583), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144175] = 2, + [145173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2675), 5, + ACTIONS(2589), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144187] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6702), 1, - anon_sym_extends, - ACTIONS(7557), 1, - anon_sym_PIPE, + [145185] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4736), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7583), 2, + ACTIONS(7584), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144205] = 2, + [145201] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4765), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2737), 5, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144217] = 2, + [145217] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4658), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2741), 5, + ACTIONS(7631), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144229] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(3521), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + [145233] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5331), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144249] = 6, - ACTIONS(2499), 1, + ACTIONS(5440), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145257] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(4355), 1, - sym__call_signature, - STATE(5249), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5403), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144269] = 4, - ACTIONS(6447), 1, + [145277] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4970), 1, + STATE(4755), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7633), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144285] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7585), 1, - anon_sym_EQ_GT, + [145293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5199), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144301] = 4, - ACTIONS(6447), 1, + ACTIONS(5440), 5, anon_sym_EQ, - STATE(4722), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145305] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4881), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144317] = 4, - ACTIONS(6447), 1, + [145321] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5440), 5, anon_sym_EQ, - STATE(4723), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145333] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4758), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144333] = 2, + [145349] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2749), 5, + ACTIONS(2593), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144345] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4724), 1, - sym__initializer, + [145361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2609), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144361] = 2, + anon_sym_PIPE_RBRACE, + [145373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2809), 5, + ACTIONS(2609), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144373] = 2, + [145385] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2809), 5, + ACTIONS(2621), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144385] = 2, + [145397] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 5, + ACTIONS(1816), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144397] = 3, - ACTIONS(5322), 1, - sym__automatic_semicolon, + [145409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1770), 4, + ACTIONS(1872), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144411] = 3, - ACTIONS(5324), 1, - sym__automatic_semicolon, + [145421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1780), 4, + ACTIONS(1848), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144425] = 2, + [145433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1790), 5, + ACTIONS(2653), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144437] = 2, + [145445] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5076), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7574), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145461] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4883), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145477] = 4, + ACTIONS(3575), 1, + anon_sym_COLON, + STATE(5433), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3601), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [145493] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1800), 5, + ACTIONS(2669), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144449] = 6, - ACTIONS(2499), 1, + [145505] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3315), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3598), 1, + STATE(3843), 1, sym__call_signature, - STATE(5233), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144469] = 2, + [145525] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, + ACTIONS(7635), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5447), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [145541] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4760), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144481] = 4, - ACTIONS(6447), 1, + [145557] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4867), 1, + STATE(4886), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7588), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144497] = 2, + [145573] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5091), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2857), 5, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144509] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6702), 1, - anon_sym_extends, - ACTIONS(7557), 1, - anon_sym_PIPE, + [145589] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7590), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144527] = 4, - ACTIONS(6447), 1, + ACTIONS(4991), 5, anon_sym_EQ, - STATE(4725), 1, - sym__initializer, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [145601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144543] = 3, - ACTIONS(5328), 1, - sym__automatic_semicolon, + ACTIONS(4921), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [145613] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4797), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1856), 4, + ACTIONS(7590), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144557] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4726), 1, - sym__initializer, + [145629] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2879), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144573] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(3749), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [145641] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, + ACTIONS(7638), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144593] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(3631), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + STATE(5341), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [145657] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7641), 1, + anon_sym_BQUOTE, + ACTIONS(7643), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144613] = 2, + STATE(4103), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2909), 5, + ACTIONS(2679), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144625] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(3637), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144645] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(3649), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + [145687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144665] = 4, - ACTIONS(6447), 1, + ACTIONS(2751), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145699] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4731), 1, + STATE(4734), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144681] = 4, - ACTIONS(6447), 1, + [145715] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4732), 1, + STATE(4764), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144697] = 2, + [145731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 5, + ACTIONS(2751), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144709] = 2, + [145743] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 5, + ACTIONS(2751), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144721] = 2, + [145755] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4767), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144733] = 4, - ACTIONS(6447), 1, + [145771] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4737), 1, + STATE(4770), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144749] = 2, + [145787] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4896), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2861), 5, + ACTIONS(7645), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144761] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4738), 1, - sym__initializer, + [145803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2775), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144777] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [145815] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4739), 1, + STATE(4771), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144793] = 2, + [145831] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5097), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7153), 5, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144805] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(4177), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + [145847] = 5, + ACTIONS(3069), 1, + anon_sym_DQUOTE, + ACTIONS(3071), 1, + anon_sym_SQUOTE, + ACTIONS(7647), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144825] = 2, + STATE(4864), 2, + sym__module_export_name, + sym_string, + [145865] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7151), 5, - sym__automatic_semicolon, + ACTIONS(7649), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144837] = 2, + anon_sym_RBRACK, + [145883] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4772), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7153), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144849] = 2, + [145899] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5101), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7592), 5, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144861] = 4, - ACTIONS(6447), 1, + [145915] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4522), 1, + STATE(5102), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144877] = 2, + [145931] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5103), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7151), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144889] = 2, + [145947] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4775), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7594), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144901] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5391), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144921] = 2, + [145963] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4887), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2943), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144933] = 2, + [145979] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4856), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2949), 5, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144945] = 2, + [145995] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4888), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2957), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144957] = 2, + [146011] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7606), 1, + sym__template_chars, + ACTIONS(7651), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2965), 5, - sym__automatic_semicolon, + STATE(4094), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146029] = 6, + ACTIONS(3906), 1, + anon_sym_COLON, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(5130), 1, anon_sym_COMMA, + ACTIONS(7653), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144969] = 2, + STATE(4651), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2865), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144981] = 2, + [146049] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4910), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7085), 5, + ACTIONS(7655), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144993] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5228), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + [146065] = 4, + ACTIONS(6433), 1, + anon_sym_LBRACK, + ACTIONS(7657), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145013] = 6, - ACTIONS(1678), 1, - anon_sym_LBRACE, - ACTIONS(7559), 1, - anon_sym_SEMI, - ACTIONS(7561), 1, - sym__automatic_semicolon, - ACTIONS(7563), 1, - sym__function_signature_automatic_semicolon, - STATE(222), 1, - sym_statement_block, + ACTIONS(4284), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [146081] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5122), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145033] = 2, + ACTIONS(7574), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146097] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5124), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2719), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145045] = 2, + [146113] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5129), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2719), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145057] = 6, - ACTIONS(2499), 1, + [146129] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3893), 1, + STATE(4076), 1, sym__call_signature, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145077] = 2, + [146149] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5130), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2869), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145089] = 2, + [146165] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5132), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1758), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145101] = 2, + [146181] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4798), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1820), 5, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145113] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7596), 1, - anon_sym_BQUOTE, - ACTIONS(7598), 1, - sym__template_chars, + [146197] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(4085), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4057), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145131] = 2, + [146217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1830), 5, + ACTIONS(2807), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145143] = 2, + [146229] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2917), 5, + ACTIONS(2811), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145155] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4557), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145171] = 2, + [146241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7600), 5, + ACTIONS(2819), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145183] = 2, + [146253] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7602), 5, + ACTIONS(2823), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145195] = 2, + [146265] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7604), 5, + ACTIONS(2827), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145207] = 6, - ACTIONS(4336), 1, + [146277] = 6, + ACTIONS(4296), 1, anon_sym_LBRACE, - ACTIONS(7549), 1, + ACTIONS(7659), 1, anon_sym_SEMI, - ACTIONS(7551), 1, + ACTIONS(7661), 1, sym__automatic_semicolon, - ACTIONS(7553), 1, + ACTIONS(7663), 1, sym__function_signature_automatic_semicolon, - STATE(2182), 1, + STATE(2287), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145227] = 4, - ACTIONS(6447), 1, + [146297] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4748), 1, + STATE(4683), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7606), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145243] = 2, + [146313] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4956), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + ACTIONS(7665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145255] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4750), 1, - sym__initializer, + [146329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7608), 3, + ACTIONS(2831), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145271] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7514), 1, - sym__template_chars, - ACTIONS(7610), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4136), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145289] = 2, + anon_sym_PIPE_RBRACE, + [146341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7612), 5, + ACTIONS(2831), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145301] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4837), 1, - sym__initializer, + [146353] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7456), 1, + anon_sym_abstract, + ACTIONS(7522), 1, + anon_sym_class, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145317] = 4, - ACTIONS(6447), 1, + [146373] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_formal_parameters, + STATE(4152), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146393] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4670), 1, + STATE(4686), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7614), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145333] = 2, + [146409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2775), 5, + ACTIONS(2851), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145345] = 6, - ACTIONS(4336), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_SEMI, - ACTIONS(7579), 1, - sym__automatic_semicolon, - ACTIONS(7581), 1, - sym__function_signature_automatic_semicolon, - STATE(2186), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145365] = 2, + [146421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2783), 5, + ACTIONS(7253), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145377] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4751), 1, - sym__initializer, + [146433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(1720), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145393] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4752), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146445] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5376), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145409] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4753), 1, - sym__initializer, + [146465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(1796), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145425] = 2, + anon_sym_PIPE_RBRACE, + [146477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2797), 5, + ACTIONS(1806), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145437] = 2, + [146489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2801), 5, + ACTIONS(2895), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145449] = 2, + [146501] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4872), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2813), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145461] = 2, + [146517] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_formal_parameters, + STATE(4167), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2835), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145473] = 2, + [146537] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5390), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2921), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145485] = 2, + [146557] = 5, + ACTIONS(7667), 1, + anon_sym_BQUOTE, + ACTIONS(7669), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7672), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2723), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145497] = 2, + STATE(4094), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146575] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2585), 5, - sym__automatic_semicolon, + ACTIONS(7675), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145509] = 2, + anon_sym_GT, + [146593] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(4148), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1866), 5, + [146613] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7255), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145521] = 4, - ACTIONS(6447), 1, + [146625] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, + ACTIONS(7677), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5447), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [146641] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5451), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146661] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4755), 1, + STATE(4892), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145537] = 2, + [146677] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(4290), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7618), 5, + ACTIONS(7191), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145549] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4758), 1, - sym__initializer, + [146709] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7606), 1, + sym__template_chars, + ACTIONS(7680), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145565] = 2, + STATE(4094), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2707), 5, + ACTIONS(7251), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145577] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4760), 1, - sym__initializer, + [146739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7682), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145593] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [146751] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4761), 1, + STATE(4605), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145609] = 4, - ACTIONS(6447), 1, + [146767] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4762), 1, + STATE(4780), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7684), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145625] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4763), 1, - sym__initializer, + [146783] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_formal_parameters, + STATE(3841), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145641] = 2, + [146803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7223), 5, + ACTIONS(7191), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145653] = 2, + [146815] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 5, + ACTIONS(7686), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145665] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7624), 1, - anon_sym_BQUOTE, - ACTIONS(7626), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4092), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145683] = 4, - ACTIONS(6447), 1, + [146827] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4764), 1, + STATE(5038), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145699] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7628), 1, - anon_sym_EQ_GT, + [146843] = 6, + ACTIONS(1040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1580), 1, + anon_sym_LBRACE, + ACTIONS(7173), 1, + anon_sym_extends, + STATE(4001), 1, + sym_object_type, + STATE(4820), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5306), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [145715] = 2, + [146863] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2771), 5, + ACTIONS(7313), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145727] = 2, + [146875] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4899), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2787), 5, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145739] = 2, + [146891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2791), 5, + ACTIONS(7193), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145751] = 2, + [146903] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4900), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2825), 5, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145763] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7514), 1, - sym__template_chars, - ACTIONS(7631), 1, - anon_sym_BQUOTE, + [146919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4136), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145781] = 4, - ACTIONS(6447), 1, + ACTIONS(2965), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146931] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4765), 1, + STATE(4901), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145797] = 6, - ACTIONS(2499), 1, + [146947] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3756), 1, + STATE(4217), 1, sym__call_signature, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145817] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4769), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7620), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145833] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4770), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7616), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145849] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4771), 1, - sym__initializer, + [146967] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7688), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145865] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4633), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146979] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5498), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145881] = 4, - ACTIONS(6447), 1, + [146999] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4786), 1, + STATE(4735), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145897] = 4, - ACTIONS(6447), 1, + [147015] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5031), 1, + STATE(4781), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7633), 3, + ACTIONS(7684), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145913] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4793), 1, - sym__initializer, + [147031] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5504), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145929] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4794), 1, - sym__initializer, + [147051] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5351), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147071] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(2973), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145945] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [147083] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4795), 1, + STATE(4799), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145961] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6702), 1, - anon_sym_extends, - ACTIONS(7557), 1, - anon_sym_PIPE, + [147099] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5172), 1, + sym__call_signature, + STATE(5217), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7635), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [145979] = 4, - ACTIONS(6447), 1, + [147119] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4800), 1, + STATE(4591), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145995] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4801), 1, - sym__initializer, + [147135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146011] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7637), 1, - anon_sym_BQUOTE, - ACTIONS(7639), 1, - sym__template_chars, + anon_sym_PIPE_RBRACE, + [147147] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(4245), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4112), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146029] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7514), 1, - sym__template_chars, - ACTIONS(7641), 1, - anon_sym_BQUOTE, + [147167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4136), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146047] = 4, - ACTIONS(6447), 1, + ACTIONS(5327), 5, anon_sym_EQ, - STATE(4803), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147179] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4917), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146063] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4804), 1, - sym__initializer, + [147195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7245), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146079] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [147207] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4809), 1, + STATE(4782), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7684), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146095] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7514), 1, - sym__template_chars, - ACTIONS(7643), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4136), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146113] = 4, - STATE(5437), 1, - sym_import_attribute, + [147223] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7645), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7647), 2, + ACTIONS(7243), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146129] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4719), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7690), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146145] = 4, - ACTIONS(3557), 1, - anon_sym_COLON, - STATE(5159), 1, - sym_type_annotation, + anon_sym_PIPE_RBRACE, + [147247] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5212), 1, + sym__call_signature, + STATE(5217), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 3, + [147267] = 4, + ACTIONS(6507), 1, anon_sym_EQ, + STATE(4785), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7684), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [146161] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7649), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, + [147283] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5216), 1, + sym__call_signature, + STATE(5217), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5306), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146177] = 4, - ACTIONS(6447), 1, + [147303] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4818), 1, + STATE(4923), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146193] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4819), 1, - sym__initializer, + [147319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7245), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146209] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4820), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(2569), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146225] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4821), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(2731), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146241] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4824), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(2915), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146257] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4826), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147367] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(2649), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146273] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4831), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(2645), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146289] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4772), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7257), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146305] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7652), 1, - anon_sym_EQ_GT, + anon_sym_PIPE_RBRACE, + [147403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5199), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146321] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4835), 1, - sym__initializer, + ACTIONS(7692), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(2739), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146337] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4836), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(2755), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147439] = 6, + ACTIONS(7095), 1, + anon_sym_LBRACE, + ACTIONS(7694), 1, anon_sym_SEMI, - [146353] = 4, - ACTIONS(6447), 1, + ACTIONS(7696), 1, + sym__automatic_semicolon, + ACTIONS(7698), 1, + sym__function_signature_automatic_semicolon, + STATE(4218), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147459] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4838), 1, + STATE(4927), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146369] = 5, - ACTIONS(6605), 1, + [147475] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5256), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147495] = 5, + ACTIONS(6760), 1, anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6764), 1, anon_sym_extends, + ACTIONS(7702), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7655), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [146387] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4839), 1, - sym__initializer, + ACTIONS(7700), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147513] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(1862), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146403] = 4, - STATE(5309), 1, - sym_import_attribute, + anon_sym_PIPE_RBRACE, + [147525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7645), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7657), 2, + ACTIONS(7233), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146419] = 5, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(7659), 1, - sym_identifier, + anon_sym_PIPE_RBRACE, + [147537] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(4130), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5863), 2, - sym__module_export_name, - sym_string, - [146437] = 4, - ACTIONS(6373), 1, - anon_sym_LBRACK, - ACTIONS(7661), 1, - anon_sym_RBRACE, + [147557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [146453] = 4, - ACTIONS(6447), 1, + ACTIONS(7235), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147569] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4840), 1, + STATE(4643), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146469] = 4, - ACTIONS(6447), 1, + [147585] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4776), 1, + STATE(4928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146485] = 5, - ACTIONS(7663), 1, - anon_sym_BQUOTE, - ACTIONS(7665), 1, + [147601] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5270), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147621] = 5, + ACTIONS(7594), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7668), 1, + ACTIONS(7704), 1, + anon_sym_BQUOTE, + ACTIONS(7706), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4136), 2, + STATE(4059), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146503] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, + [147639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7671), 2, + ACTIONS(1740), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [146521] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4845), 1, - sym__initializer, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(7249), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146537] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4846), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147663] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5273), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [147683] = 6, + ACTIONS(4296), 1, + anon_sym_LBRACE, + ACTIONS(7598), 1, anon_sym_SEMI, - [146553] = 4, - ACTIONS(6447), 1, + ACTIONS(7600), 1, + sym__automatic_semicolon, + ACTIONS(7602), 1, + sym__function_signature_automatic_semicolon, + STATE(2164), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147703] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4847), 1, + STATE(4573), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146569] = 4, - ACTIONS(6447), 1, + [147719] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4781), 1, + STATE(4932), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146585] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4854), 1, - sym__initializer, + [147735] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5282), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(2969), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146601] = 5, - ACTIONS(6682), 1, + anon_sym_PIPE_RBRACE, + [147767] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(7673), 1, - anon_sym_LBRACE, - STATE(5076), 1, - sym_type_arguments, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5339), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7675), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [146619] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4861), 1, - sym__initializer, + [147787] = 4, + STATE(5454), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7708), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7710), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(7233), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146635] = 4, - ACTIONS(6337), 1, - anon_sym_DOT, - ACTIONS(7677), 1, - sym_identifier, + anon_sym_PIPE_RBRACE, + [147815] = 4, + STATE(5456), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6335), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [146651] = 4, - ACTIONS(6447), 1, + ACTIONS(7708), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7712), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147831] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7714), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147843] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4862), 1, + STATE(4933), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146667] = 6, - ACTIONS(2499), 1, + [147859] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3944), 1, + STATE(3840), 1, sym__call_signature, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146687] = 2, + [147879] = 4, + STATE(5175), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [146699] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4865), 1, - sym__initializer, + ACTIONS(7708), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7716), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7718), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146715] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7282), 1, - anon_sym_class, - ACTIONS(7284), 1, - anon_sym_abstract, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, + anon_sym_PIPE_RBRACE, + [147907] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146735] = 6, - ACTIONS(7571), 1, - anon_sym_EQ, - ACTIONS(7681), 1, + ACTIONS(2709), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7683), 1, anon_sym_RBRACE, - STATE(4962), 1, - aux_sym_enum_body_repeat1, - STATE(5290), 1, - sym__initializer, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147919] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, + ACTIONS(7720), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146755] = 4, - ACTIONS(6447), 1, + STATE(5341), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [147935] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4871), 1, + STATE(4934), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146771] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7284), 1, - anon_sym_abstract, - ACTIONS(7393), 1, - anon_sym_class, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, + [147951] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146791] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_formal_parameters, - STATE(3961), 1, - sym__call_signature, - STATE(5249), 1, - sym_type_parameters, + ACTIONS(2717), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146811] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4872), 1, - sym__initializer, + ACTIONS(2771), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147975] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(2795), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146827] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4873), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147987] = 5, + ACTIONS(7723), 1, + anon_sym_SEMI, + ACTIONS(7725), 1, + sym__automatic_semicolon, + STATE(5462), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7708), 2, + anon_sym_with, + anon_sym_assert, + [148005] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(1740), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146843] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5150), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [148017] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7727), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148029] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, + ACTIONS(7729), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5447), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148045] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, + ACTIONS(7732), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146863] = 4, - ACTIONS(6447), 1, + STATE(5341), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148061] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4874), 1, + STATE(4935), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146879] = 4, - ACTIONS(6447), 1, + [148077] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4875), 1, + STATE(4751), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7735), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146895] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_formal_parameters, - STATE(3964), 1, - sym__call_signature, - STATE(5249), 1, - sym_type_parameters, + [148093] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146915] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(7737), 5, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5224), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + anon_sym_extends, + anon_sym_implements, + [148105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146935] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4827), 1, - sym__initializer, + ACTIONS(2839), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148117] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7456), 1, + anon_sym_abstract, + ACTIONS(7739), 1, + anon_sym_class, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(2843), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146951] = 5, - ACTIONS(3109), 1, + anon_sym_PIPE_RBRACE, + [148149] = 5, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(3111), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(7685), 1, + ACTIONS(7741), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4881), 2, + STATE(5529), 2, sym__module_export_name, sym_string, - [146969] = 2, + [148167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [146981] = 4, - ACTIONS(6447), 1, + ACTIONS(2847), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148179] = 6, + ACTIONS(3906), 1, + anon_sym_COLON, + ACTIONS(4506), 1, anon_sym_EQ, - STATE(4886), 1, - sym__initializer, + ACTIONS(5130), 1, + anon_sym_COMMA, + ACTIONS(7743), 1, + anon_sym_RBRACE, + STATE(4666), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146997] = 4, - ACTIONS(6447), 1, + [148199] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7745), 5, anon_sym_EQ, - STATE(4888), 1, - sym__initializer, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [148211] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_formal_parameters, + STATE(4395), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147013] = 4, - ACTIONS(6447), 1, + [148231] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4889), 1, + STATE(4815), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147029] = 4, - ACTIONS(6447), 1, + [148247] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4892), 1, + STATE(4660), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147045] = 4, - ACTIONS(6447), 1, + [148263] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4893), 1, + STATE(5139), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147061] = 4, - ACTIONS(6447), 1, + [148279] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4895), 1, + STATE(4664), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7616), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147077] = 6, - ACTIONS(3814), 1, - anon_sym_COLON, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5060), 1, - anon_sym_COMMA, - ACTIONS(7689), 1, - anon_sym_RBRACE, - STATE(4802), 1, - aux_sym_object_pattern_repeat1, + [148295] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7751), 1, + anon_sym_class, + ACTIONS(7753), 1, + anon_sym_abstract, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147097] = 6, - ACTIONS(2499), 1, + [148315] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3980), 1, + STATE(4413), 1, sym__call_signature, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147117] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, + [148335] = 5, + ACTIONS(7755), 1, + sym_identifier, + ACTIONS(7757), 1, anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5212), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + STATE(1236), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147137] = 6, - ACTIONS(2499), 1, + STATE(1309), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [148353] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5216), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5425), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147157] = 6, - ACTIONS(2499), 1, + [148373] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5220), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5366), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148393] = 6, + ACTIONS(7759), 1, + anon_sym_EQ, + ACTIONS(7761), 1, + anon_sym_COMMA, + ACTIONS(7763), 1, + anon_sym_RBRACE, + STATE(4853), 1, + aux_sym_enum_body_repeat1, + STATE(5179), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147177] = 6, - ACTIONS(2499), 1, + [148413] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5241), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5452), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147197] = 2, + [148433] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4671), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7155), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147209] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(4252), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147229] = 2, + [148449] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4672), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7157), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147241] = 5, + [148465] = 5, ACTIONS(1550), 1, anon_sym_DQUOTE, ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(7691), 1, + ACTIONS(7765), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5307), 2, + STATE(5330), 2, sym__module_export_name, sym_string, - [147259] = 2, + [148483] = 6, + ACTIONS(7095), 1, + anon_sym_LBRACE, + ACTIONS(7767), 1, + anon_sym_SEMI, + ACTIONS(7769), 1, + sym__automatic_semicolon, + ACTIONS(7771), 1, + sym__function_signature_automatic_semicolon, + STATE(4257), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7155), 5, + [148503] = 3, + ACTIONS(5287), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1828), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147271] = 2, + [148517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7693), 5, + ACTIONS(7773), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147283] = 4, - ACTIONS(6447), 1, + [148529] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4842), 1, + STATE(4904), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147299] = 6, - ACTIONS(2499), 1, + [148545] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5363), 1, + STATE(4343), 1, sym__call_signature, + STATE(5484), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147319] = 6, - ACTIONS(2499), 1, + [148565] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5366), 1, + STATE(5336), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147339] = 2, + [148585] = 6, + ACTIONS(7095), 1, + anon_sym_LBRACE, + ACTIONS(7659), 1, + anon_sym_SEMI, + ACTIONS(7661), 1, + sym__automatic_semicolon, + ACTIONS(7663), 1, + sym__function_signature_automatic_semicolon, + STATE(800), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7695), 5, - sym__automatic_semicolon, + ACTIONS(5529), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148617] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6764), 1, + anon_sym_extends, + ACTIONS(7702), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7775), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147351] = 2, + [148635] = 6, + ACTIONS(7444), 1, + anon_sym_AMP, + ACTIONS(7446), 1, + anon_sym_PIPE, + ACTIONS(7448), 1, + anon_sym_extends, + ACTIONS(7777), 1, + anon_sym_as, + ACTIONS(7779), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7697), 5, + ACTIONS(7781), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147363] = 4, - ACTIONS(6447), 1, + [148667] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4898), 1, + STATE(4905), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7699), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147379] = 6, - ACTIONS(2499), 1, + [148683] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(3770), 1, + STATE(3895), 1, sym__call_signature, - STATE(5249), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147399] = 6, - ACTIONS(2499), 1, + [148703] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(5310), 1, + STATE(3967), 1, sym__call_signature, - STATE(5328), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147419] = 6, - ACTIONS(7065), 1, - anon_sym_LBRACE, - ACTIONS(7559), 1, - anon_sym_SEMI, - ACTIONS(7561), 1, - sym__automatic_semicolon, - ACTIONS(7563), 1, - sym__function_signature_automatic_semicolon, - STATE(799), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147439] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4844), 1, - sym__initializer, + [148723] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(3679), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147455] = 6, - ACTIONS(2499), 1, + [148743] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5424), 1, + STATE(5468), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147475] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4900), 1, - sym__initializer, + [148763] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147491] = 4, - ACTIONS(6447), 1, + ACTIONS(7783), 5, anon_sym_EQ, - STATE(4901), 1, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [148775] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7785), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147507] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5447), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147527] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5127), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147547] = 4, - ACTIONS(6447), 1, + [148791] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4902), 1, + STATE(4919), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147563] = 4, - ACTIONS(6447), 1, + [148807] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4903), 1, + STATE(5057), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7787), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147579] = 6, - ACTIONS(2499), 1, + [148823] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5135), 1, - sym__call_signature, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, + STATE(5292), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147599] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_formal_parameters, - STATE(4250), 1, - sym__call_signature, - STATE(5249), 1, - sym_type_parameters, + [148843] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4958), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148859] = 4, + ACTIONS(7440), 1, + anon_sym_COLON, + ACTIONS(7789), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147619] = 5, - ACTIONS(6698), 1, + STATE(5341), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148875] = 5, + ACTIONS(6760), 1, anon_sym_AMP, - ACTIONS(6702), 1, + ACTIONS(6764), 1, anon_sym_extends, - ACTIONS(7557), 1, + ACTIONS(7702), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 2, + ACTIONS(7792), 2, sym__automatic_semicolon, anon_sym_SEMI, - [147637] = 6, - ACTIONS(2499), 1, + [148893] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(5315), 1, + STATE(5081), 1, sym__call_signature, - STATE(5328), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147657] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4850), 1, - sym__initializer, + [148913] = 6, + ACTIONS(1676), 1, + anon_sym_LBRACE, + ACTIONS(7659), 1, + anon_sym_SEMI, + ACTIONS(7661), 1, + sym__automatic_semicolon, + ACTIONS(7663), 1, + sym__function_signature_automatic_semicolon, + STATE(229), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147673] = 4, - ACTIONS(6447), 1, + [148933] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4909), 1, + STATE(5093), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7705), 3, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147689] = 4, - ACTIONS(6447), 1, + [148949] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4911), 1, + STATE(5146), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147705] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5324), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147725] = 6, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1534), 1, - anon_sym_LBRACE, - ACTIONS(7191), 1, - anon_sym_extends, - STATE(869), 1, - sym_object_type, - STATE(4688), 1, - sym_extends_type_clause, + [148965] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147745] = 4, - ACTIONS(6447), 1, + ACTIONS(7249), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148977] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4912), 1, + STATE(4897), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147761] = 3, - ACTIONS(4826), 1, - anon_sym_in, + [148993] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5128), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5337), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [147775] = 4, - ACTIONS(6447), 1, + ACTIONS(7796), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149009] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4913), 1, + STATE(4557), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147791] = 4, - ACTIONS(6447), 1, + [149025] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4936), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147807] = 4, - ACTIONS(6447), 1, + [149041] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4915), 1, + STATE(4597), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147823] = 4, - ACTIONS(6447), 1, + [149057] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4916), 1, + STATE(5141), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7796), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147839] = 4, - ACTIONS(7709), 1, - anon_sym_in, - ACTIONS(7711), 1, - anon_sym_of, + [149073] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4611), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7707), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147855] = 4, - ACTIONS(7713), 1, - anon_sym_in, - ACTIONS(7715), 1, - anon_sym_of, + [149089] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4623), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7707), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147871] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_formal_parameters, - STATE(4053), 1, - sym__call_signature, - STATE(5249), 1, - sym_type_parameters, + [149105] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4578), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147891] = 5, - ACTIONS(7512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7717), 1, - anon_sym_BQUOTE, - ACTIONS(7719), 1, - sym__template_chars, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149121] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4659), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4108), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [147909] = 4, - ACTIONS(6447), 1, + ACTIONS(7794), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149137] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4918), 1, + STATE(4688), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7633), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147925] = 2, + [149153] = 3, + ACTIONS(5295), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5469), 5, - anon_sym_EQ, + ACTIONS(1730), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147937] = 4, - ACTIONS(6447), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149167] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4919), 1, + STATE(4909), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7796), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147953] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7721), 1, - anon_sym_class, - ACTIONS(7723), 1, - anon_sym_abstract, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147973] = 2, + [149183] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4673), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5473), 5, - anon_sym_EQ, + ACTIONS(7586), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147985] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_formal_parameters, - STATE(4062), 1, - sym__call_signature, - STATE(5249), 1, - sym_type_parameters, + anon_sym_SEMI, + [149199] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4678), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148005] = 6, - ACTIONS(2499), 1, + ACTIONS(7586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149215] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5377), 1, + STATE(5342), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148025] = 2, + [149235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5473), 5, - anon_sym_EQ, + ACTIONS(7235), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148037] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149247] = 3, + ACTIONS(5297), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5473), 5, - anon_sym_EQ, + ACTIONS(1748), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148049] = 6, - ACTIONS(2499), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149261] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(3885), 1, + STATE(3694), 1, sym__call_signature, - STATE(5249), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148069] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5410), 1, - sym__call_signature, + [149281] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4942), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148089] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4920), 1, - sym__initializer, + ACTIONS(7796), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149297] = 3, + ACTIONS(4911), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5612), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [149311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7798), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148105] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [149323] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4921), 1, + STATE(4832), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7796), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148121] = 4, - ACTIONS(6447), 1, + [149339] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4922), 1, + STATE(4863), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7800), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148137] = 4, - ACTIONS(6447), 1, + [149355] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4923), 1, + STATE(4884), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7800), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148153] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(5017), 1, - sym__initializer, + [149371] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6764), 1, + anon_sym_extends, + ACTIONS(7702), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7802), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [148169] = 4, - ACTIONS(6447), 1, + [149389] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_formal_parameters, + STATE(4242), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149409] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5049), 1, + STATE(4809), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7727), 3, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148185] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4928), 1, - sym__initializer, + [149425] = 3, + ACTIONS(5299), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7705), 3, - sym__automatic_semicolon, + ACTIONS(1710), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148201] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [149439] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4929), 1, + STATE(4946), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148217] = 4, - ACTIONS(6447), 1, + [149455] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4931), 1, + STATE(4722), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7804), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148233] = 4, - ACTIONS(6447), 1, + [149471] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(3701), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149491] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4932), 1, + STATE(4704), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148249] = 4, - ACTIONS(6447), 1, + [149507] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4933), 1, + STATE(4579), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148265] = 4, - ACTIONS(6447), 1, + [149523] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5065), 1, + STATE(4816), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7729), 3, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148281] = 4, - ACTIONS(6447), 1, + [149539] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4934), 1, + STATE(4818), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148297] = 4, - ACTIONS(6447), 1, + [149555] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_formal_parameters, + STATE(3706), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149575] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4936), 1, + STATE(4960), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7796), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148313] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4937), 1, - sym__initializer, + [149591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7806), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148329] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [149603] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4938), 1, + STATE(4821), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148345] = 4, - ACTIONS(6447), 1, + [149619] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4517), 1, + STATE(4690), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148361] = 5, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - ACTIONS(7733), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5385), 2, - sym__module_export_name, - sym_string, - [148379] = 6, - ACTIONS(2499), 1, + [149635] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4191), 1, + STATE(3711), 1, sym__call_signature, - STATE(5249), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148399] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5399), 1, - sym__call_signature, + [149655] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4804), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148419] = 6, - ACTIONS(7065), 1, - anon_sym_LBRACE, - ACTIONS(7540), 1, - anon_sym_SEMI, - ACTIONS(7542), 1, + ACTIONS(7796), 3, sym__automatic_semicolon, - ACTIONS(7544), 1, - sym__function_signature_automatic_semicolon, - STATE(786), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148439] = 2, + anon_sym_COMMA, + anon_sym_SEMI, + [149671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7125), 5, - sym__automatic_semicolon, + ACTIONS(5186), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148451] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7163), 5, + ACTIONS(7219), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148463] = 6, - ACTIONS(2499), 1, + [149695] = 6, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4271), 1, + STATE(4157), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148483] = 5, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6702), 1, - anon_sym_extends, - ACTIONS(7557), 1, - anon_sym_PIPE, + [149715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 2, + ACTIONS(7221), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148501] = 2, + anon_sym_PIPE_RBRACE, + [149727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7169), 5, + ACTIONS(7808), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148513] = 6, - ACTIONS(2499), 1, + [149739] = 6, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4294), 1, + STATE(3715), 1, sym__call_signature, - STATE(5233), 1, + STATE(5331), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148533] = 2, + [149759] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4838), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7123), 5, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148545] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(4023), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + [149775] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148565] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7737), 5, + ACTIONS(7221), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148577] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5432), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148597] = 2, + [149787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7123), 5, + ACTIONS(7810), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148609] = 2, + [149799] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7739), 5, + ACTIONS(7219), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148621] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4940), 1, - sym__initializer, + [149811] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7812), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148637] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [149823] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4941), 1, + STATE(4859), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148653] = 2, + [149839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7410), 5, + ACTIONS(7814), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148665] = 2, + [149851] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4860), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7133), 5, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148677] = 2, + [149867] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4861), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7743), 5, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148689] = 4, - ACTIONS(6447), 1, + [149883] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4942), 1, + STATE(4737), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148705] = 4, - ACTIONS(6447), 1, + [149899] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4943), 1, + STATE(4878), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148721] = 2, + [149915] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1852), 5, + ACTIONS(7816), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148733] = 2, + [149927] = 6, + ACTIONS(7759), 1, + anon_sym_EQ, + ACTIONS(7818), 1, + anon_sym_COMMA, + ACTIONS(7820), 1, + anon_sym_RBRACE, + STATE(4844), 1, + aux_sym_enum_body_repeat1, + STATE(5179), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149947] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4911), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7183), 5, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148745] = 2, + [149963] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4922), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7131), 5, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148757] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5448), 1, - sym__call_signature, + [149979] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4925), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148777] = 2, + ACTIONS(7586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149995] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4930), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7125), 5, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148789] = 2, + [150011] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6764), 1, + anon_sym_extends, + ACTIONS(7702), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1730), 5, + ACTIONS(7822), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148801] = 3, - ACTIONS(7745), 1, - anon_sym_EQ, + [150029] = 5, + ACTIONS(6725), 1, + anon_sym_LT, + ACTIONS(7824), 1, + anon_sym_LBRACE, + STATE(4885), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 4, + ACTIONS(7826), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [148815] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7747), 1, - anon_sym_EQ_GT, + anon_sym_LBRACE_PIPE, + [150047] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4937), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5199), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [148831] = 2, + ACTIONS(7586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150063] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7750), 5, - sym__automatic_semicolon, + ACTIONS(5573), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148843] = 6, - ACTIONS(2499), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [150075] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5450), 1, + STATE(5453), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148863] = 2, + [150095] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4947), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1750), 5, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148875] = 2, + [150111] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4955), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7752), 5, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148887] = 2, + [150127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7131), 5, + ACTIONS(7828), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148899] = 2, + [150139] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7754), 5, + ACTIONS(7830), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148911] = 2, + [150151] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4867), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7756), 5, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148923] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5417), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148935] = 2, + [150167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2893), 5, + ACTIONS(7177), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148947] = 2, + [150179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1730), 5, + ACTIONS(7832), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148959] = 2, + [150191] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7753), 1, + anon_sym_abstract, + ACTIONS(7834), 1, + anon_sym_class, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7758), 5, + [150211] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [148971] = 5, - ACTIONS(7760), 1, - anon_sym_SEMI, - ACTIONS(7762), 1, - sym__automatic_semicolon, - STATE(5398), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7645), 2, - anon_sym_with, - anon_sym_assert, - [148989] = 5, - ACTIONS(7764), 1, - sym_identifier, - ACTIONS(7766), 1, - anon_sym_LPAREN, - STATE(1246), 1, - sym_decorator_member_expression, + STATE(4973), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1317), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [149007] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(5054), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + ACTIONS(7574), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150227] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4695), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149027] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5261), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + ACTIONS(7584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150243] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4964), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149047] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5425), 1, - sym__call_signature, + ACTIONS(7794), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150259] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4698), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149067] = 2, + ACTIONS(7584), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7083), 5, + ACTIONS(7462), 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, - [149079] = 4, - ACTIONS(6447), 1, + [150287] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5064), 1, + STATE(4971), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149095] = 5, - ACTIONS(7768), 1, - anon_sym_SEMI, - ACTIONS(7770), 1, - sym__automatic_semicolon, - STATE(5460), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7645), 2, - anon_sym_with, - anon_sym_assert, - [149113] = 4, - ACTIONS(6447), 1, + [150303] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5066), 1, + STATE(4982), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149129] = 6, - ACTIONS(2499), 1, + [150319] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6561), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3372), 1, sym_formal_parameters, - STATE(5288), 1, + STATE(3813), 1, sym__call_signature, - STATE(5328), 1, + STATE(5484), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149149] = 4, - STATE(5331), 1, - sym_import_attribute, + [150339] = 5, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7836), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7645), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7772), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [149165] = 4, - STATE(5334), 1, - sym_import_attribute, + STATE(5194), 2, + sym__module_export_name, + sym_string, + [150357] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3372), 1, + sym_formal_parameters, + STATE(3818), 1, + sym__call_signature, + STATE(5484), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7645), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7774), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [149181] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7284), 1, - anon_sym_abstract, - ACTIONS(7776), 1, - anon_sym_class, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, + [150377] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149201] = 4, - ACTIONS(6447), 1, + ACTIONS(7464), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [150389] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5067), 1, + STATE(4991), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149217] = 2, + [150405] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5535), 5, - anon_sym_EQ, + ACTIONS(7466), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149229] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7723), 1, - anon_sym_abstract, - ACTIONS(7778), 1, - anon_sym_class, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149249] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5217), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + anon_sym_SEMI, + [150417] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4983), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149269] = 6, - ACTIONS(7256), 1, - anon_sym_AMP, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_extends, - ACTIONS(7780), 1, - anon_sym_as, - ACTIONS(7782), 1, - anon_sym_RBRACK, + ACTIONS(7586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150433] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4945), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149289] = 2, + ACTIONS(7838), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150449] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4985), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7784), 5, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149301] = 6, - ACTIONS(2499), 1, + [150465] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6509), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(3820), 1, + STATE(5196), 1, sym__call_signature, - STATE(5249), 1, + STATE(5217), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149321] = 3, - ACTIONS(7786), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3622), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + [150485] = 4, + ACTIONS(7440), 1, anon_sym_COLON, - anon_sym_QMARK, - [149335] = 2, + ACTIONS(7840), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2731), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(5447), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [150501] = 6, + ACTIONS(7095), 1, + anon_sym_LBRACE, + ACTIONS(7598), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149347] = 2, + ACTIONS(7600), 1, + sym__automatic_semicolon, + ACTIONS(7602), 1, + sym__function_signature_automatic_semicolon, + STATE(791), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149359] = 2, + [150521] = 3, + ACTIONS(7843), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5121), 5, - anon_sym_EQ, + ACTIONS(3601), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [149371] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4625), 1, - sym__initializer, + [150535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7789), 3, + ACTIONS(2867), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149387] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [150547] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4669), 1, + STATE(5156), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7791), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149403] = 2, + [150563] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4700), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7793), 5, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149415] = 2, + [150579] = 5, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6764), 1, + anon_sym_extends, + ACTIONS(7702), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7795), 5, + ACTIONS(7846), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149427] = 4, - ACTIONS(7268), 1, - anon_sym_COLON, - ACTIONS(7797), 1, - anon_sym_EQ_GT, + [150597] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5419), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5306), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149443] = 2, + [150617] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5013), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7800), 5, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149455] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5328), 1, - sym_type_parameters, - STATE(5390), 1, - sym__call_signature, + [150633] = 4, + ACTIONS(1758), 1, + anon_sym_DOT, + ACTIONS(4440), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149475] = 6, - ACTIONS(2499), 1, + ACTIONS(4442), 3, + anon_sym_COMMA, anon_sym_LT, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_formal_parameters, - STATE(3796), 1, - sym__call_signature, - STATE(5249), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149495] = 4, - ACTIONS(7268), 1, + anon_sym_LBRACE_PIPE, + [150649] = 4, + ACTIONS(7440), 1, anon_sym_COLON, - ACTIONS(7802), 1, + ACTIONS(7848), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5306), 3, + STATE(5447), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149511] = 4, - ACTIONS(7268), 1, + [150665] = 4, + ACTIONS(7440), 1, anon_sym_COLON, - ACTIONS(7805), 1, + ACTIONS(7851), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5199), 3, + STATE(5341), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149527] = 6, - ACTIONS(2499), 1, + [150681] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4976), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150697] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5405), 1, + STATE(5445), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149547] = 2, + [150717] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5026), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7375), 5, + ACTIONS(7586), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [149559] = 4, - ACTIONS(6447), 1, + [150733] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5073), 1, + STATE(5027), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149575] = 4, - ACTIONS(7268), 1, + [150749] = 4, + ACTIONS(7440), 1, anon_sym_COLON, - ACTIONS(7808), 1, + ACTIONS(7856), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5199), 3, + STATE(5341), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149591] = 2, + [150765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2953), 5, + ACTIONS(2871), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149603] = 4, - ACTIONS(6447), 1, + [150777] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7859), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150789] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2871), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150801] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4957), 1, + STATE(5085), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7811), 3, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149619] = 6, - ACTIONS(2499), 1, + [150817] = 6, + ACTIONS(2515), 1, anon_sym_LT, ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3315), 1, + STATE(3332), 1, sym_formal_parameters, - STATE(4963), 1, + STATE(5009), 1, + sym__call_signature, + STATE(5331), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150837] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5206), 1, sym__call_signature, - STATE(5233), 1, + STATE(5217), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149639] = 2, + [150857] = 4, + ACTIONS(1882), 1, + anon_sym_DOT, + ACTIONS(4440), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 5, - sym__automatic_semicolon, + ACTIONS(4442), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149651] = 4, - ACTIONS(6447), 1, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [150873] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5079), 1, + STATE(5147), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149667] = 4, - ACTIONS(6447), 1, + [150889] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5081), 1, + STATE(5151), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149683] = 4, - ACTIONS(6447), 1, + [150905] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4988), 1, + STATE(5152), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7813), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149699] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(5083), 1, - sym__initializer, + [150921] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 3, + ACTIONS(2939), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149715] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_formal_parameters, - STATE(5024), 1, - sym__call_signature, - STATE(5233), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [150933] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149735] = 4, - ACTIONS(6447), 1, + ACTIONS(2943), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150945] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5025), 1, + STATE(4558), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149751] = 4, - ACTIONS(6447), 1, + [150961] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5034), 1, + STATE(4572), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149767] = 4, - ACTIONS(6447), 1, + [150977] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5102), 1, + STATE(4575), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7815), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149783] = 2, + [150993] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4580), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5130), 5, - anon_sym_EQ, + ACTIONS(7586), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149795] = 2, + anon_sym_SEMI, + [151009] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4581), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4859), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [149807] = 2, + ACTIONS(7586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4850), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [149819] = 2, + ACTIONS(1888), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2871), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149831] = 2, + [151049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 5, + ACTIONS(2871), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149843] = 4, - ACTIONS(6447), 1, + [151061] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7861), 1, + anon_sym_BQUOTE, + ACTIONS(7863), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4403), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [151079] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5397), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151099] = 6, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3860), 1, + sym_formal_parameters, + STATE(5217), 1, + sym_type_parameters, + STATE(5411), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151119] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5043), 1, + STATE(4617), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149859] = 4, - ACTIONS(6447), 1, + [151135] = 5, + ACTIONS(7865), 1, + anon_sym_SEMI, + ACTIONS(7867), 1, + sym__automatic_semicolon, + STATE(5440), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7708), 2, + anon_sym_with, + anon_sym_assert, + [151153] = 4, + ACTIONS(6403), 1, + anon_sym_DOT, + ACTIONS(7869), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6401), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151169] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5050), 1, + STATE(4626), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149875] = 4, - ACTIONS(6447), 1, + [151185] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5068), 1, + STATE(4628), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149891] = 4, - ACTIONS(6447), 1, + [151201] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5069), 1, + STATE(4634), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149907] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_formal_parameters, - STATE(4039), 1, - sym__call_signature, - STATE(5249), 1, - sym_type_parameters, + [151217] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4636), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149927] = 4, - ACTIONS(6447), 1, + ACTIONS(7586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151233] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5086), 1, + STATE(5059), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149943] = 4, - ACTIONS(1888), 1, - anon_sym_DOT, - ACTIONS(4384), 1, - anon_sym_LBRACE, + [151249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 3, + ACTIONS(2871), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [149959] = 4, - ACTIONS(1892), 1, - anon_sym_DOT, - ACTIONS(4384), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 3, + ACTIONS(2871), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [149975] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(5091), 1, - sym__initializer, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7871), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149991] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [151285] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5117), 1, + STATE(5144), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150007] = 6, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3806), 1, - sym_formal_parameters, - STATE(5276), 1, - sym__call_signature, - STATE(5328), 1, - sym_type_parameters, + [151301] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(5150), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150027] = 6, - ACTIONS(1678), 1, + ACTIONS(7580), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151317] = 6, + ACTIONS(4296), 1, anon_sym_LBRACE, - ACTIONS(7540), 1, + ACTIONS(7694), 1, anon_sym_SEMI, - ACTIONS(7542), 1, + ACTIONS(7696), 1, sym__automatic_semicolon, - ACTIONS(7544), 1, + ACTIONS(7698), 1, sym__function_signature_automatic_semicolon, - STATE(226), 1, + STATE(2137), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150047] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(5118), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150063] = 4, - ACTIONS(6447), 1, + [151337] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5002), 1, + STATE(4702), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7614), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150079] = 4, - ACTIONS(6447), 1, + [151353] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5119), 1, + STATE(4654), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150095] = 6, - ACTIONS(2499), 1, + [151369] = 6, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3806), 1, + STATE(3860), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(5217), 1, sym_type_parameters, - STATE(5346), 1, + STATE(5220), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150115] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4520), 1, - sym__initializer, + [151389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7873), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150131] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [151401] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5057), 1, + STATE(4689), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7614), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150147] = 4, - ACTIONS(6447), 1, + [151417] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4527), 1, + STATE(4696), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150163] = 4, - ACTIONS(6447), 1, + [151433] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4529), 1, + STATE(4741), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150179] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4530), 1, - sym__initializer, + [151449] = 5, + ACTIONS(7594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7606), 1, + sym__template_chars, + ACTIONS(7875), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150195] = 4, - ACTIONS(6447), 1, + STATE(4094), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [151467] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(5099), 1, + STATE(4641), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7524), 3, + ACTIONS(7586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150211] = 4, - ACTIONS(6447), 1, + [151483] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4754), 1, + STATE(4759), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7614), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150227] = 4, - ACTIONS(6447), 1, + [151499] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4546), 1, + STATE(4709), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 3, + ACTIONS(7584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150243] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4547), 1, - sym__initializer, + [151515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2883), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150259] = 4, - ACTIONS(6447), 1, + anon_sym_PIPE_RBRACE, + [151527] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4548), 1, + STATE(4789), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150275] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4549), 1, - sym__initializer, + [151543] = 4, + STATE(5171), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7708), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7877), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [150291] = 2, + [151559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2759), 5, + ACTIONS(7879), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150303] = 4, - ACTIONS(6447), 1, + [151571] = 4, + ACTIONS(6403), 1, + anon_sym_DOT, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6401), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151587] = 4, + ACTIONS(6507), 1, anon_sym_EQ, - STATE(4641), 1, + STATE(4808), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7614), 3, + ACTIONS(7590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150319] = 4, - ACTIONS(6337), 1, - anon_sym_DOT, - ACTIONS(7817), 1, - sym_identifier, + [151603] = 6, + ACTIONS(4296), 1, + anon_sym_LBRACE, + ACTIONS(7767), 1, + anon_sym_SEMI, + ACTIONS(7769), 1, + sym__automatic_semicolon, + ACTIONS(7771), 1, + sym__function_signature_automatic_semicolon, + STATE(2142), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6335), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [150335] = 2, + [151623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2821), 5, + ACTIONS(2903), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150347] = 2, + [151635] = 4, + ACTIONS(6507), 1, + anon_sym_EQ, + STATE(4854), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2849), 5, + ACTIONS(2721), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150359] = 4, - ACTIONS(6447), 1, + [151663] = 5, + ACTIONS(7141), 1, + anon_sym_COMMA, + ACTIONS(7883), 1, + anon_sym_LBRACE, + ACTIONS(7885), 1, + anon_sym_LBRACE_PIPE, + STATE(4420), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151680] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7887), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151697] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7889), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151714] = 5, + ACTIONS(7891), 1, + anon_sym_LBRACE, + ACTIONS(7893), 1, + anon_sym_COMMA, + ACTIONS(7896), 1, + anon_sym_LBRACE_PIPE, + STATE(4420), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151731] = 4, + ACTIONS(7237), 1, anon_sym_EQ, - STATE(4550), 1, + STATE(5264), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, + ACTIONS(7898), 2, anon_sym_COMMA, - anon_sym_SEMI, - [150375] = 4, - ACTIONS(6447), 1, + anon_sym_RPAREN, + [151746] = 4, + ACTIONS(7759), 1, anon_sym_EQ, - STATE(4778), 1, + STATE(5179), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150391] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4782), 1, - sym__initializer, + ACTIONS(7900), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [151761] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7902), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151778] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7904), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151795] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7906), 1, + anon_sym_SQUOTE, + STATE(4444), 1, + aux_sym_string_repeat2, + ACTIONS(7908), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151812] = 3, + ACTIONS(6178), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [151825] = 3, + ACTIONS(7910), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3906), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [151838] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7912), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7516), 3, + ACTIONS(7914), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [150407] = 4, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(4885), 1, - sym__initializer, + [151866] = 4, + ACTIONS(7916), 1, + anon_sym_from, + STATE(5466), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 3, + ACTIONS(7918), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [150423] = 5, - ACTIONS(3), 1, + [151881] = 5, + ACTIONS(6489), 1, + anon_sym_LPAREN, + ACTIONS(6495), 1, + anon_sym_LT, + STATE(3290), 1, + sym_arguments, + STATE(3394), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [151898] = 5, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5252), 1, + sym_type_parameters, + STATE(5903), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7819), 1, - anon_sym_SQUOTE, - STATE(4466), 1, - aux_sym_string_repeat2, - ACTIONS(7821), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150440] = 5, + sym_comment, + [151915] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7823), 1, + ACTIONS(7920), 1, anon_sym_SQUOTE, - STATE(4495), 1, + STATE(4485), 1, aux_sym_string_repeat2, - ACTIONS(7825), 2, + ACTIONS(7922), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150457] = 5, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3576), 1, + [151932] = 5, + ACTIONS(2515), 1, anon_sym_LT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, - sym_type_arguments, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5254), 1, + sym_type_parameters, + STATE(5806), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150474] = 4, - ACTIONS(7145), 1, - anon_sym_EQ, - STATE(5319), 1, - sym__initializer, + [151949] = 4, + ACTIONS(7916), 1, + anon_sym_from, + STATE(5358), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7827), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [150489] = 5, - ACTIONS(6680), 1, - anon_sym_LPAREN, - ACTIONS(6682), 1, + ACTIONS(5219), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151964] = 5, + ACTIONS(2515), 1, anon_sym_LT, - STATE(2917), 1, - sym_arguments, - STATE(3015), 1, - sym_type_arguments, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5294), 1, + sym_type_parameters, + STATE(5677), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151981] = 5, + ACTIONS(7924), 1, + sym_identifier, + ACTIONS(7926), 1, + anon_sym_const, + ACTIONS(7928), 1, + anon_sym_GT, + STATE(5182), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150506] = 4, - ACTIONS(7829), 1, + [151998] = 4, + ACTIONS(7930), 1, anon_sym_COMMA, - STATE(4458), 1, + STATE(4508), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7831), 2, + ACTIONS(7932), 2, sym__automatic_semicolon, anon_sym_SEMI, - [150521] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7833), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150538] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7835), 1, - anon_sym_RPAREN, + [152013] = 4, + ACTIONS(6689), 1, + anon_sym_EQ, + STATE(5476), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150555] = 5, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(7837), 1, - anon_sym_LT, - STATE(1602), 1, - sym_arguments, - STATE(1603), 1, - sym_type_arguments, + ACTIONS(7934), 2, + anon_sym_COMMA, + anon_sym_GT, + [152028] = 3, + ACTIONS(7936), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150572] = 3, - ACTIONS(6337), 1, - anon_sym_DOT, + ACTIONS(3601), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [152041] = 4, + ACTIONS(7939), 1, + anon_sym_COMMA, + STATE(4441), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6335), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [150585] = 5, + ACTIONS(5045), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152056] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7839), 1, + ACTIONS(7942), 1, anon_sym_DQUOTE, - STATE(4394), 1, + STATE(4501), 1, aux_sym_string_repeat1, - ACTIONS(7841), 2, + ACTIONS(7944), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150602] = 5, - ACTIONS(6605), 1, + [152073] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7843), 1, + ACTIONS(7946), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150619] = 5, + [152090] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7839), 1, + ACTIONS(7948), 1, anon_sym_SQUOTE, - STATE(4395), 1, + STATE(4444), 1, aux_sym_string_repeat2, - ACTIONS(7845), 2, + ACTIONS(7950), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152107] = 4, + ACTIONS(7237), 1, + anon_sym_EQ, + STATE(5272), 1, + sym__initializer, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7847), 1, - anon_sym_DQUOTE, - STATE(4476), 1, - aux_sym_string_repeat1, - ACTIONS(7849), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150653] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + ACTIONS(7953), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [152122] = 5, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5407), 1, + sym_type_parameters, + STATE(5540), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7851), 1, - anon_sym_DQUOTE, - STATE(4494), 1, - aux_sym_string_repeat1, - ACTIONS(7853), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150670] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [152139] = 4, + ACTIONS(7930), 1, + anon_sym_COMMA, + STATE(4532), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7851), 1, - anon_sym_SQUOTE, - STATE(4495), 1, - aux_sym_string_repeat2, - ACTIONS(7825), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150687] = 5, + sym_comment, + ACTIONS(7955), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152154] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7847), 1, - anon_sym_SQUOTE, - STATE(4478), 1, - aux_sym_string_repeat2, - ACTIONS(7855), 2, - sym_unescaped_single_string_fragment, + ACTIONS(7957), 1, + anon_sym_DQUOTE, + STATE(4466), 1, + aux_sym_string_repeat1, + ACTIONS(7959), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [150704] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7857), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150721] = 5, - ACTIONS(7859), 1, + [152171] = 5, + ACTIONS(7924), 1, sym_identifier, - STATE(4143), 1, - sym_nested_type_identifier, - STATE(4683), 1, - sym_generic_type, - STATE(5633), 1, - sym_nested_identifier, + ACTIONS(7926), 1, + anon_sym_const, + ACTIONS(7961), 1, + anon_sym_GT, + STATE(5182), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150738] = 5, - ACTIONS(7139), 1, + [152188] = 4, + ACTIONS(7930), 1, anon_sym_COMMA, - ACTIONS(7861), 1, - anon_sym_LBRACE, - ACTIONS(7863), 1, - anon_sym_LBRACE_PIPE, - STATE(4485), 1, - aux_sym_extends_type_clause_repeat1, + STATE(4532), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150755] = 5, - ACTIONS(7139), 1, - anon_sym_COMMA, - ACTIONS(7865), 1, - anon_sym_LBRACE, - ACTIONS(7867), 1, - anon_sym_LBRACE_PIPE, - STATE(4485), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(7963), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152203] = 3, + ACTIONS(7965), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150772] = 5, - ACTIONS(7139), 1, + ACTIONS(6401), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [152216] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7957), 1, + anon_sym_SQUOTE, + STATE(4468), 1, + aux_sym_string_repeat2, + ACTIONS(7967), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152233] = 4, + ACTIONS(7930), 1, anon_sym_COMMA, - ACTIONS(7865), 1, - anon_sym_LBRACE, - ACTIONS(7867), 1, - anon_sym_LBRACE_PIPE, - STATE(4485), 1, - aux_sym_extends_type_clause_repeat1, + STATE(4517), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150789] = 5, + ACTIONS(7969), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152248] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7869), 1, + ACTIONS(7971), 1, anon_sym_DQUOTE, - STATE(4494), 1, + STATE(4511), 1, aux_sym_string_repeat1, - ACTIONS(7853), 2, + ACTIONS(7973), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150806] = 3, - ACTIONS(7661), 1, + [152265] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7971), 1, + anon_sym_SQUOTE, + STATE(4513), 1, + aux_sym_string_repeat2, + ACTIONS(7975), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152282] = 3, + ACTIONS(7657), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 3, + ACTIONS(4284), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [150819] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152295] = 4, + ACTIONS(7916), 1, + anon_sym_from, + STATE(5243), 1, + sym__from_clause, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7871), 1, - anon_sym_DQUOTE, - STATE(4412), 1, - aux_sym_string_repeat1, - ACTIONS(7873), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150836] = 5, - ACTIONS(6605), 1, + sym_comment, + ACTIONS(7977), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152310] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7875), 1, - anon_sym_RPAREN, + ACTIONS(7979), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152327] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7981), 1, + anon_sym_class, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150853] = 5, + [152344] = 5, ACTIONS(1910), 1, anon_sym_COMMA, - ACTIONS(7877), 1, + ACTIONS(7983), 1, anon_sym_EQ, - ACTIONS(7879), 1, + ACTIONS(7985), 1, anon_sym_RBRACK, - STATE(4990), 1, + STATE(4682), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150870] = 5, - ACTIONS(7881), 1, - sym_identifier, - ACTIONS(7883), 1, - anon_sym_const, - ACTIONS(7885), 1, - anon_sym_GT, - STATE(5244), 1, - sym_type_parameter, + [152361] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(7987), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150887] = 5, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7887), 1, - anon_sym_class, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, + [152378] = 5, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5422), 1, + sym_type_parameters, + STATE(5683), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150904] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7889), 1, - anon_sym_RBRACK, + [152395] = 5, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5291), 1, + sym_type_parameters, + STATE(5709), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150921] = 5, - ACTIONS(7891), 1, - sym_identifier, - STATE(3818), 1, - sym_nested_type_identifier, - STATE(4447), 1, - sym_generic_type, - STATE(5633), 1, - sym_nested_identifier, + [152412] = 5, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3542), 1, + anon_sym_LT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150938] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152429] = 5, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5293), 1, + sym_type_parameters, + STATE(5906), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7871), 1, - anon_sym_SQUOTE, - STATE(4456), 1, - aux_sym_string_repeat2, - ACTIONS(7893), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150955] = 5, + sym_comment, + [152446] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7895), 1, + ACTIONS(7989), 1, anon_sym_DQUOTE, - STATE(4494), 1, + STATE(4528), 1, aux_sym_string_repeat1, - ACTIONS(7853), 2, + ACTIONS(7991), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150972] = 5, - ACTIONS(2499), 1, + [152463] = 5, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5174), 1, + STATE(5349), 1, sym_type_parameters, - STATE(5518), 1, + STATE(5597), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150989] = 4, - ACTIONS(6595), 1, - anon_sym_EQ, - STATE(5263), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7897), 2, - anon_sym_COMMA, - anon_sym_GT, - [151004] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7899), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, + [152480] = 5, + ACTIONS(3), 1, sym_comment, - [151021] = 4, - ACTIONS(7829), 1, - anon_sym_COMMA, - STATE(4506), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(7901), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151036] = 4, - ACTIONS(5010), 1, + ACTIONS(7989), 1, + anon_sym_SQUOTE, + STATE(4444), 1, + aux_sym_string_repeat2, + ACTIONS(7908), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152497] = 4, + ACTIONS(5056), 1, anon_sym_COMMA, - STATE(4457), 1, + STATE(4441), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7318), 2, + ACTIONS(7359), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151051] = 4, - ACTIONS(7905), 1, - anon_sym_COMMA, - STATE(4480), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7903), 2, - anon_sym_LBRACE, - anon_sym_implements, - [151066] = 4, - ACTIONS(6327), 1, - anon_sym_STAR, - ACTIONS(6331), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5748), 2, - sym_namespace_import, - sym_named_imports, - [151081] = 5, - ACTIONS(7095), 1, + [152512] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(7097), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(7099), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7907), 1, - anon_sym_QMARK, + ACTIONS(7993), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151098] = 3, - ACTIONS(7909), 1, - anon_sym_DOT, + [152529] = 3, + ACTIONS(7995), 1, + sym_escape_sequence, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6335), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + ACTIONS(7997), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152542] = 5, + ACTIONS(2515), 1, anon_sym_LT, - [151111] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7911), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151128] = 4, - ACTIONS(7913), 1, - anon_sym_COMMA, - STATE(4423), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3683), 1, + sym_formal_parameters, + STATE(5377), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 2, - anon_sym_LBRACE, - anon_sym_GT, - [151143] = 5, - ACTIONS(6605), 1, + [152559] = 5, + ACTIONS(7227), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(7229), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(7231), 1, anon_sym_extends, - ACTIONS(7916), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151160] = 3, - ACTIONS(7918), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3622), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [151173] = 4, - ACTIONS(7921), 1, - anon_sym_from, - STATE(5161), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5101), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151188] = 4, - ACTIONS(7921), 1, - anon_sym_from, - STATE(5461), 1, - sym__from_clause, + ACTIONS(8000), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7923), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151203] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, + [152576] = 5, + ACTIONS(6723), 1, anon_sym_LPAREN, - STATE(5375), 1, - sym_type_parameters, - STATE(5478), 1, - sym_formal_parameters, + ACTIONS(6725), 1, + anon_sym_LT, + STATE(2947), 1, + sym_arguments, + STATE(2958), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151220] = 5, + [152593] = 5, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7925), 1, - anon_sym_class, - STATE(1269), 1, + ACTIONS(8002), 1, + anon_sym_export, + STATE(1249), 1, aux_sym_export_statement_repeat1, - STATE(1344), 1, + STATE(1313), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151237] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5163), 1, - sym_type_parameters, - STATE(5577), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, + [152610] = 5, + ACTIONS(3), 1, sym_comment, - [151254] = 4, - ACTIONS(7927), 1, - anon_sym_EQ, - STATE(5342), 1, - sym__initializer, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7942), 1, + anon_sym_SQUOTE, + STATE(4502), 1, + aux_sym_string_repeat2, + ACTIONS(8004), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152627] = 5, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, + anon_sym_extends, + ACTIONS(8006), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [151269] = 5, - ACTIONS(6605), 1, + [152644] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7929), 1, + ACTIONS(8008), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151286] = 5, - ACTIONS(6605), 1, + [152661] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7931), 1, + ACTIONS(8010), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151303] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7933), 1, - anon_sym_RPAREN, + [152678] = 4, + ACTIONS(7916), 1, + anon_sym_from, + STATE(5222), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151320] = 5, - ACTIONS(6605), 1, + ACTIONS(5111), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152693] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7935), 1, + ACTIONS(8012), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151337] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7937), 1, - anon_sym_RBRACK, + [152710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8014), 1, + anon_sym_DQUOTE, + STATE(4528), 1, + aux_sym_string_repeat1, + ACTIONS(7991), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151354] = 5, - ACTIONS(6605), 1, + ACTIONS(8016), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152738] = 4, + ACTIONS(6393), 1, + anon_sym_STAR, + ACTIONS(6397), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5832), 2, + sym_namespace_import, + sym_named_imports, + [152753] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8014), 1, + anon_sym_SQUOTE, + STATE(4444), 1, + aux_sym_string_repeat2, + ACTIONS(7908), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152770] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7939), 1, + ACTIONS(8018), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151371] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5292), 1, - sym_type_parameters, - STATE(5472), 1, - sym_formal_parameters, + [152787] = 5, + ACTIONS(8020), 1, + sym_identifier, + STATE(4313), 1, + sym_nested_type_identifier, + STATE(5012), 1, + sym_generic_type, + STATE(5686), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151388] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5387), 1, - sym_type_parameters, - STATE(5653), 1, - sym_formal_parameters, + [152804] = 5, + ACTIONS(7141), 1, + anon_sym_COMMA, + ACTIONS(8022), 1, + anon_sym_LBRACE, + ACTIONS(8024), 1, + anon_sym_LBRACE_PIPE, + STATE(4420), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151405] = 2, + [152821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7906), 1, + anon_sym_DQUOTE, + STATE(4528), 1, + aux_sym_string_repeat1, + ACTIONS(7991), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8026), 1, + anon_sym_DQUOTE, + STATE(4528), 1, + aux_sym_string_repeat1, + ACTIONS(7991), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152855] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(8028), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6064), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [151416] = 5, - ACTIONS(6605), 1, + [152872] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7941), 1, - anon_sym_RBRACK, + ACTIONS(8030), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151433] = 5, - ACTIONS(6605), 1, + [152889] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7943), 1, + ACTIONS(8032), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151450] = 5, + [152906] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7869), 1, + ACTIONS(8026), 1, anon_sym_SQUOTE, - STATE(4495), 1, + STATE(4444), 1, aux_sym_string_repeat2, - ACTIONS(7825), 2, + ACTIONS(7908), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151467] = 5, - ACTIONS(7881), 1, + [152923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8034), 1, + anon_sym_DQUOTE, + STATE(4490), 1, + aux_sym_string_repeat1, + ACTIONS(8036), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152940] = 5, + ACTIONS(7924), 1, sym_identifier, - ACTIONS(7883), 1, + ACTIONS(7926), 1, anon_sym_const, - ACTIONS(7945), 1, + ACTIONS(8038), 1, anon_sym_GT, - STATE(5244), 1, + STATE(5182), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151484] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7947), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [151495] = 4, - ACTIONS(7571), 1, - anon_sym_EQ, - STATE(5290), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151510] = 5, - ACTIONS(7139), 1, - anon_sym_COMMA, - ACTIONS(7365), 1, - anon_sym_LBRACE, - ACTIONS(7367), 1, - anon_sym_LBRACE_PIPE, - STATE(4401), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151527] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(7951), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151544] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5167), 1, - sym_type_parameters, - STATE(5711), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151561] = 4, - ACTIONS(7829), 1, - anon_sym_COMMA, - STATE(4515), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7953), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151576] = 4, - ACTIONS(7829), 1, - anon_sym_COMMA, - STATE(4459), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7955), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151591] = 5, + [152957] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7957), 1, + ACTIONS(8034), 1, anon_sym_SQUOTE, - STATE(4495), 1, + STATE(4494), 1, aux_sym_string_repeat2, - ACTIONS(7825), 2, + ACTIONS(8040), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151608] = 5, + [152974] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7819), 1, + ACTIONS(8042), 1, anon_sym_DQUOTE, - STATE(4465), 1, + STATE(4489), 1, aux_sym_string_repeat1, - ACTIONS(7959), 2, + ACTIONS(8044), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151625] = 5, - ACTIONS(6605), 1, + [152991] = 5, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5208), 1, + sym_type_parameters, + STATE(5674), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153008] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7961), 1, + ACTIONS(8046), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151642] = 4, - ACTIONS(7963), 1, - anon_sym_COMMA, - STATE(4455), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [153025] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7966), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151657] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8048), 1, + anon_sym_DQUOTE, + STATE(4528), 1, + aux_sym_string_repeat1, + ACTIONS(7991), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153042] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7895), 1, + ACTIONS(8048), 1, anon_sym_SQUOTE, - STATE(4495), 1, + STATE(4444), 1, aux_sym_string_repeat2, - ACTIONS(7825), 2, + ACTIONS(7908), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151674] = 4, - ACTIONS(7968), 1, - anon_sym_COMMA, - STATE(4457), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4852), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151689] = 4, - ACTIONS(7829), 1, - anon_sym_COMMA, - STATE(4455), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7971), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151704] = 4, - ACTIONS(7829), 1, + [153059] = 4, + ACTIONS(8052), 1, anon_sym_COMMA, - STATE(4455), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7973), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151719] = 4, - ACTIONS(7921), 1, - anon_sym_from, - STATE(5428), 1, - sym__from_clause, + STATE(4545), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7975), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151734] = 5, - ACTIONS(6605), 1, + ACTIONS(8050), 2, + anon_sym_LBRACE, + anon_sym_implements, + [153074] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(7977), 1, + ACTIONS(8054), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151751] = 4, - ACTIONS(7905), 1, + [153091] = 4, + ACTIONS(8056), 1, anon_sym_COMMA, - STATE(4418), 1, - aux_sym_extends_clause_repeat1, + STATE(4505), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7979), 2, + ACTIONS(7442), 2, anon_sym_LBRACE, - anon_sym_implements, - [151766] = 5, - ACTIONS(7881), 1, - sym_identifier, - ACTIONS(7883), 1, - anon_sym_const, - ACTIONS(7981), 1, anon_sym_GT, - STATE(5244), 1, - sym_type_parameter, + [153106] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8059), 1, + anon_sym_class, + STATE(1249), 1, + aux_sym_export_statement_repeat1, + STATE(1313), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151783] = 4, - ACTIONS(7921), 1, - anon_sym_from, - STATE(5203), 1, - sym__from_clause, + [153123] = 5, + ACTIONS(7924), 1, + sym_identifier, + ACTIONS(7926), 1, + anon_sym_const, + ACTIONS(8061), 1, + anon_sym_GT, + STATE(5182), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5041), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151798] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7983), 1, - anon_sym_DQUOTE, - STATE(4494), 1, - aux_sym_string_repeat1, - ACTIONS(7853), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151815] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7983), 1, - anon_sym_SQUOTE, - STATE(4495), 1, - aux_sym_string_repeat2, - ACTIONS(7825), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151832] = 2, + [153140] = 4, + ACTIONS(7930), 1, + anon_sym_COMMA, + STATE(4532), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7985), 4, + ACTIONS(8063), 2, sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, anon_sym_SEMI, - [151843] = 5, - ACTIONS(6375), 1, + [153155] = 5, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(6381), 1, + ACTIONS(8065), 1, anon_sym_LT, - STATE(3224), 1, + STATE(1959), 1, sym_arguments, - STATE(3401), 1, + STATE(1960), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151860] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7987), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [151871] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5208), 1, - sym_type_parameters, - STATE(5491), 1, - sym_formal_parameters, + [153172] = 4, + ACTIONS(6689), 1, + anon_sym_EQ, + STATE(5284), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151888] = 5, + ACTIONS(8067), 2, + anon_sym_COMMA, + anon_sym_GT, + [153187] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7989), 1, + ACTIONS(8069), 1, anon_sym_DQUOTE, - STATE(4402), 1, + STATE(4528), 1, aux_sym_string_repeat1, ACTIONS(7991), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151905] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5210), 1, - sym_type_parameters, - STATE(5560), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151922] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(7993), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151939] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5378), 1, - sym_type_parameters, - STATE(5632), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151956] = 5, - ACTIONS(7881), 1, - sym_identifier, - ACTIONS(7883), 1, - anon_sym_const, - ACTIONS(7995), 1, - anon_sym_GT, - STATE(5244), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151973] = 5, + [153204] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7997), 1, + ACTIONS(8071), 1, anon_sym_DQUOTE, - STATE(4494), 1, + STATE(4518), 1, aux_sym_string_repeat1, - ACTIONS(7853), 2, + ACTIONS(8073), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151990] = 5, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, - ACTIONS(7999), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152007] = 5, + [153221] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7997), 1, + ACTIONS(8069), 1, anon_sym_SQUOTE, - STATE(4495), 1, + STATE(4444), 1, aux_sym_string_repeat2, - ACTIONS(7825), 2, + ACTIONS(7908), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152024] = 5, - ACTIONS(1910), 1, - anon_sym_COMMA, - ACTIONS(7877), 1, - anon_sym_EQ, - ACTIONS(8001), 1, + [153238] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(8075), 1, anon_sym_RBRACK, - STATE(4890), 1, - aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152041] = 4, - ACTIONS(8005), 1, - anon_sym_COMMA, - STATE(4480), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [153255] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152056] = 5, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(8008), 1, - anon_sym_export, - STATE(1269), 1, - aux_sym_export_statement_repeat1, - STATE(1344), 1, - sym_decorator, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [152073] = 5, + ACTIONS(8071), 1, + anon_sym_SQUOTE, + STATE(4520), 1, + aux_sym_string_repeat2, + ACTIONS(8077), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153272] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7989), 1, + ACTIONS(8042), 1, anon_sym_SQUOTE, - STATE(4443), 1, + STATE(4425), 1, aux_sym_string_repeat2, - ACTIONS(8010), 2, + ACTIONS(8079), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152090] = 3, - ACTIONS(6104), 1, - anon_sym_EQ_GT, + [153289] = 4, + ACTIONS(7930), 1, + anon_sym_COMMA, + STATE(4532), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [152103] = 5, - ACTIONS(2499), 1, + ACTIONS(8081), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153304] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8083), 1, + anon_sym_DQUOTE, + STATE(4528), 1, + aux_sym_string_repeat1, + ACTIONS(7991), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153321] = 5, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(3281), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3576), 1, - sym_formal_parameters, - STATE(5246), 1, + STATE(5213), 1, sym_type_parameters, + STATE(5765), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152120] = 5, - ACTIONS(8012), 1, - anon_sym_LBRACE, - ACTIONS(8014), 1, - anon_sym_COMMA, - ACTIONS(8017), 1, - anon_sym_LBRACE_PIPE, - STATE(4485), 1, - aux_sym_extends_type_clause_repeat1, + [153338] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8083), 1, + anon_sym_SQUOTE, + STATE(4444), 1, + aux_sym_string_repeat2, + ACTIONS(7908), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152137] = 5, - ACTIONS(6605), 1, + ACTIONS(6065), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153366] = 5, + ACTIONS(7227), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(7229), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(7231), 1, anon_sym_extends, - ACTIONS(8019), 1, - anon_sym_RBRACK, + ACTIONS(8085), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152154] = 3, - ACTIONS(8021), 1, - sym_escape_sequence, + [153383] = 5, + ACTIONS(3516), 1, + anon_sym_LPAREN, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3180), 1, + sym_arguments, + STATE(3253), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152167] = 3, - ACTIONS(8026), 1, - anon_sym_EQ_GT, + [153400] = 5, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(8087), 1, + anon_sym_LT, + STATE(1621), 1, + sym_arguments, + STATE(1622), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3814), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [152180] = 5, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, - ACTIONS(8028), 1, - anon_sym_QMARK, + [153417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152197] = 5, - ACTIONS(6605), 1, + ACTIONS(8089), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [153428] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(8030), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152214] = 4, - ACTIONS(7145), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__initializer, + ACTIONS(8091), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8032), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [152229] = 5, - ACTIONS(7095), 1, + [153445] = 5, + ACTIONS(7227), 1, anon_sym_AMP, - ACTIONS(7097), 1, + ACTIONS(7229), 1, anon_sym_PIPE, - ACTIONS(7099), 1, + ACTIONS(7231), 1, anon_sym_extends, - ACTIONS(8034), 1, + ACTIONS(8093), 1, anon_sym_QMARK, ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152246] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8036), 1, - anon_sym_DQUOTE, - STATE(4512), 1, - aux_sym_string_repeat1, - ACTIONS(8038), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152263] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8040), 1, - anon_sym_DQUOTE, - STATE(4494), 1, - aux_sym_string_repeat1, - ACTIONS(8042), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152280] = 5, + sym_html_comment, + sym_comment, + [153462] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8045), 1, - anon_sym_SQUOTE, - STATE(4495), 1, - aux_sym_string_repeat2, - ACTIONS(8047), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8095), 1, + anon_sym_DQUOTE, + STATE(4528), 1, + aux_sym_string_repeat1, + ACTIONS(8097), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [152297] = 5, + [153479] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8036), 1, - anon_sym_SQUOTE, - STATE(4381), 1, - aux_sym_string_repeat2, - ACTIONS(8050), 2, - sym_unescaped_single_string_fragment, + ACTIONS(7920), 1, + anon_sym_DQUOTE, + STATE(4482), 1, + aux_sym_string_repeat1, + ACTIONS(8100), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [152314] = 5, - ACTIONS(7095), 1, + [153496] = 5, + ACTIONS(7227), 1, anon_sym_AMP, - ACTIONS(7097), 1, + ACTIONS(7229), 1, anon_sym_PIPE, - ACTIONS(7099), 1, + ACTIONS(7231), 1, anon_sym_extends, - ACTIONS(8052), 1, + ACTIONS(8102), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152331] = 5, - ACTIONS(6605), 1, + [153513] = 5, + ACTIONS(7141), 1, + anon_sym_COMMA, + ACTIONS(7514), 1, + anon_sym_LBRACE, + ACTIONS(7516), 1, + anon_sym_LBRACE_PIPE, + STATE(4417), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153530] = 4, + ACTIONS(8104), 1, + anon_sym_COMMA, + STATE(4532), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8107), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153545] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(8054), 1, + ACTIONS(8109), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153562] = 4, + ACTIONS(8113), 1, + anon_sym_COMMA, + STATE(4534), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8111), 2, + anon_sym_LBRACE, + anon_sym_implements, + [153577] = 4, + ACTIONS(3906), 1, anon_sym_COLON, + ACTIONS(4506), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152348] = 4, - ACTIONS(6595), 1, + ACTIONS(8116), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [153592] = 4, + ACTIONS(8118), 1, anon_sym_EQ, - STATE(5178), 1, - sym_default_type, + STATE(5244), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8056), 2, + ACTIONS(6834), 2, + anon_sym_in, + anon_sym_of, + [153607] = 4, + ACTIONS(7930), 1, anon_sym_COMMA, - anon_sym_GT, - [152363] = 5, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(8058), 1, - anon_sym_LT, - STATE(1964), 1, - sym_arguments, - STATE(1965), 1, - sym_type_arguments, + STATE(4447), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152380] = 5, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5252), 1, - sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, + ACTIONS(8120), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153622] = 3, + ACTIONS(6403), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152397] = 5, - ACTIONS(3528), 1, + ACTIONS(6401), 3, anon_sym_LPAREN, - ACTIONS(6345), 1, + anon_sym_QMARK_DOT, anon_sym_LT, - STATE(3086), 1, - sym_arguments, - STATE(3215), 1, - sym_type_arguments, + [153635] = 4, + ACTIONS(7930), 1, + anon_sym_COMMA, + STATE(4450), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152414] = 5, - ACTIONS(2499), 1, + ACTIONS(8122), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153650] = 5, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5253), 1, + STATE(5268), 1, sym_type_parameters, - STATE(5552), 1, + STATE(5527), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152431] = 5, - ACTIONS(2499), 1, + [153667] = 5, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5456), 1, + STATE(5493), 1, sym_type_parameters, - STATE(5647), 1, + STATE(5687), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152448] = 4, - ACTIONS(3814), 1, - anon_sym_COLON, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8060), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [152463] = 4, - ACTIONS(7829), 1, - anon_sym_COMMA, - STATE(4455), 1, - aux_sym_variable_declaration_repeat1, + [153684] = 5, + ACTIONS(8124), 1, + sym_identifier, + STATE(3909), 1, + sym_nested_type_identifier, + STATE(4531), 1, + sym_generic_type, + STATE(5686), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8062), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152478] = 5, - ACTIONS(2499), 1, + [153701] = 5, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5179), 1, + STATE(5404), 1, sym_type_parameters, - STATE(5547), 1, + STATE(5751), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152495] = 5, - ACTIONS(2499), 1, + [153718] = 5, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(6453), 1, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5459), 1, + STATE(5497), 1, sym_type_parameters, - STATE(5671), 1, + STATE(5711), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152512] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [153735] = 4, + ACTIONS(8052), 1, + anon_sym_COMMA, + STATE(4534), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8064), 1, - anon_sym_DQUOTE, - STATE(4513), 1, - aux_sym_string_repeat1, - ACTIONS(8066), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152529] = 5, - ACTIONS(7095), 1, + sym_comment, + ACTIONS(8126), 2, + anon_sym_LBRACE, + anon_sym_implements, + [153750] = 5, + ACTIONS(7227), 1, anon_sym_AMP, - ACTIONS(7097), 1, + ACTIONS(7229), 1, anon_sym_PIPE, - ACTIONS(7099), 1, + ACTIONS(7231), 1, anon_sym_extends, - ACTIONS(8068), 1, + ACTIONS(8128), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152546] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [153767] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(8130), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8064), 1, - anon_sym_SQUOTE, - STATE(4452), 1, - aux_sym_string_repeat2, - ACTIONS(8070), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152563] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [153784] = 5, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(7983), 1, + anon_sym_EQ, + ACTIONS(8132), 1, + anon_sym_RBRACK, + STATE(4817), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7823), 1, - anon_sym_DQUOTE, - STATE(4494), 1, - aux_sym_string_repeat1, - ACTIONS(7853), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152580] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [153801] = 5, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, + ACTIONS(8134), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7957), 1, - anon_sym_DQUOTE, - STATE(4494), 1, - aux_sym_string_repeat1, - ACTIONS(7853), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152597] = 5, - ACTIONS(6605), 1, + sym_comment, + [153818] = 5, + ACTIONS(6653), 1, anon_sym_AMP, - ACTIONS(6607), 1, + ACTIONS(6655), 1, anon_sym_PIPE, - ACTIONS(6609), 1, + ACTIONS(6657), 1, anon_sym_extends, - ACTIONS(8072), 1, + ACTIONS(8136), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152614] = 4, - ACTIONS(7829), 1, + [153835] = 5, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, + anon_sym_extends, + ACTIONS(8138), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153852] = 5, + ACTIONS(7141), 1, anon_sym_COMMA, - STATE(4455), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(7883), 1, + anon_sym_LBRACE, + ACTIONS(7885), 1, + anon_sym_LBRACE_PIPE, + STATE(4420), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8074), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152629] = 2, + [153869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152639] = 2, + [153879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8078), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152649] = 2, + [153889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152659] = 2, + [153899] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5359), 1, + anon_sym_RPAREN, + STATE(4940), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152669] = 2, + [153913] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152679] = 2, + [153923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152689] = 2, + [153933] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152699] = 3, - ACTIONS(8086), 1, - anon_sym_EQ, + [153943] = 4, + ACTIONS(8152), 1, + anon_sym_COMMA, + ACTIONS(8155), 1, + anon_sym_RBRACE, + STATE(4560), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8088), 2, + [153957] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_from, - [152711] = 4, - ACTIONS(8090), 1, - sym_identifier, - ACTIONS(8092), 1, - anon_sym_LBRACK, - ACTIONS(8094), 1, - sym_private_property_identifier, + ACTIONS(5359), 1, + anon_sym_RPAREN, + STATE(4762), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152725] = 2, + [153971] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(7259), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [153981] = 4, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + STATE(5636), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153995] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152735] = 2, + [154005] = 4, + ACTIONS(5130), 1, + anon_sym_COMMA, + ACTIONS(8159), 1, + anon_sym_RBRACE, + STATE(4667), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, + [154019] = 4, + ACTIONS(5303), 1, anon_sym_COMMA, - anon_sym_SEMI, - [152745] = 2, + ACTIONS(8161), 1, + anon_sym_RBRACE, + STATE(4668), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + [154033] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152755] = 2, + [154043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152765] = 2, + [154053] = 4, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(8163), 1, + anon_sym_DOT, + STATE(1611), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, - sym__automatic_semicolon, + [154067] = 4, + ACTIONS(5303), 1, anon_sym_COMMA, - anon_sym_SEMI, - [152775] = 2, + ACTIONS(8161), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154081] = 4, + ACTIONS(5130), 1, + anon_sym_COMMA, + ACTIONS(8159), 1, + anon_sym_RBRACE, + STATE(4694), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154095] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152785] = 4, - ACTIONS(4010), 1, - anon_sym_LPAREN, - ACTIONS(8100), 1, - anon_sym_DOT, - STATE(1529), 1, - sym_arguments, + [154105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152799] = 2, + ACTIONS(8165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152809] = 4, - ACTIONS(8102), 1, - sym_identifier, - ACTIONS(8104), 1, - anon_sym_LBRACK, - ACTIONS(8106), 1, - sym_private_property_identifier, + [154125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152823] = 2, + ACTIONS(8146), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152833] = 2, + [154145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152843] = 2, + [154155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152853] = 4, - ACTIONS(8110), 1, - sym_identifier, - ACTIONS(8112), 1, - anon_sym_LBRACK, - ACTIONS(8114), 1, - sym_private_property_identifier, + [154165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152867] = 2, + ACTIONS(8167), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152877] = 2, + [154185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152887] = 4, - ACTIONS(8116), 1, + [154195] = 4, + ACTIONS(8169), 1, anon_sym_COMMA, - ACTIONS(8118), 1, + ACTIONS(8171), 1, anon_sym_RBRACK, - STATE(4552), 1, + STATE(4593), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152901] = 4, - ACTIONS(4210), 1, + [154209] = 4, + ACTIONS(4176), 1, anon_sym_extends, - ACTIONS(8120), 1, + ACTIONS(8173), 1, anon_sym_AMP, - ACTIONS(8122), 1, + ACTIONS(8175), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152915] = 4, - ACTIONS(3215), 1, + [154223] = 4, + ACTIONS(3205), 1, anon_sym_GT, - ACTIONS(8124), 1, + ACTIONS(8177), 1, anon_sym_COMMA, - STATE(4423), 1, + STATE(4505), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152929] = 4, - ACTIONS(8126), 1, - sym_identifier, - ACTIONS(8128), 1, - anon_sym_LBRACK, - ACTIONS(8130), 1, - sym_private_property_identifier, + [154237] = 4, + ACTIONS(5130), 1, + anon_sym_COMMA, + ACTIONS(8179), 1, + anon_sym_RBRACE, + STATE(4694), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152943] = 4, + ACTIONS(8167), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154261] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5368), 1, + ACTIONS(5422), 1, anon_sym_RPAREN, - STATE(4554), 1, + STATE(4596), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152957] = 4, + [154275] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5368), 1, + ACTIONS(5422), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4762), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152971] = 2, + [154289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152981] = 2, + [154299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152991] = 2, + [154309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153001] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8098), 3, - sym__automatic_semicolon, + [154319] = 4, + ACTIONS(8181), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153011] = 2, + ACTIONS(8183), 1, + anon_sym_RPAREN, + STATE(4679), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, - sym__automatic_semicolon, + [154333] = 4, + ACTIONS(2677), 1, + anon_sym_RBRACK, + ACTIONS(8185), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153021] = 2, + STATE(4835), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, - sym__automatic_semicolon, + [154347] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153031] = 4, - ACTIONS(2941), 1, + ACTIONS(7985), 1, anon_sym_RBRACK, - ACTIONS(8134), 1, - anon_sym_COMMA, - STATE(4949), 1, - aux_sym_tuple_type_repeat1, + STATE(4682), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153045] = 4, - ACTIONS(8136), 1, - sym_identifier, - ACTIONS(8138), 1, - anon_sym_LBRACK, - ACTIONS(8140), 1, - sym_private_property_identifier, + [154361] = 4, + ACTIONS(5269), 1, + anon_sym_COMMA, + ACTIONS(5357), 1, + anon_sym_RBRACK, + STATE(4681), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153059] = 4, + [154375] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8142), 1, + ACTIONS(8187), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4762), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153073] = 4, - ACTIONS(5060), 1, - anon_sym_COMMA, - ACTIONS(8144), 1, - anon_sym_RBRACE, - STATE(4959), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153087] = 2, + [154389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153097] = 2, + [154399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153107] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, + [154409] = 4, + ACTIONS(5269), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153117] = 2, + ACTIONS(5357), 1, + anon_sym_RBRACK, + STATE(4819), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, - sym__automatic_semicolon, + [154423] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153127] = 2, + ACTIONS(7985), 1, + anon_sym_RBRACK, + STATE(4839), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153137] = 2, + [154437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7707), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153147] = 2, + [154447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, + ACTIONS(8189), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [153157] = 2, + [154457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153167] = 3, - ACTIONS(7067), 1, - anon_sym_DOT, + [154467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8148), 2, + ACTIONS(8157), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [153179] = 2, + [154477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8150), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153189] = 3, - ACTIONS(7069), 1, - anon_sym_DOT, + [154487] = 4, + ACTIONS(8191), 1, + anon_sym_COMMA, + ACTIONS(8193), 1, + anon_sym_GT, + STATE(4824), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8148), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153201] = 2, + [154501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153211] = 4, - ACTIONS(8152), 1, + [154511] = 4, + ACTIONS(5303), 1, anon_sym_COMMA, - ACTIONS(8154), 1, - anon_sym_RBRACK, - STATE(4649), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8195), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153225] = 2, + [154525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153235] = 2, + [154535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153245] = 2, + [154545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153255] = 2, + [154555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153265] = 2, + [154565] = 4, + ACTIONS(8197), 1, + anon_sym_COMMA, + ACTIONS(8199), 1, + anon_sym_RBRACK, + STATE(4670), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153275] = 2, + [154579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8150), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153285] = 2, + [154589] = 4, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(8201), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153295] = 4, - ACTIONS(5555), 1, + [154603] = 4, + ACTIONS(8203), 1, anon_sym_COMMA, - ACTIONS(8156), 1, + ACTIONS(8205), 1, anon_sym_RBRACE, - STATE(4965), 1, - aux_sym_object_repeat1, + STATE(4869), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153309] = 2, + [154617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153319] = 4, - ACTIONS(6375), 1, - anon_sym_LPAREN, - ACTIONS(8158), 1, - anon_sym_DOT, - STATE(3317), 1, - sym_arguments, + [154627] = 3, + ACTIONS(8207), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153333] = 2, + ACTIONS(8209), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [154639] = 3, + ACTIONS(8211), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153343] = 2, + ACTIONS(6834), 2, + anon_sym_in, + anon_sym_of, + [154651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153353] = 2, + ACTIONS(7277), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [154661] = 3, + ACTIONS(8213), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153363] = 2, + ACTIONS(7783), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [154673] = 4, + ACTIONS(6489), 1, + anon_sym_LPAREN, + ACTIONS(8215), 1, + anon_sym_DOT, + STATE(3355), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153373] = 2, + [154697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153383] = 2, + [154707] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153393] = 2, + [154717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153403] = 4, - ACTIONS(8160), 1, + [154727] = 4, + ACTIONS(8217), 1, anon_sym_COMMA, - ACTIONS(8162), 1, + ACTIONS(8219), 1, anon_sym_RBRACK, - STATE(4599), 1, + STATE(4642), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153417] = 4, - ACTIONS(6819), 1, + [154741] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8146), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154751] = 4, + ACTIONS(6899), 1, anon_sym_AMP, - ACTIONS(6821), 1, + ACTIONS(6901), 1, anon_sym_PIPE, - ACTIONS(6823), 1, + ACTIONS(6903), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153431] = 4, + [154765] = 4, ACTIONS(3201), 1, anon_sym_GT, - ACTIONS(8164), 1, + ACTIONS(8221), 1, anon_sym_COMMA, - STATE(4423), 1, + STATE(4505), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153445] = 2, + [154779] = 4, + ACTIONS(4650), 1, + anon_sym_LPAREN, + ACTIONS(8223), 1, + anon_sym_DOT, + STATE(1933), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153455] = 4, + [154793] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5374), 1, + ACTIONS(5436), 1, anon_sym_RPAREN, - STATE(4602), 1, + STATE(4645), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153469] = 4, + [154807] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5374), 1, + ACTIONS(5436), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4762), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153483] = 2, + [154821] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153493] = 2, + [154831] = 4, + ACTIONS(8225), 1, + anon_sym_COMMA, + ACTIONS(8227), 1, + anon_sym_GT, + STATE(4739), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153503] = 4, - ACTIONS(8166), 1, + [154855] = 4, + ACTIONS(8229), 1, sym_identifier, - ACTIONS(8168), 1, + ACTIONS(8231), 1, anon_sym_LBRACK, - ACTIONS(8170), 1, + ACTIONS(8233), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153517] = 4, - ACTIONS(8172), 1, + [154869] = 4, + ACTIONS(8235), 1, sym_identifier, - ACTIONS(8174), 1, + ACTIONS(8237), 1, anon_sym_LBRACK, - ACTIONS(8176), 1, + ACTIONS(8239), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153531] = 4, - ACTIONS(8178), 1, + [154883] = 4, + ACTIONS(8241), 1, sym_identifier, - ACTIONS(8180), 1, + ACTIONS(8243), 1, anon_sym_LBRACK, - ACTIONS(8182), 1, + ACTIONS(8245), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153545] = 4, - ACTIONS(8184), 1, + [154897] = 4, + ACTIONS(8247), 1, sym_identifier, - ACTIONS(8186), 1, + ACTIONS(8249), 1, anon_sym_LBRACK, - ACTIONS(8188), 1, + ACTIONS(8251), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153559] = 2, + [154911] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153569] = 4, - ACTIONS(2577), 1, + [154921] = 4, + ACTIONS(2573), 1, anon_sym_RBRACK, - ACTIONS(8190), 1, + ACTIONS(8253), 1, anon_sym_COMMA, - STATE(4949), 1, + STATE(4835), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153583] = 2, + [154935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153593] = 2, + [154945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7966), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153603] = 4, + [154955] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8194), 1, + ACTIONS(8255), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4762), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153617] = 2, + [154969] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153627] = 2, + [154979] = 4, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(8257), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, - sym__automatic_semicolon, + [154993] = 4, + ACTIONS(5303), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153637] = 2, + ACTIONS(8195), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153647] = 2, + [155007] = 4, + ACTIONS(8259), 1, + sym_identifier, + STATE(3923), 1, + sym_decorator_member_expression, + STATE(5875), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, - sym__automatic_semicolon, + [155021] = 4, + ACTIONS(5130), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153657] = 2, + ACTIONS(8261), 1, + anon_sym_RBRACE, + STATE(4694), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, + [155035] = 4, + ACTIONS(5130), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153667] = 2, + ACTIONS(8263), 1, + anon_sym_RBRACE, + STATE(4694), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153677] = 2, + [155049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153687] = 2, + [155059] = 4, + ACTIONS(8265), 1, + sym_identifier, + ACTIONS(8267), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153697] = 2, + [155073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153707] = 2, + [155083] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153717] = 2, + [155093] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153727] = 2, + [155103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153737] = 2, + [155113] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153747] = 2, + [155123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153757] = 2, + [155133] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153767] = 2, + [155143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153777] = 2, + [155153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153787] = 4, - ACTIONS(2735), 1, - anon_sym_RBRACK, - ACTIONS(8196), 1, - anon_sym_COMMA, - STATE(4949), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153801] = 4, - ACTIONS(8198), 1, - anon_sym_COMMA, - ACTIONS(8200), 1, + [155163] = 4, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(8277), 1, anon_sym_RPAREN, - STATE(5014), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153815] = 4, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6607), 1, - anon_sym_PIPE, - ACTIONS(6609), 1, - anon_sym_extends, + STATE(5779), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153829] = 2, + [155177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153839] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8098), 3, - sym__automatic_semicolon, + [155187] = 4, + ACTIONS(5303), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153849] = 2, + ACTIONS(8279), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8202), 3, - sym__automatic_semicolon, + [155201] = 4, + ACTIONS(5130), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153859] = 2, + ACTIONS(8281), 1, + anon_sym_RBRACE, + STATE(4694), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, - sym__automatic_semicolon, + [155215] = 4, + ACTIONS(5130), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153869] = 2, + ACTIONS(8283), 1, + anon_sym_RBRACE, + STATE(4694), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, - sym__automatic_semicolon, + [155229] = 4, + ACTIONS(5303), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153879] = 2, + ACTIONS(8285), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, - sym__automatic_semicolon, + [155243] = 4, + ACTIONS(8287), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153889] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7089), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [153899] = 2, + ACTIONS(8290), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, - sym__automatic_semicolon, + [155257] = 4, + ACTIONS(2963), 1, + anon_sym_RBRACK, + ACTIONS(8292), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153909] = 2, + STATE(4835), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153919] = 2, + [155271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153929] = 2, + [155281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153939] = 2, + [155291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153949] = 2, + [155301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8294), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153959] = 4, - ACTIONS(3231), 1, + [155311] = 4, + ACTIONS(3223), 1, anon_sym_GT, - ACTIONS(8204), 1, + ACTIONS(8296), 1, anon_sym_COMMA, - STATE(4423), 1, + STATE(4505), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153973] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8192), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153983] = 4, + [155325] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5380), 1, + ACTIONS(5442), 1, anon_sym_RPAREN, - STATE(4644), 1, + STATE(4680), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153997] = 4, + [155339] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5380), 1, + ACTIONS(5442), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4762), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154011] = 2, + [155353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154021] = 2, + [155363] = 4, + ACTIONS(1682), 1, + anon_sym_RPAREN, + ACTIONS(8298), 1, + anon_sym_COMMA, + STATE(4826), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, - sym__automatic_semicolon, + [155377] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154031] = 2, + ACTIONS(8300), 1, + anon_sym_RPAREN, + STATE(4762), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, + [155391] = 4, + ACTIONS(5269), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154041] = 4, - ACTIONS(1034), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1610), 1, - anon_sym_LBRACE, - STATE(4034), 1, - sym_object_type, + ACTIONS(8302), 1, + anon_sym_RBRACK, + STATE(4819), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154055] = 4, - ACTIONS(1977), 1, + [155405] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - ACTIONS(8208), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + ACTIONS(8304), 1, + anon_sym_RBRACK, + STATE(4839), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154069] = 2, + [155419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154079] = 4, - ACTIONS(8210), 1, - anon_sym_COMMA, - ACTIONS(8212), 1, - anon_sym_RBRACE, - STATE(4716), 1, - aux_sym_enum_body_repeat1, + [155429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154093] = 4, - ACTIONS(1977), 1, + ACTIONS(8294), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8214), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [155439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154107] = 2, + ACTIONS(8306), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155449] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154117] = 4, - ACTIONS(2665), 1, - anon_sym_RBRACK, - ACTIONS(8216), 1, - anon_sym_COMMA, - STATE(4949), 1, - aux_sym_tuple_type_repeat1, + [155459] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154131] = 4, - ACTIONS(4588), 1, - anon_sym_LPAREN, - ACTIONS(8218), 1, - anon_sym_DOT, - STATE(2048), 1, - sym_arguments, + ACTIONS(8150), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155469] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154145] = 3, - ACTIONS(8220), 1, - anon_sym_LBRACE, + ACTIONS(8310), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7679), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [154157] = 2, + ACTIONS(8165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154167] = 4, + [155499] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5382), 1, + ACTIONS(5456), 1, anon_sym_RPAREN, - STATE(4656), 1, + STATE(4693), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154181] = 4, + [155513] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5382), 1, + ACTIONS(5456), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4762), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154195] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8098), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154205] = 4, + [155527] = 4, ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8222), 1, + ACTIONS(8312), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4762), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154219] = 2, + [155541] = 4, + ACTIONS(8314), 1, + anon_sym_COMMA, + ACTIONS(8317), 1, + anon_sym_RBRACE, + STATE(4694), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154229] = 2, + [155555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154239] = 2, + [155565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154249] = 2, + [155575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154259] = 4, - ACTIONS(1626), 1, - anon_sym_DQUOTE, - ACTIONS(1628), 1, - anon_sym_SQUOTE, - STATE(4469), 1, - sym_string, + [155585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154273] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8132), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154283] = 4, - ACTIONS(8224), 1, - anon_sym_LPAREN, - ACTIONS(8226), 1, - anon_sym_await, - STATE(36), 1, - sym__for_header, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154297] = 2, + [155595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154307] = 2, + [155605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154317] = 2, + [155615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154327] = 2, + [155625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154337] = 4, - ACTIONS(8228), 1, - anon_sym_COMMA, - ACTIONS(8230), 1, - anon_sym_GT, - STATE(5038), 1, - aux_sym_type_parameters_repeat1, + [155635] = 4, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154351] = 2, + [155649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8232), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154361] = 2, + [155659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154371] = 4, - ACTIONS(7921), 1, - anon_sym_from, - ACTIONS(8234), 1, - anon_sym_as, - STATE(5371), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154385] = 4, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(8236), 1, - sym_identifier, - STATE(4426), 1, - sym_export_clause, + [155669] = 4, + ACTIONS(8319), 1, + anon_sym_LPAREN, + ACTIONS(8321), 1, + anon_sym_await, + STATE(47), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154399] = 2, + [155683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154409] = 2, + [155693] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154419] = 2, + [155703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154429] = 2, + [155713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154439] = 2, + [155723] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154449] = 4, - ACTIONS(7881), 1, - sym_identifier, - ACTIONS(7883), 1, - anon_sym_const, - STATE(4668), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154463] = 2, + [155733] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154473] = 2, + [155743] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8323), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154483] = 4, - ACTIONS(6066), 1, - anon_sym_LPAREN, - ACTIONS(8238), 1, - anon_sym_DOT, - STATE(2936), 1, - sym_arguments, + [155753] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154497] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8082), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154507] = 3, - ACTIONS(7673), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7675), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [154519] = 4, - ACTIONS(8240), 1, + [155763] = 4, + ACTIONS(8325), 1, anon_sym_COMMA, - ACTIONS(8243), 1, - anon_sym_GT, - STATE(4684), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(8327), 1, + anon_sym_RBRACK, + STATE(4812), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154533] = 4, - ACTIONS(8245), 1, - sym_identifier, - STATE(3826), 1, - sym_decorator_member_expression, - STATE(5817), 1, - sym_decorator_call_expression, + [155777] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154547] = 4, - ACTIONS(7921), 1, + ACTIONS(8329), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155787] = 4, + ACTIONS(7916), 1, anon_sym_from, - ACTIONS(8234), 1, + ACTIONS(8331), 1, anon_sym_as, - STATE(5197), 1, + STATE(5432), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154561] = 4, - ACTIONS(8247), 1, - anon_sym_LPAREN, - ACTIONS(8249), 1, - anon_sym_await, - STATE(71), 1, - sym__for_header, + [155801] = 4, + ACTIONS(2163), 1, + anon_sym_LBRACE, + ACTIONS(8333), 1, + sym_identifier, + STATE(4435), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154575] = 4, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1534), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_object_type, + [155815] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8275), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155825] = 4, + ACTIONS(5099), 1, + anon_sym_extends, + ACTIONS(8335), 1, + anon_sym_AMP, + ACTIONS(8337), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154589] = 2, + [155839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, + ACTIONS(8329), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154599] = 2, + [155849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8339), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154609] = 2, + [155859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154619] = 4, - ACTIONS(8251), 1, - anon_sym_COMMA, - ACTIONS(8253), 1, - anon_sym_RBRACE, - STATE(4966), 1, - aux_sym_enum_body_repeat1, + [155869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154633] = 4, - ACTIONS(3229), 1, - anon_sym_GT, - ACTIONS(8255), 1, + ACTIONS(8157), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4423), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [155879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154647] = 2, + ACTIONS(8157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154657] = 2, + [155899] = 4, + ACTIONS(7924), 1, + sym_identifier, + ACTIONS(7926), 1, + anon_sym_const, + STATE(4635), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6335), 3, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LT, - [154667] = 2, + [155913] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154677] = 4, - ACTIONS(2511), 1, - anon_sym_while, - ACTIONS(8257), 1, - anon_sym_else, - STATE(854), 1, - sym_else_clause, + [155923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154691] = 4, - ACTIONS(1977), 1, + ACTIONS(8157), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8259), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [155933] = 4, + ACTIONS(3217), 1, + anon_sym_GT, + ACTIONS(8341), 1, + anon_sym_COMMA, + STATE(4505), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154705] = 2, + [155947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154715] = 4, - ACTIONS(5718), 1, - anon_sym_RPAREN, - ACTIONS(8261), 1, - anon_sym_COMMA, - STATE(4700), 1, - aux_sym_array_repeat1, + [155957] = 4, + ACTIONS(6126), 1, + anon_sym_LPAREN, + ACTIONS(8343), 1, + anon_sym_DOT, + STATE(2955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154729] = 2, + [155971] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154739] = 2, + [155981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154749] = 2, + [155991] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154759] = 2, + [156001] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154769] = 2, + [156011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154779] = 2, + [156021] = 4, + ACTIONS(8345), 1, + sym_identifier, + STATE(3819), 1, + sym_decorator_member_expression, + STATE(5773), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, - sym__automatic_semicolon, + [156035] = 4, + ACTIONS(7928), 1, + anon_sym_GT, + ACTIONS(8347), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154789] = 2, + STATE(4848), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154799] = 4, - ACTIONS(7256), 1, - anon_sym_AMP, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_extends, + [156049] = 3, + ACTIONS(8349), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154813] = 2, + ACTIONS(7737), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [156061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154823] = 2, + [156071] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8294), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154833] = 2, + [156081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8264), 3, + ACTIONS(8351), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [154843] = 4, - ACTIONS(8266), 1, anon_sym_COMMA, - ACTIONS(8268), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_enum_body_repeat1, + anon_sym_SEMI, + [156091] = 4, + ACTIONS(2163), 1, + anon_sym_LBRACE, + ACTIONS(8353), 1, + sym_identifier, + STATE(4480), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154857] = 4, - ACTIONS(7995), 1, - anon_sym_GT, - ACTIONS(8270), 1, - anon_sym_COMMA, - STATE(4684), 1, - aux_sym_type_parameters_repeat1, + [156105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154871] = 4, - ACTIONS(5060), 1, + ACTIONS(8150), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8272), 1, - anon_sym_RBRACE, - STATE(4806), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154885] = 2, + anon_sym_SEMI, + [156115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154895] = 4, - ACTIONS(8274), 1, - anon_sym_COMMA, - ACTIONS(8276), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_enum_body_repeat1, + [156125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154909] = 2, + ACTIONS(8150), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154919] = 2, + [156145] = 4, + ACTIONS(1040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1580), 1, + anon_sym_LBRACE, + STATE(4000), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + [156159] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8294), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154929] = 2, + [156169] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8357), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154939] = 2, + [156179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154949] = 4, - ACTIONS(5555), 1, + [156189] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8278), 1, - anon_sym_RBRACE, - STATE(4812), 1, - aux_sym_object_repeat1, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(4823), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154963] = 2, + [156203] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(4762), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154973] = 2, + [156217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154983] = 2, + [156227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154993] = 2, + [156237] = 4, + ACTIONS(2489), 1, + anon_sym_while, + ACTIONS(8359), 1, + anon_sym_else, + STATE(826), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155003] = 2, + [156251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155013] = 2, + [156261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155023] = 2, + [156271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155033] = 2, + [156281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155043] = 4, - ACTIONS(8280), 1, + [156291] = 4, + ACTIONS(5751), 1, + anon_sym_RPAREN, + ACTIONS(8361), 1, anon_sym_COMMA, - ACTIONS(8282), 1, - anon_sym_RBRACE, - STATE(4887), 1, - aux_sym_export_clause_repeat1, + STATE(4762), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155057] = 2, + [156305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155067] = 2, + [156315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155077] = 4, - ACTIONS(8284), 1, - sym_identifier, - ACTIONS(8286), 1, - anon_sym_LBRACK, - ACTIONS(8288), 1, - sym_private_property_identifier, + [156325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155091] = 4, - ACTIONS(5555), 1, + ACTIONS(8165), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8278), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [156335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155105] = 3, - ACTIONS(8290), 1, - anon_sym_as, + ACTIONS(8157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8292), 2, + ACTIONS(8275), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [155117] = 4, - ACTIONS(5060), 1, + anon_sym_SEMI, + [156355] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8364), 3, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(8272), 1, - anon_sym_RBRACE, - STATE(4974), 1, - aux_sym_object_pattern_repeat1, + anon_sym_implements, + [156365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155131] = 2, + ACTIONS(8150), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156375] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155141] = 2, + [156385] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155151] = 2, + [156395] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155161] = 4, - ACTIONS(8294), 1, - sym_identifier, - STATE(3842), 1, - sym_decorator_member_expression, - STATE(5812), 1, - sym_decorator_call_expression, + [156405] = 4, + ACTIONS(7444), 1, + anon_sym_AMP, + ACTIONS(7446), 1, + anon_sym_PIPE, + ACTIONS(7448), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155175] = 2, + [156419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8296), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155185] = 2, + [156429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8298), 3, + ACTIONS(8275), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [155195] = 2, + [156439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155205] = 4, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(8156), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, + [156449] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155219] = 4, - ACTIONS(5060), 1, - anon_sym_COMMA, - ACTIONS(8144), 1, - anon_sym_RBRACE, - STATE(4974), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(7271), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [156459] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155233] = 4, - ACTIONS(8300), 1, + ACTIONS(6529), 3, anon_sym_COMMA, - ACTIONS(8303), 1, anon_sym_RBRACE, - STATE(4746), 1, - aux_sym_export_clause_repeat1, + anon_sym_from, + [156469] = 3, + ACTIONS(8366), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155247] = 2, + ACTIONS(8368), 2, + anon_sym_COMMA, + anon_sym_from, + [156481] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155257] = 2, + [156491] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8305), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155267] = 2, + [156501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8307), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155277] = 2, + [156511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8309), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155287] = 2, + [156521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155297] = 2, + [156531] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155307] = 2, + [156541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(6065), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155317] = 2, + [156551] = 3, + ACTIONS(7097), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8372), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [156563] = 3, + ACTIONS(7099), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8372), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [156575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155327] = 2, + [156585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155337] = 2, + [156595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155347] = 2, + [156605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155357] = 2, + [156615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155367] = 2, + [156625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155377] = 2, + [156635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155387] = 2, + [156645] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155397] = 2, + [156655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155407] = 2, + [156665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155417] = 2, + [156675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155427] = 2, + [156685] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155437] = 2, + [156695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155447] = 2, + [156705] = 3, + ACTIONS(8378), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, - sym__automatic_semicolon, + ACTIONS(7745), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [156717] = 4, + ACTIONS(5269), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155457] = 2, + ACTIONS(8380), 1, + anon_sym_RBRACK, + STATE(4819), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155467] = 2, + [156731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155477] = 2, + [156741] = 4, + ACTIONS(3221), 1, + anon_sym_GT, + ACTIONS(8384), 1, + anon_sym_COMMA, + STATE(4505), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, - sym__automatic_semicolon, + [156755] = 4, + ACTIONS(5130), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155487] = 2, + ACTIONS(8261), 1, + anon_sym_RBRACE, + STATE(4585), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, - sym__automatic_semicolon, + [156769] = 3, + ACTIONS(7983), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8386), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155497] = 2, + anon_sym_RBRACK, + [156781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155507] = 2, + [156791] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155517] = 2, + [156801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155527] = 2, + [156811] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155537] = 2, + [156821] = 4, + ACTIONS(2815), 1, + anon_sym_RBRACK, + ACTIONS(8388), 1, + anon_sym_COMMA, + STATE(4835), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + [156835] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155547] = 2, + [156845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155557] = 2, + [156855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, + ACTIONS(8392), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155567] = 2, + [156865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155577] = 4, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1534), 1, - anon_sym_LBRACE, - STATE(851), 1, - sym_object_type, + [156875] = 4, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(8394), 1, + anon_sym_RBRACK, + STATE(4839), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155591] = 2, + [156889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155601] = 2, + [156899] = 4, + ACTIONS(5751), 1, + anon_sym_RBRACK, + ACTIONS(8396), 1, + anon_sym_COMMA, + STATE(4819), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8321), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155611] = 4, - ACTIONS(6473), 1, - anon_sym_type, - ACTIONS(8323), 1, - sym_identifier, - STATE(5329), 1, - sym__import_identifier, + [156913] = 4, + ACTIONS(1040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1580), 1, + anon_sym_LBRACE, + STATE(4073), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155625] = 4, - ACTIONS(6473), 1, - anon_sym_type, - ACTIONS(8325), 1, - sym_identifier, - STATE(5330), 1, - sym__import_identifier, + [156927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155639] = 4, - ACTIONS(8327), 1, + ACTIONS(8146), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156937] = 4, + ACTIONS(8399), 1, anon_sym_COMMA, - ACTIONS(8330), 1, + ACTIONS(8401), 1, anon_sym_RBRACE, - STATE(4785), 1, - aux_sym_named_imports_repeat1, + STATE(4855), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155653] = 2, + [156951] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(8403), 1, + anon_sym_RPAREN, + STATE(4762), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, - sym__automatic_semicolon, + [156965] = 4, + ACTIONS(8038), 1, + anon_sym_GT, + ACTIONS(8405), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155663] = 4, - ACTIONS(1550), 1, - anon_sym_DQUOTE, - ACTIONS(1552), 1, - anon_sym_SQUOTE, - STATE(5545), 1, - sym_string, + STATE(4848), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155677] = 2, + [156979] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155687] = 4, - ACTIONS(1977), 1, + [156989] = 4, + ACTIONS(8407), 1, anon_sym_COMMA, - ACTIONS(5358), 1, + ACTIONS(8410), 1, anon_sym_RPAREN, - STATE(4698), 1, - aux_sym_array_repeat1, + STATE(4826), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155701] = 4, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(5358), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + [157003] = 4, + ACTIONS(8412), 1, + anon_sym_LPAREN, + ACTIONS(8414), 1, + anon_sym_await, + STATE(62), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155715] = 2, + [157017] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155725] = 4, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(8332), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, + [157027] = 3, + ACTIONS(8416), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155739] = 2, + ACTIONS(8368), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [157039] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155749] = 2, + [157049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8418), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155759] = 2, + [157059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155769] = 2, + [157069] = 4, + ACTIONS(8420), 1, + anon_sym_COMMA, + ACTIONS(8422), 1, + anon_sym_RBRACE, + STATE(5115), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155779] = 4, - ACTIONS(2139), 1, - anon_sym_LBRACE, - ACTIONS(8334), 1, + [157083] = 4, + ACTIONS(8424), 1, sym_identifier, - STATE(4464), 1, - sym_export_clause, + ACTIONS(8426), 1, + anon_sym_require, + STATE(5117), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155793] = 2, + [157097] = 4, + ACTIONS(8428), 1, + anon_sym_COMMA, + ACTIONS(8431), 1, + anon_sym_RBRACK, + STATE(4835), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8321), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155803] = 2, + [157111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155813] = 2, + ACTIONS(8433), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [157121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155823] = 2, + [157131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155833] = 4, - ACTIONS(5060), 1, + [157141] = 4, + ACTIONS(8386), 1, + anon_sym_RBRACK, + ACTIONS(8437), 1, anon_sym_COMMA, - ACTIONS(8336), 1, - anon_sym_RBRACE, - STATE(4974), 1, - aux_sym_object_pattern_repeat1, + STATE(4839), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155847] = 2, + [157155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155857] = 2, + [157165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8440), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155867] = 2, + [157175] = 4, + ACTIONS(7924), 1, + sym_identifier, + ACTIONS(7926), 1, + anon_sym_const, + STATE(5182), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + [157189] = 3, + ACTIONS(8442), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8444), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155877] = 4, - ACTIONS(5060), 1, + [157201] = 4, + ACTIONS(8446), 1, anon_sym_COMMA, - ACTIONS(8338), 1, + ACTIONS(8448), 1, anon_sym_RBRACE, - STATE(4974), 1, - aux_sym_object_pattern_repeat1, + STATE(5016), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155891] = 2, + [157215] = 4, + ACTIONS(8450), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_RBRACE, + STATE(5016), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + [157229] = 4, + ACTIONS(2515), 1, + anon_sym_LT, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5525), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157243] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155901] = 4, - ACTIONS(6680), 1, + [157253] = 4, + ACTIONS(8458), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_GT, + STATE(4848), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157267] = 4, + ACTIONS(6723), 1, anon_sym_LPAREN, - ACTIONS(8238), 1, + ACTIONS(8463), 1, anon_sym_DOT, - STATE(2936), 1, + STATE(2955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155915] = 2, + [157281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(7608), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155925] = 4, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(8340), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, + [157291] = 4, + ACTIONS(8465), 1, + sym_identifier, + ACTIONS(8467), 1, + anon_sym_LBRACK, + ACTIONS(8469), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155939] = 2, + [157305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8471), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [155949] = 4, - ACTIONS(5555), 1, + [157315] = 4, + ACTIONS(8473), 1, anon_sym_COMMA, - ACTIONS(8342), 1, + ACTIONS(8475), 1, anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155963] = 3, - ACTIONS(8344), 1, - sym__automatic_semicolon, + STATE(5016), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [155975] = 2, + [157329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7105), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [155985] = 4, - ACTIONS(5060), 1, + ACTIONS(8165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157339] = 4, + ACTIONS(8477), 1, anon_sym_COMMA, - ACTIONS(8346), 1, + ACTIONS(8479), 1, anon_sym_RBRACE, - STATE(4974), 1, - aux_sym_object_pattern_repeat1, + STATE(5016), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155999] = 2, + [157353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156009] = 2, + [157363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(7608), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156019] = 2, + [157373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156029] = 2, + [157383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156039] = 2, + [157393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156049] = 2, + [157403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156059] = 2, + [157413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156069] = 2, + [157423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156079] = 2, + [157433] = 3, + ACTIONS(8483), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, - sym__automatic_semicolon, + ACTIONS(8485), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156089] = 2, + anon_sym_RBRACE, + [157445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [156099] = 2, + [157455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156109] = 2, + [157465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156119] = 2, + [157475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156129] = 4, - ACTIONS(3557), 1, - anon_sym_COLON, - ACTIONS(8348), 1, - anon_sym_RPAREN, - STATE(5588), 1, - sym_type_annotation, + [157485] = 4, + ACTIONS(6885), 1, + anon_sym_RBRACE, + ACTIONS(8491), 1, + anon_sym_COMMA, + STATE(4974), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156143] = 2, + [157499] = 3, + ACTIONS(8493), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8495), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [156153] = 2, + [157511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156163] = 2, + [157521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156173] = 2, + [157531] = 4, + ACTIONS(7538), 1, + anon_sym_COMMA, + ACTIONS(8497), 1, + anon_sym_LBRACE, + STATE(4505), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156183] = 2, + [157545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156193] = 2, + [157555] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156203] = 2, + [157565] = 3, + ACTIONS(7578), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156213] = 2, + ACTIONS(3686), 2, + anon_sym_in, + anon_sym_of, + [157577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156223] = 2, + [157587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156233] = 2, + [157597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156243] = 2, + [157607] = 3, + ACTIONS(4358), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, - sym__automatic_semicolon, + ACTIONS(4360), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156253] = 2, + anon_sym_LBRACE_PIPE, + [157619] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156263] = 2, + [157629] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156273] = 2, + [157639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156283] = 2, + [157649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8481), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156293] = 2, + [157659] = 3, + ACTIONS(4380), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, - sym__automatic_semicolon, + ACTIONS(4382), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156303] = 2, + anon_sym_LBRACE_PIPE, + [157671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156313] = 2, + [157681] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156323] = 2, + [157691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156333] = 2, + [157701] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156343] = 2, + [157711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156353] = 2, + [157721] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7147), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [157731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8317), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156363] = 2, + [157741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8501), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156373] = 2, + [157751] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156383] = 2, + [157761] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8501), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156393] = 2, + [157771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8503), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156403] = 2, + [157781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156413] = 2, + [157791] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156423] = 2, + [157801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156433] = 2, + [157811] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8354), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156443] = 2, + [157821] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8352), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156453] = 2, + [157831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156463] = 2, + [157841] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156473] = 2, + [157851] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8356), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156483] = 2, + [157861] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156493] = 2, + [157871] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8507), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156503] = 2, + [157881] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8356), 3, + ACTIONS(8509), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156513] = 2, + [157891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8358), 3, + ACTIONS(8501), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156523] = 2, + [157901] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156533] = 4, - ACTIONS(1688), 1, - anon_sym_RPAREN, - ACTIONS(8360), 1, - anon_sym_COMMA, - STATE(4896), 1, - aux_sym_formal_parameters_repeat1, + [157911] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156547] = 2, + ACTIONS(8511), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157921] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156557] = 2, + [157931] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, + ACTIONS(8507), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156567] = 2, + [157941] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8499), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156577] = 2, + [157951] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156587] = 2, + [157961] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156597] = 2, + [157971] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156607] = 2, + [157981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156617] = 2, + [157991] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156627] = 4, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(8238), 1, - anon_sym_DOT, - STATE(2936), 1, - sym_arguments, + [158001] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156641] = 4, - ACTIONS(5225), 1, + ACTIONS(8146), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8362), 1, - anon_sym_RBRACK, - STATE(4997), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [158011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156655] = 2, + ACTIONS(8390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8364), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156665] = 3, - ACTIONS(8366), 1, - anon_sym_as, + [158031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8368), 2, + ACTIONS(8146), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [156677] = 2, + anon_sym_SEMI, + [158041] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [156687] = 2, + [158051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8313), 3, + ACTIONS(8513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156697] = 2, + [158061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265800,4245 +267156,3753 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156707] = 2, + [158071] = 4, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + STATE(894), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8315), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156717] = 2, + [158085] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156727] = 4, - ACTIONS(6787), 1, - anon_sym_RBRACE, - ACTIONS(8372), 1, - anon_sym_COMMA, - STATE(4746), 1, - aux_sym_export_clause_repeat1, + [158095] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156741] = 2, + ACTIONS(8308), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156751] = 2, + [158115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156761] = 4, - ACTIONS(1910), 1, - anon_sym_COMMA, - ACTIONS(8374), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_array_pattern_repeat1, + [158125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156775] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, + ACTIONS(8390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7758), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [156787] = 2, + ACTIONS(8140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156797] = 2, + [158155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156807] = 2, + [158165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8378), 3, - anon_sym_LBRACE, + ACTIONS(8308), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [156817] = 2, + anon_sym_SEMI, + [158175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156827] = 4, - ACTIONS(8380), 1, - anon_sym_COMMA, - ACTIONS(8383), 1, - anon_sym_RPAREN, - STATE(4896), 1, - aux_sym_formal_parameters_repeat1, + [158185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156841] = 4, - ACTIONS(4852), 1, - anon_sym_RPAREN, - ACTIONS(8385), 1, + ACTIONS(8146), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4897), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_SEMI, + [158195] = 4, + ACTIONS(8515), 1, + anon_sym_COMMA, + ACTIONS(8517), 1, + anon_sym_RBRACE, + STATE(4845), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156855] = 2, + [158209] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156865] = 4, - ACTIONS(8390), 1, + [158219] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8392), 1, + ACTIONS(8519), 1, anon_sym_RPAREN, - STATE(4869), 1, - aux_sym_formal_parameters_repeat1, + STATE(4762), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156879] = 2, + [158233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156889] = 2, + [158243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156899] = 2, + [158253] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156909] = 2, + [158263] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156919] = 2, + [158273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, + ACTIONS(8521), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156929] = 4, - ACTIONS(7444), 1, - anon_sym_COMMA, - ACTIONS(8398), 1, - anon_sym_LBRACE, - STATE(4423), 1, - aux_sym_implements_clause_repeat1, + [158283] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156943] = 2, + ACTIONS(8140), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156953] = 2, + [158303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156963] = 4, - ACTIONS(8400), 1, - anon_sym_COMMA, - ACTIONS(8402), 1, - anon_sym_GT, - STATE(4713), 1, - aux_sym_type_parameters_repeat1, + [158313] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156977] = 2, + ACTIONS(8513), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158323] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8404), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156987] = 4, - ACTIONS(5555), 1, + [158333] = 4, + ACTIONS(5045), 1, + anon_sym_RPAREN, + ACTIONS(8523), 1, anon_sym_COMMA, - ACTIONS(8406), 1, - anon_sym_RBRACE, - STATE(4961), 1, - aux_sym_object_repeat1, + STATE(4951), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157001] = 2, + [158347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157011] = 2, + [158357] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157021] = 2, + [158367] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157031] = 2, + [158377] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157041] = 2, + [158387] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157051] = 2, + [158397] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157061] = 2, + [158407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157071] = 2, + [158417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157081] = 2, + [158427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157091] = 2, + [158437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157101] = 2, + [158447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157111] = 2, + [158457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157121] = 2, + [158467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157131] = 2, + [158477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, + ACTIONS(8532), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157141] = 4, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(8406), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157155] = 2, + [158487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8396), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157165] = 4, - ACTIONS(1910), 1, - anon_sym_COMMA, - ACTIONS(8001), 1, - anon_sym_RBRACK, - STATE(4890), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157179] = 2, + [158497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8404), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157189] = 2, + [158507] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157199] = 3, - ACTIONS(7877), 1, - anon_sym_EQ, + [158517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 2, + ACTIONS(8513), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [157211] = 2, + anon_sym_SEMI, + [158527] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157221] = 2, + [158537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157231] = 2, + [158547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157241] = 2, + [158557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157251] = 2, + [158567] = 4, + ACTIONS(8534), 1, + anon_sym_COMMA, + ACTIONS(8537), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7201), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157261] = 2, + [158581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157271] = 2, + [158591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8539), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157281] = 2, + [158601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8394), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157291] = 4, - ACTIONS(8410), 1, + [158611] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - ACTIONS(8412), 1, + ACTIONS(8132), 1, + anon_sym_RBRACK, + STATE(4817), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158625] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7265), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158635] = 4, + ACTIONS(1662), 1, anon_sym_RPAREN, - STATE(4964), 1, + ACTIONS(8541), 1, + anon_sym_COMMA, + STATE(4826), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157305] = 2, + [158649] = 4, + ACTIONS(8543), 1, + anon_sym_COMMA, + ACTIONS(8545), 1, + anon_sym_RPAREN, + STATE(4980), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8414), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157315] = 2, + [158663] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8414), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157325] = 2, + [158673] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8414), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157335] = 2, + [158683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8414), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157345] = 2, + [158693] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157355] = 2, + [158703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157365] = 4, - ACTIONS(5225), 1, - anon_sym_COMMA, - ACTIONS(5227), 1, - anon_sym_RBRACK, - STATE(4879), 1, - aux_sym_array_repeat1, + [158713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157379] = 2, + ACTIONS(8547), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158723] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157389] = 2, + [158733] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157399] = 4, - ACTIONS(8416), 1, + [158743] = 4, + ACTIONS(5269), 1, anon_sym_COMMA, - ACTIONS(8419), 1, + ACTIONS(5271), 1, anon_sym_RBRACK, - STATE(4949), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157413] = 4, - ACTIONS(3528), 1, - anon_sym_LPAREN, - ACTIONS(8421), 1, - anon_sym_DOT, - STATE(3206), 1, - sym_arguments, + STATE(4803), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157427] = 2, + [158757] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8350), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157437] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8423), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [157447] = 2, + [158767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157457] = 2, + [158777] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157467] = 4, - ACTIONS(5225), 1, + [158787] = 4, + ACTIONS(5303), 1, anon_sym_COMMA, - ACTIONS(5227), 1, - anon_sym_RBRACK, - STATE(4997), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157481] = 4, - ACTIONS(8425), 1, - anon_sym_COMMA, - ACTIONS(8427), 1, - anon_sym_RBRACK, - STATE(4620), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8549), 1, + anon_sym_RBRACE, + STATE(5034), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157495] = 2, + [158801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8429), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157505] = 4, - ACTIONS(7881), 1, - sym_identifier, - ACTIONS(7883), 1, - anon_sym_const, - STATE(5244), 1, - sym_type_parameter, + [158811] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157519] = 4, - ACTIONS(5060), 1, + ACTIONS(8308), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8431), 1, - anon_sym_RBRACE, - STATE(4974), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [158821] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157533] = 4, - ACTIONS(5555), 1, + ACTIONS(8308), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8433), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [158831] = 4, + ACTIONS(8551), 1, + sym_identifier, + ACTIONS(8553), 1, + anon_sym_LBRACK, + ACTIONS(8555), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157547] = 4, - ACTIONS(5555), 1, + [158845] = 4, + ACTIONS(5303), 1, anon_sym_COMMA, - ACTIONS(8435), 1, + ACTIONS(8549), 1, anon_sym_RBRACE, - STATE(4972), 1, + STATE(4669), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157561] = 4, - ACTIONS(8437), 1, - anon_sym_COMMA, - ACTIONS(8439), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_enum_body_repeat1, + [158859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157575] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8441), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157585] = 4, - ACTIONS(1702), 1, - anon_sym_RPAREN, - ACTIONS(8443), 1, + [158869] = 4, + ACTIONS(4933), 1, anon_sym_COMMA, - STATE(4896), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(7359), 1, + anon_sym_RPAREN, + STATE(4951), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157599] = 4, - ACTIONS(5555), 1, - anon_sym_COMMA, - ACTIONS(8445), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, + [158883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157613] = 4, - ACTIONS(8447), 1, + ACTIONS(8390), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8449), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157627] = 4, - ACTIONS(2483), 1, - anon_sym_LBRACE, - ACTIONS(8451), 1, - anon_sym_LPAREN, - STATE(809), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157641] = 2, + anon_sym_SEMI, + [158893] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157651] = 4, - ACTIONS(1910), 1, + [158903] = 4, + ACTIONS(8557), 1, anon_sym_COMMA, - ACTIONS(7879), 1, - anon_sym_RBRACK, - STATE(4990), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(8559), 1, + anon_sym_RPAREN, + STATE(5040), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157665] = 2, + [158917] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157675] = 4, - ACTIONS(5225), 1, - anon_sym_COMMA, - ACTIONS(5489), 1, - anon_sym_RBRACK, - STATE(4987), 1, - aux_sym_array_repeat1, + [158927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157689] = 4, - ACTIONS(8455), 1, + ACTIONS(8390), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8458), 1, - anon_sym_RBRACE, - STATE(4972), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [158937] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157703] = 4, - ACTIONS(8460), 1, - anon_sym_COMMA, - ACTIONS(8463), 1, - anon_sym_RBRACE, - STATE(4973), 1, - aux_sym_enum_body_repeat1, + ACTIONS(6401), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [158947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157717] = 4, - ACTIONS(8465), 1, + ACTIONS(8144), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8468), 1, - anon_sym_RBRACE, - STATE(4974), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [158957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157731] = 4, - ACTIONS(5225), 1, + ACTIONS(8561), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5489), 1, - anon_sym_RBRACK, - STATE(4997), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [158967] = 4, + ACTIONS(1596), 1, + anon_sym_DQUOTE, + ACTIONS(1598), 1, + anon_sym_SQUOTE, + STATE(4525), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157745] = 2, + [158981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8470), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [157755] = 4, - ACTIONS(1910), 1, anon_sym_COMMA, - ACTIONS(7879), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [158991] = 3, + ACTIONS(7824), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157769] = 2, + ACTIONS(7826), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [159003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8441), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157779] = 2, + [159013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8150), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157789] = 2, + [159023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5718), 3, + ACTIONS(8140), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [157799] = 4, - ACTIONS(4998), 1, - anon_sym_extends, - ACTIONS(8472), 1, - anon_sym_AMP, - ACTIONS(8474), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [159033] = 4, + ACTIONS(8563), 1, + anon_sym_COMMA, + ACTIONS(8566), 1, + anon_sym_RBRACE, + STATE(5016), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157813] = 3, - ACTIONS(7877), 1, - anon_sym_EQ, + [159047] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 2, + ACTIONS(8308), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [157825] = 2, + anon_sym_SEMI, + [159057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8478), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157835] = 3, - ACTIONS(8480), 1, - sym_identifier, + [159067] = 4, + ACTIONS(5269), 1, + anon_sym_COMMA, + ACTIONS(5271), 1, + anon_sym_RBRACK, + STATE(4819), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8482), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [157847] = 2, + [159081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157857] = 2, + [159091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157867] = 4, - ACTIONS(5225), 1, + [159101] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - ACTIONS(8484), 1, + ACTIONS(8132), 1, anon_sym_RBRACK, - STATE(4997), 1, - aux_sym_array_repeat1, + STATE(4839), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157881] = 2, + [159115] = 4, + ACTIONS(7924), 1, + sym_identifier, + ACTIONS(7926), 1, + anon_sym_const, + STATE(4606), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157891] = 3, - ACTIONS(8488), 1, - anon_sym_as, + [159129] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6475), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [157903] = 4, - ACTIONS(1910), 1, + ACTIONS(8390), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8490), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [159139] = 4, + ACTIONS(3516), 1, + anon_sym_LPAREN, + ACTIONS(8568), 1, + anon_sym_DOT, + STATE(3198), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157917] = 2, + [159153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8492), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157927] = 2, + [159163] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6475), 3, + ACTIONS(8146), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [157937] = 3, - ACTIONS(8494), 1, - anon_sym_EQ, + anon_sym_SEMI, + [159173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8088), 2, + ACTIONS(8390), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [157949] = 4, - ACTIONS(6473), 1, - anon_sym_type, - ACTIONS(8496), 1, - sym_identifier, - STATE(5462), 1, - sym__import_identifier, + anon_sym_SEMI, + [159183] = 4, + ACTIONS(2479), 1, + anon_sym_LBRACE, + ACTIONS(8570), 1, + anon_sym_LPAREN, + STATE(786), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157963] = 2, + [159197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8547), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157973] = 4, - ACTIONS(7881), 1, - sym_identifier, - ACTIONS(7883), 1, - anon_sym_const, - STATE(4908), 1, - sym_type_parameter, + [159207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157987] = 4, - ACTIONS(5718), 1, - anon_sym_RBRACK, - ACTIONS(8498), 1, + ACTIONS(8308), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4997), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [159217] = 4, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(8572), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158001] = 4, - ACTIONS(8476), 1, - anon_sym_RBRACK, - ACTIONS(8501), 1, - anon_sym_COMMA, - STATE(4998), 1, - aux_sym_array_pattern_repeat1, + [159231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158015] = 4, - ACTIONS(8504), 1, + ACTIONS(8308), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8506), 1, - anon_sym_RBRACK, - STATE(5052), 1, - aux_sym_tuple_type_repeat1, + anon_sym_SEMI, + [159241] = 4, + ACTIONS(5303), 1, + anon_sym_COMMA, + ACTIONS(8574), 1, + anon_sym_RBRACE, + STATE(4669), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158029] = 4, - ACTIONS(2499), 1, + [159255] = 4, + ACTIONS(2515), 1, anon_sym_LT, - ACTIONS(8508), 1, + ACTIONS(8576), 1, anon_sym_EQ, - STATE(5628), 1, + STATE(5668), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158043] = 4, - ACTIONS(6698), 1, - anon_sym_AMP, - ACTIONS(6702), 1, - anon_sym_extends, - ACTIONS(7557), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158057] = 2, + [159269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158067] = 3, - ACTIONS(7745), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3684), 2, - anon_sym_in, - anon_sym_of, - [158079] = 3, - ACTIONS(8510), 1, - anon_sym_as, + [159279] = 4, + ACTIONS(6851), 1, + anon_sym_implements, + ACTIONS(8578), 1, + anon_sym_LBRACE, + STATE(5768), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8088), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [158091] = 4, - ACTIONS(2499), 1, - anon_sym_LT, - ACTIONS(8512), 1, - anon_sym_EQ, - STATE(5614), 1, - sym_type_parameters, + [159293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158105] = 4, - ACTIONS(3241), 1, - anon_sym_GT, - ACTIONS(8514), 1, + ACTIONS(8308), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4423), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158119] = 2, + anon_sym_SEMI, + [159303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8478), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158129] = 4, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(5362), 1, + [159313] = 4, + ACTIONS(1680), 1, anon_sym_RPAREN, - STATE(5062), 1, - aux_sym_array_repeat1, + ACTIONS(8580), 1, + anon_sym_COMMA, + STATE(4826), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158143] = 3, - ACTIONS(8516), 1, - sym_identifier, + [159327] = 4, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(8343), 1, + anon_sym_DOT, + STATE(2955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8518), 2, + [159341] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8142), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [158155] = 2, + [159351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8520), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158165] = 4, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(5362), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + [159361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158179] = 2, + ACTIONS(8582), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8522), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158189] = 2, + [159381] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7221), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [158199] = 4, - ACTIONS(1686), 1, - anon_sym_RPAREN, - ACTIONS(8524), 1, + ACTIONS(8157), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4896), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [159391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158213] = 2, + ACTIONS(8351), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159401] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8522), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158223] = 4, - ACTIONS(3247), 1, - anon_sym_GT, - ACTIONS(8526), 1, - anon_sym_COMMA, - STATE(4423), 1, - aux_sym_implements_clause_repeat1, + [159411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158237] = 2, + ACTIONS(5751), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [159421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8528), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158247] = 4, - ACTIONS(6473), 1, - anon_sym_type, - ACTIONS(8530), 1, - sym_identifier, - STATE(5313), 1, - sym__import_identifier, + [159431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158261] = 3, - ACTIONS(7193), 1, - anon_sym_EQ, + ACTIONS(8157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159441] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3684), 2, - anon_sym_in, - anon_sym_of, - [158273] = 4, - ACTIONS(6726), 1, - anon_sym_RBRACE, - ACTIONS(8532), 1, + ACTIONS(8584), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4785), 1, - aux_sym_named_imports_repeat1, + anon_sym_SEMI, + [159451] = 4, + ACTIONS(8586), 1, + anon_sym_COMMA, + ACTIONS(8588), 1, + anon_sym_RBRACK, + STATE(5099), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158287] = 2, + [159465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6064), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158297] = 4, - ACTIONS(7095), 1, - anon_sym_AMP, - ACTIONS(7097), 1, - anon_sym_PIPE, - ACTIONS(7099), 1, - anon_sym_extends, + [159475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158311] = 4, - ACTIONS(1910), 1, + ACTIONS(8390), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8001), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158325] = 2, + anon_sym_SEMI, + [159485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8534), 3, + ACTIONS(8590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158335] = 2, + [159495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8592), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158345] = 4, - ACTIONS(4869), 1, - anon_sym_COMMA, - ACTIONS(7318), 1, - anon_sym_RPAREN, - STATE(4897), 1, - aux_sym_sequence_expression_repeat1, + [159505] = 3, + ACTIONS(7983), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158359] = 4, - ACTIONS(8536), 1, - sym_identifier, - ACTIONS(8538), 1, - anon_sym_LBRACK, - ACTIONS(8540), 1, - sym_private_property_identifier, + ACTIONS(8594), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158373] = 2, + ACTIONS(8165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159527] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158383] = 4, - ACTIONS(8542), 1, - anon_sym_COMMA, - ACTIONS(8544), 1, - anon_sym_RBRACE, - STATE(5020), 1, - aux_sym_named_imports_repeat1, + [159537] = 3, + ACTIONS(7289), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158397] = 4, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8548), 1, - anon_sym_LBRACK, - ACTIONS(8550), 1, - sym_private_property_identifier, + ACTIONS(3686), 2, + anon_sym_in, + anon_sym_of, + [159549] = 4, + ACTIONS(6760), 1, + anon_sym_AMP, + ACTIONS(6764), 1, + anon_sym_extends, + ACTIONS(7702), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158411] = 2, + [159563] = 4, + ACTIONS(7227), 1, + anon_sym_AMP, + ACTIONS(7229), 1, + anon_sym_PIPE, + ACTIONS(7231), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8552), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158421] = 4, - ACTIONS(8554), 1, - sym_identifier, - ACTIONS(8556), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_private_property_identifier, + [159577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158435] = 4, - ACTIONS(8560), 1, - sym_identifier, - ACTIONS(8562), 1, - anon_sym_LBRACK, - ACTIONS(8564), 1, - sym_private_property_identifier, + ACTIONS(8308), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159587] = 4, + ACTIONS(3243), 1, + anon_sym_GT, + ACTIONS(8596), 1, + anon_sym_COMMA, + STATE(4505), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158449] = 2, + [159601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158459] = 2, + [159611] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158469] = 2, + [159621] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8520), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158479] = 2, + [159631] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5414), 1, + anon_sym_RPAREN, + STATE(5109), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159645] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8566), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158489] = 4, - ACTIONS(7885), 1, - anon_sym_GT, - ACTIONS(8568), 1, + [159655] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - STATE(4684), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5414), 1, + anon_sym_RPAREN, + STATE(4762), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158503] = 3, - ACTIONS(7067), 1, - anon_sym_DOT, + [159669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 2, + ACTIONS(8598), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [158515] = 2, + [159679] = 4, + ACTIONS(8600), 1, + sym_identifier, + ACTIONS(8602), 1, + anon_sym_LBRACK, + ACTIONS(8604), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158525] = 3, - ACTIONS(7069), 1, - anon_sym_DOT, + [159693] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 2, + ACTIONS(8142), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [158537] = 2, + [159703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158547] = 2, + [159713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158557] = 2, + [159723] = 4, + ACTIONS(8606), 1, + sym_identifier, + ACTIONS(8608), 1, + anon_sym_LBRACK, + ACTIONS(8610), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159737] = 4, + ACTIONS(8612), 1, + sym_identifier, + ACTIONS(8614), 1, + anon_sym_LBRACK, + ACTIONS(8616), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159751] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8572), 3, + ACTIONS(8598), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158567] = 2, + [159761] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8574), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158577] = 2, + [159771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8522), 3, + ACTIONS(8618), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158587] = 2, + [159781] = 4, + ACTIONS(8620), 1, + sym_identifier, + ACTIONS(8622), 1, + anon_sym_LBRACK, + ACTIONS(8624), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8566), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158597] = 2, + [159805] = 4, + ACTIONS(8628), 1, + sym_identifier, + ACTIONS(8630), 1, + anon_sym_LBRACK, + ACTIONS(8632), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + [159819] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158607] = 2, + [159829] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8576), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158617] = 2, + [159839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158627] = 2, + [159849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158637] = 4, - ACTIONS(2833), 1, - anon_sym_RBRACK, - ACTIONS(8578), 1, - anon_sym_COMMA, - STATE(4949), 1, - aux_sym_tuple_type_repeat1, + [159859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158651] = 2, + ACTIONS(8150), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8580), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158661] = 2, + [159879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8582), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158671] = 2, + [159889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8192), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158681] = 2, + [159899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7707), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158691] = 2, + [159909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8206), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158701] = 2, + [159919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8580), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158711] = 2, + [159929] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158721] = 2, + [159939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8584), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158731] = 2, + [159949] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158741] = 4, - ACTIONS(1977), 1, + [159959] = 4, + ACTIONS(2977), 1, + anon_sym_RBRACK, + ACTIONS(8634), 1, anon_sym_COMMA, - ACTIONS(8586), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + STATE(4835), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158755] = 2, + [159973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158765] = 2, + [159983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158775] = 2, + [159993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8588), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158785] = 2, + [160003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158795] = 2, + [160013] = 4, + ACTIONS(6527), 1, + anon_sym_type, + ACTIONS(8636), 1, + sym_identifier, + STATE(5228), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158805] = 2, + [160027] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8618), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158815] = 2, + [160037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158825] = 2, + [160047] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158835] = 2, + [160057] = 4, + ACTIONS(8638), 1, + sym_identifier, + ACTIONS(8640), 1, + anon_sym_LBRACK, + ACTIONS(8642), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, - sym__automatic_semicolon, + [160071] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158845] = 2, + ACTIONS(8644), 1, + anon_sym_RPAREN, + STATE(4762), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158855] = 2, + [160085] = 4, + ACTIONS(7916), 1, + anon_sym_from, + ACTIONS(8331), 1, + anon_sym_as, + STATE(5165), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158865] = 2, + [160099] = 3, + ACTIONS(8646), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, - sym__automatic_semicolon, + ACTIONS(6529), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158875] = 3, - ACTIONS(4391), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, + [160111] = 4, + ACTIONS(6527), 1, + anon_sym_type, + ACTIONS(8648), 1, + sym_identifier, + STATE(5455), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158887] = 3, - ACTIONS(4174), 1, - anon_sym_LBRACE, + [160125] = 4, + ACTIONS(6527), 1, + anon_sym_type, + ACTIONS(8650), 1, + sym_identifier, + STATE(5474), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158899] = 2, + [160139] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8572), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158909] = 2, + [160149] = 4, + ACTIONS(6843), 1, + anon_sym_RBRACE, + ACTIONS(8652), 1, + anon_sym_COMMA, + STATE(4560), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158919] = 2, + [160163] = 3, + ACTIONS(7097), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8654), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158929] = 4, - ACTIONS(6833), 1, - anon_sym_implements, - ACTIONS(8590), 1, - anon_sym_LBRACE, - STATE(5735), 1, - sym_implements_clause, + [160175] = 3, + ACTIONS(7099), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158943] = 2, + ACTIONS(8654), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158953] = 2, + [160197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158963] = 2, + [160207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8319), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158973] = 2, + [160217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8520), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158983] = 2, + [160227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8140), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158993] = 2, + [160237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159003] = 2, + [160247] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159013] = 2, + [160257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159023] = 2, + [160267] = 4, + ACTIONS(6527), 1, + anon_sym_type, + ACTIONS(8656), 1, + sym_identifier, + STATE(5229), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159033] = 2, + [160281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159043] = 2, + [160291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159053] = 2, + [160301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159063] = 2, + [160311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159073] = 2, + [160321] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8076), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159083] = 2, + [160331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159093] = 3, - ACTIONS(8592), 1, + [160341] = 3, + ACTIONS(8658), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 2, + ACTIONS(3601), 2, anon_sym_COMMA, anon_sym_RBRACK, - [159105] = 2, + [160353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159115] = 2, + [160363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8390), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159125] = 2, + [160373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159135] = 2, + [160383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8661), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159145] = 2, + [160393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8595), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159155] = 2, + [160403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8597), 3, + ACTIONS(8663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159165] = 2, + [160413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8107), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159175] = 2, + [160423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8382), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159185] = 2, + [160433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159195] = 3, - ACTIONS(8599), 1, - anon_sym_LBRACE, + [160443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [159207] = 2, + ACTIONS(8144), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160453] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159217] = 4, - ACTIONS(1034), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1610), 1, - anon_sym_LBRACE, - STATE(3982), 1, - sym_object_type, + [160463] = 3, + ACTIONS(8665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159231] = 2, + ACTIONS(8368), 2, + anon_sym_COMMA, + anon_sym_from, + [160475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8084), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159241] = 2, + [160485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8148), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159251] = 2, + [160495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159261] = 2, + [160505] = 4, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + STATE(819), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8080), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159271] = 2, + [160519] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8167), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159281] = 2, + [160529] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159291] = 4, - ACTIONS(1977), 1, - anon_sym_COMMA, - ACTIONS(5283), 1, - anon_sym_RPAREN, - STATE(4647), 1, - aux_sym_array_repeat1, + [160539] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159305] = 4, - ACTIONS(1977), 1, + ACTIONS(8146), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5283), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [160549] = 4, + ACTIONS(8667), 1, + sym_identifier, + ACTIONS(8669), 1, + anon_sym_LBRACK, + ACTIONS(8671), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159319] = 2, + [160563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8082), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159329] = 2, + [160573] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159339] = 2, + [160583] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8098), 3, + ACTIONS(8165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159349] = 2, + [160593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8146), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159359] = 4, - ACTIONS(8601), 1, - sym_identifier, - ACTIONS(8603), 1, - anon_sym_require, - STATE(5041), 1, - sym_nested_identifier, + [160603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159373] = 2, + ACTIONS(8144), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160613] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8605), 3, + ACTIONS(8142), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159383] = 2, + [160623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8132), 3, + ACTIONS(8271), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159393] = 2, + [160633] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8605), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159403] = 2, + [160643] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7103), 3, + ACTIONS(8390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160653] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [159413] = 2, + STATE(211), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [159422] = 3, - ACTIONS(7242), 1, + [160664] = 3, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(2659), 1, - sym_statement_block, + STATE(1660), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159433] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, + [160675] = 3, + ACTIONS(8673), 1, + anon_sym_SEMI, + ACTIONS(8675), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159444] = 2, + [160686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1698), 2, + ACTIONS(5058), 2, sym__automatic_semicolon, anon_sym_SEMI, - [159453] = 3, - ACTIONS(8607), 1, - sym_identifier, - ACTIONS(8609), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159464] = 3, - ACTIONS(7242), 1, + [160695] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(2650), 1, + STATE(5470), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159475] = 2, + [160706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8611), 2, + ACTIONS(6046), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [159484] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2695), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159495] = 2, + anon_sym_RBRACE, + [160715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 2, + ACTIONS(6069), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159504] = 3, - ACTIONS(7242), 1, + [160724] = 3, + ACTIONS(8677), 1, anon_sym_LBRACE, - STATE(2662), 1, - sym_statement_block, + STATE(5471), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159515] = 3, - ACTIONS(8613), 1, - anon_sym_COMMA, - ACTIONS(8615), 1, - anon_sym_from, + [160735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159526] = 3, - ACTIONS(7242), 1, + ACTIONS(8679), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160744] = 3, + ACTIONS(4296), 1, anon_sym_LBRACE, - STATE(2696), 1, + STATE(2335), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159537] = 3, - ACTIONS(2483), 1, + [160755] = 3, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(877), 1, - sym_statement_block, + STATE(1719), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159548] = 3, - ACTIONS(7242), 1, + [160766] = 3, + ACTIONS(6913), 1, anon_sym_LBRACE, - STATE(2664), 1, - sym_statement_block, + STATE(816), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159559] = 2, + [160777] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8617), 2, - anon_sym_in, - anon_sym_of, - [159568] = 3, - ACTIONS(7242), 1, + ACTIONS(7712), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160786] = 3, + ACTIONS(8681), 1, anon_sym_LBRACE, - STATE(2674), 1, - sym_statement_block, + STATE(3948), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159579] = 3, - ACTIONS(8619), 1, - anon_sym_LBRACE, - STATE(860), 1, - sym_switch_body, + [160797] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159590] = 3, - ACTIONS(8621), 1, + ACTIONS(6073), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160806] = 3, + ACTIONS(8683), 1, sym_identifier, - ACTIONS(8623), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159601] = 3, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(4032), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159612] = 3, - ACTIONS(6732), 1, - anon_sym_LBRACE, - STATE(1691), 1, - sym_class_body, + ACTIONS(8685), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159623] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5618), 1, - sym_formal_parameters, + [160817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159634] = 2, + ACTIONS(8687), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6004), 2, + ACTIONS(6077), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159643] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2661), 1, - sym_statement_block, + [160835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159654] = 3, - ACTIONS(6732), 1, - anon_sym_LBRACE, - STATE(1689), 1, - sym_class_body, + ACTIONS(1696), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159665] = 3, - ACTIONS(4362), 1, + ACTIONS(8461), 2, + anon_sym_COMMA, + anon_sym_GT, + [160853] = 3, + ACTIONS(8689), 1, anon_sym_LBRACE, - STATE(1693), 1, - sym_statement_block, + STATE(885), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159676] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2670), 1, - sym_statement_block, + [160864] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5760), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159687] = 2, + [160875] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5699), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8625), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159696] = 3, - ACTIONS(6732), 1, - anon_sym_LBRACE, - STATE(2596), 1, - sym_class_body, + [160886] = 3, + ACTIONS(6515), 1, + anon_sym_COLON, + STATE(5137), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159707] = 3, - ACTIONS(8627), 1, + [160897] = 3, + ACTIONS(8691), 1, sym_identifier, - ACTIONS(8629), 1, + ACTIONS(8693), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159718] = 3, - ACTIONS(7242), 1, + [160908] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(2693), 1, - sym_statement_block, + STATE(235), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159729] = 3, - ACTIONS(3557), 1, - anon_sym_COLON, - STATE(5277), 1, - sym_type_annotation, + [160919] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2686), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159740] = 3, - ACTIONS(6732), 1, + [160930] = 3, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(2598), 1, + STATE(4143), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159751] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(4125), 1, - sym_formal_parameters, + [160941] = 3, + ACTIONS(6913), 1, + anon_sym_LBRACE, + STATE(869), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159762] = 2, + [160952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8631), 2, + ACTIONS(6081), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [159771] = 2, + anon_sym_RBRACE, + [160961] = 3, + ACTIONS(8695), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8633), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [159780] = 3, - ACTIONS(8635), 1, - anon_sym_SEMI, - ACTIONS(8637), 1, - sym__automatic_semicolon, + [160972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159791] = 3, - ACTIONS(8102), 1, + ACTIONS(8697), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160981] = 3, + ACTIONS(8699), 1, sym_identifier, - ACTIONS(8106), 1, + ACTIONS(8701), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159802] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5709), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159813] = 3, - ACTIONS(7242), 1, + [160992] = 3, + ACTIONS(7095), 1, anon_sym_LBRACE, - STATE(2671), 1, + STATE(795), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159824] = 3, - ACTIONS(3557), 1, - anon_sym_COLON, - STATE(5159), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159835] = 3, - ACTIONS(8639), 1, + [161003] = 3, + ACTIONS(8703), 1, sym_identifier, - ACTIONS(8641), 1, + ACTIONS(8705), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159846] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5775), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159857] = 3, - ACTIONS(8643), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym__for_header, + [161014] = 3, + ACTIONS(8707), 1, + anon_sym_COMMA, + ACTIONS(8709), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159868] = 2, + [161025] = 3, + ACTIONS(6780), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8383), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159877] = 3, - ACTIONS(7242), 1, + [161036] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - STATE(2672), 1, - sym_statement_block, + STATE(2361), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159888] = 3, - ACTIONS(6732), 1, + [161047] = 3, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(2575), 1, + STATE(796), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159899] = 2, + [161058] = 3, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(4150), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159908] = 3, - ACTIONS(8647), 1, + [161069] = 3, + ACTIONS(8711), 1, sym_identifier, - ACTIONS(8649), 1, + ACTIONS(8713), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159919] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5493), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159930] = 3, - ACTIONS(6718), 1, + [161080] = 3, + ACTIONS(8715), 1, anon_sym_LBRACE, - STATE(2246), 1, - sym_class_body, + STATE(933), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159941] = 3, - ACTIONS(8651), 1, - sym_identifier, - ACTIONS(8653), 1, - sym_private_property_identifier, + [161091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159952] = 3, - ACTIONS(7242), 1, + ACTIONS(6052), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161100] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(2691), 1, + STATE(5365), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159963] = 2, + [161111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8655), 2, + ACTIONS(6056), 2, anon_sym_COMMA, - anon_sym_GT, - [159972] = 3, - ACTIONS(6453), 1, + anon_sym_RBRACE, + [161120] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5841), 1, + STATE(5761), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159983] = 3, - ACTIONS(8657), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159994] = 3, - ACTIONS(4588), 1, - anon_sym_LPAREN, - STATE(2251), 1, - sym_arguments, + [161131] = 3, + ACTIONS(6796), 1, + anon_sym_LBRACE, + STATE(1683), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160005] = 3, - ACTIONS(8659), 1, + [161142] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(3946), 1, - sym_enum_body, + STATE(5367), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160016] = 3, - ACTIONS(6718), 1, + [161153] = 3, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(2163), 1, + STATE(4156), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160027] = 3, - ACTIONS(8661), 1, - sym_identifier, - ACTIONS(8663), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160038] = 3, - ACTIONS(7242), 1, + [161164] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2679), 1, + STATE(2670), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160049] = 3, - ACTIONS(8657), 1, + [161175] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, + STATE(5825), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160060] = 3, - ACTIONS(4362), 1, + [161186] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(1695), 1, + STATE(2671), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160071] = 3, - ACTIONS(6732), 1, + [161197] = 3, + ACTIONS(4234), 1, anon_sym_LBRACE, - STATE(1697), 1, - sym_class_body, + STATE(1727), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160082] = 3, - ACTIONS(8657), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym_parenthesized_expression, + [161208] = 3, + ACTIONS(4234), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160093] = 3, - ACTIONS(8665), 1, - sym_identifier, - ACTIONS(8667), 1, - sym_private_property_identifier, + [161219] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(3878), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160104] = 3, - ACTIONS(8669), 1, - sym_identifier, - ACTIONS(8671), 1, - sym_private_property_identifier, + [161230] = 3, + ACTIONS(4234), 1, + anon_sym_LBRACE, + STATE(1691), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160115] = 3, - ACTIONS(6853), 1, + [161241] = 3, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(4044), 1, + STATE(1705), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160126] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7347), 2, + [161252] = 3, + ACTIONS(4296), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [160135] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4530), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160144] = 2, + STATE(2338), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4534), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160153] = 2, + [161263] = 3, + ACTIONS(8715), 1, + anon_sym_LBRACE, + STATE(902), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7454), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [160162] = 3, - ACTIONS(8673), 1, + [161274] = 3, + ACTIONS(8717), 1, anon_sym_SEMI, - ACTIONS(8675), 1, + ACTIONS(8719), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160173] = 3, - ACTIONS(8677), 1, - anon_sym_LBRACE, - STATE(846), 1, - sym_enum_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160184] = 2, + [161285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7490), 2, + ACTIONS(8721), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161294] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [160193] = 3, - ACTIONS(8679), 1, - sym_identifier, - ACTIONS(8681), 1, - sym_private_property_identifier, + STATE(2339), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160204] = 3, - ACTIONS(6718), 1, + [161305] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2258), 1, - sym_class_body, + STATE(2695), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160215] = 3, - ACTIONS(7921), 1, - anon_sym_from, - STATE(5423), 1, - sym__from_clause, + [161316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160226] = 3, - ACTIONS(8683), 1, - anon_sym_SEMI, - ACTIONS(8685), 1, + ACTIONS(8723), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [161325] = 3, + ACTIONS(4234), 1, + anon_sym_LBRACE, + STATE(1722), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160237] = 3, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(4045), 1, - sym_class_body, + [161336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160248] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5505), 1, - sym_formal_parameters, + ACTIONS(8725), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160259] = 3, - ACTIONS(7921), 1, - anon_sym_from, - STATE(5457), 1, - sym__from_clause, + ACTIONS(8727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161354] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2685), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160270] = 2, + [161365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8687), 2, + ACTIONS(4550), 2, sym__automatic_semicolon, anon_sym_SEMI, - [160279] = 3, - ACTIONS(6453), 1, + [161374] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5556), 1, + STATE(4182), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160290] = 3, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(807), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160301] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5832), 1, - sym_formal_parameters, + [161385] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160312] = 3, - ACTIONS(8657), 1, - anon_sym_LPAREN, - STATE(57), 1, - sym_parenthesized_expression, + ACTIONS(8729), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160323] = 3, - ACTIONS(7242), 1, + ACTIONS(8731), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161403] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2668), 1, + STATE(2706), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160334] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2669), 1, - sym_statement_block, + [161414] = 3, + ACTIONS(8733), 1, + sym_identifier, + STATE(5117), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160345] = 2, + [161425] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6004), 2, + ACTIONS(8735), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [160354] = 3, - ACTIONS(6732), 1, + anon_sym_GT, + [161434] = 3, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(1698), 1, + STATE(798), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160365] = 3, - ACTIONS(4362), 1, - anon_sym_LBRACE, - STATE(1699), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160376] = 3, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5389), 1, - sym_statement_block, + [161445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160387] = 3, - ACTIONS(8689), 1, + ACTIONS(5215), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161454] = 3, + ACTIONS(8737), 1, sym_identifier, - STATE(5041), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160398] = 3, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(804), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160409] = 3, - ACTIONS(4362), 1, - anon_sym_LBRACE, - STATE(1700), 1, - sym_statement_block, + ACTIONS(8739), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160420] = 2, + [161465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6008), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160429] = 3, - ACTIONS(8643), 1, + ACTIONS(5217), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161474] = 3, + ACTIONS(8741), 1, anon_sym_LPAREN, - STATE(39), 1, - sym__for_header, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160440] = 3, - ACTIONS(6732), 1, - anon_sym_LBRACE, - STATE(1701), 1, - sym_class_body, + STATE(31), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160451] = 3, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(2168), 1, - sym_statement_block, + [161485] = 3, + ACTIONS(8743), 1, + anon_sym_SEMI, + ACTIONS(8745), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160462] = 2, + [161496] = 3, + ACTIONS(7610), 1, + anon_sym_in, + ACTIONS(7612), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8468), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160471] = 3, - ACTIONS(7242), 1, + [161507] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2666), 1, + STATE(2689), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160482] = 3, - ACTIONS(6718), 1, + [161518] = 3, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(2164), 1, + STATE(2567), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160493] = 3, - ACTIONS(1678), 1, + [161529] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(232), 1, + STATE(809), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160504] = 3, - ACTIONS(7065), 1, - anon_sym_LBRACE, - STATE(4371), 1, - sym_statement_block, + [161540] = 3, + ACTIONS(8747), 1, + anon_sym_in, + ACTIONS(8749), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160515] = 2, + [161551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 2, + ACTIONS(8155), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160524] = 3, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(3999), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160535] = 3, - ACTIONS(8657), 1, + [161560] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5142), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160546] = 3, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(3304), 1, + STATE(5693), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160557] = 3, - ACTIONS(6732), 1, + [161571] = 3, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(1679), 1, + STATE(4186), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160568] = 3, - ACTIONS(4362), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_statement_block, + [161582] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5803), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160579] = 3, - ACTIONS(4362), 1, - anon_sym_LBRACE, - STATE(1684), 1, - sym_statement_block, + [161593] = 3, + ACTIONS(8741), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160590] = 3, - ACTIONS(6847), 1, - anon_sym_LBRACE, - STATE(220), 1, - sym_class_body, + [161604] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5718), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160601] = 2, + [161615] = 3, + ACTIONS(8751), 1, + sym_identifier, + ACTIONS(8753), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6020), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160610] = 3, - ACTIONS(8659), 1, + [161626] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(4375), 1, - sym_enum_body, + STATE(2675), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160621] = 3, - ACTIONS(2483), 1, + [161637] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(5392), 1, + STATE(2676), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160632] = 3, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(2259), 1, - sym_statement_block, + [161648] = 3, + ACTIONS(8741), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160643] = 3, - ACTIONS(2483), 1, + [161659] = 3, + ACTIONS(6913), 1, anon_sym_LBRACE, - STATE(5433), 1, - sym_statement_block, + STATE(890), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160654] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5646), 1, - sym_formal_parameters, + [161670] = 3, + ACTIONS(8755), 1, + sym_identifier, + ACTIONS(8757), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160665] = 2, + [161681] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8243), 2, + ACTIONS(8759), 2, anon_sym_COMMA, - anon_sym_GT, - [160674] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5024), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160683] = 3, - ACTIONS(3281), 1, + anon_sym_RPAREN, + [161690] = 3, + ACTIONS(8741), 1, anon_sym_LPAREN, - STATE(3659), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160694] = 3, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(2318), 1, - sym_statement_block, + STATE(48), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160705] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5469), 1, - sym_formal_parameters, + [161701] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160716] = 3, - ACTIONS(6509), 1, - anon_sym_LPAREN, - STATE(3361), 1, - sym_formal_parameters, + ACTIONS(4622), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161710] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160727] = 3, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(2304), 1, - sym_statement_block, + ACTIONS(8761), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161719] = 3, + ACTIONS(8763), 1, + sym_identifier, + ACTIONS(8765), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160738] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5483), 1, - sym_formal_parameters, + [161730] = 3, + ACTIONS(8465), 1, + sym_identifier, + ACTIONS(8469), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160749] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5549), 1, - sym_formal_parameters, + [161741] = 3, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160760] = 3, - ACTIONS(6453), 1, + [161752] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5665), 1, + STATE(5522), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160771] = 3, - ACTIONS(8691), 1, - sym_identifier, - ACTIONS(8693), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160782] = 3, - ACTIONS(6923), 1, + [161763] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(934), 1, - sym_class_body, + STATE(2697), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160793] = 3, - ACTIONS(7242), 1, + [161774] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2692), 1, + STATE(2677), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160804] = 3, - ACTIONS(7242), 1, + [161785] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2658), 1, + STATE(2678), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160815] = 3, - ACTIONS(7921), 1, - anon_sym_from, - STATE(4289), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160826] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5996), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160835] = 2, + [161796] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 2, + ACTIONS(8771), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [160844] = 3, - ACTIONS(2483), 1, + anon_sym_RPAREN, + [161805] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(5441), 1, + STATE(2679), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160855] = 2, + [161816] = 3, + ACTIONS(7916), 1, + anon_sym_from, + STATE(5464), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160864] = 2, + [161827] = 3, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(2356), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8695), 2, - anon_sym_COMMA, - anon_sym_GT, - [160873] = 3, - ACTIONS(8697), 1, + [161838] = 3, + ACTIONS(8773), 1, sym_identifier, - ACTIONS(8699), 1, + ACTIONS(8775), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160884] = 3, - ACTIONS(7242), 1, + [161849] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2649), 1, + STATE(2680), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160895] = 3, - ACTIONS(8701), 1, - sym_identifier, - ACTIONS(8703), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160906] = 3, - ACTIONS(7242), 1, + [161860] = 3, + ACTIONS(4296), 1, anon_sym_LBRACE, - STATE(2685), 1, + STATE(2296), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160917] = 3, - ACTIONS(6718), 1, + [161871] = 3, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(2281), 1, + STATE(2610), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160928] = 3, - ACTIONS(8705), 1, - sym_identifier, - ACTIONS(8707), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160939] = 3, - ACTIONS(2483), 1, + [161882] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(745), 1, + STATE(2708), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160950] = 3, - ACTIONS(8709), 1, - sym_identifier, - ACTIONS(8711), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160961] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8713), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160970] = 3, - ACTIONS(8715), 1, - sym_identifier, - ACTIONS(8717), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160981] = 3, - ACTIONS(8719), 1, - sym_identifier, - ACTIONS(8721), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160992] = 3, - ACTIONS(8723), 1, + [161893] = 3, + ACTIONS(8777), 1, sym_identifier, - ACTIONS(8725), 1, + ACTIONS(8779), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161003] = 3, - ACTIONS(1678), 1, + [161904] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(223), 1, + STATE(2681), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161014] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8727), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161023] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8419), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161032] = 3, - ACTIONS(8729), 1, - sym_identifier, - ACTIONS(8731), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161043] = 3, - ACTIONS(8090), 1, - sym_identifier, - ACTIONS(8094), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161054] = 3, - ACTIONS(8733), 1, + [161915] = 3, + ACTIONS(8781), 1, sym_identifier, - ACTIONS(8735), 1, + ACTIONS(8783), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161065] = 3, - ACTIONS(8737), 1, - sym_identifier, - ACTIONS(8739), 1, - sym_private_property_identifier, + [161926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161076] = 3, - ACTIONS(8741), 1, + ACTIONS(8785), 2, + anon_sym_COMMA, + anon_sym_GT, + [161935] = 3, + ACTIONS(8787), 1, sym_identifier, - ACTIONS(8743), 1, + ACTIONS(8789), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161087] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5012), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161096] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8745), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161105] = 3, - ACTIONS(8284), 1, + [161946] = 3, + ACTIONS(8791), 1, sym_identifier, - ACTIONS(8288), 1, + ACTIONS(8793), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161116] = 3, - ACTIONS(6923), 1, - anon_sym_LBRACE, - STATE(890), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161127] = 3, - ACTIONS(4336), 1, + [161957] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2283), 1, + STATE(2696), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161138] = 3, - ACTIONS(8747), 1, - anon_sym_LPAREN, - STATE(785), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161149] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8749), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161158] = 3, - ACTIONS(6453), 1, + [161968] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(5757), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161169] = 3, - ACTIONS(6453), 1, + [161979] = 3, + ACTIONS(8695), 1, anon_sym_LPAREN, - STATE(5503), 1, - sym_formal_parameters, + STATE(71), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161180] = 3, - ACTIONS(4010), 1, + [161990] = 3, + ACTIONS(8741), 1, anon_sym_LPAREN, - STATE(1669), 1, - sym_arguments, + STATE(64), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161191] = 3, - ACTIONS(8751), 1, - sym_identifier, - ACTIONS(8753), 1, - sym_private_property_identifier, + [162001] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5901), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161202] = 3, - ACTIONS(2483), 1, + [162012] = 3, + ACTIONS(1676), 1, anon_sym_LBRACE, - STATE(915), 1, + STATE(214), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161213] = 3, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(4067), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161224] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6000), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161233] = 3, - ACTIONS(4010), 1, + [162023] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(1688), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161244] = 3, - ACTIONS(6847), 1, - anon_sym_LBRACE, - STATE(227), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161255] = 3, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(2180), 1, - sym_class_body, + STATE(5578), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161266] = 3, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5262), 1, - sym_statement_block, + [162034] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5585), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161277] = 3, - ACTIONS(8755), 1, + [162045] = 3, + ACTIONS(8795), 1, sym_identifier, - ACTIONS(8757), 1, + ACTIONS(8797), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161288] = 3, - ACTIONS(6847), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161299] = 3, - ACTIONS(6923), 1, - anon_sym_LBRACE, - STATE(863), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161310] = 2, + [162056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5022), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161319] = 2, + ACTIONS(8317), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162065] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5719), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7375), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [161328] = 2, + [162076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8759), 2, + ACTIONS(8290), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161337] = 3, - ACTIONS(8166), 1, + [162085] = 3, + ACTIONS(8799), 1, sym_identifier, - ACTIONS(8170), 1, + ACTIONS(8801), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161348] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7774), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161357] = 3, - ACTIONS(7065), 1, - anon_sym_LBRACE, - STATE(801), 1, - sym_statement_block, + [162096] = 3, + ACTIONS(8803), 1, + sym_identifier, + ACTIONS(8805), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161368] = 3, - ACTIONS(8761), 1, + [162107] = 3, + ACTIONS(8807), 1, sym_identifier, - ACTIONS(8763), 1, + ACTIONS(8809), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161379] = 3, - ACTIONS(6853), 1, + [162118] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(806), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161390] = 2, + STATE(5343), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8765), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161399] = 2, + [162129] = 3, + ACTIONS(6796), 1, + anon_sym_LBRACE, + STATE(2614), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8330), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161408] = 3, - ACTIONS(2483), 1, + [162140] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(5416), 1, + STATE(2688), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161419] = 2, + [162151] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2691), 1, + sym_statement_block, ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6024), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161428] = 3, - ACTIONS(8767), 1, + sym_html_comment, + sym_comment, + [162162] = 3, + ACTIONS(8811), 1, sym_identifier, - ACTIONS(8769), 1, + ACTIONS(8813), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161439] = 3, - ACTIONS(2483), 1, + [162173] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(5434), 1, - sym_statement_block, + STATE(225), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161450] = 2, + [162184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161459] = 3, - ACTIONS(8773), 1, - sym_identifier, - ACTIONS(8775), 1, - sym_private_property_identifier, + ACTIONS(7462), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [162193] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2700), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161470] = 3, - ACTIONS(8777), 1, - sym_identifier, - ACTIONS(8779), 1, - sym_private_property_identifier, + [162204] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161481] = 3, - ACTIONS(7242), 1, + ACTIONS(8815), 2, + anon_sym_in, + anon_sym_of, + [162213] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - STATE(2702), 1, - sym_statement_block, + STATE(2313), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161492] = 3, - ACTIONS(8781), 1, - sym_identifier, - ACTIONS(8783), 1, - sym_private_property_identifier, + [162224] = 3, + ACTIONS(6126), 1, + anon_sym_LPAREN, + STATE(2817), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161503] = 3, - ACTIONS(4336), 1, + [162235] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2265), 1, + STATE(2668), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161514] = 3, - ACTIONS(8785), 1, - sym_identifier, - ACTIONS(8787), 1, - sym_private_property_identifier, + [162246] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2703), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161525] = 3, - ACTIONS(6718), 1, + [162257] = 3, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(2279), 1, + STATE(2605), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161536] = 3, - ACTIONS(8789), 1, + [162268] = 3, + ACTIONS(8229), 1, sym_identifier, - ACTIONS(8791), 1, + ACTIONS(8233), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161547] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3765), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161558] = 2, + [162279] = 3, + ACTIONS(7916), 1, + anon_sym_from, + STATE(5322), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8793), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161567] = 2, + [162290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8795), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161576] = 2, + ACTIONS(4566), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 2, + ACTIONS(4574), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161585] = 3, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(2319), 1, - sym_class_body, + [162308] = 3, + ACTIONS(8817), 1, + sym_identifier, + ACTIONS(8819), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161596] = 2, + [162319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - sym__automatic_semicolon, + ACTIONS(8537), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162328] = 3, + ACTIONS(8821), 1, anon_sym_SEMI, - [161605] = 2, + ACTIONS(8823), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161614] = 3, - ACTIONS(7242), 1, + [162339] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2704), 1, + STATE(2711), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161625] = 3, - ACTIONS(7242), 1, + [162350] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2680), 1, + STATE(2701), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161636] = 3, - ACTIONS(7921), 1, - anon_sym_from, - STATE(4296), 1, - sym__from_clause, + [162361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161647] = 3, - ACTIONS(8801), 1, + ACTIONS(7464), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [162370] = 3, + ACTIONS(8825), 1, sym_identifier, - ACTIONS(8803), 1, + ACTIONS(8827), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161658] = 3, - ACTIONS(8805), 1, + [162381] = 3, + ACTIONS(8829), 1, sym_identifier, - ACTIONS(8807), 1, + ACTIONS(8831), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161669] = 3, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(2309), 1, - sym_class_body, + [162392] = 3, + ACTIONS(8833), 1, + sym_identifier, + ACTIONS(8835), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161680] = 3, - ACTIONS(6853), 1, + [162403] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(4072), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161691] = 3, - ACTIONS(7709), 1, - anon_sym_in, - ACTIONS(7711), 1, - anon_sym_of, + STATE(2714), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161702] = 3, - ACTIONS(6732), 1, - anon_sym_LBRACE, - STATE(2603), 1, - sym_class_body, + [162414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161713] = 3, - ACTIONS(6453), 1, + ACTIONS(8837), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162423] = 3, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(4277), 1, + STATE(3337), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161724] = 2, + [162434] = 3, + ACTIONS(8839), 1, + sym_identifier, + ACTIONS(8841), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161733] = 3, - ACTIONS(2483), 1, + [162445] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(5214), 1, + STATE(2682), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161744] = 3, - ACTIONS(8809), 1, - sym_identifier, - ACTIONS(8811), 1, - anon_sym_STAR, + [162456] = 3, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161755] = 2, + [162467] = 3, + ACTIONS(8843), 1, + sym_identifier, + ACTIONS(8845), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161764] = 3, - ACTIONS(2483), 1, + [162478] = 3, + ACTIONS(7095), 1, anon_sym_LBRACE, - STATE(808), 1, + STATE(792), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161775] = 3, - ACTIONS(2483), 1, + [162489] = 3, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(5221), 1, - sym_statement_block, + STATE(793), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161786] = 3, - ACTIONS(8813), 1, - sym_identifier, - STATE(4566), 1, - sym_nested_identifier, + [162500] = 3, + ACTIONS(7095), 1, + anon_sym_LBRACE, + STATE(4195), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161797] = 3, - ACTIONS(8815), 1, - sym_identifier, - ACTIONS(8817), 1, - sym_private_property_identifier, + [162511] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5439), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161808] = 3, - ACTIONS(8819), 1, + [162522] = 3, + ACTIONS(1676), 1, anon_sym_LBRACE, - STATE(5413), 1, - sym_object, + STATE(210), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161819] = 3, - ACTIONS(8821), 1, - sym_identifier, - ACTIONS(8823), 1, - sym_private_property_identifier, + [162533] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7466), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [162542] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5205), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161830] = 2, + [162553] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8825), 2, + ACTIONS(6107), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161839] = 2, + [162562] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8827), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161848] = 3, - ACTIONS(8829), 1, + [162573] = 3, + ACTIONS(8551), 1, sym_identifier, - ACTIONS(8831), 1, + ACTIONS(8555), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161859] = 3, - ACTIONS(8833), 1, - anon_sym_in, - ACTIONS(8835), 1, - anon_sym_COLON, + [162584] = 3, + ACTIONS(8847), 1, + sym_identifier, + ACTIONS(8849), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161870] = 2, + [162595] = 3, + ACTIONS(3994), 1, + anon_sym_LPAREN, + STATE(1710), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8837), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161879] = 3, - ACTIONS(4658), 1, - anon_sym_LBRACE, - STATE(2717), 1, - sym_statement_block, + [162606] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(4191), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161890] = 3, - ACTIONS(6453), 1, + [162617] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5499), 1, + STATE(5750), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161901] = 3, - ACTIONS(6853), 1, + [162628] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(4074), 1, - sym_class_body, + STATE(5207), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161912] = 3, - ACTIONS(7242), 1, + [162639] = 3, + ACTIONS(4234), 1, anon_sym_LBRACE, - STATE(2687), 1, + STATE(1702), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161923] = 3, - ACTIONS(8839), 1, + [162650] = 3, + ACTIONS(8851), 1, sym_identifier, - ACTIONS(8841), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161934] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2688), 1, - sym_statement_block, + ACTIONS(8853), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161945] = 3, - ACTIONS(4362), 1, - anon_sym_LBRACE, - STATE(1703), 1, - sym_statement_block, + [162661] = 3, + ACTIONS(8855), 1, + sym_identifier, + ACTIONS(8857), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161956] = 3, - ACTIONS(7242), 1, + [162672] = 3, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(2701), 1, - sym_statement_block, + STATE(1657), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161967] = 2, + [162683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 2, + ACTIONS(8859), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [161976] = 3, - ACTIONS(6732), 1, + anon_sym_RPAREN, + [162692] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(1704), 1, - sym_class_body, + STATE(2702), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161987] = 3, - ACTIONS(6455), 1, - anon_sym_COLON, - STATE(5101), 1, - sym_type_annotation, + [162703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161998] = 3, - ACTIONS(8843), 1, + ACTIONS(8861), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162712] = 3, + ACTIONS(8863), 1, anon_sym_SEMI, - ACTIONS(8845), 1, + ACTIONS(8865), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162009] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(3989), 1, - sym_formal_parameters, + [162723] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162020] = 3, - ACTIONS(7242), 1, + ACTIONS(8867), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162732] = 3, + ACTIONS(6879), 1, anon_sym_LBRACE, - STATE(2654), 1, - sym_statement_block, + STATE(4018), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162031] = 3, - ACTIONS(6718), 1, + [162743] = 3, + ACTIONS(8681), 1, anon_sym_LBRACE, - STATE(2185), 1, - sym_class_body, + STATE(4199), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162042] = 3, - ACTIONS(6453), 1, + [162754] = 3, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(5651), 1, + STATE(3678), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162053] = 3, - ACTIONS(4588), 1, - anon_sym_LPAREN, - STATE(2220), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162064] = 3, - ACTIONS(4336), 1, + [162765] = 3, + ACTIONS(6913), 1, anon_sym_LBRACE, - STATE(2187), 1, - sym_statement_block, + STATE(887), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162075] = 3, - ACTIONS(6453), 1, + [162776] = 3, + ACTIONS(8869), 1, anon_sym_LPAREN, - STATE(5858), 1, - sym_formal_parameters, + STATE(785), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162086] = 2, + [162787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8303), 2, + ACTIONS(6046), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162095] = 3, - ACTIONS(8536), 1, - sym_identifier, - ACTIONS(8540), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162106] = 3, - ACTIONS(7242), 1, + [162796] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(2663), 1, + STATE(5449), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162117] = 3, - ACTIONS(8847), 1, - sym_identifier, - ACTIONS(8849), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162128] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4472), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162137] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162146] = 2, + [162807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8853), 2, + ACTIONS(6069), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162155] = 3, - ACTIONS(8855), 1, - sym_identifier, - ACTIONS(8857), 1, - sym_private_property_identifier, + [162816] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2720), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162166] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5704), 1, - sym_formal_parameters, + [162827] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5458), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162177] = 3, - ACTIONS(8859), 1, - sym_identifier, - ACTIONS(8861), 1, - sym_private_property_identifier, + [162838] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2721), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162188] = 2, + [162849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6012), 2, + ACTIONS(6107), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162197] = 3, - ACTIONS(7065), 1, + [162858] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(3998), 1, + STATE(2704), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162208] = 3, - ACTIONS(2483), 1, + [162869] = 3, + ACTIONS(6796), 1, anon_sym_LBRACE, - STATE(5238), 1, + STATE(1721), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162880] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(860), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162219] = 2, + [162891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6016), 2, + ACTIONS(6122), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162228] = 3, - ACTIONS(7242), 1, + [162900] = 3, + ACTIONS(4234), 1, anon_sym_LBRACE, - STATE(2707), 1, + STATE(1724), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162239] = 3, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(792), 1, - sym_class_body, + [162911] = 3, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3745), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162250] = 3, - ACTIONS(6923), 1, - anon_sym_LBRACE, - STATE(898), 1, - sym_class_body, + [162922] = 3, + ACTIONS(8741), 1, + anon_sym_LPAREN, + STATE(5183), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162261] = 3, - ACTIONS(8863), 1, + [162933] = 3, + ACTIONS(8871), 1, sym_identifier, - ACTIONS(8865), 1, - sym_private_property_identifier, + ACTIONS(8873), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162272] = 3, - ACTIONS(6847), 1, + [162944] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - STATE(224), 1, + STATE(2125), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162283] = 3, - ACTIONS(8867), 1, - anon_sym_SEMI, - ACTIONS(8869), 1, - sym__automatic_semicolon, + [162955] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2690), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162294] = 3, - ACTIONS(7065), 1, - anon_sym_LBRACE, - STATE(796), 1, - sym_statement_block, + [162966] = 3, + ACTIONS(8875), 1, + sym_identifier, + STATE(4788), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162305] = 2, + [162977] = 3, + ACTIONS(6780), 1, + anon_sym_LBRACE, + STATE(2163), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8871), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162314] = 3, - ACTIONS(7242), 1, + [162988] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(2665), 1, + STATE(811), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162325] = 3, - ACTIONS(7242), 1, + [162999] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - STATE(2703), 1, - sym_statement_block, + STATE(2135), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162336] = 3, - ACTIONS(8873), 1, - sym_identifier, - ACTIONS(8875), 1, - anon_sym_STAR, + [163010] = 3, + ACTIONS(4234), 1, + anon_sym_LBRACE, + STATE(1658), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162347] = 3, + [163021] = 3, ACTIONS(8877), 1, sym_identifier, ACTIONS(8879), 1, @@ -270046,2911 +270910,3353 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [162358] = 3, - ACTIONS(7065), 1, + [163032] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(4007), 1, + STATE(751), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162369] = 3, - ACTIONS(7242), 1, + [163043] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2708), 1, + STATE(2705), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162380] = 3, - ACTIONS(8677), 1, + [163054] = 3, + ACTIONS(4296), 1, anon_sym_LBRACE, - STATE(907), 1, - sym_enum_body, + STATE(2165), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162391] = 3, - ACTIONS(6853), 1, + [163065] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - STATE(797), 1, + STATE(2315), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162402] = 3, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(2190), 1, - sym_class_body, + [163076] = 3, + ACTIONS(3528), 1, + anon_sym_LPAREN, + STATE(1295), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162413] = 3, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(2192), 1, - sym_statement_block, + [163087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162424] = 3, - ACTIONS(3281), 1, + ACTIONS(8386), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163096] = 3, + ACTIONS(8265), 1, + sym_identifier, + ACTIONS(8269), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163107] = 3, + ACTIONS(3994), 1, anon_sym_LPAREN, - STATE(3571), 1, - sym_formal_parameters, + STATE(1667), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162435] = 3, - ACTIONS(7242), 1, + [163118] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2710), 1, + STATE(2667), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162446] = 2, + [163129] = 3, + ACTIONS(4296), 1, + anon_sym_LBRACE, + STATE(2316), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8881), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162455] = 3, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(2197), 1, - sym_class_body, + [163140] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5560), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162466] = 3, - ACTIONS(7242), 1, + [163151] = 3, + ACTIONS(4296), 1, anon_sym_LBRACE, - STATE(2651), 1, + STATE(2285), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162477] = 2, + [163162] = 3, + ACTIONS(8881), 1, + sym_identifier, + ACTIONS(8883), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 2, + ACTIONS(8594), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162486] = 2, + [163182] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(4239), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8883), 2, - anon_sym_COMMA, - anon_sym_GT, - [162495] = 3, - ACTIONS(6718), 1, + [163193] = 3, + ACTIONS(2479), 1, anon_sym_LBRACE, - STATE(2230), 1, - sym_class_body, + STATE(5375), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162506] = 2, + [163204] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5530), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8885), 2, - anon_sym_COMMA, - anon_sym_GT, - [162515] = 2, + [163215] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 2, + ACTIONS(6103), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162524] = 3, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_statement_block, + [163224] = 3, + ACTIONS(8885), 1, + sym_identifier, + ACTIONS(8887), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162535] = 3, - ACTIONS(6853), 1, - anon_sym_LBRACE, - STATE(4091), 1, - sym_class_body, + [163235] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5680), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162546] = 3, - ACTIONS(8887), 1, - anon_sym_SEMI, + [163246] = 3, ACTIONS(8889), 1, - sym__automatic_semicolon, + sym_identifier, + ACTIONS(8891), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162557] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2712), 1, - sym_statement_block, + [163257] = 3, + ACTIONS(8893), 1, + sym_identifier, + ACTIONS(8895), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162568] = 3, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5345), 1, - sym_statement_block, + [163268] = 3, + ACTIONS(8897), 1, + sym_identifier, + ACTIONS(8899), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162579] = 3, - ACTIONS(7242), 1, + [163279] = 3, + ACTIONS(4296), 1, anon_sym_LBRACE, - STATE(2653), 1, + STATE(2317), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162590] = 3, - ACTIONS(8891), 1, + [163290] = 3, + ACTIONS(8901), 1, sym_identifier, - ACTIONS(8893), 1, + ACTIONS(8903), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162601] = 3, - ACTIONS(8895), 1, - anon_sym_SEMI, - ACTIONS(8897), 1, - sym__automatic_semicolon, + [163301] = 3, + ACTIONS(8905), 1, + sym_identifier, + ACTIONS(8907), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162612] = 3, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(2206), 1, - sym_statement_block, + [163312] = 3, + ACTIONS(8909), 1, + sym_identifier, + ACTIONS(8911), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162623] = 3, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(2194), 1, - sym_class_body, + [163323] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162634] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2690), 1, - sym_statement_block, + ACTIONS(6093), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163332] = 3, + ACTIONS(8913), 1, + sym_identifier, + ACTIONS(8915), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162645] = 3, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(5465), 1, - sym_statement_block, + [163343] = 3, + ACTIONS(3575), 1, + anon_sym_COLON, + STATE(5499), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162656] = 2, + [163354] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162665] = 2, + [163365] = 3, + ACTIONS(7095), 1, + anon_sym_LBRACE, + STATE(4263), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6000), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162674] = 3, - ACTIONS(2483), 1, + [163376] = 3, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(5348), 1, + STATE(2732), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162685] = 3, - ACTIONS(7242), 1, + [163387] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - STATE(2705), 1, - sym_statement_block, + STATE(2318), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162696] = 2, + [163398] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5744), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8899), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162705] = 3, - ACTIONS(2483), 1, + [163409] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - STATE(5316), 1, - sym_statement_block, + STATE(2141), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162716] = 3, - ACTIONS(7242), 1, + [163420] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8410), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [163429] = 3, + ACTIONS(4296), 1, anon_sym_LBRACE, - STATE(2673), 1, + STATE(2143), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162727] = 3, - ACTIONS(3514), 1, - anon_sym_LPAREN, - STATE(1287), 1, - sym_arguments, + [163440] = 3, + ACTIONS(8917), 1, + sym_identifier, + ACTIONS(8919), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162738] = 2, + [163451] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6042), 2, + ACTIONS(6089), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162747] = 3, - ACTIONS(6066), 1, - anon_sym_LPAREN, - STATE(2790), 1, - sym_arguments, + [163460] = 3, + ACTIONS(8606), 1, + sym_identifier, + ACTIONS(8610), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162758] = 3, - ACTIONS(7242), 1, + [163471] = 3, + ACTIONS(7304), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2674), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162769] = 3, - ACTIONS(8657), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, + [163482] = 3, + ACTIONS(8921), 1, + sym_identifier, + ACTIONS(8923), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162780] = 3, - ACTIONS(8657), 1, - anon_sym_LPAREN, - STATE(70), 1, - sym_parenthesized_expression, + [163493] = 3, + ACTIONS(8925), 1, + sym_identifier, + ACTIONS(8927), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162791] = 3, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(2323), 1, - sym_class_body, + [163504] = 3, + ACTIONS(8929), 1, + anon_sym_SEMI, + ACTIONS(8931), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162802] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2655), 1, - sym_statement_block, + [163515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162813] = 3, - ACTIONS(4336), 1, + ACTIONS(8933), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163524] = 3, + ACTIONS(6780), 1, anon_sym_LBRACE, - STATE(2324), 1, - sym_statement_block, + STATE(2259), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163535] = 3, + ACTIONS(8935), 1, + sym_identifier, + ACTIONS(8937), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162824] = 3, - ACTIONS(6732), 1, + [163546] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(227), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162835] = 3, - ACTIONS(4336), 1, - anon_sym_LBRACE, - STATE(2325), 1, - sym_statement_block, + [163557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162846] = 3, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(2657), 1, - sym_statement_block, + ACTIONS(8939), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163566] = 3, + ACTIONS(8941), 1, + sym_identifier, + ACTIONS(8943), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162857] = 3, - ACTIONS(6718), 1, - anon_sym_LBRACE, - STATE(2326), 1, - sym_class_body, + [163577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162868] = 3, - ACTIONS(4362), 1, - anon_sym_LBRACE, - STATE(1665), 1, - sym_statement_block, + ACTIONS(6097), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163586] = 3, + ACTIONS(8945), 1, + anon_sym_SEMI, + ACTIONS(8947), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162879] = 3, - ACTIONS(6453), 1, + [163597] = 3, + ACTIONS(6513), 1, anon_sym_LPAREN, - STATE(5654), 1, + STATE(4035), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162890] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(4322), 1, - sym_formal_parameters, + [163608] = 3, + ACTIONS(6780), 1, + anon_sym_LBRACE, + STATE(2262), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162901] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(5670), 1, - sym_formal_parameters, + [163619] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162912] = 3, - ACTIONS(8901), 1, - anon_sym_SEMI, - ACTIONS(8903), 1, - sym__automatic_semicolon, + [163630] = 3, + ACTIONS(8949), 1, + sym_identifier, + ACTIONS(8951), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162923] = 3, - ACTIONS(6453), 1, - anon_sym_LPAREN, - STATE(4326), 1, - sym_formal_parameters, + [163641] = 3, + ACTIONS(7095), 1, + anon_sym_LBRACE, + STATE(4274), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162934] = 3, - ACTIONS(6453), 1, + [163652] = 3, + ACTIONS(4650), 1, anon_sym_LPAREN, - STATE(5682), 1, - sym_formal_parameters, + STATE(2257), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162945] = 3, - ACTIONS(8905), 1, - anon_sym_SEMI, - ACTIONS(8907), 1, - sym__automatic_semicolon, + [163663] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162956] = 3, - ACTIONS(8909), 1, - anon_sym_SEMI, - ACTIONS(8911), 1, - sym__automatic_semicolon, + ACTIONS(7418), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [163672] = 3, + ACTIONS(6780), 1, + anon_sym_LBRACE, + STATE(2176), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162967] = 2, + [163683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8913), 2, + ACTIONS(6073), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162976] = 2, + [163692] = 3, + ACTIONS(6780), 1, + anon_sym_LBRACE, + STATE(2144), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162985] = 2, + [163703] = 3, + ACTIONS(4296), 1, + anon_sym_LBRACE, + STATE(2264), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162994] = 2, + [163714] = 3, + ACTIONS(4296), 1, + anon_sym_LBRACE, + STATE(2146), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163003] = 2, - ACTIONS(8915), 1, - anon_sym_EQ_GT, + [163725] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5465), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163011] = 2, - ACTIONS(8917), 1, - sym_identifier, + [163736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163019] = 2, - ACTIONS(8282), 1, - anon_sym_RBRACE, + ACTIONS(8953), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163027] = 2, - ACTIONS(8919), 1, - anon_sym_EQ_GT, + ACTIONS(8955), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163754] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163035] = 2, - ACTIONS(8921), 1, - anon_sym_RPAREN, + ACTIONS(8957), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163763] = 3, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(4071), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163043] = 2, - ACTIONS(8923), 1, - anon_sym_symbol, + [163774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163051] = 2, - ACTIONS(8925), 1, - anon_sym_EQ_GT, + ACTIONS(6077), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163059] = 2, - ACTIONS(8927), 1, - anon_sym_symbol, + ACTIONS(8959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163792] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163067] = 2, - ACTIONS(8929), 1, - anon_sym_DOT, + ACTIONS(6056), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163075] = 2, - ACTIONS(8931), 1, - anon_sym_EQ_GT, + ACTIONS(6052), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163810] = 3, + ACTIONS(8961), 1, + anon_sym_SEMI, + ACTIONS(8963), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163083] = 2, - ACTIONS(5652), 1, - anon_sym_in, + [163821] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5405), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163091] = 2, - ACTIONS(8933), 1, - anon_sym_EQ_GT, + [163832] = 3, + ACTIONS(8965), 1, + anon_sym_SEMI, + ACTIONS(8967), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163099] = 2, - ACTIONS(8935), 1, - anon_sym_EQ_GT, + [163843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163107] = 2, - ACTIONS(8937), 1, - anon_sym_EQ_GT, + ACTIONS(6081), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163852] = 3, + ACTIONS(8969), 1, + anon_sym_SEMI, + ACTIONS(8971), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163115] = 2, - ACTIONS(8939), 1, - anon_sym_EQ_GT, + [163863] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2716), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163123] = 2, - ACTIONS(8941), 1, - anon_sym_EQ_GT, + [163874] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5427), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [163885] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_statement_block, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8943), 1, - sym_regex_pattern, - [163141] = 2, - ACTIONS(8945), 1, - anon_sym_EQ_GT, + sym_comment, + [163896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163149] = 2, - ACTIONS(8118), 1, - anon_sym_RBRACK, + ACTIONS(6085), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163157] = 2, - ACTIONS(8947), 1, - sym_identifier, + ACTIONS(8973), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163914] = 3, + ACTIONS(2479), 1, + anon_sym_LBRACE, + STATE(5415), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163165] = 2, - ACTIONS(8949), 1, - anon_sym_DOT, + [163925] = 3, + ACTIONS(6780), 1, + anon_sym_LBRACE, + STATE(2147), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163173] = 2, - ACTIONS(5290), 1, - anon_sym_RBRACK, + [163936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163181] = 2, - ACTIONS(8951), 1, - anon_sym_function, + ACTIONS(8975), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163945] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163189] = 2, - ACTIONS(8953), 1, - anon_sym_EQ, + [163956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163197] = 2, - ACTIONS(8955), 1, - sym_identifier, + ACTIONS(8977), 2, + anon_sym_COMMA, + anon_sym_GT, + [163965] = 3, + ACTIONS(7916), 1, + anon_sym_from, + STATE(4383), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163205] = 2, - ACTIONS(8957), 1, - anon_sym_EQ_GT, + [163976] = 3, + ACTIONS(4296), 1, + anon_sym_LBRACE, + STATE(2178), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163213] = 2, - ACTIONS(8959), 1, - anon_sym_EQ, + [163987] = 3, + ACTIONS(6780), 1, + anon_sym_LBRACE, + STATE(2308), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163221] = 2, - ACTIONS(8961), 1, - anon_sym_EQ_GT, + [163998] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163229] = 3, - ACTIONS(3), 1, + [164009] = 3, + ACTIONS(6796), 1, + anon_sym_LBRACE, + STATE(1708), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [164020] = 3, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(4086), 1, + sym_class_body, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8963), 1, - sym_regex_pattern, - [163239] = 2, - ACTIONS(8965), 1, - sym_identifier, + sym_comment, + [164031] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163247] = 2, - ACTIONS(8967), 1, - sym_number, + [164042] = 3, + ACTIONS(6561), 1, + anon_sym_LPAREN, + STATE(3423), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163255] = 2, - ACTIONS(8969), 1, - anon_sym_RBRACK, + [164053] = 3, + ACTIONS(3575), 1, + anon_sym_COLON, + STATE(5433), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163263] = 2, - ACTIONS(5288), 1, - anon_sym_RBRACK, + [164064] = 3, + ACTIONS(7916), 1, + anon_sym_from, + STATE(4187), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163271] = 2, - ACTIONS(8971), 1, - anon_sym_EQ_GT, + [164075] = 3, + ACTIONS(8741), 1, + anon_sym_LPAREN, + STATE(60), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163279] = 2, - ACTIONS(5219), 1, - anon_sym_SEMI, + [164086] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2694), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163287] = 2, - ACTIONS(6756), 1, - anon_sym_is, + [164097] = 3, + ACTIONS(6879), 1, + anon_sym_LBRACE, + STATE(4088), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163295] = 2, - ACTIONS(8973), 1, - anon_sym_RBRACK, + [164108] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5694), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163303] = 2, - ACTIONS(8975), 1, - anon_sym_EQ_GT, + [164119] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163311] = 2, - ACTIONS(8026), 1, - anon_sym_EQ_GT, + ACTIONS(8979), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164128] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(4353), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163319] = 2, - ACTIONS(8977), 1, - anon_sym_EQ_GT, + [164139] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5710), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163327] = 2, - ACTIONS(5459), 1, - anon_sym_RPAREN, + [164150] = 3, + ACTIONS(8981), 1, + sym_identifier, + ACTIONS(8983), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163335] = 2, - ACTIONS(4734), 1, - anon_sym_in, + [164161] = 3, + ACTIONS(4296), 1, + anon_sym_LBRACE, + STATE(2185), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163343] = 2, - ACTIONS(8979), 1, - anon_sym_EQ_GT, + [164172] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(4358), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163351] = 2, - ACTIONS(8981), 1, - anon_sym_COLON, + [164183] = 3, + ACTIONS(6513), 1, + anon_sym_LPAREN, + STATE(5722), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163359] = 2, - ACTIONS(8983), 1, - anon_sym_RBRACK, + [164194] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2664), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163367] = 2, - ACTIONS(5461), 1, - anon_sym_RPAREN, + [164205] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163375] = 2, - ACTIONS(8985), 1, + ACTIONS(8985), 2, + anon_sym_COMMA, anon_sym_RBRACK, + [164214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163383] = 2, - ACTIONS(4909), 1, - anon_sym_RPAREN, + ACTIONS(8987), 2, + anon_sym_COMMA, + anon_sym_GT, + [164223] = 3, + ACTIONS(7304), 1, + anon_sym_LBRACE, + STATE(2665), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163391] = 2, - ACTIONS(8987), 1, + ACTIONS(8431), 2, + anon_sym_COMMA, anon_sym_RBRACK, + [164243] = 3, + ACTIONS(6796), 1, + anon_sym_LBRACE, + STATE(1716), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163399] = 2, - ACTIONS(8989), 1, - sym_identifier, + [164254] = 3, + ACTIONS(4234), 1, + anon_sym_LBRACE, + STATE(1709), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163407] = 2, - ACTIONS(8991), 1, + [164265] = 3, + ACTIONS(8989), 1, sym_identifier, + ACTIONS(8991), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163415] = 2, + [164276] = 2, ACTIONS(8993), 1, - sym_identifier, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163423] = 2, + [164284] = 2, ACTIONS(8995), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163431] = 2, + [164292] = 2, ACTIONS(8997), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163439] = 2, + [164300] = 2, ACTIONS(8999), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163447] = 2, - ACTIONS(9001), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [164308] = 3, + ACTIONS(3), 1, sym_comment, - [163455] = 2, - ACTIONS(7193), 1, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9001), 1, + anon_sym_SLASH2, + [164318] = 2, + ACTIONS(9003), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163463] = 2, - ACTIONS(9003), 1, - sym_number, + [164326] = 2, + ACTIONS(4146), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163471] = 2, + [164334] = 2, ACTIONS(9005), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163479] = 2, + [164342] = 2, ACTIONS(9007), 1, - anon_sym_from, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163487] = 2, - ACTIONS(9009), 1, - anon_sym_require, + [164350] = 2, + ACTIONS(5729), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163495] = 2, - ACTIONS(9011), 1, + [164358] = 2, + ACTIONS(9009), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163503] = 2, - ACTIONS(5773), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, + [164366] = 3, + ACTIONS(3), 1, sym_comment, - [163511] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9011), 1, + anon_sym_SLASH2, + [164376] = 2, ACTIONS(9013), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163519] = 2, + [164384] = 2, ACTIONS(9015), 1, - anon_sym_meta, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163527] = 2, + [164392] = 2, ACTIONS(9017), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163535] = 2, + [164400] = 2, ACTIONS(9019), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163543] = 2, + [164408] = 2, ACTIONS(9021), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163551] = 2, + [164416] = 2, ACTIONS(9023), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163559] = 2, + [164424] = 2, ACTIONS(9025), 1, - anon_sym_DOT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163567] = 2, + [164432] = 2, ACTIONS(9027), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163575] = 2, + [164440] = 2, ACTIONS(9029), 1, - sym_identifier, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163583] = 2, + [164448] = 2, ACTIONS(9031), 1, - anon_sym_new, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163591] = 2, + [164456] = 2, ACTIONS(9033), 1, - anon_sym_while, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163599] = 2, + [164464] = 2, ACTIONS(9035), 1, - anon_sym_RBRACK, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163607] = 2, + [164472] = 2, ACTIONS(9037), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163615] = 2, - ACTIONS(5296), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163623] = 2, + [164480] = 2, ACTIONS(9039), 1, - anon_sym_from, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163631] = 2, + [164488] = 2, ACTIONS(9041), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163639] = 2, + [164496] = 2, ACTIONS(9043), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163647] = 2, + [164504] = 2, ACTIONS(9045), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163655] = 2, + [164512] = 2, ACTIONS(9047), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163663] = 2, + [164520] = 2, ACTIONS(9049), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163671] = 2, + [164528] = 2, ACTIONS(9051), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163679] = 2, + [164536] = 2, ACTIONS(9053), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163687] = 2, - ACTIONS(5527), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163695] = 2, + [164544] = 2, ACTIONS(9055), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [164552] = 2, ACTIONS(9057), 1, - anon_sym_SLASH2, - [163713] = 2, - ACTIONS(9059), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163721] = 2, - ACTIONS(9061), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163729] = 2, - ACTIONS(9063), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163737] = 2, - ACTIONS(9065), 1, - anon_sym_class, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163745] = 2, - ACTIONS(9067), 1, - anon_sym_EQ_GT, + [164560] = 2, + ACTIONS(9059), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163753] = 2, - ACTIONS(9069), 1, - anon_sym_namespace, + [164568] = 2, + ACTIONS(9061), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163761] = 2, - ACTIONS(9071), 1, - anon_sym_EQ_GT, + [164576] = 2, + ACTIONS(9063), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163769] = 2, - ACTIONS(5465), 1, - anon_sym_SEMI, + [164584] = 2, + ACTIONS(9065), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163777] = 2, - ACTIONS(5529), 1, - anon_sym_RPAREN, + [164592] = 2, + ACTIONS(9067), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163785] = 2, - ACTIONS(8544), 1, - anon_sym_RBRACE, + [164600] = 2, + ACTIONS(9069), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163793] = 2, - ACTIONS(9073), 1, - anon_sym_symbol, + [164608] = 2, + ACTIONS(9071), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163801] = 2, - ACTIONS(5531), 1, - anon_sym_RPAREN, + [164616] = 2, + ACTIONS(9073), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163809] = 2, + [164624] = 2, ACTIONS(9075), 1, - anon_sym_from, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163817] = 2, + [164632] = 2, ACTIONS(9077), 1, - anon_sym_DOT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163825] = 2, + [164640] = 2, ACTIONS(9079), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163833] = 2, - ACTIONS(9081), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163841] = 2, - ACTIONS(4112), 1, - anon_sym_is, + [164648] = 2, + ACTIONS(4935), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163849] = 2, - ACTIONS(8506), 1, + [164656] = 2, + ACTIONS(9081), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163857] = 2, + [164664] = 2, ACTIONS(9083), 1, - sym_identifier, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163865] = 2, + [164672] = 2, ACTIONS(9085), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163873] = 2, - ACTIONS(5259), 1, + [164680] = 2, + ACTIONS(4911), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163881] = 2, - ACTIONS(4969), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, + [164688] = 3, + ACTIONS(3), 1, sym_comment, - [163889] = 2, - ACTIONS(9087), 1, - anon_sym_class, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [163897] = 2, + ACTIONS(9087), 1, + anon_sym_SLASH2, + [164698] = 2, ACTIONS(9089), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163905] = 2, + [164706] = 2, ACTIONS(9091), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163913] = 2, + [164714] = 2, ACTIONS(9093), 1, - anon_sym_as, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163921] = 2, + [164722] = 2, ACTIONS(9095), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163929] = 2, + [164730] = 2, ACTIONS(9097), 1, - anon_sym_namespace, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163937] = 2, - ACTIONS(5187), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163945] = 2, + [164738] = 2, ACTIONS(9099), 1, - anon_sym_RBRACK, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163953] = 2, + [164746] = 2, ACTIONS(9101), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163961] = 2, + [164754] = 2, ACTIONS(9103), 1, - anon_sym_EQ_GT, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163969] = 2, + [164762] = 2, ACTIONS(9105), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163977] = 2, + [164770] = 2, + ACTIONS(5836), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164778] = 2, ACTIONS(9107), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163985] = 2, + [164786] = 2, ACTIONS(9109), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163993] = 2, + [164794] = 2, ACTIONS(9111), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164001] = 2, + [164802] = 2, ACTIONS(9113), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164009] = 2, + [164810] = 2, ACTIONS(9115), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164017] = 2, + [164818] = 2, ACTIONS(9117), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164025] = 2, + [164826] = 2, ACTIONS(9119), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164033] = 2, + [164834] = 2, ACTIONS(9121), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164041] = 2, + [164842] = 2, ACTIONS(9123), 1, - anon_sym_as, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164049] = 2, - ACTIONS(9125), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [164850] = 3, + ACTIONS(3), 1, sym_comment, - [164057] = 2, - ACTIONS(5372), 1, - anon_sym_SEMI, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [164065] = 2, + ACTIONS(9125), 1, + sym_regex_pattern, + [164860] = 2, ACTIONS(9127), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164073] = 2, + [164868] = 2, ACTIONS(9129), 1, - sym_identifier, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164081] = 2, + [164876] = 2, ACTIONS(9131), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164089] = 2, + [164884] = 2, ACTIONS(9133), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164097] = 2, - ACTIONS(9135), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [164892] = 3, + ACTIONS(3), 1, sym_comment, - [164105] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9135), 1, + anon_sym_SLASH2, + [164902] = 2, ACTIONS(9137), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164113] = 2, + [164910] = 2, ACTIONS(9139), 1, - anon_sym_as, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164121] = 2, + [164918] = 2, ACTIONS(9141), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164129] = 2, + [164926] = 2, ACTIONS(9143), 1, - anon_sym_LBRACK, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164137] = 2, + [164934] = 2, ACTIONS(9145), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164145] = 2, + [164942] = 2, ACTIONS(9147), 1, - anon_sym_from, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164153] = 2, - ACTIONS(9149), 1, + [164950] = 2, + ACTIONS(8327), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164958] = 2, + ACTIONS(5420), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164161] = 2, + [164966] = 2, + ACTIONS(9149), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164974] = 2, ACTIONS(9151), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164169] = 2, + [164982] = 2, ACTIONS(9153), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164177] = 2, + [164990] = 2, ACTIONS(9155), 1, - anon_sym_new, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164185] = 2, + [164998] = 2, ACTIONS(9157), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164193] = 2, + [165006] = 2, ACTIONS(9159), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164201] = 2, + [165014] = 2, ACTIONS(9161), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164209] = 2, + [165022] = 2, ACTIONS(9163), 1, - anon_sym_new, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164217] = 2, + [165030] = 2, ACTIONS(9165), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164225] = 2, + [165038] = 2, ACTIONS(9167), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164233] = 2, + [165046] = 2, ACTIONS(9169), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164241] = 2, - ACTIONS(9171), 1, + [165054] = 2, + ACTIONS(4974), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164249] = 2, - ACTIONS(9173), 1, - sym_identifier, + [165062] = 2, + ACTIONS(9171), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164257] = 2, - ACTIONS(8236), 1, - sym_identifier, + [165070] = 2, + ACTIONS(9173), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164265] = 2, + [165078] = 2, ACTIONS(9175), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164273] = 2, + [165086] = 2, ACTIONS(9177), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164281] = 2, + [165094] = 2, ACTIONS(9179), 1, - anon_sym_readonly, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164289] = 2, + [165102] = 2, ACTIONS(9181), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [165110] = 2, ACTIONS(9183), 1, - sym_regex_pattern, - [164307] = 2, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165118] = 2, ACTIONS(9185), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164315] = 2, + [165126] = 2, ACTIONS(9187), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164323] = 2, - ACTIONS(9189), 1, + [165134] = 2, + ACTIONS(5583), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164331] = 2, - ACTIONS(9191), 1, - anon_sym_RPAREN, + [165142] = 2, + ACTIONS(5387), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164339] = 2, - ACTIONS(9193), 1, - anon_sym_EQ_GT, + [165150] = 2, + ACTIONS(9189), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164347] = 2, - ACTIONS(9195), 1, - anon_sym_DOT, + [165158] = 2, + ACTIONS(9191), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164355] = 2, - ACTIONS(4826), 1, - anon_sym_in, + [165166] = 2, + ACTIONS(9193), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165174] = 2, + ACTIONS(9195), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164363] = 2, + [165182] = 2, ACTIONS(9197), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164371] = 2, + [165190] = 2, ACTIONS(9199), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164379] = 2, + [165198] = 2, ACTIONS(9201), 1, - anon_sym_EQ, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164387] = 2, + [165206] = 2, ACTIONS(9203), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164395] = 2, + [165214] = 2, ACTIONS(9205), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164403] = 2, - ACTIONS(5326), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164411] = 2, + [165222] = 2, ACTIONS(9207), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164419] = 2, + [165230] = 2, ACTIONS(9209), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164427] = 2, - ACTIONS(5455), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164435] = 2, + [165238] = 2, ACTIONS(9211), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164443] = 2, + [165246] = 2, ACTIONS(9213), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164451] = 2, + [165254] = 2, ACTIONS(9215), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164459] = 2, - ACTIONS(9217), 1, - anon_sym_EQ_GT, + [165262] = 2, + ACTIONS(8578), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164467] = 2, - ACTIONS(9015), 1, - anon_sym_target, + [165270] = 2, + ACTIONS(9217), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164475] = 3, - ACTIONS(3), 1, + [165278] = 2, + ACTIONS(9219), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [165286] = 2, + ACTIONS(5585), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9219), 1, - anon_sym_SLASH2, - [164485] = 2, + sym_comment, + [165294] = 2, ACTIONS(9221), 1, - anon_sym_RBRACK, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164493] = 2, + [165302] = 2, ACTIONS(9223), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164501] = 2, + [165310] = 2, ACTIONS(9225), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164509] = 2, - ACTIONS(9227), 1, + [165318] = 2, + ACTIONS(6178), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164517] = 2, + [165326] = 2, + ACTIONS(9227), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165334] = 2, ACTIONS(9229), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [165342] = 2, ACTIONS(9231), 1, - sym_regex_pattern, - [164535] = 2, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165350] = 2, ACTIONS(9233), 1, - anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164543] = 2, + [165358] = 2, ACTIONS(9235), 1, - ts_builtin_sym_end, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165366] = 2, + ACTIONS(5247), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164551] = 2, + [165374] = 2, ACTIONS(9237), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164559] = 2, + [165382] = 2, ACTIONS(9239), 1, - anon_sym_RBRACK, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164567] = 2, + [165390] = 2, ACTIONS(9241), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164575] = 2, + [165398] = 2, ACTIONS(9243), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [165406] = 2, ACTIONS(9245), 1, - anon_sym_SLASH2, - [164593] = 2, - ACTIONS(9247), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164601] = 2, - ACTIONS(5543), 1, - anon_sym_SEMI, + [165414] = 2, + ACTIONS(9247), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164609] = 2, + [165422] = 2, ACTIONS(9249), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164617] = 2, + [165430] = 2, ACTIONS(9251), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164625] = 2, + [165438] = 2, ACTIONS(9253), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [165446] = 2, ACTIONS(9255), 1, - sym_regex_pattern, - [164643] = 2, - ACTIONS(9257), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164651] = 2, - ACTIONS(9259), 1, - anon_sym_EQ_GT, + [165454] = 2, + ACTIONS(9257), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164659] = 2, - ACTIONS(9261), 1, - anon_sym_EQ_GT, + [165462] = 2, + ACTIONS(9259), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164667] = 2, - ACTIONS(9263), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [165470] = 3, + ACTIONS(3), 1, sym_comment, - [164675] = 2, - ACTIONS(7217), 1, - anon_sym_is, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [164683] = 2, - ACTIONS(9265), 1, - anon_sym_COLON, + ACTIONS(9261), 1, + anon_sym_SLASH2, + [165480] = 2, + ACTIONS(9263), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164691] = 2, - ACTIONS(7059), 1, - anon_sym_is, + [165488] = 2, + ACTIONS(9265), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164699] = 2, + [165496] = 2, ACTIONS(9267), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164707] = 2, + [165504] = 2, ACTIONS(9269), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164715] = 2, - ACTIONS(8334), 1, - sym_identifier, + [165512] = 2, + ACTIONS(5513), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164723] = 2, - ACTIONS(4920), 1, - anon_sym_RPAREN, + [165520] = 2, + ACTIONS(9271), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164731] = 2, - ACTIONS(5545), 1, - anon_sym_SEMI, + [165528] = 2, + ACTIONS(9273), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164739] = 2, - ACTIONS(9271), 1, - anon_sym_RBRACK, + [165536] = 2, + ACTIONS(8333), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164747] = 2, - ACTIONS(9273), 1, - anon_sym_EQ_GT, + [165544] = 2, + ACTIONS(9275), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9275), 1, - anon_sym_SLASH2, - [164765] = 2, + [165552] = 2, ACTIONS(9277), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164773] = 2, + [165560] = 2, ACTIONS(9279), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164781] = 2, + [165568] = 2, ACTIONS(9281), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164789] = 2, - ACTIONS(5431), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164797] = 2, + [165576] = 2, ACTIONS(9283), 1, - anon_sym_LPAREN, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164805] = 2, + [165584] = 2, ACTIONS(9285), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164813] = 2, + [165592] = 2, ACTIONS(9287), 1, - anon_sym_from, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164821] = 2, - ACTIONS(9289), 1, + [165600] = 2, + ACTIONS(8588), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164829] = 2, + [165608] = 2, + ACTIONS(9289), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165616] = 2, ACTIONS(9291), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164837] = 2, + [165624] = 2, ACTIONS(9293), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164845] = 2, + [165632] = 2, ACTIONS(9295), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164853] = 2, + [165640] = 2, ACTIONS(9297), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164861] = 2, + [165648] = 2, ACTIONS(9299), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164869] = 2, + [165656] = 2, ACTIONS(9301), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164877] = 2, - ACTIONS(7745), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164885] = 2, + [165664] = 2, ACTIONS(9303), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164893] = 2, + [165672] = 2, ACTIONS(9305), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164901] = 2, + [165680] = 2, ACTIONS(9307), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164909] = 2, - ACTIONS(9309), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [165688] = 3, + ACTIONS(3), 1, sym_comment, - [164917] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9309), 1, + sym_regex_pattern, + [165698] = 2, ACTIONS(9311), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164925] = 2, + [165706] = 2, ACTIONS(9313), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164933] = 2, + [165714] = 2, ACTIONS(9315), 1, - anon_sym_target, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165722] = 2, + ACTIONS(5275), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164941] = 2, + [165730] = 2, ACTIONS(9317), 1, - anon_sym_RBRACK, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164949] = 2, + [165738] = 2, ACTIONS(9319), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164957] = 2, + [165746] = 2, ACTIONS(9321), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164965] = 2, + [165754] = 2, ACTIONS(9323), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164973] = 2, + [165762] = 2, ACTIONS(9325), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164981] = 2, + [165770] = 2, ACTIONS(9327), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165778] = 2, + ACTIONS(7910), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164989] = 2, + [165786] = 2, ACTIONS(9329), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164997] = 2, + [165794] = 2, ACTIONS(9331), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165005] = 2, + [165802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9333), 1, - anon_sym_RBRACK, + sym_regex_pattern, + [165812] = 2, + ACTIONS(9335), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165013] = 2, - ACTIONS(9335), 1, + [165820] = 2, + ACTIONS(9337), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165021] = 2, - ACTIONS(9337), 1, - anon_sym_RBRACK, + [165828] = 2, + ACTIONS(5424), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165029] = 2, + [165836] = 2, ACTIONS(9339), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165844] = 2, + ACTIONS(5521), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165037] = 2, + [165852] = 2, ACTIONS(9341), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165045] = 2, + [165860] = 2, ACTIONS(9343), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165053] = 2, - ACTIONS(9345), 1, - anon_sym_RBRACK, + [165868] = 2, + ACTIONS(7225), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165061] = 2, - ACTIONS(9347), 1, + [165876] = 2, + ACTIONS(5587), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165884] = 2, + ACTIONS(8219), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165069] = 2, - ACTIONS(5457), 1, - anon_sym_RPAREN, + [165892] = 2, + ACTIONS(9345), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165077] = 2, - ACTIONS(5437), 1, - anon_sym_RPAREN, + [165900] = 2, + ACTIONS(7869), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165085] = 2, - ACTIONS(6688), 1, - anon_sym_is, + [165908] = 2, + ACTIONS(9173), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165093] = 2, - ACTIONS(9349), 1, - anon_sym_RBRACK, + [165916] = 2, + ACTIONS(9347), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165101] = 2, - ACTIONS(5439), 1, - anon_sym_RPAREN, + [165924] = 2, + ACTIONS(9349), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165109] = 2, + [165932] = 2, ACTIONS(9351), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165940] = 2, + ACTIONS(5011), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165117] = 2, + [165948] = 2, ACTIONS(9353), 1, - anon_sym_RBRACK, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165125] = 2, + [165956] = 2, ACTIONS(9355), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165133] = 2, - ACTIONS(9357), 1, - anon_sym_RPAREN, + [165964] = 2, + ACTIONS(7119), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165141] = 2, - ACTIONS(9359), 1, - sym_identifier, + [165972] = 2, + ACTIONS(9357), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165149] = 2, - ACTIONS(8154), 1, - anon_sym_RBRACK, + [165980] = 2, + ACTIONS(9359), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165157] = 2, + [165988] = 2, ACTIONS(9361), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165165] = 2, + [165996] = 2, ACTIONS(9363), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165173] = 2, - ACTIONS(9365), 1, - anon_sym_LBRACE, + [166004] = 2, + ACTIONS(5589), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165181] = 2, - ACTIONS(5215), 1, - anon_sym_RPAREN, + [166012] = 2, + ACTIONS(9365), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165189] = 2, + [166020] = 2, ACTIONS(9367), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165197] = 2, - ACTIONS(9315), 1, - anon_sym_meta, + [166028] = 2, + ACTIONS(5633), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165205] = 2, + [166036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9369), 1, - sym_identifier, + sym_regex_pattern, + [166046] = 2, + ACTIONS(5043), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165213] = 2, + [166054] = 2, ACTIONS(9371), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165221] = 2, + [166062] = 2, ACTIONS(9373), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166070] = 2, + ACTIONS(5487), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166078] = 2, + ACTIONS(5525), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165229] = 2, + [166086] = 2, ACTIONS(9375), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165237] = 2, + [166094] = 2, ACTIONS(9377), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165245] = 2, + [166102] = 2, ACTIONS(9379), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165253] = 2, + [166110] = 2, ACTIONS(9381), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165261] = 2, - ACTIONS(8162), 1, + [166118] = 2, + ACTIONS(9383), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165269] = 2, - ACTIONS(4907), 1, - anon_sym_is, + [166126] = 2, + ACTIONS(9385), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165277] = 2, - ACTIONS(9383), 1, - anon_sym_from, + [166134] = 2, + ACTIONS(9387), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165285] = 2, - ACTIONS(9385), 1, + [166142] = 2, + ACTIONS(5408), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165293] = 2, - ACTIONS(7677), 1, + [166150] = 2, + ACTIONS(7578), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166158] = 2, + ACTIONS(9389), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165301] = 2, - ACTIONS(5445), 1, - anon_sym_RPAREN, + [166166] = 2, + ACTIONS(9391), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165309] = 2, - ACTIONS(5600), 1, - anon_sym_in, + [166174] = 2, + ACTIONS(9393), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165317] = 2, - ACTIONS(9387), 1, + [166182] = 2, + ACTIONS(9395), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165325] = 2, - ACTIONS(9389), 1, - anon_sym_RBRACK, + [166190] = 2, + ACTIONS(8353), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165333] = 2, - ACTIONS(9391), 1, + [166198] = 2, + ACTIONS(9397), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165341] = 2, - ACTIONS(9393), 1, + [166206] = 2, + ACTIONS(9399), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165349] = 2, - ACTIONS(9395), 1, - anon_sym_RBRACK, + [166214] = 2, + ACTIONS(4961), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165357] = 2, - ACTIONS(9397), 1, - anon_sym_EQ, + [166222] = 2, + ACTIONS(8993), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165365] = 2, - ACTIONS(9399), 1, + [166230] = 2, + ACTIONS(9401), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165373] = 2, - ACTIONS(9401), 1, - anon_sym_EQ_GT, + [166238] = 2, + ACTIONS(8205), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165381] = 2, + [166246] = 2, ACTIONS(9403), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165389] = 2, + [166254] = 2, ACTIONS(9405), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165397] = 2, + [166262] = 2, ACTIONS(9407), 1, - anon_sym_RBRACK, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166270] = 2, + ACTIONS(6593), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165405] = 2, + [166278] = 2, ACTIONS(9409), 1, - anon_sym_EQ_GT, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165413] = 2, + [166286] = 2, ACTIONS(9411), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165421] = 2, + [166294] = 2, ACTIONS(9413), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165429] = 2, + [166302] = 2, ACTIONS(9415), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165437] = 2, - ACTIONS(4948), 1, - anon_sym_in, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165445] = 2, + [166310] = 2, ACTIONS(9417), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165453] = 2, + [166318] = 2, ACTIONS(9419), 1, - sym_number, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165461] = 2, + [166326] = 2, ACTIONS(9421), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165469] = 2, + [166334] = 2, ACTIONS(9423), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165477] = 2, + [166342] = 2, + ACTIONS(5495), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166350] = 2, ACTIONS(9425), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165485] = 2, - ACTIONS(4897), 1, - anon_sym_in, + [166358] = 2, + ACTIONS(5497), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165493] = 2, + [166366] = 2, ACTIONS(9427), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165501] = 2, + [166374] = 2, ACTIONS(9429), 1, - anon_sym_EQ_GT, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165509] = 2, + [166382] = 2, ACTIONS(9431), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165517] = 2, + [166390] = 2, ACTIONS(9433), 1, - anon_sym_EQ_GT, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165525] = 2, + [166398] = 2, ACTIONS(9435), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165533] = 2, - ACTIONS(4871), 1, - anon_sym_RPAREN, + [166406] = 2, + ACTIONS(9437), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165541] = 2, - ACTIONS(9437), 1, + [166414] = 2, + ACTIONS(9439), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165549] = 2, - ACTIONS(9439), 1, - sym_identifier, + [166422] = 2, + ACTIONS(6719), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166430] = 2, + ACTIONS(7361), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165557] = 2, + [166438] = 2, ACTIONS(9441), 1, - anon_sym_EQ, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165565] = 2, + [166446] = 2, ACTIONS(9443), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165573] = 2, + [166454] = 2, ACTIONS(9445), 1, - anon_sym_symbol, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165581] = 2, + [166462] = 2, ACTIONS(9447), 1, - anon_sym_RBRACK, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165589] = 2, + [166470] = 2, ACTIONS(9449), 1, - sym_number, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165597] = 2, + [166478] = 2, ACTIONS(9451), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165605] = 2, + [166486] = 2, ACTIONS(9453), 1, - anon_sym_new, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165613] = 2, - ACTIONS(5825), 1, - anon_sym_in, + [166494] = 2, + ACTIONS(9455), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165621] = 2, - ACTIONS(9455), 1, + [166502] = 2, + ACTIONS(9457), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165629] = 2, - ACTIONS(8590), 1, - anon_sym_LBRACE, + [166510] = 2, + ACTIONS(5894), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165637] = 2, - ACTIONS(9457), 1, - sym_identifier, + [166518] = 2, + ACTIONS(5690), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165645] = 2, + [166526] = 2, ACTIONS(9459), 1, - anon_sym_RBRACK, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165653] = 2, + [166534] = 2, ACTIONS(9461), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165661] = 2, + [166542] = 2, ACTIONS(9463), 1, - anon_sym_DOT, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166550] = 2, + ACTIONS(5505), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165669] = 2, + [166558] = 2, ACTIONS(9465), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165677] = 2, + [166566] = 2, ACTIONS(9467), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165685] = 2, + [166574] = 2, ACTIONS(9469), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165693] = 2, + [166582] = 2, ACTIONS(9471), 1, - anon_sym_EQ_GT, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [166590] = 2, ACTIONS(9473), 1, - anon_sym_SLASH2, - [165711] = 2, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166598] = 2, ACTIONS(9475), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166606] = 2, + ACTIONS(8199), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165719] = 2, + [166614] = 2, ACTIONS(9477), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165727] = 2, + [166622] = 2, ACTIONS(9479), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165735] = 2, + [166630] = 2, ACTIONS(9481), 1, - anon_sym_new, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165743] = 2, + [166638] = 2, ACTIONS(9483), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165751] = 2, + [166646] = 2, ACTIONS(9485), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165759] = 2, + [166654] = 2, ACTIONS(9487), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165767] = 2, + [166662] = 2, ACTIONS(9489), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165775] = 2, + [166670] = 2, ACTIONS(9491), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165783] = 2, + [166678] = 2, ACTIONS(9493), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165791] = 2, - ACTIONS(7422), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165799] = 2, + [166686] = 2, ACTIONS(9495), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165807] = 2, + [166694] = 2, ACTIONS(9497), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165815] = 2, + [166702] = 2, ACTIONS(9499), 1, - anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166710] = 2, + ACTIONS(4866), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165823] = 2, + [166718] = 2, ACTIONS(9501), 1, - anon_sym_new, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165831] = 2, - ACTIONS(7377), 1, - anon_sym_RPAREN, + [166726] = 2, + ACTIONS(5404), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165839] = 2, + [166734] = 2, ACTIONS(9503), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165847] = 2, + [166742] = 2, ACTIONS(9505), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165855] = 2, + [166750] = 2, ACTIONS(9507), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165863] = 2, + [166758] = 2, ACTIONS(9509), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165871] = 2, + [166766] = 2, ACTIONS(9511), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165879] = 2, + [166774] = 2, ACTIONS(9513), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165887] = 2, + [166782] = 2, ACTIONS(9515), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165895] = 2, - ACTIONS(6104), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165903] = 2, + [166790] = 2, ACTIONS(9517), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165911] = 2, + [166798] = 2, ACTIONS(9519), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165919] = 2, + [166806] = 2, ACTIONS(9521), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165927] = 2, + [166814] = 2, ACTIONS(9523), 1, - anon_sym_EQ_GT, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165935] = 2, + [166822] = 2, ACTIONS(9525), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165943] = 2, + [166830] = 2, ACTIONS(9527), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165951] = 2, + [166838] = 2, ACTIONS(9529), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165959] = 2, + [166846] = 2, ACTIONS(9531), 1, - anon_sym_symbol, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165967] = 2, - ACTIONS(9533), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165975] = 2, - ACTIONS(5370), 1, - anon_sym_RBRACK, + [166854] = 2, + ACTIONS(9533), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165983] = 2, + [166862] = 2, ACTIONS(9535), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165991] = 2, - ACTIONS(5401), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165999] = 2, - ACTIONS(7817), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166007] = 2, + [166870] = 2, ACTIONS(9537), 1, - anon_sym_function, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166015] = 2, + [166878] = 2, ACTIONS(9539), 1, - anon_sym_EQ_GT, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166023] = 2, + [166886] = 2, ACTIONS(9541), 1, - anon_sym_EQ_GT, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166031] = 2, + [166894] = 2, ACTIONS(9543), 1, - anon_sym_new, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166039] = 2, - ACTIONS(9545), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166047] = 2, - ACTIONS(8615), 1, + [166902] = 2, + ACTIONS(9545), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166055] = 2, + [166910] = 2, ACTIONS(9547), 1, - anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166063] = 2, + [166918] = 2, ACTIONS(9549), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166071] = 2, + [166926] = 2, ACTIONS(9551), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166079] = 2, + [166934] = 2, ACTIONS(9553), 1, - sym_identifier, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166087] = 2, - ACTIONS(5519), 1, - anon_sym_SEMI, + [166942] = 2, + ACTIONS(9555), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166095] = 2, - ACTIONS(9555), 1, - sym_identifier, + [166950] = 2, + ACTIONS(5523), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166103] = 2, + [166958] = 2, ACTIONS(9557), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166111] = 2, + [166966] = 2, ACTIONS(9559), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166119] = 2, - ACTIONS(8427), 1, - anon_sym_RBRACK, + [166974] = 2, + ACTIONS(6820), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166127] = 2, + [166982] = 2, ACTIONS(9561), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166135] = 2, + [166990] = 2, ACTIONS(9563), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166143] = 2, + [166998] = 2, ACTIONS(9565), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166151] = 2, + [167006] = 2, ACTIONS(9567), 1, - sym_identifier, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166159] = 2, + [167014] = 2, ACTIONS(9569), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166167] = 2, + [167022] = 2, ACTIONS(9571), 1, - anon_sym_EQ_GT, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166175] = 2, + [167030] = 2, ACTIONS(9573), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167038] = 2, + ACTIONS(9575), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166183] = 2, - ACTIONS(6487), 1, - anon_sym_is, + [167046] = 2, + ACTIONS(9577), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166191] = 2, - ACTIONS(9575), 1, + [167054] = 2, + ACTIONS(9579), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166199] = 2, - ACTIONS(9577), 1, + [167062] = 2, + ACTIONS(9581), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167070] = 2, + ACTIONS(9583), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167078] = 2, + ACTIONS(9585), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167086] = 2, + ACTIONS(9587), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167094] = 2, + ACTIONS(9589), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167102] = 2, + ACTIONS(9591), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167110] = 2, + ACTIONS(9593), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167118] = 2, + ACTIONS(8422), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167126] = 2, + ACTIONS(9595), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166207] = 2, - ACTIONS(9579), 1, + [167134] = 2, + ACTIONS(9597), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167142] = 2, + ACTIONS(9599), 1, + anon_sym_function, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167150] = 2, + ACTIONS(9601), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167158] = 2, + ACTIONS(7289), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167166] = 2, + ACTIONS(9603), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167174] = 2, + ACTIONS(9605), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167182] = 2, + ACTIONS(9607), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167190] = 2, + ACTIONS(9609), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167198] = 2, + ACTIONS(5428), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167206] = 2, + ACTIONS(8171), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166215] = 2, - ACTIONS(9581), 1, + [167214] = 2, + ACTIONS(9611), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167222] = 2, + ACTIONS(5430), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167230] = 2, + ACTIONS(8709), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167238] = 2, + ACTIONS(9613), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167246] = 2, + ACTIONS(7552), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167254] = 2, + ACTIONS(9615), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167262] = 2, + ACTIONS(9617), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167270] = 2, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167278] = 2, + ACTIONS(9619), 1, + anon_sym_function, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167286] = 2, + ACTIONS(9621), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167294] = 2, + ACTIONS(9623), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167302] = 2, + ACTIONS(9625), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166223] = 2, - ACTIONS(9583), 1, + [167310] = 2, + ACTIONS(9627), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167318] = 2, + ACTIONS(5402), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166231] = 2, - ACTIONS(9585), 1, + [167326] = 2, + ACTIONS(5323), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167334] = 2, + ACTIONS(9629), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167342] = 2, + ACTIONS(9631), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167350] = 2, + ACTIONS(9633), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167358] = 2, + ACTIONS(5639), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167366] = 2, + ACTIONS(9635), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167374] = 2, + ACTIONS(4989), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167382] = 2, + ACTIONS(9637), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167390] = 2, + ACTIONS(5426), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167398] = 2, + ACTIONS(9639), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167406] = 2, + ACTIONS(9641), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9643), 1, + sym_regex_pattern, + [167424] = 2, + ACTIONS(9645), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167432] = 2, + ACTIONS(4700), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167440] = 2, + ACTIONS(9647), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167448] = 2, + ACTIONS(9649), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167456] = 2, + ACTIONS(9651), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167464] = 2, + ACTIONS(9653), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167472] = 2, + ACTIONS(9655), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167480] = 2, + ACTIONS(9657), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166239] = 2, - ACTIONS(9587), 1, + [167488] = 2, + ACTIONS(9659), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167496] = 2, + ACTIONS(9661), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167504] = 2, + ACTIONS(9663), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166247] = 2, - ACTIONS(9589), 1, + [167512] = 2, + ACTIONS(9665), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167520] = 2, + ACTIONS(9667), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, @@ -272958,4683 +274264,4721 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1193)] = 0, - [SMALL_STATE(1194)] = 93, - [SMALL_STATE(1195)] = 186, - [SMALL_STATE(1196)] = 281, - [SMALL_STATE(1197)] = 374, - [SMALL_STATE(1198)] = 445, - [SMALL_STATE(1199)] = 516, - [SMALL_STATE(1200)] = 587, - [SMALL_STATE(1201)] = 658, - [SMALL_STATE(1202)] = 747, - [SMALL_STATE(1203)] = 820, - [SMALL_STATE(1204)] = 913, - [SMALL_STATE(1205)] = 1004, - [SMALL_STATE(1206)] = 1077, - [SMALL_STATE(1207)] = 1148, - [SMALL_STATE(1208)] = 1219, - [SMALL_STATE(1209)] = 1308, - [SMALL_STATE(1210)] = 1397, - [SMALL_STATE(1211)] = 1488, - [SMALL_STATE(1212)] = 1577, - [SMALL_STATE(1213)] = 1648, - [SMALL_STATE(1214)] = 1722, - [SMALL_STATE(1215)] = 1812, - [SMALL_STATE(1216)] = 1902, - [SMALL_STATE(1217)] = 1992, - [SMALL_STATE(1218)] = 2062, - [SMALL_STATE(1219)] = 2150, - [SMALL_STATE(1220)] = 2220, - [SMALL_STATE(1221)] = 2308, - [SMALL_STATE(1222)] = 2394, - [SMALL_STATE(1223)] = 2480, - [SMALL_STATE(1224)] = 2572, - [SMALL_STATE(1225)] = 2660, - [SMALL_STATE(1226)] = 2750, - [SMALL_STATE(1227)] = 2838, - [SMALL_STATE(1228)] = 2928, - [SMALL_STATE(1229)] = 3018, - [SMALL_STATE(1230)] = 3110, - [SMALL_STATE(1231)] = 3198, - [SMALL_STATE(1232)] = 3290, - [SMALL_STATE(1233)] = 3380, - [SMALL_STATE(1234)] = 3470, - [SMALL_STATE(1235)] = 3557, - [SMALL_STATE(1236)] = 3644, - [SMALL_STATE(1237)] = 3731, - [SMALL_STATE(1238)] = 3818, - [SMALL_STATE(1239)] = 3905, - [SMALL_STATE(1240)] = 3992, - [SMALL_STATE(1241)] = 4079, - [SMALL_STATE(1242)] = 4174, - [SMALL_STATE(1243)] = 4263, - [SMALL_STATE(1244)] = 4354, - [SMALL_STATE(1245)] = 4445, - [SMALL_STATE(1246)] = 4534, - [SMALL_STATE(1247)] = 4613, - [SMALL_STATE(1248)] = 4704, - [SMALL_STATE(1249)] = 4790, - [SMALL_STATE(1250)] = 4880, - [SMALL_STATE(1251)] = 4966, - [SMALL_STATE(1252)] = 5052, - [SMALL_STATE(1253)] = 5130, - [SMALL_STATE(1254)] = 5216, - [SMALL_STATE(1255)] = 5306, - [SMALL_STATE(1256)] = 5392, - [SMALL_STATE(1257)] = 5478, - [SMALL_STATE(1258)] = 5564, - [SMALL_STATE(1259)] = 5654, - [SMALL_STATE(1260)] = 5740, - [SMALL_STATE(1261)] = 5818, - [SMALL_STATE(1262)] = 5908, - [SMALL_STATE(1263)] = 5988, - [SMALL_STATE(1264)] = 6078, - [SMALL_STATE(1265)] = 6170, - [SMALL_STATE(1266)] = 6248, - [SMALL_STATE(1267)] = 6334, - [SMALL_STATE(1268)] = 6420, - [SMALL_STATE(1269)] = 6506, - [SMALL_STATE(1270)] = 6580, - [SMALL_STATE(1271)] = 6666, - [SMALL_STATE(1272)] = 6752, - [SMALL_STATE(1273)] = 6820, - [SMALL_STATE(1274)] = 6898, - [SMALL_STATE(1275)] = 6984, - [SMALL_STATE(1276)] = 7076, - [SMALL_STATE(1277)] = 7156, - [SMALL_STATE(1278)] = 7229, - [SMALL_STATE(1279)] = 7304, - [SMALL_STATE(1280)] = 7393, - [SMALL_STATE(1281)] = 7480, - [SMALL_STATE(1282)] = 7569, - [SMALL_STATE(1283)] = 7638, - [SMALL_STATE(1284)] = 7727, - [SMALL_STATE(1285)] = 7796, - [SMALL_STATE(1286)] = 7873, - [SMALL_STATE(1287)] = 7956, - [SMALL_STATE(1288)] = 8023, - [SMALL_STATE(1289)] = 8090, - [SMALL_STATE(1290)] = 8175, - [SMALL_STATE(1291)] = 8244, - [SMALL_STATE(1292)] = 8313, - [SMALL_STATE(1293)] = 8390, - [SMALL_STATE(1294)] = 8479, - [SMALL_STATE(1295)] = 8564, - [SMALL_STATE(1296)] = 8639, - [SMALL_STATE(1297)] = 8728, - [SMALL_STATE(1298)] = 8803, - [SMALL_STATE(1299)] = 8892, - [SMALL_STATE(1300)] = 8965, - [SMALL_STATE(1301)] = 9044, - [SMALL_STATE(1302)] = 9117, - [SMALL_STATE(1303)] = 9202, - [SMALL_STATE(1304)] = 9281, - [SMALL_STATE(1305)] = 9354, - [SMALL_STATE(1306)] = 9437, - [SMALL_STATE(1307)] = 9515, - [SMALL_STATE(1308)] = 9587, - [SMALL_STATE(1309)] = 9659, - [SMALL_STATE(1310)] = 9743, - [SMALL_STATE(1311)] = 9809, - [SMALL_STATE(1312)] = 9875, - [SMALL_STATE(1313)] = 9947, - [SMALL_STATE(1314)] = 10019, - [SMALL_STATE(1315)] = 10095, - [SMALL_STATE(1316)] = 10169, - [SMALL_STATE(1317)] = 10243, - [SMALL_STATE(1318)] = 10309, - [SMALL_STATE(1319)] = 10389, - [SMALL_STATE(1320)] = 10465, - [SMALL_STATE(1321)] = 10537, - [SMALL_STATE(1322)] = 10603, - [SMALL_STATE(1323)] = 10673, - [SMALL_STATE(1324)] = 10757, - [SMALL_STATE(1325)] = 10829, - [SMALL_STATE(1326)] = 10895, - [SMALL_STATE(1327)] = 10969, - [SMALL_STATE(1328)] = 11057, - [SMALL_STATE(1329)] = 11135, - [SMALL_STATE(1330)] = 11207, - [SMALL_STATE(1331)] = 11273, - [SMALL_STATE(1332)] = 11339, - [SMALL_STATE(1333)] = 11405, - [SMALL_STATE(1334)] = 11487, - [SMALL_STATE(1335)] = 11557, - [SMALL_STATE(1336)] = 11623, - [SMALL_STATE(1337)] = 11707, - [SMALL_STATE(1338)] = 11779, - [SMALL_STATE(1339)] = 11859, - [SMALL_STATE(1340)] = 11927, - [SMALL_STATE(1341)] = 12011, - [SMALL_STATE(1342)] = 12087, - [SMALL_STATE(1343)] = 12161, - [SMALL_STATE(1344)] = 12239, - [SMALL_STATE(1345)] = 12305, - [SMALL_STATE(1346)] = 12373, - [SMALL_STATE(1347)] = 12461, - [SMALL_STATE(1348)] = 12527, - [SMALL_STATE(1349)] = 12593, - [SMALL_STATE(1350)] = 12664, - [SMALL_STATE(1351)] = 12731, - [SMALL_STATE(1352)] = 12804, - [SMALL_STATE(1353)] = 12877, - [SMALL_STATE(1354)] = 12948, - [SMALL_STATE(1355)] = 13017, - [SMALL_STATE(1356)] = 13088, - [SMALL_STATE(1357)] = 13163, - [SMALL_STATE(1358)] = 13246, - [SMALL_STATE(1359)] = 13319, - [SMALL_STATE(1360)] = 13392, - [SMALL_STATE(1361)] = 13463, - [SMALL_STATE(1362)] = 13540, - [SMALL_STATE(1363)] = 13609, - [SMALL_STATE(1364)] = 13682, - [SMALL_STATE(1365)] = 13751, - [SMALL_STATE(1366)] = 13826, - [SMALL_STATE(1367)] = 13897, - [SMALL_STATE(1368)] = 13964, - [SMALL_STATE(1369)] = 14035, - [SMALL_STATE(1370)] = 14104, - [SMALL_STATE(1371)] = 14181, - [SMALL_STATE(1372)] = 14254, - [SMALL_STATE(1373)] = 14333, - [SMALL_STATE(1374)] = 14410, - [SMALL_STATE(1375)] = 14481, - [SMALL_STATE(1376)] = 14552, - [SMALL_STATE(1377)] = 14625, - [SMALL_STATE(1378)] = 14702, - [SMALL_STATE(1379)] = 14779, - [SMALL_STATE(1380)] = 14851, - [SMALL_STATE(1381)] = 14971, - [SMALL_STATE(1382)] = 15043, - [SMALL_STATE(1383)] = 15163, - [SMALL_STATE(1384)] = 15233, - [SMALL_STATE(1385)] = 15303, - [SMALL_STATE(1386)] = 15373, - [SMALL_STATE(1387)] = 15493, - [SMALL_STATE(1388)] = 15561, - [SMALL_STATE(1389)] = 15635, - [SMALL_STATE(1390)] = 15755, - [SMALL_STATE(1391)] = 15829, - [SMALL_STATE(1392)] = 15903, - [SMALL_STATE(1393)] = 15977, - [SMALL_STATE(1394)] = 16053, - [SMALL_STATE(1395)] = 16173, - [SMALL_STATE(1396)] = 16293, - [SMALL_STATE(1397)] = 16363, - [SMALL_STATE(1398)] = 16429, - [SMALL_STATE(1399)] = 16497, - [SMALL_STATE(1400)] = 16569, - [SMALL_STATE(1401)] = 16639, - [SMALL_STATE(1402)] = 16705, - [SMALL_STATE(1403)] = 16774, - [SMALL_STATE(1404)] = 16843, - [SMALL_STATE(1405)] = 16912, - [SMALL_STATE(1406)] = 16981, - [SMALL_STATE(1407)] = 17050, - [SMALL_STATE(1408)] = 17119, - [SMALL_STATE(1409)] = 17188, - [SMALL_STATE(1410)] = 17259, - [SMALL_STATE(1411)] = 17326, - [SMALL_STATE(1412)] = 17399, - [SMALL_STATE(1413)] = 17468, - [SMALL_STATE(1414)] = 17541, - [SMALL_STATE(1415)] = 17612, - [SMALL_STATE(1416)] = 17681, - [SMALL_STATE(1417)] = 17750, - [SMALL_STATE(1418)] = 17819, - [SMALL_STATE(1419)] = 17888, - [SMALL_STATE(1420)] = 18004, - [SMALL_STATE(1421)] = 18072, - [SMALL_STATE(1422)] = 18140, - [SMALL_STATE(1423)] = 18208, - [SMALL_STATE(1424)] = 18324, - [SMALL_STATE(1425)] = 18440, - [SMALL_STATE(1426)] = 18508, - [SMALL_STATE(1427)] = 18624, - [SMALL_STATE(1428)] = 18692, - [SMALL_STATE(1429)] = 18760, - [SMALL_STATE(1430)] = 18828, - [SMALL_STATE(1431)] = 18896, - [SMALL_STATE(1432)] = 18964, - [SMALL_STATE(1433)] = 19080, - [SMALL_STATE(1434)] = 19196, - [SMALL_STATE(1435)] = 19264, - [SMALL_STATE(1436)] = 19332, - [SMALL_STATE(1437)] = 19448, - [SMALL_STATE(1438)] = 19564, - [SMALL_STATE(1439)] = 19632, - [SMALL_STATE(1440)] = 19748, - [SMALL_STATE(1441)] = 19816, - [SMALL_STATE(1442)] = 19932, - [SMALL_STATE(1443)] = 20048, - [SMALL_STATE(1444)] = 20164, - [SMALL_STATE(1445)] = 20232, - [SMALL_STATE(1446)] = 20300, - [SMALL_STATE(1447)] = 20368, - [SMALL_STATE(1448)] = 20438, - [SMALL_STATE(1449)] = 20506, - [SMALL_STATE(1450)] = 20574, - [SMALL_STATE(1451)] = 20690, - [SMALL_STATE(1452)] = 20758, - [SMALL_STATE(1453)] = 20826, - [SMALL_STATE(1454)] = 20894, - [SMALL_STATE(1455)] = 21010, - [SMALL_STATE(1456)] = 21126, - [SMALL_STATE(1457)] = 21192, - [SMALL_STATE(1458)] = 21258, - [SMALL_STATE(1459)] = 21326, - [SMALL_STATE(1460)] = 21392, - [SMALL_STATE(1461)] = 21508, - [SMALL_STATE(1462)] = 21576, - [SMALL_STATE(1463)] = 21692, - [SMALL_STATE(1464)] = 21808, - [SMALL_STATE(1465)] = 21873, - [SMALL_STATE(1466)] = 21938, - [SMALL_STATE(1467)] = 22003, - [SMALL_STATE(1468)] = 22068, - [SMALL_STATE(1469)] = 22133, - [SMALL_STATE(1470)] = 22198, - [SMALL_STATE(1471)] = 22263, - [SMALL_STATE(1472)] = 22328, - [SMALL_STATE(1473)] = 22393, - [SMALL_STATE(1474)] = 22458, - [SMALL_STATE(1475)] = 22570, - [SMALL_STATE(1476)] = 22682, - [SMALL_STATE(1477)] = 22794, - [SMALL_STATE(1478)] = 22906, - [SMALL_STATE(1479)] = 23018, - [SMALL_STATE(1480)] = 23130, - [SMALL_STATE(1481)] = 23242, - [SMALL_STATE(1482)] = 23361, - [SMALL_STATE(1483)] = 23472, - [SMALL_STATE(1484)] = 23583, - [SMALL_STATE(1485)] = 23694, - [SMALL_STATE(1486)] = 23805, - [SMALL_STATE(1487)] = 23924, - [SMALL_STATE(1488)] = 24043, - [SMALL_STATE(1489)] = 24162, - [SMALL_STATE(1490)] = 24273, - [SMALL_STATE(1491)] = 24384, - [SMALL_STATE(1492)] = 24495, - [SMALL_STATE(1493)] = 24606, - [SMALL_STATE(1494)] = 24725, - [SMALL_STATE(1495)] = 24836, - [SMALL_STATE(1496)] = 24947, - [SMALL_STATE(1497)] = 25058, - [SMALL_STATE(1498)] = 25160, - [SMALL_STATE(1499)] = 25262, - [SMALL_STATE(1500)] = 25364, - [SMALL_STATE(1501)] = 25466, - [SMALL_STATE(1502)] = 25544, - [SMALL_STATE(1503)] = 25646, - [SMALL_STATE(1504)] = 25748, - [SMALL_STATE(1505)] = 25815, - [SMALL_STATE(1506)] = 25880, - [SMALL_STATE(1507)] = 25947, - [SMALL_STATE(1508)] = 26056, - [SMALL_STATE(1509)] = 26113, - [SMALL_STATE(1510)] = 26180, - [SMALL_STATE(1511)] = 26291, - [SMALL_STATE(1512)] = 26348, - [SMALL_STATE(1513)] = 26410, - [SMALL_STATE(1514)] = 26466, - [SMALL_STATE(1515)] = 26528, - [SMALL_STATE(1516)] = 26596, - [SMALL_STATE(1517)] = 26652, - [SMALL_STATE(1518)] = 26708, - [SMALL_STATE(1519)] = 26764, - [SMALL_STATE(1520)] = 26820, - [SMALL_STATE(1521)] = 26914, - [SMALL_STATE(1522)] = 26974, - [SMALL_STATE(1523)] = 27030, - [SMALL_STATE(1524)] = 27088, - [SMALL_STATE(1525)] = 27146, - [SMALL_STATE(1526)] = 27204, - [SMALL_STATE(1527)] = 27260, - [SMALL_STATE(1528)] = 27320, - [SMALL_STATE(1529)] = 27377, - [SMALL_STATE(1530)] = 27432, - [SMALL_STATE(1531)] = 27487, - [SMALL_STATE(1532)] = 27550, - [SMALL_STATE(1533)] = 27605, - [SMALL_STATE(1534)] = 27660, - [SMALL_STATE(1535)] = 27717, - [SMALL_STATE(1536)] = 27780, - [SMALL_STATE(1537)] = 27835, - [SMALL_STATE(1538)] = 27890, - [SMALL_STATE(1539)] = 27945, - [SMALL_STATE(1540)] = 28008, - [SMALL_STATE(1541)] = 28063, - [SMALL_STATE(1542)] = 28118, - [SMALL_STATE(1543)] = 28173, - [SMALL_STATE(1544)] = 28228, - [SMALL_STATE(1545)] = 28283, - [SMALL_STATE(1546)] = 28338, - [SMALL_STATE(1547)] = 28393, - [SMALL_STATE(1548)] = 28448, - [SMALL_STATE(1549)] = 28503, - [SMALL_STATE(1550)] = 28562, - [SMALL_STATE(1551)] = 28619, - [SMALL_STATE(1552)] = 28674, - [SMALL_STATE(1553)] = 28731, - [SMALL_STATE(1554)] = 28786, - [SMALL_STATE(1555)] = 28843, - [SMALL_STATE(1556)] = 28898, - [SMALL_STATE(1557)] = 28953, - [SMALL_STATE(1558)] = 29014, - [SMALL_STATE(1559)] = 29071, - [SMALL_STATE(1560)] = 29126, - [SMALL_STATE(1561)] = 29181, - [SMALL_STATE(1562)] = 29242, - [SMALL_STATE(1563)] = 29299, - [SMALL_STATE(1564)] = 29354, - [SMALL_STATE(1565)] = 29409, - [SMALL_STATE(1566)] = 29464, - [SMALL_STATE(1567)] = 29519, - [SMALL_STATE(1568)] = 29574, - [SMALL_STATE(1569)] = 29629, - [SMALL_STATE(1570)] = 29684, - [SMALL_STATE(1571)] = 29739, - [SMALL_STATE(1572)] = 29794, - [SMALL_STATE(1573)] = 29849, - [SMALL_STATE(1574)] = 29904, - [SMALL_STATE(1575)] = 29961, - [SMALL_STATE(1576)] = 30016, - [SMALL_STATE(1577)] = 30071, - [SMALL_STATE(1578)] = 30126, - [SMALL_STATE(1579)] = 30181, - [SMALL_STATE(1580)] = 30238, - [SMALL_STATE(1581)] = 30293, - [SMALL_STATE(1582)] = 30354, - [SMALL_STATE(1583)] = 30409, - [SMALL_STATE(1584)] = 30464, - [SMALL_STATE(1585)] = 30519, - [SMALL_STATE(1586)] = 30574, - [SMALL_STATE(1587)] = 30629, - [SMALL_STATE(1588)] = 30684, - [SMALL_STATE(1589)] = 30743, - [SMALL_STATE(1590)] = 30798, - [SMALL_STATE(1591)] = 30853, - [SMALL_STATE(1592)] = 30908, - [SMALL_STATE(1593)] = 30969, - [SMALL_STATE(1594)] = 31026, - [SMALL_STATE(1595)] = 31081, - [SMALL_STATE(1596)] = 31138, - [SMALL_STATE(1597)] = 31193, - [SMALL_STATE(1598)] = 31248, - [SMALL_STATE(1599)] = 31303, - [SMALL_STATE(1600)] = 31358, - [SMALL_STATE(1601)] = 31413, - [SMALL_STATE(1602)] = 31468, - [SMALL_STATE(1603)] = 31523, - [SMALL_STATE(1604)] = 31578, - [SMALL_STATE(1605)] = 31633, - [SMALL_STATE(1606)] = 31694, - [SMALL_STATE(1607)] = 31755, - [SMALL_STATE(1608)] = 31810, - [SMALL_STATE(1609)] = 31871, - [SMALL_STATE(1610)] = 31926, - [SMALL_STATE(1611)] = 31981, - [SMALL_STATE(1612)] = 32036, - [SMALL_STATE(1613)] = 32095, - [SMALL_STATE(1614)] = 32150, - [SMALL_STATE(1615)] = 32205, - [SMALL_STATE(1616)] = 32266, - [SMALL_STATE(1617)] = 32327, - [SMALL_STATE(1618)] = 32386, - [SMALL_STATE(1619)] = 32441, - [SMALL_STATE(1620)] = 32502, - [SMALL_STATE(1621)] = 32557, - [SMALL_STATE(1622)] = 32612, - [SMALL_STATE(1623)] = 32667, - [SMALL_STATE(1624)] = 32722, - [SMALL_STATE(1625)] = 32779, - [SMALL_STATE(1626)] = 32834, - [SMALL_STATE(1627)] = 32889, - [SMALL_STATE(1628)] = 32948, - [SMALL_STATE(1629)] = 33003, - [SMALL_STATE(1630)] = 33058, - [SMALL_STATE(1631)] = 33115, - [SMALL_STATE(1632)] = 33170, - [SMALL_STATE(1633)] = 33225, - [SMALL_STATE(1634)] = 33284, - [SMALL_STATE(1635)] = 33345, - [SMALL_STATE(1636)] = 33400, - [SMALL_STATE(1637)] = 33455, - [SMALL_STATE(1638)] = 33510, - [SMALL_STATE(1639)] = 33565, - [SMALL_STATE(1640)] = 33620, - [SMALL_STATE(1641)] = 33675, - [SMALL_STATE(1642)] = 33730, - [SMALL_STATE(1643)] = 33785, - [SMALL_STATE(1644)] = 33846, - [SMALL_STATE(1645)] = 33903, - [SMALL_STATE(1646)] = 33964, - [SMALL_STATE(1647)] = 34019, - [SMALL_STATE(1648)] = 34078, - [SMALL_STATE(1649)] = 34137, - [SMALL_STATE(1650)] = 34198, - [SMALL_STATE(1651)] = 34253, - [SMALL_STATE(1652)] = 34309, - [SMALL_STATE(1653)] = 34363, - [SMALL_STATE(1654)] = 34417, - [SMALL_STATE(1655)] = 34471, - [SMALL_STATE(1656)] = 34525, - [SMALL_STATE(1657)] = 34579, - [SMALL_STATE(1658)] = 34633, - [SMALL_STATE(1659)] = 34687, - [SMALL_STATE(1660)] = 34741, - [SMALL_STATE(1661)] = 34795, - [SMALL_STATE(1662)] = 34849, - [SMALL_STATE(1663)] = 34903, - [SMALL_STATE(1664)] = 34957, - [SMALL_STATE(1665)] = 35011, - [SMALL_STATE(1666)] = 35065, - [SMALL_STATE(1667)] = 35119, - [SMALL_STATE(1668)] = 35173, - [SMALL_STATE(1669)] = 35227, - [SMALL_STATE(1670)] = 35281, - [SMALL_STATE(1671)] = 35341, - [SMALL_STATE(1672)] = 35395, - [SMALL_STATE(1673)] = 35449, - [SMALL_STATE(1674)] = 35503, - [SMALL_STATE(1675)] = 35557, - [SMALL_STATE(1676)] = 35611, - [SMALL_STATE(1677)] = 35665, - [SMALL_STATE(1678)] = 35719, - [SMALL_STATE(1679)] = 35773, - [SMALL_STATE(1680)] = 35827, - [SMALL_STATE(1681)] = 35881, - [SMALL_STATE(1682)] = 35935, - [SMALL_STATE(1683)] = 35989, - [SMALL_STATE(1684)] = 36043, - [SMALL_STATE(1685)] = 36097, - [SMALL_STATE(1686)] = 36151, - [SMALL_STATE(1687)] = 36205, - [SMALL_STATE(1688)] = 36259, - [SMALL_STATE(1689)] = 36313, - [SMALL_STATE(1690)] = 36367, - [SMALL_STATE(1691)] = 36421, - [SMALL_STATE(1692)] = 36475, - [SMALL_STATE(1693)] = 36529, - [SMALL_STATE(1694)] = 36583, - [SMALL_STATE(1695)] = 36637, - [SMALL_STATE(1696)] = 36691, - [SMALL_STATE(1697)] = 36765, - [SMALL_STATE(1698)] = 36819, - [SMALL_STATE(1699)] = 36873, - [SMALL_STATE(1700)] = 36927, - [SMALL_STATE(1701)] = 36981, - [SMALL_STATE(1702)] = 37035, - [SMALL_STATE(1703)] = 37089, - [SMALL_STATE(1704)] = 37143, - [SMALL_STATE(1705)] = 37197, - [SMALL_STATE(1706)] = 37253, - [SMALL_STATE(1707)] = 37309, - [SMALL_STATE(1708)] = 37369, - [SMALL_STATE(1709)] = 37423, - [SMALL_STATE(1710)] = 37477, - [SMALL_STATE(1711)] = 37537, - [SMALL_STATE(1712)] = 37591, - [SMALL_STATE(1713)] = 37645, - [SMALL_STATE(1714)] = 37699, - [SMALL_STATE(1715)] = 37753, - [SMALL_STATE(1716)] = 37807, - [SMALL_STATE(1717)] = 37861, - [SMALL_STATE(1718)] = 37947, - [SMALL_STATE(1719)] = 38033, - [SMALL_STATE(1720)] = 38119, - [SMALL_STATE(1721)] = 38205, - [SMALL_STATE(1722)] = 38291, - [SMALL_STATE(1723)] = 38368, - [SMALL_STATE(1724)] = 38425, - [SMALL_STATE(1725)] = 38480, - [SMALL_STATE(1726)] = 38561, - [SMALL_STATE(1727)] = 38618, - [SMALL_STATE(1728)] = 38671, - [SMALL_STATE(1729)] = 38750, - [SMALL_STATE(1730)] = 38805, - [SMALL_STATE(1731)] = 38868, - [SMALL_STATE(1732)] = 38945, - [SMALL_STATE(1733)] = 39006, - [SMALL_STATE(1734)] = 39059, - [SMALL_STATE(1735)] = 39138, - [SMALL_STATE(1736)] = 39201, - [SMALL_STATE(1737)] = 39278, - [SMALL_STATE(1738)] = 39341, - [SMALL_STATE(1739)] = 39420, - [SMALL_STATE(1740)] = 39483, - [SMALL_STATE(1741)] = 39592, - [SMALL_STATE(1742)] = 39701, - [SMALL_STATE(1743)] = 39780, - [SMALL_STATE(1744)] = 39889, - [SMALL_STATE(1745)] = 39998, - [SMALL_STATE(1746)] = 40107, - [SMALL_STATE(1747)] = 40190, - [SMALL_STATE(1748)] = 40263, - [SMALL_STATE(1749)] = 40360, - [SMALL_STATE(1750)] = 40459, - [SMALL_STATE(1751)] = 40512, - [SMALL_STATE(1752)] = 40603, - [SMALL_STATE(1753)] = 40696, - [SMALL_STATE(1754)] = 40791, - [SMALL_STATE(1755)] = 40868, - [SMALL_STATE(1756)] = 40947, - [SMALL_STATE(1757)] = 41034, - [SMALL_STATE(1758)] = 41135, - [SMALL_STATE(1759)] = 41244, - [SMALL_STATE(1760)] = 41353, - [SMALL_STATE(1761)] = 41462, - [SMALL_STATE(1762)] = 41571, - [SMALL_STATE(1763)] = 41680, - [SMALL_STATE(1764)] = 41789, - [SMALL_STATE(1765)] = 41898, - [SMALL_STATE(1766)] = 42007, - [SMALL_STATE(1767)] = 42060, - [SMALL_STATE(1768)] = 42137, - [SMALL_STATE(1769)] = 42194, - [SMALL_STATE(1770)] = 42273, - [SMALL_STATE(1771)] = 42350, - [SMALL_STATE(1772)] = 42403, - [SMALL_STATE(1773)] = 42482, - [SMALL_STATE(1774)] = 42559, - [SMALL_STATE(1775)] = 42612, - [SMALL_STATE(1776)] = 42691, - [SMALL_STATE(1777)] = 42762, - [SMALL_STATE(1778)] = 42831, - [SMALL_STATE(1779)] = 42940, - [SMALL_STATE(1780)] = 43019, - [SMALL_STATE(1781)] = 43073, - [SMALL_STATE(1782)] = 43131, - [SMALL_STATE(1783)] = 43239, - [SMALL_STATE(1784)] = 43311, - [SMALL_STATE(1785)] = 43385, - [SMALL_STATE(1786)] = 43445, - [SMALL_STATE(1787)] = 43497, - [SMALL_STATE(1788)] = 43555, - [SMALL_STATE(1789)] = 43613, - [SMALL_STATE(1790)] = 43721, - [SMALL_STATE(1791)] = 43829, - [SMALL_STATE(1792)] = 43911, - [SMALL_STATE(1793)] = 43983, - [SMALL_STATE(1794)] = 44039, - [SMALL_STATE(1795)] = 44147, - [SMALL_STATE(1796)] = 44199, - [SMALL_STATE(1797)] = 44259, - [SMALL_STATE(1798)] = 44315, - [SMALL_STATE(1799)] = 44391, - [SMALL_STATE(1800)] = 44447, - [SMALL_STATE(1801)] = 44519, - [SMALL_STATE(1802)] = 44579, - [SMALL_STATE(1803)] = 44675, - [SMALL_STATE(1804)] = 44773, - [SMALL_STATE(1805)] = 44851, - [SMALL_STATE(1806)] = 44941, + [SMALL_STATE(1195)] = 0, + [SMALL_STATE(1196)] = 71, + [SMALL_STATE(1197)] = 166, + [SMALL_STATE(1198)] = 237, + [SMALL_STATE(1199)] = 330, + [SMALL_STATE(1200)] = 401, + [SMALL_STATE(1201)] = 492, + [SMALL_STATE(1202)] = 581, + [SMALL_STATE(1203)] = 674, + [SMALL_STATE(1204)] = 763, + [SMALL_STATE(1205)] = 852, + [SMALL_STATE(1206)] = 923, + [SMALL_STATE(1207)] = 1014, + [SMALL_STATE(1208)] = 1085, + [SMALL_STATE(1209)] = 1156, + [SMALL_STATE(1210)] = 1249, + [SMALL_STATE(1211)] = 1342, + [SMALL_STATE(1212)] = 1431, + [SMALL_STATE(1213)] = 1502, + [SMALL_STATE(1214)] = 1590, + [SMALL_STATE(1215)] = 1680, + [SMALL_STATE(1216)] = 1768, + [SMALL_STATE(1217)] = 1858, + [SMALL_STATE(1218)] = 1932, + [SMALL_STATE(1219)] = 2024, + [SMALL_STATE(1220)] = 2110, + [SMALL_STATE(1221)] = 2200, + [SMALL_STATE(1222)] = 2288, + [SMALL_STATE(1223)] = 2374, + [SMALL_STATE(1224)] = 2466, + [SMALL_STATE(1225)] = 2556, + [SMALL_STATE(1226)] = 2646, + [SMALL_STATE(1227)] = 2736, + [SMALL_STATE(1228)] = 2824, + [SMALL_STATE(1229)] = 2912, + [SMALL_STATE(1230)] = 3002, + [SMALL_STATE(1231)] = 3072, + [SMALL_STATE(1232)] = 3164, + [SMALL_STATE(1233)] = 3254, + [SMALL_STATE(1234)] = 3324, + [SMALL_STATE(1235)] = 3411, + [SMALL_STATE(1236)] = 3502, + [SMALL_STATE(1237)] = 3581, + [SMALL_STATE(1238)] = 3670, + [SMALL_STATE(1239)] = 3757, + [SMALL_STATE(1240)] = 3848, + [SMALL_STATE(1241)] = 3943, + [SMALL_STATE(1242)] = 4030, + [SMALL_STATE(1243)] = 4117, + [SMALL_STATE(1244)] = 4204, + [SMALL_STATE(1245)] = 4291, + [SMALL_STATE(1246)] = 4378, + [SMALL_STATE(1247)] = 4469, + [SMALL_STATE(1248)] = 4558, + [SMALL_STATE(1249)] = 4630, + [SMALL_STATE(1250)] = 4704, + [SMALL_STATE(1251)] = 4790, + [SMALL_STATE(1252)] = 4876, + [SMALL_STATE(1253)] = 4962, + [SMALL_STATE(1254)] = 5048, + [SMALL_STATE(1255)] = 5138, + [SMALL_STATE(1256)] = 5210, + [SMALL_STATE(1257)] = 5282, + [SMALL_STATE(1258)] = 5372, + [SMALL_STATE(1259)] = 5458, + [SMALL_STATE(1260)] = 5536, + [SMALL_STATE(1261)] = 5628, + [SMALL_STATE(1262)] = 5706, + [SMALL_STATE(1263)] = 5792, + [SMALL_STATE(1264)] = 5878, + [SMALL_STATE(1265)] = 5964, + [SMALL_STATE(1266)] = 6032, + [SMALL_STATE(1267)] = 6124, + [SMALL_STATE(1268)] = 6210, + [SMALL_STATE(1269)] = 6296, + [SMALL_STATE(1270)] = 6386, + [SMALL_STATE(1271)] = 6472, + [SMALL_STATE(1272)] = 6558, + [SMALL_STATE(1273)] = 6638, + [SMALL_STATE(1274)] = 6716, + [SMALL_STATE(1275)] = 6794, + [SMALL_STATE(1276)] = 6866, + [SMALL_STATE(1277)] = 6952, + [SMALL_STATE(1278)] = 7032, + [SMALL_STATE(1279)] = 7122, + [SMALL_STATE(1280)] = 7212, + [SMALL_STATE(1281)] = 7298, + [SMALL_STATE(1282)] = 7381, + [SMALL_STATE(1283)] = 7454, + [SMALL_STATE(1284)] = 7533, + [SMALL_STATE(1285)] = 7618, + [SMALL_STATE(1286)] = 7685, + [SMALL_STATE(1287)] = 7760, + [SMALL_STATE(1288)] = 7845, + [SMALL_STATE(1289)] = 7918, + [SMALL_STATE(1290)] = 7991, + [SMALL_STATE(1291)] = 8066, + [SMALL_STATE(1292)] = 8153, + [SMALL_STATE(1293)] = 8228, + [SMALL_STATE(1294)] = 8317, + [SMALL_STATE(1295)] = 8396, + [SMALL_STATE(1296)] = 8463, + [SMALL_STATE(1297)] = 8546, + [SMALL_STATE(1298)] = 8635, + [SMALL_STATE(1299)] = 8720, + [SMALL_STATE(1300)] = 8797, + [SMALL_STATE(1301)] = 8886, + [SMALL_STATE(1302)] = 8975, + [SMALL_STATE(1303)] = 9052, + [SMALL_STATE(1304)] = 9123, + [SMALL_STATE(1305)] = 9212, + [SMALL_STATE(1306)] = 9283, + [SMALL_STATE(1307)] = 9372, + [SMALL_STATE(1308)] = 9445, + [SMALL_STATE(1309)] = 9515, + [SMALL_STATE(1310)] = 9581, + [SMALL_STATE(1311)] = 9669, + [SMALL_STATE(1312)] = 9741, + [SMALL_STATE(1313)] = 9817, + [SMALL_STATE(1314)] = 9883, + [SMALL_STATE(1315)] = 9961, + [SMALL_STATE(1316)] = 10041, + [SMALL_STATE(1317)] = 10113, + [SMALL_STATE(1318)] = 10179, + [SMALL_STATE(1319)] = 10251, + [SMALL_STATE(1320)] = 10317, + [SMALL_STATE(1321)] = 10395, + [SMALL_STATE(1322)] = 10461, + [SMALL_STATE(1323)] = 10533, + [SMALL_STATE(1324)] = 10605, + [SMALL_STATE(1325)] = 10685, + [SMALL_STATE(1326)] = 10759, + [SMALL_STATE(1327)] = 10847, + [SMALL_STATE(1328)] = 10923, + [SMALL_STATE(1329)] = 10995, + [SMALL_STATE(1330)] = 11079, + [SMALL_STATE(1331)] = 11151, + [SMALL_STATE(1332)] = 11225, + [SMALL_STATE(1333)] = 11303, + [SMALL_STATE(1334)] = 11375, + [SMALL_STATE(1335)] = 11441, + [SMALL_STATE(1336)] = 11515, + [SMALL_STATE(1337)] = 11589, + [SMALL_STATE(1338)] = 11655, + [SMALL_STATE(1339)] = 11725, + [SMALL_STATE(1340)] = 11807, + [SMALL_STATE(1341)] = 11877, + [SMALL_STATE(1342)] = 11943, + [SMALL_STATE(1343)] = 12027, + [SMALL_STATE(1344)] = 12093, + [SMALL_STATE(1345)] = 12165, + [SMALL_STATE(1346)] = 12231, + [SMALL_STATE(1347)] = 12297, + [SMALL_STATE(1348)] = 12373, + [SMALL_STATE(1349)] = 12443, + [SMALL_STATE(1350)] = 12527, + [SMALL_STATE(1351)] = 12599, + [SMALL_STATE(1352)] = 12683, + [SMALL_STATE(1353)] = 12749, + [SMALL_STATE(1354)] = 12818, + [SMALL_STATE(1355)] = 12889, + [SMALL_STATE(1356)] = 12964, + [SMALL_STATE(1357)] = 13037, + [SMALL_STATE(1358)] = 13108, + [SMALL_STATE(1359)] = 13183, + [SMALL_STATE(1360)] = 13260, + [SMALL_STATE(1361)] = 13331, + [SMALL_STATE(1362)] = 13404, + [SMALL_STATE(1363)] = 13481, + [SMALL_STATE(1364)] = 13564, + [SMALL_STATE(1365)] = 13635, + [SMALL_STATE(1366)] = 13708, + [SMALL_STATE(1367)] = 13781, + [SMALL_STATE(1368)] = 13854, + [SMALL_STATE(1369)] = 13923, + [SMALL_STATE(1370)] = 13996, + [SMALL_STATE(1371)] = 14065, + [SMALL_STATE(1372)] = 14138, + [SMALL_STATE(1373)] = 14217, + [SMALL_STATE(1374)] = 14288, + [SMALL_STATE(1375)] = 14365, + [SMALL_STATE(1376)] = 14436, + [SMALL_STATE(1377)] = 14505, + [SMALL_STATE(1378)] = 14582, + [SMALL_STATE(1379)] = 14653, + [SMALL_STATE(1380)] = 14730, + [SMALL_STATE(1381)] = 14801, + [SMALL_STATE(1382)] = 14871, + [SMALL_STATE(1383)] = 14945, + [SMALL_STATE(1384)] = 15065, + [SMALL_STATE(1385)] = 15135, + [SMALL_STATE(1386)] = 15209, + [SMALL_STATE(1387)] = 15329, + [SMALL_STATE(1388)] = 15403, + [SMALL_STATE(1389)] = 15475, + [SMALL_STATE(1390)] = 15551, + [SMALL_STATE(1391)] = 15621, + [SMALL_STATE(1392)] = 15695, + [SMALL_STATE(1393)] = 15765, + [SMALL_STATE(1394)] = 15885, + [SMALL_STATE(1395)] = 15957, + [SMALL_STATE(1396)] = 16025, + [SMALL_STATE(1397)] = 16095, + [SMALL_STATE(1398)] = 16215, + [SMALL_STATE(1399)] = 16283, + [SMALL_STATE(1400)] = 16403, + [SMALL_STATE(1401)] = 16475, + [SMALL_STATE(1402)] = 16595, + [SMALL_STATE(1403)] = 16664, + [SMALL_STATE(1404)] = 16733, + [SMALL_STATE(1405)] = 16802, + [SMALL_STATE(1406)] = 16871, + [SMALL_STATE(1407)] = 16940, + [SMALL_STATE(1408)] = 17009, + [SMALL_STATE(1409)] = 17078, + [SMALL_STATE(1410)] = 17145, + [SMALL_STATE(1411)] = 17216, + [SMALL_STATE(1412)] = 17287, + [SMALL_STATE(1413)] = 17360, + [SMALL_STATE(1414)] = 17433, + [SMALL_STATE(1415)] = 17502, + [SMALL_STATE(1416)] = 17571, + [SMALL_STATE(1417)] = 17640, + [SMALL_STATE(1418)] = 17709, + [SMALL_STATE(1419)] = 17778, + [SMALL_STATE(1420)] = 17894, + [SMALL_STATE(1421)] = 17962, + [SMALL_STATE(1422)] = 18078, + [SMALL_STATE(1423)] = 18194, + [SMALL_STATE(1424)] = 18262, + [SMALL_STATE(1425)] = 18330, + [SMALL_STATE(1426)] = 18398, + [SMALL_STATE(1427)] = 18466, + [SMALL_STATE(1428)] = 18534, + [SMALL_STATE(1429)] = 18602, + [SMALL_STATE(1430)] = 18670, + [SMALL_STATE(1431)] = 18786, + [SMALL_STATE(1432)] = 18854, + [SMALL_STATE(1433)] = 18922, + [SMALL_STATE(1434)] = 18990, + [SMALL_STATE(1435)] = 19106, + [SMALL_STATE(1436)] = 19222, + [SMALL_STATE(1437)] = 19292, + [SMALL_STATE(1438)] = 19360, + [SMALL_STATE(1439)] = 19476, + [SMALL_STATE(1440)] = 19592, + [SMALL_STATE(1441)] = 19660, + [SMALL_STATE(1442)] = 19776, + [SMALL_STATE(1443)] = 19844, + [SMALL_STATE(1444)] = 19912, + [SMALL_STATE(1445)] = 20028, + [SMALL_STATE(1446)] = 20096, + [SMALL_STATE(1447)] = 20212, + [SMALL_STATE(1448)] = 20328, + [SMALL_STATE(1449)] = 20396, + [SMALL_STATE(1450)] = 20512, + [SMALL_STATE(1451)] = 20580, + [SMALL_STATE(1452)] = 20696, + [SMALL_STATE(1453)] = 20764, + [SMALL_STATE(1454)] = 20830, + [SMALL_STATE(1455)] = 20946, + [SMALL_STATE(1456)] = 21012, + [SMALL_STATE(1457)] = 21080, + [SMALL_STATE(1458)] = 21146, + [SMALL_STATE(1459)] = 21214, + [SMALL_STATE(1460)] = 21282, + [SMALL_STATE(1461)] = 21350, + [SMALL_STATE(1462)] = 21466, + [SMALL_STATE(1463)] = 21582, + [SMALL_STATE(1464)] = 21698, + [SMALL_STATE(1465)] = 21763, + [SMALL_STATE(1466)] = 21828, + [SMALL_STATE(1467)] = 21893, + [SMALL_STATE(1468)] = 21958, + [SMALL_STATE(1469)] = 22023, + [SMALL_STATE(1470)] = 22088, + [SMALL_STATE(1471)] = 22153, + [SMALL_STATE(1472)] = 22218, + [SMALL_STATE(1473)] = 22283, + [SMALL_STATE(1474)] = 22348, + [SMALL_STATE(1475)] = 22460, + [SMALL_STATE(1476)] = 22572, + [SMALL_STATE(1477)] = 22684, + [SMALL_STATE(1478)] = 22796, + [SMALL_STATE(1479)] = 22908, + [SMALL_STATE(1480)] = 23020, + [SMALL_STATE(1481)] = 23132, + [SMALL_STATE(1482)] = 23243, + [SMALL_STATE(1483)] = 23354, + [SMALL_STATE(1484)] = 23465, + [SMALL_STATE(1485)] = 23576, + [SMALL_STATE(1486)] = 23687, + [SMALL_STATE(1487)] = 23806, + [SMALL_STATE(1488)] = 23917, + [SMALL_STATE(1489)] = 24036, + [SMALL_STATE(1490)] = 24155, + [SMALL_STATE(1491)] = 24266, + [SMALL_STATE(1492)] = 24377, + [SMALL_STATE(1493)] = 24496, + [SMALL_STATE(1494)] = 24607, + [SMALL_STATE(1495)] = 24718, + [SMALL_STATE(1496)] = 24837, + [SMALL_STATE(1497)] = 24948, + [SMALL_STATE(1498)] = 25050, + [SMALL_STATE(1499)] = 25152, + [SMALL_STATE(1500)] = 25254, + [SMALL_STATE(1501)] = 25332, + [SMALL_STATE(1502)] = 25434, + [SMALL_STATE(1503)] = 25536, + [SMALL_STATE(1504)] = 25638, + [SMALL_STATE(1505)] = 25703, + [SMALL_STATE(1506)] = 25814, + [SMALL_STATE(1507)] = 25871, + [SMALL_STATE(1508)] = 25980, + [SMALL_STATE(1509)] = 26047, + [SMALL_STATE(1510)] = 26114, + [SMALL_STATE(1511)] = 26171, + [SMALL_STATE(1512)] = 26238, + [SMALL_STATE(1513)] = 26298, + [SMALL_STATE(1514)] = 26392, + [SMALL_STATE(1515)] = 26452, + [SMALL_STATE(1516)] = 26514, + [SMALL_STATE(1517)] = 26570, + [SMALL_STATE(1518)] = 26630, + [SMALL_STATE(1519)] = 26688, + [SMALL_STATE(1520)] = 26744, + [SMALL_STATE(1521)] = 26800, + [SMALL_STATE(1522)] = 26856, + [SMALL_STATE(1523)] = 26916, + [SMALL_STATE(1524)] = 26978, + [SMALL_STATE(1525)] = 27034, + [SMALL_STATE(1526)] = 27090, + [SMALL_STATE(1527)] = 27150, + [SMALL_STATE(1528)] = 27210, + [SMALL_STATE(1529)] = 27270, + [SMALL_STATE(1530)] = 27330, + [SMALL_STATE(1531)] = 27388, + [SMALL_STATE(1532)] = 27456, + [SMALL_STATE(1533)] = 27514, + [SMALL_STATE(1534)] = 27570, + [SMALL_STATE(1535)] = 27625, + [SMALL_STATE(1536)] = 27680, + [SMALL_STATE(1537)] = 27735, + [SMALL_STATE(1538)] = 27790, + [SMALL_STATE(1539)] = 27845, + [SMALL_STATE(1540)] = 27900, + [SMALL_STATE(1541)] = 27961, + [SMALL_STATE(1542)] = 28016, + [SMALL_STATE(1543)] = 28079, + [SMALL_STATE(1544)] = 28134, + [SMALL_STATE(1545)] = 28197, + [SMALL_STATE(1546)] = 28260, + [SMALL_STATE(1547)] = 28319, + [SMALL_STATE(1548)] = 28374, + [SMALL_STATE(1549)] = 28429, + [SMALL_STATE(1550)] = 28484, + [SMALL_STATE(1551)] = 28539, + [SMALL_STATE(1552)] = 28594, + [SMALL_STATE(1553)] = 28649, + [SMALL_STATE(1554)] = 28704, + [SMALL_STATE(1555)] = 28759, + [SMALL_STATE(1556)] = 28814, + [SMALL_STATE(1557)] = 28869, + [SMALL_STATE(1558)] = 28930, + [SMALL_STATE(1559)] = 28991, + [SMALL_STATE(1560)] = 29050, + [SMALL_STATE(1561)] = 29105, + [SMALL_STATE(1562)] = 29160, + [SMALL_STATE(1563)] = 29221, + [SMALL_STATE(1564)] = 29282, + [SMALL_STATE(1565)] = 29341, + [SMALL_STATE(1566)] = 29396, + [SMALL_STATE(1567)] = 29455, + [SMALL_STATE(1568)] = 29510, + [SMALL_STATE(1569)] = 29565, + [SMALL_STATE(1570)] = 29620, + [SMALL_STATE(1571)] = 29675, + [SMALL_STATE(1572)] = 29730, + [SMALL_STATE(1573)] = 29789, + [SMALL_STATE(1574)] = 29850, + [SMALL_STATE(1575)] = 29905, + [SMALL_STATE(1576)] = 29962, + [SMALL_STATE(1577)] = 30017, + [SMALL_STATE(1578)] = 30074, + [SMALL_STATE(1579)] = 30133, + [SMALL_STATE(1580)] = 30188, + [SMALL_STATE(1581)] = 30243, + [SMALL_STATE(1582)] = 30304, + [SMALL_STATE(1583)] = 30359, + [SMALL_STATE(1584)] = 30414, + [SMALL_STATE(1585)] = 30471, + [SMALL_STATE(1586)] = 30532, + [SMALL_STATE(1587)] = 30589, + [SMALL_STATE(1588)] = 30644, + [SMALL_STATE(1589)] = 30699, + [SMALL_STATE(1590)] = 30760, + [SMALL_STATE(1591)] = 30815, + [SMALL_STATE(1592)] = 30872, + [SMALL_STATE(1593)] = 30929, + [SMALL_STATE(1594)] = 30984, + [SMALL_STATE(1595)] = 31039, + [SMALL_STATE(1596)] = 31096, + [SMALL_STATE(1597)] = 31151, + [SMALL_STATE(1598)] = 31212, + [SMALL_STATE(1599)] = 31267, + [SMALL_STATE(1600)] = 31322, + [SMALL_STATE(1601)] = 31379, + [SMALL_STATE(1602)] = 31434, + [SMALL_STATE(1603)] = 31489, + [SMALL_STATE(1604)] = 31544, + [SMALL_STATE(1605)] = 31603, + [SMALL_STATE(1606)] = 31664, + [SMALL_STATE(1607)] = 31725, + [SMALL_STATE(1608)] = 31782, + [SMALL_STATE(1609)] = 31843, + [SMALL_STATE(1610)] = 31900, + [SMALL_STATE(1611)] = 31955, + [SMALL_STATE(1612)] = 32010, + [SMALL_STATE(1613)] = 32065, + [SMALL_STATE(1614)] = 32120, + [SMALL_STATE(1615)] = 32175, + [SMALL_STATE(1616)] = 32230, + [SMALL_STATE(1617)] = 32285, + [SMALL_STATE(1618)] = 32344, + [SMALL_STATE(1619)] = 32399, + [SMALL_STATE(1620)] = 32454, + [SMALL_STATE(1621)] = 32511, + [SMALL_STATE(1622)] = 32566, + [SMALL_STATE(1623)] = 32621, + [SMALL_STATE(1624)] = 32676, + [SMALL_STATE(1625)] = 32731, + [SMALL_STATE(1626)] = 32786, + [SMALL_STATE(1627)] = 32841, + [SMALL_STATE(1628)] = 32896, + [SMALL_STATE(1629)] = 32951, + [SMALL_STATE(1630)] = 33006, + [SMALL_STATE(1631)] = 33061, + [SMALL_STATE(1632)] = 33116, + [SMALL_STATE(1633)] = 33171, + [SMALL_STATE(1634)] = 33226, + [SMALL_STATE(1635)] = 33283, + [SMALL_STATE(1636)] = 33338, + [SMALL_STATE(1637)] = 33393, + [SMALL_STATE(1638)] = 33448, + [SMALL_STATE(1639)] = 33505, + [SMALL_STATE(1640)] = 33560, + [SMALL_STATE(1641)] = 33615, + [SMALL_STATE(1642)] = 33670, + [SMALL_STATE(1643)] = 33731, + [SMALL_STATE(1644)] = 33786, + [SMALL_STATE(1645)] = 33841, + [SMALL_STATE(1646)] = 33896, + [SMALL_STATE(1647)] = 33951, + [SMALL_STATE(1648)] = 34006, + [SMALL_STATE(1649)] = 34063, + [SMALL_STATE(1650)] = 34118, + [SMALL_STATE(1651)] = 34173, + [SMALL_STATE(1652)] = 34228, + [SMALL_STATE(1653)] = 34283, + [SMALL_STATE(1654)] = 34338, + [SMALL_STATE(1655)] = 34393, + [SMALL_STATE(1656)] = 34448, + [SMALL_STATE(1657)] = 34503, + [SMALL_STATE(1658)] = 34557, + [SMALL_STATE(1659)] = 34611, + [SMALL_STATE(1660)] = 34665, + [SMALL_STATE(1661)] = 34719, + [SMALL_STATE(1662)] = 34805, + [SMALL_STATE(1663)] = 34859, + [SMALL_STATE(1664)] = 34913, + [SMALL_STATE(1665)] = 34967, + [SMALL_STATE(1666)] = 35027, + [SMALL_STATE(1667)] = 35081, + [SMALL_STATE(1668)] = 35135, + [SMALL_STATE(1669)] = 35189, + [SMALL_STATE(1670)] = 35249, + [SMALL_STATE(1671)] = 35305, + [SMALL_STATE(1672)] = 35359, + [SMALL_STATE(1673)] = 35413, + [SMALL_STATE(1674)] = 35467, + [SMALL_STATE(1675)] = 35521, + [SMALL_STATE(1676)] = 35575, + [SMALL_STATE(1677)] = 35629, + [SMALL_STATE(1678)] = 35683, + [SMALL_STATE(1679)] = 35737, + [SMALL_STATE(1680)] = 35791, + [SMALL_STATE(1681)] = 35877, + [SMALL_STATE(1682)] = 35931, + [SMALL_STATE(1683)] = 35985, + [SMALL_STATE(1684)] = 36039, + [SMALL_STATE(1685)] = 36093, + [SMALL_STATE(1686)] = 36147, + [SMALL_STATE(1687)] = 36201, + [SMALL_STATE(1688)] = 36257, + [SMALL_STATE(1689)] = 36311, + [SMALL_STATE(1690)] = 36365, + [SMALL_STATE(1691)] = 36419, + [SMALL_STATE(1692)] = 36473, + [SMALL_STATE(1693)] = 36527, + [SMALL_STATE(1694)] = 36581, + [SMALL_STATE(1695)] = 36667, + [SMALL_STATE(1696)] = 36723, + [SMALL_STATE(1697)] = 36777, + [SMALL_STATE(1698)] = 36831, + [SMALL_STATE(1699)] = 36885, + [SMALL_STATE(1700)] = 36939, + [SMALL_STATE(1701)] = 36993, + [SMALL_STATE(1702)] = 37047, + [SMALL_STATE(1703)] = 37101, + [SMALL_STATE(1704)] = 37155, + [SMALL_STATE(1705)] = 37241, + [SMALL_STATE(1706)] = 37295, + [SMALL_STATE(1707)] = 37349, + [SMALL_STATE(1708)] = 37409, + [SMALL_STATE(1709)] = 37463, + [SMALL_STATE(1710)] = 37517, + [SMALL_STATE(1711)] = 37571, + [SMALL_STATE(1712)] = 37657, + [SMALL_STATE(1713)] = 37711, + [SMALL_STATE(1714)] = 37765, + [SMALL_STATE(1715)] = 37819, + [SMALL_STATE(1716)] = 37873, + [SMALL_STATE(1717)] = 37927, + [SMALL_STATE(1718)] = 37981, + [SMALL_STATE(1719)] = 38055, + [SMALL_STATE(1720)] = 38109, + [SMALL_STATE(1721)] = 38163, + [SMALL_STATE(1722)] = 38217, + [SMALL_STATE(1723)] = 38271, + [SMALL_STATE(1724)] = 38325, + [SMALL_STATE(1725)] = 38379, + [SMALL_STATE(1726)] = 38433, + [SMALL_STATE(1727)] = 38487, + [SMALL_STATE(1728)] = 38541, + [SMALL_STATE(1729)] = 38604, + [SMALL_STATE(1730)] = 38695, + [SMALL_STATE(1731)] = 38772, + [SMALL_STATE(1732)] = 38865, + [SMALL_STATE(1733)] = 38942, + [SMALL_STATE(1734)] = 39051, + [SMALL_STATE(1735)] = 39130, + [SMALL_STATE(1736)] = 39199, + [SMALL_STATE(1737)] = 39294, + [SMALL_STATE(1738)] = 39371, + [SMALL_STATE(1739)] = 39424, + [SMALL_STATE(1740)] = 39477, + [SMALL_STATE(1741)] = 39532, + [SMALL_STATE(1742)] = 39611, + [SMALL_STATE(1743)] = 39672, + [SMALL_STATE(1744)] = 39751, + [SMALL_STATE(1745)] = 39838, + [SMALL_STATE(1746)] = 39939, + [SMALL_STATE(1747)] = 39996, + [SMALL_STATE(1748)] = 40049, + [SMALL_STATE(1749)] = 40128, + [SMALL_STATE(1750)] = 40209, + [SMALL_STATE(1751)] = 40272, + [SMALL_STATE(1752)] = 40381, + [SMALL_STATE(1753)] = 40490, + [SMALL_STATE(1754)] = 40569, + [SMALL_STATE(1755)] = 40646, + [SMALL_STATE(1756)] = 40709, + [SMALL_STATE(1757)] = 40788, + [SMALL_STATE(1758)] = 40867, + [SMALL_STATE(1759)] = 40976, + [SMALL_STATE(1760)] = 41085, + [SMALL_STATE(1761)] = 41194, + [SMALL_STATE(1762)] = 41249, + [SMALL_STATE(1763)] = 41306, + [SMALL_STATE(1764)] = 41415, + [SMALL_STATE(1765)] = 41524, + [SMALL_STATE(1766)] = 41577, + [SMALL_STATE(1767)] = 41630, + [SMALL_STATE(1768)] = 41707, + [SMALL_STATE(1769)] = 41784, + [SMALL_STATE(1770)] = 41841, + [SMALL_STATE(1771)] = 41950, + [SMALL_STATE(1772)] = 42003, + [SMALL_STATE(1773)] = 42066, + [SMALL_STATE(1774)] = 42145, + [SMALL_STATE(1775)] = 42254, + [SMALL_STATE(1776)] = 42363, + [SMALL_STATE(1777)] = 42472, + [SMALL_STATE(1778)] = 42549, + [SMALL_STATE(1779)] = 42658, + [SMALL_STATE(1780)] = 42767, + [SMALL_STATE(1781)] = 42850, + [SMALL_STATE(1782)] = 42923, + [SMALL_STATE(1783)] = 43020, + [SMALL_STATE(1784)] = 43091, + [SMALL_STATE(1785)] = 43190, + [SMALL_STATE(1786)] = 43269, + [SMALL_STATE(1787)] = 43325, + [SMALL_STATE(1788)] = 43433, + [SMALL_STATE(1789)] = 43509, + [SMALL_STATE(1790)] = 43581, + [SMALL_STATE(1791)] = 43637, + [SMALL_STATE(1792)] = 43745, + [SMALL_STATE(1793)] = 43801, + [SMALL_STATE(1794)] = 43877, + [SMALL_STATE(1795)] = 43985, + [SMALL_STATE(1796)] = 44063, + [SMALL_STATE(1797)] = 44141, + [SMALL_STATE(1798)] = 44201, + [SMALL_STATE(1799)] = 44309, + [SMALL_STATE(1800)] = 44417, + [SMALL_STATE(1801)] = 44475, + [SMALL_STATE(1802)] = 44591, + [SMALL_STATE(1803)] = 44667, + [SMALL_STATE(1804)] = 44783, + [SMALL_STATE(1805)] = 44857, + [SMALL_STATE(1806)] = 44965, [SMALL_STATE(1807)] = 45033, - [SMALL_STATE(1808)] = 45127, - [SMALL_STATE(1809)] = 45203, - [SMALL_STATE(1810)] = 45281, - [SMALL_STATE(1811)] = 45345, - [SMALL_STATE(1812)] = 45431, - [SMALL_STATE(1813)] = 45531, - [SMALL_STATE(1814)] = 45589, - [SMALL_STATE(1815)] = 45659, - [SMALL_STATE(1816)] = 45767, - [SMALL_STATE(1817)] = 45883, - [SMALL_STATE(1818)] = 45991, - [SMALL_STATE(1819)] = 46099, - [SMALL_STATE(1820)] = 46207, - [SMALL_STATE(1821)] = 46315, - [SMALL_STATE(1822)] = 46369, - [SMALL_STATE(1823)] = 46423, - [SMALL_STATE(1824)] = 46531, - [SMALL_STATE(1825)] = 46603, - [SMALL_STATE(1826)] = 46719, - [SMALL_STATE(1827)] = 46771, - [SMALL_STATE(1828)] = 46825, - [SMALL_STATE(1829)] = 46933, - [SMALL_STATE(1830)] = 47005, - [SMALL_STATE(1831)] = 47113, - [SMALL_STATE(1832)] = 47181, - [SMALL_STATE(1833)] = 47297, - [SMALL_STATE(1834)] = 47369, - [SMALL_STATE(1835)] = 47431, - [SMALL_STATE(1836)] = 47493, - [SMALL_STATE(1837)] = 47601, - [SMALL_STATE(1838)] = 47709, - [SMALL_STATE(1839)] = 47761, - [SMALL_STATE(1840)] = 47869, - [SMALL_STATE(1841)] = 47977, - [SMALL_STATE(1842)] = 48085, - [SMALL_STATE(1843)] = 48167, - [SMALL_STATE(1844)] = 48239, - [SMALL_STATE(1845)] = 48335, - [SMALL_STATE(1846)] = 48433, - [SMALL_STATE(1847)] = 48511, - [SMALL_STATE(1848)] = 48601, - [SMALL_STATE(1849)] = 48693, - [SMALL_STATE(1850)] = 48787, - [SMALL_STATE(1851)] = 48863, - [SMALL_STATE(1852)] = 48941, - [SMALL_STATE(1853)] = 49027, - [SMALL_STATE(1854)] = 49127, - [SMALL_STATE(1855)] = 49235, - [SMALL_STATE(1856)] = 49343, - [SMALL_STATE(1857)] = 49451, - [SMALL_STATE(1858)] = 49559, - [SMALL_STATE(1859)] = 49667, - [SMALL_STATE(1860)] = 49775, - [SMALL_STATE(1861)] = 49883, - [SMALL_STATE(1862)] = 49991, - [SMALL_STATE(1863)] = 50053, - [SMALL_STATE(1864)] = 50115, - [SMALL_STATE(1865)] = 50231, - [SMALL_STATE(1866)] = 50287, - [SMALL_STATE(1867)] = 50395, - [SMALL_STATE(1868)] = 50455, - [SMALL_STATE(1869)] = 50563, - [SMALL_STATE(1870)] = 50637, - [SMALL_STATE(1871)] = 50715, - [SMALL_STATE(1872)] = 50767, - [SMALL_STATE(1873)] = 50875, - [SMALL_STATE(1874)] = 50945, - [SMALL_STATE(1875)] = 51021, - [SMALL_STATE(1876)] = 51129, - [SMALL_STATE(1877)] = 51197, - [SMALL_STATE(1878)] = 51280, - [SMALL_STATE(1879)] = 51331, - [SMALL_STATE(1880)] = 51382, - [SMALL_STATE(1881)] = 51433, - [SMALL_STATE(1882)] = 51484, - [SMALL_STATE(1883)] = 51535, - [SMALL_STATE(1884)] = 51592, - [SMALL_STATE(1885)] = 51643, - [SMALL_STATE(1886)] = 51698, - [SMALL_STATE(1887)] = 51805, - [SMALL_STATE(1888)] = 51912, - [SMALL_STATE(1889)] = 52019, - [SMALL_STATE(1890)] = 52102, - [SMALL_STATE(1891)] = 52209, - [SMALL_STATE(1892)] = 52290, - [SMALL_STATE(1893)] = 52363, - [SMALL_STATE(1894)] = 52474, - [SMALL_STATE(1895)] = 52583, - [SMALL_STATE(1896)] = 52654, - [SMALL_STATE(1897)] = 52749, - [SMALL_STATE(1898)] = 52846, - [SMALL_STATE(1899)] = 52923, - [SMALL_STATE(1900)] = 53012, - [SMALL_STATE(1901)] = 53103, - [SMALL_STATE(1902)] = 53196, - [SMALL_STATE(1903)] = 53307, - [SMALL_STATE(1904)] = 53382, - [SMALL_STATE(1905)] = 53459, - [SMALL_STATE(1906)] = 53570, - [SMALL_STATE(1907)] = 53655, - [SMALL_STATE(1908)] = 53708, - [SMALL_STATE(1909)] = 53807, - [SMALL_STATE(1910)] = 53860, - [SMALL_STATE(1911)] = 53917, - [SMALL_STATE(1912)] = 53970, - [SMALL_STATE(1913)] = 54021, - [SMALL_STATE(1914)] = 54128, - [SMALL_STATE(1915)] = 54235, - [SMALL_STATE(1916)] = 54288, - [SMALL_STATE(1917)] = 54339, - [SMALL_STATE(1918)] = 54422, - [SMALL_STATE(1919)] = 54473, - [SMALL_STATE(1920)] = 54580, - [SMALL_STATE(1921)] = 54637, - [SMALL_STATE(1922)] = 54696, - [SMALL_STATE(1923)] = 54763, - [SMALL_STATE(1924)] = 54838, - [SMALL_STATE(1925)] = 54945, - [SMALL_STATE(1926)] = 55002, - [SMALL_STATE(1927)] = 55059, - [SMALL_STATE(1928)] = 55166, - [SMALL_STATE(1929)] = 55219, - [SMALL_STATE(1930)] = 55288, - [SMALL_STATE(1931)] = 55395, - [SMALL_STATE(1932)] = 55446, - [SMALL_STATE(1933)] = 55553, - [SMALL_STATE(1934)] = 55606, - [SMALL_STATE(1935)] = 55665, - [SMALL_STATE(1936)] = 55724, - [SMALL_STATE(1937)] = 55783, - [SMALL_STATE(1938)] = 55838, - [SMALL_STATE(1939)] = 55889, - [SMALL_STATE(1940)] = 55940, - [SMALL_STATE(1941)] = 56051, - [SMALL_STATE(1942)] = 56108, - [SMALL_STATE(1943)] = 56165, - [SMALL_STATE(1944)] = 56276, - [SMALL_STATE(1945)] = 56387, - [SMALL_STATE(1946)] = 56498, - [SMALL_STATE(1947)] = 56605, - [SMALL_STATE(1948)] = 56688, - [SMALL_STATE(1949)] = 56743, - [SMALL_STATE(1950)] = 56806, - [SMALL_STATE(1951)] = 56869, - [SMALL_STATE(1952)] = 56922, - [SMALL_STATE(1953)] = 56975, - [SMALL_STATE(1954)] = 57058, - [SMALL_STATE(1955)] = 57123, - [SMALL_STATE(1956)] = 57188, - [SMALL_STATE(1957)] = 57245, - [SMALL_STATE(1958)] = 57302, - [SMALL_STATE(1959)] = 57359, - [SMALL_STATE(1960)] = 57466, - [SMALL_STATE(1961)] = 57535, - [SMALL_STATE(1962)] = 57588, - [SMALL_STATE(1963)] = 57661, - [SMALL_STATE(1964)] = 57712, - [SMALL_STATE(1965)] = 57763, - [SMALL_STATE(1966)] = 57814, - [SMALL_STATE(1967)] = 57865, - [SMALL_STATE(1968)] = 57916, - [SMALL_STATE(1969)] = 57989, - [SMALL_STATE(1970)] = 58058, - [SMALL_STATE(1971)] = 58109, - [SMALL_STATE(1972)] = 58182, - [SMALL_STATE(1973)] = 58251, - [SMALL_STATE(1974)] = 58302, - [SMALL_STATE(1975)] = 58355, - [SMALL_STATE(1976)] = 58406, - [SMALL_STATE(1977)] = 58467, - [SMALL_STATE(1978)] = 58520, - [SMALL_STATE(1979)] = 58571, - [SMALL_STATE(1980)] = 58630, - [SMALL_STATE(1981)] = 58687, - [SMALL_STATE(1982)] = 58742, - [SMALL_STATE(1983)] = 58799, - [SMALL_STATE(1984)] = 58852, - [SMALL_STATE(1985)] = 58903, - [SMALL_STATE(1986)] = 58954, - [SMALL_STATE(1987)] = 59005, - [SMALL_STATE(1988)] = 59058, - [SMALL_STATE(1989)] = 59109, - [SMALL_STATE(1990)] = 59160, - [SMALL_STATE(1991)] = 59213, - [SMALL_STATE(1992)] = 59264, - [SMALL_STATE(1993)] = 59321, - [SMALL_STATE(1994)] = 59372, - [SMALL_STATE(1995)] = 59423, - [SMALL_STATE(1996)] = 59474, - [SMALL_STATE(1997)] = 59525, - [SMALL_STATE(1998)] = 59576, - [SMALL_STATE(1999)] = 59627, - [SMALL_STATE(2000)] = 59680, - [SMALL_STATE(2001)] = 59731, - [SMALL_STATE(2002)] = 59786, - [SMALL_STATE(2003)] = 59849, - [SMALL_STATE(2004)] = 59912, - [SMALL_STATE(2005)] = 59963, - [SMALL_STATE(2006)] = 60072, - [SMALL_STATE(2007)] = 60125, - [SMALL_STATE(2008)] = 60176, - [SMALL_STATE(2009)] = 60227, - [SMALL_STATE(2010)] = 60278, - [SMALL_STATE(2011)] = 60329, - [SMALL_STATE(2012)] = 60380, - [SMALL_STATE(2013)] = 60431, - [SMALL_STATE(2014)] = 60482, - [SMALL_STATE(2015)] = 60555, - [SMALL_STATE(2016)] = 60606, - [SMALL_STATE(2017)] = 60657, - [SMALL_STATE(2018)] = 60708, - [SMALL_STATE(2019)] = 60759, - [SMALL_STATE(2020)] = 60814, - [SMALL_STATE(2021)] = 60877, - [SMALL_STATE(2022)] = 60928, - [SMALL_STATE(2023)] = 60979, - [SMALL_STATE(2024)] = 61030, - [SMALL_STATE(2025)] = 61081, - [SMALL_STATE(2026)] = 61144, - [SMALL_STATE(2027)] = 61195, - [SMALL_STATE(2028)] = 61258, - [SMALL_STATE(2029)] = 61331, - [SMALL_STATE(2030)] = 61382, - [SMALL_STATE(2031)] = 61435, - [SMALL_STATE(2032)] = 61486, - [SMALL_STATE(2033)] = 61537, - [SMALL_STATE(2034)] = 61588, - [SMALL_STATE(2035)] = 61651, - [SMALL_STATE(2036)] = 61714, - [SMALL_STATE(2037)] = 61771, - [SMALL_STATE(2038)] = 61822, - [SMALL_STATE(2039)] = 61873, - [SMALL_STATE(2040)] = 61924, - [SMALL_STATE(2041)] = 61981, - [SMALL_STATE(2042)] = 62088, - [SMALL_STATE(2043)] = 62145, - [SMALL_STATE(2044)] = 62202, - [SMALL_STATE(2045)] = 62255, - [SMALL_STATE(2046)] = 62308, - [SMALL_STATE(2047)] = 62367, - [SMALL_STATE(2048)] = 62418, - [SMALL_STATE(2049)] = 62469, - [SMALL_STATE(2050)] = 62520, - [SMALL_STATE(2051)] = 62571, - [SMALL_STATE(2052)] = 62622, - [SMALL_STATE(2053)] = 62673, - [SMALL_STATE(2054)] = 62724, - [SMALL_STATE(2055)] = 62775, - [SMALL_STATE(2056)] = 62826, - [SMALL_STATE(2057)] = 62877, - [SMALL_STATE(2058)] = 62928, - [SMALL_STATE(2059)] = 62979, - [SMALL_STATE(2060)] = 63030, - [SMALL_STATE(2061)] = 63081, - [SMALL_STATE(2062)] = 63132, - [SMALL_STATE(2063)] = 63183, - [SMALL_STATE(2064)] = 63234, - [SMALL_STATE(2065)] = 63287, - [SMALL_STATE(2066)] = 63360, - [SMALL_STATE(2067)] = 63429, - [SMALL_STATE(2068)] = 63480, - [SMALL_STATE(2069)] = 63549, - [SMALL_STATE(2070)] = 63600, - [SMALL_STATE(2071)] = 63671, - [SMALL_STATE(2072)] = 63744, - [SMALL_STATE(2073)] = 63795, - [SMALL_STATE(2074)] = 63846, - [SMALL_STATE(2075)] = 63899, - [SMALL_STATE(2076)] = 63982, - [SMALL_STATE(2077)] = 64033, - [SMALL_STATE(2078)] = 64084, - [SMALL_STATE(2079)] = 64135, - [SMALL_STATE(2080)] = 64186, - [SMALL_STATE(2081)] = 64247, - [SMALL_STATE(2082)] = 64354, - [SMALL_STATE(2083)] = 64461, - [SMALL_STATE(2084)] = 64568, - [SMALL_STATE(2085)] = 64675, - [SMALL_STATE(2086)] = 64782, - [SMALL_STATE(2087)] = 64863, - [SMALL_STATE(2088)] = 64934, - [SMALL_STATE(2089)] = 65029, - [SMALL_STATE(2090)] = 65126, - [SMALL_STATE(2091)] = 65203, - [SMALL_STATE(2092)] = 65292, - [SMALL_STATE(2093)] = 65383, - [SMALL_STATE(2094)] = 65476, - [SMALL_STATE(2095)] = 65551, - [SMALL_STATE(2096)] = 65628, - [SMALL_STATE(2097)] = 65713, - [SMALL_STATE(2098)] = 65812, - [SMALL_STATE(2099)] = 65919, - [SMALL_STATE(2100)] = 66026, - [SMALL_STATE(2101)] = 66133, - [SMALL_STATE(2102)] = 66240, - [SMALL_STATE(2103)] = 66347, - [SMALL_STATE(2104)] = 66454, - [SMALL_STATE(2105)] = 66561, - [SMALL_STATE(2106)] = 66668, - [SMALL_STATE(2107)] = 66737, - [SMALL_STATE(2108)] = 66812, - [SMALL_STATE(2109)] = 66919, - [SMALL_STATE(2110)] = 66986, - [SMALL_STATE(2111)] = 67037, - [SMALL_STATE(2112)] = 67101, - [SMALL_STATE(2113)] = 67161, - [SMALL_STATE(2114)] = 67221, - [SMALL_STATE(2115)] = 67285, - [SMALL_STATE(2116)] = 67343, - [SMALL_STATE(2117)] = 67401, - [SMALL_STATE(2118)] = 67463, - [SMALL_STATE(2119)] = 67525, - [SMALL_STATE(2120)] = 67587, - [SMALL_STATE(2121)] = 67649, - [SMALL_STATE(2122)] = 67759, - [SMALL_STATE(2123)] = 67821, - [SMALL_STATE(2124)] = 67883, - [SMALL_STATE(2125)] = 67993, - [SMALL_STATE(2126)] = 68047, - [SMALL_STATE(2127)] = 68157, - [SMALL_STATE(2128)] = 68211, - [SMALL_STATE(2129)] = 68265, - [SMALL_STATE(2130)] = 68319, - [SMALL_STATE(2131)] = 68369, - [SMALL_STATE(2132)] = 68429, - [SMALL_STATE(2133)] = 68535, - [SMALL_STATE(2134)] = 68641, - [SMALL_STATE(2135)] = 68691, - [SMALL_STATE(2136)] = 68797, - [SMALL_STATE(2137)] = 68903, - [SMALL_STATE(2138)] = 68969, - [SMALL_STATE(2139)] = 69033, - [SMALL_STATE(2140)] = 69139, - [SMALL_STATE(2141)] = 69245, - [SMALL_STATE(2142)] = 69325, - [SMALL_STATE(2143)] = 69435, - [SMALL_STATE(2144)] = 69505, - [SMALL_STATE(2145)] = 69615, - [SMALL_STATE(2146)] = 69709, - [SMALL_STATE(2147)] = 69805, - [SMALL_STATE(2148)] = 69881, - [SMALL_STATE(2149)] = 69969, - [SMALL_STATE(2150)] = 70059, - [SMALL_STATE(2151)] = 70151, - [SMALL_STATE(2152)] = 70225, - [SMALL_STATE(2153)] = 70301, - [SMALL_STATE(2154)] = 70385, - [SMALL_STATE(2155)] = 70483, - [SMALL_STATE(2156)] = 70589, - [SMALL_STATE(2157)] = 70695, - [SMALL_STATE(2158)] = 70761, - [SMALL_STATE(2159)] = 70867, - [SMALL_STATE(2160)] = 70973, - [SMALL_STATE(2161)] = 71079, - [SMALL_STATE(2162)] = 71185, - [SMALL_STATE(2163)] = 71291, - [SMALL_STATE(2164)] = 71345, - [SMALL_STATE(2165)] = 71399, - [SMALL_STATE(2166)] = 71453, - [SMALL_STATE(2167)] = 71563, - [SMALL_STATE(2168)] = 71669, - [SMALL_STATE(2169)] = 71723, - [SMALL_STATE(2170)] = 71797, - [SMALL_STATE(2171)] = 71851, - [SMALL_STATE(2172)] = 71915, - [SMALL_STATE(2173)] = 71991, - [SMALL_STATE(2174)] = 72043, - [SMALL_STATE(2175)] = 72153, - [SMALL_STATE(2176)] = 72213, - [SMALL_STATE(2177)] = 72269, - [SMALL_STATE(2178)] = 72333, - [SMALL_STATE(2179)] = 72399, - [SMALL_STATE(2180)] = 72465, - [SMALL_STATE(2181)] = 72517, - [SMALL_STATE(2182)] = 72569, - [SMALL_STATE(2183)] = 72623, - [SMALL_STATE(2184)] = 72729, - [SMALL_STATE(2185)] = 72781, - [SMALL_STATE(2186)] = 72833, - [SMALL_STATE(2187)] = 72887, - [SMALL_STATE(2188)] = 72941, - [SMALL_STATE(2189)] = 73051, - [SMALL_STATE(2190)] = 73101, - [SMALL_STATE(2191)] = 73153, - [SMALL_STATE(2192)] = 73205, - [SMALL_STATE(2193)] = 73259, - [SMALL_STATE(2194)] = 73309, - [SMALL_STATE(2195)] = 73361, - [SMALL_STATE(2196)] = 73411, - [SMALL_STATE(2197)] = 73475, - [SMALL_STATE(2198)] = 73525, - [SMALL_STATE(2199)] = 73575, - [SMALL_STATE(2200)] = 73629, - [SMALL_STATE(2201)] = 73679, - [SMALL_STATE(2202)] = 73729, - [SMALL_STATE(2203)] = 73787, - [SMALL_STATE(2204)] = 73851, - [SMALL_STATE(2205)] = 73901, - [SMALL_STATE(2206)] = 73967, - [SMALL_STATE(2207)] = 74017, - [SMALL_STATE(2208)] = 74067, - [SMALL_STATE(2209)] = 74177, - [SMALL_STATE(2210)] = 74229, - [SMALL_STATE(2211)] = 74279, - [SMALL_STATE(2212)] = 74329, - [SMALL_STATE(2213)] = 74439, - [SMALL_STATE(2214)] = 74497, - [SMALL_STATE(2215)] = 74571, - [SMALL_STATE(2216)] = 74635, - [SMALL_STATE(2217)] = 74701, - [SMALL_STATE(2218)] = 74775, - [SMALL_STATE(2219)] = 74851, - [SMALL_STATE(2220)] = 74961, - [SMALL_STATE(2221)] = 75011, - [SMALL_STATE(2222)] = 75063, - [SMALL_STATE(2223)] = 75113, - [SMALL_STATE(2224)] = 75189, - [SMALL_STATE(2225)] = 75295, - [SMALL_STATE(2226)] = 75405, - [SMALL_STATE(2227)] = 75461, - [SMALL_STATE(2228)] = 75571, - [SMALL_STATE(2229)] = 75621, - [SMALL_STATE(2230)] = 75679, - [SMALL_STATE(2231)] = 75729, - [SMALL_STATE(2232)] = 75839, - [SMALL_STATE(2233)] = 75893, - [SMALL_STATE(2234)] = 75951, - [SMALL_STATE(2235)] = 76001, - [SMALL_STATE(2236)] = 76065, - [SMALL_STATE(2237)] = 76125, - [SMALL_STATE(2238)] = 76235, - [SMALL_STATE(2239)] = 76345, - [SMALL_STATE(2240)] = 76413, - [SMALL_STATE(2241)] = 76487, - [SMALL_STATE(2242)] = 76593, - [SMALL_STATE(2243)] = 76659, - [SMALL_STATE(2244)] = 76713, - [SMALL_STATE(2245)] = 76779, - [SMALL_STATE(2246)] = 76829, - [SMALL_STATE(2247)] = 76883, - [SMALL_STATE(2248)] = 76937, - [SMALL_STATE(2249)] = 77003, - [SMALL_STATE(2250)] = 77111, - [SMALL_STATE(2251)] = 77221, - [SMALL_STATE(2252)] = 77271, - [SMALL_STATE(2253)] = 77335, - [SMALL_STATE(2254)] = 77401, - [SMALL_STATE(2255)] = 77455, - [SMALL_STATE(2256)] = 77505, - [SMALL_STATE(2257)] = 77563, - [SMALL_STATE(2258)] = 77627, - [SMALL_STATE(2259)] = 77677, - [SMALL_STATE(2260)] = 77731, - [SMALL_STATE(2261)] = 77781, - [SMALL_STATE(2262)] = 77835, - [SMALL_STATE(2263)] = 77885, - [SMALL_STATE(2264)] = 77949, - [SMALL_STATE(2265)] = 78011, - [SMALL_STATE(2266)] = 78061, - [SMALL_STATE(2267)] = 78111, - [SMALL_STATE(2268)] = 78163, - [SMALL_STATE(2269)] = 78227, - [SMALL_STATE(2270)] = 78337, - [SMALL_STATE(2271)] = 78401, - [SMALL_STATE(2272)] = 78457, - [SMALL_STATE(2273)] = 78567, - [SMALL_STATE(2274)] = 78677, - [SMALL_STATE(2275)] = 78741, - [SMALL_STATE(2276)] = 78851, - [SMALL_STATE(2277)] = 78915, - [SMALL_STATE(2278)] = 78965, - [SMALL_STATE(2279)] = 79023, - [SMALL_STATE(2280)] = 79073, - [SMALL_STATE(2281)] = 79123, - [SMALL_STATE(2282)] = 79173, - [SMALL_STATE(2283)] = 79223, - [SMALL_STATE(2284)] = 79273, - [SMALL_STATE(2285)] = 79323, - [SMALL_STATE(2286)] = 79433, - [SMALL_STATE(2287)] = 79483, - [SMALL_STATE(2288)] = 79593, - [SMALL_STATE(2289)] = 79703, - [SMALL_STATE(2290)] = 79813, - [SMALL_STATE(2291)] = 79923, - [SMALL_STATE(2292)] = 80033, - [SMALL_STATE(2293)] = 80143, - [SMALL_STATE(2294)] = 80197, - [SMALL_STATE(2295)] = 80251, - [SMALL_STATE(2296)] = 80305, - [SMALL_STATE(2297)] = 80359, - [SMALL_STATE(2298)] = 80423, - [SMALL_STATE(2299)] = 80489, - [SMALL_STATE(2300)] = 80547, - [SMALL_STATE(2301)] = 80613, - [SMALL_STATE(2302)] = 80723, - [SMALL_STATE(2303)] = 80781, - [SMALL_STATE(2304)] = 80847, - [SMALL_STATE(2305)] = 80897, - [SMALL_STATE(2306)] = 81007, - [SMALL_STATE(2307)] = 81071, - [SMALL_STATE(2308)] = 81137, - [SMALL_STATE(2309)] = 81247, - [SMALL_STATE(2310)] = 81301, - [SMALL_STATE(2311)] = 81351, - [SMALL_STATE(2312)] = 81461, - [SMALL_STATE(2313)] = 81567, - [SMALL_STATE(2314)] = 81633, - [SMALL_STATE(2315)] = 81687, - [SMALL_STATE(2316)] = 81755, - [SMALL_STATE(2317)] = 81811, - [SMALL_STATE(2318)] = 81861, - [SMALL_STATE(2319)] = 81911, - [SMALL_STATE(2320)] = 81961, - [SMALL_STATE(2321)] = 82011, - [SMALL_STATE(2322)] = 82085, - [SMALL_STATE(2323)] = 82161, - [SMALL_STATE(2324)] = 82211, - [SMALL_STATE(2325)] = 82261, - [SMALL_STATE(2326)] = 82311, - [SMALL_STATE(2327)] = 82361, - [SMALL_STATE(2328)] = 82411, - [SMALL_STATE(2329)] = 82521, - [SMALL_STATE(2330)] = 82631, - [SMALL_STATE(2331)] = 82741, - [SMALL_STATE(2332)] = 82795, - [SMALL_STATE(2333)] = 82869, - [SMALL_STATE(2334)] = 82919, - [SMALL_STATE(2335)] = 82995, - [SMALL_STATE(2336)] = 83059, - [SMALL_STATE(2337)] = 83169, - [SMALL_STATE(2338)] = 83279, - [SMALL_STATE(2339)] = 83335, - [SMALL_STATE(2340)] = 83391, - [SMALL_STATE(2341)] = 83455, - [SMALL_STATE(2342)] = 83565, - [SMALL_STATE(2343)] = 83615, - [SMALL_STATE(2344)] = 83701, - [SMALL_STATE(2345)] = 83775, - [SMALL_STATE(2346)] = 83829, - [SMALL_STATE(2347)] = 83905, - [SMALL_STATE(2348)] = 83967, - [SMALL_STATE(2349)] = 84029, - [SMALL_STATE(2350)] = 84083, - [SMALL_STATE(2351)] = 84135, - [SMALL_STATE(2352)] = 84187, - [SMALL_STATE(2353)] = 84253, - [SMALL_STATE(2354)] = 84359, - [SMALL_STATE(2355)] = 84421, - [SMALL_STATE(2356)] = 84483, - [SMALL_STATE(2357)] = 84535, - [SMALL_STATE(2358)] = 84601, - [SMALL_STATE(2359)] = 84651, - [SMALL_STATE(2360)] = 84756, - [SMALL_STATE(2361)] = 84831, - [SMALL_STATE(2362)] = 84914, - [SMALL_STATE(2363)] = 85011, - [SMALL_STATE(2364)] = 85116, - [SMALL_STATE(2365)] = 85221, - [SMALL_STATE(2366)] = 85326, - [SMALL_STATE(2367)] = 85431, - [SMALL_STATE(2368)] = 85536, - [SMALL_STATE(2369)] = 85641, - [SMALL_STATE(2370)] = 85746, - [SMALL_STATE(2371)] = 85851, - [SMALL_STATE(2372)] = 85956, - [SMALL_STATE(2373)] = 86007, - [SMALL_STATE(2374)] = 86112, - [SMALL_STATE(2375)] = 86181, - [SMALL_STATE(2376)] = 86240, - [SMALL_STATE(2377)] = 86291, - [SMALL_STATE(2378)] = 86396, - [SMALL_STATE(2379)] = 86465, - [SMALL_STATE(2380)] = 86524, - [SMALL_STATE(2381)] = 86583, - [SMALL_STATE(2382)] = 86634, - [SMALL_STATE(2383)] = 86685, - [SMALL_STATE(2384)] = 86744, - [SMALL_STATE(2385)] = 86821, - [SMALL_STATE(2386)] = 86872, - [SMALL_STATE(2387)] = 86977, - [SMALL_STATE(2388)] = 87036, - [SMALL_STATE(2389)] = 87141, - [SMALL_STATE(2390)] = 87246, - [SMALL_STATE(2391)] = 87351, - [SMALL_STATE(2392)] = 87456, - [SMALL_STATE(2393)] = 87561, - [SMALL_STATE(2394)] = 87640, - [SMALL_STATE(2395)] = 87709, - [SMALL_STATE(2396)] = 87802, - [SMALL_STATE(2397)] = 87897, - [SMALL_STATE(2398)] = 87972, - [SMALL_STATE(2399)] = 88031, - [SMALL_STATE(2400)] = 88106, - [SMALL_STATE(2401)] = 88193, - [SMALL_STATE(2402)] = 88252, - [SMALL_STATE(2403)] = 88341, - [SMALL_STATE(2404)] = 88432, - [SMALL_STATE(2405)] = 88499, - [SMALL_STATE(2406)] = 88572, - [SMALL_STATE(2407)] = 88677, - [SMALL_STATE(2408)] = 88742, - [SMALL_STATE(2409)] = 88815, - [SMALL_STATE(2410)] = 88890, - [SMALL_STATE(2411)] = 88973, - [SMALL_STATE(2412)] = 89078, - [SMALL_STATE(2413)] = 89175, - [SMALL_STATE(2414)] = 89280, - [SMALL_STATE(2415)] = 89347, - [SMALL_STATE(2416)] = 89420, - [SMALL_STATE(2417)] = 89525, - [SMALL_STATE(2418)] = 89590, - [SMALL_STATE(2419)] = 89695, - [SMALL_STATE(2420)] = 89800, - [SMALL_STATE(2421)] = 89905, - [SMALL_STATE(2422)] = 90010, - [SMALL_STATE(2423)] = 90063, - [SMALL_STATE(2424)] = 90168, - [SMALL_STATE(2425)] = 90273, - [SMALL_STATE(2426)] = 90378, - [SMALL_STATE(2427)] = 90483, - [SMALL_STATE(2428)] = 90588, - [SMALL_STATE(2429)] = 90647, - [SMALL_STATE(2430)] = 90728, - [SMALL_STATE(2431)] = 90785, - [SMALL_STATE(2432)] = 90844, - [SMALL_STATE(2433)] = 90899, - [SMALL_STATE(2434)] = 90954, - [SMALL_STATE(2435)] = 91013, - [SMALL_STATE(2436)] = 91120, - [SMALL_STATE(2437)] = 91175, - [SMALL_STATE(2438)] = 91234, - [SMALL_STATE(2439)] = 91303, - [SMALL_STATE(2440)] = 91408, - [SMALL_STATE(2441)] = 91467, - [SMALL_STATE(2442)] = 91572, - [SMALL_STATE(2443)] = 91629, - [SMALL_STATE(2444)] = 91688, - [SMALL_STATE(2445)] = 91747, - [SMALL_STATE(2446)] = 91816, - [SMALL_STATE(2447)] = 91907, - [SMALL_STATE(2448)] = 91980, - [SMALL_STATE(2449)] = 92035, - [SMALL_STATE(2450)] = 92088, - [SMALL_STATE(2451)] = 92193, - [SMALL_STATE(2452)] = 92244, - [SMALL_STATE(2453)] = 92303, - [SMALL_STATE(2454)] = 92354, - [SMALL_STATE(2455)] = 92461, - [SMALL_STATE(2456)] = 92520, - [SMALL_STATE(2457)] = 92577, - [SMALL_STATE(2458)] = 92646, - [SMALL_STATE(2459)] = 92705, - [SMALL_STATE(2460)] = 92764, - [SMALL_STATE(2461)] = 92821, - [SMALL_STATE(2462)] = 92880, - [SMALL_STATE(2463)] = 92937, - [SMALL_STATE(2464)] = 92996, - [SMALL_STATE(2465)] = 93049, - [SMALL_STATE(2466)] = 93154, - [SMALL_STATE(2467)] = 93213, - [SMALL_STATE(2468)] = 93318, - [SMALL_STATE(2469)] = 93423, - [SMALL_STATE(2470)] = 93528, - [SMALL_STATE(2471)] = 93585, - [SMALL_STATE(2472)] = 93690, - [SMALL_STATE(2473)] = 93741, - [SMALL_STATE(2474)] = 93810, - [SMALL_STATE(2475)] = 93915, - [SMALL_STATE(2476)] = 93974, - [SMALL_STATE(2477)] = 94029, - [SMALL_STATE(2478)] = 94084, - [SMALL_STATE(2479)] = 94173, - [SMALL_STATE(2480)] = 94252, - [SMALL_STATE(2481)] = 94307, - [SMALL_STATE(2482)] = 94376, - [SMALL_STATE(2483)] = 94469, - [SMALL_STATE(2484)] = 94564, - [SMALL_STATE(2485)] = 94623, - [SMALL_STATE(2486)] = 94728, - [SMALL_STATE(2487)] = 94833, - [SMALL_STATE(2488)] = 94938, - [SMALL_STATE(2489)] = 95043, - [SMALL_STATE(2490)] = 95148, - [SMALL_STATE(2491)] = 95227, - [SMALL_STATE(2492)] = 95296, - [SMALL_STATE(2493)] = 95389, - [SMALL_STATE(2494)] = 95484, - [SMALL_STATE(2495)] = 95559, - [SMALL_STATE(2496)] = 95646, - [SMALL_STATE(2497)] = 95735, - [SMALL_STATE(2498)] = 95826, - [SMALL_STATE(2499)] = 95899, - [SMALL_STATE(2500)] = 95974, - [SMALL_STATE(2501)] = 96057, - [SMALL_STATE(2502)] = 96154, - [SMALL_STATE(2503)] = 96259, - [SMALL_STATE(2504)] = 96364, - [SMALL_STATE(2505)] = 96469, - [SMALL_STATE(2506)] = 96574, - [SMALL_STATE(2507)] = 96679, - [SMALL_STATE(2508)] = 96784, - [SMALL_STATE(2509)] = 96889, - [SMALL_STATE(2510)] = 96994, - [SMALL_STATE(2511)] = 97053, - [SMALL_STATE(2512)] = 97108, - [SMALL_STATE(2513)] = 97183, - [SMALL_STATE(2514)] = 97234, - [SMALL_STATE(2515)] = 97301, - [SMALL_STATE(2516)] = 97374, - [SMALL_STATE(2517)] = 97479, - [SMALL_STATE(2518)] = 97544, - [SMALL_STATE(2519)] = 97631, - [SMALL_STATE(2520)] = 97720, - [SMALL_STATE(2521)] = 97779, - [SMALL_STATE(2522)] = 97836, - [SMALL_STATE(2523)] = 97887, - [SMALL_STATE(2524)] = 97944, - [SMALL_STATE(2525)] = 98003, - [SMALL_STATE(2526)] = 98051, - [SMALL_STATE(2527)] = 98111, - [SMALL_STATE(2528)] = 98169, - [SMALL_STATE(2529)] = 98273, - [SMALL_STATE(2530)] = 98377, - [SMALL_STATE(2531)] = 98481, - [SMALL_STATE(2532)] = 98585, - [SMALL_STATE(2533)] = 98663, - [SMALL_STATE(2534)] = 98731, - [SMALL_STATE(2535)] = 98823, - [SMALL_STATE(2536)] = 98917, - [SMALL_STATE(2537)] = 98991, - [SMALL_STATE(2538)] = 99077, - [SMALL_STATE(2539)] = 99165, - [SMALL_STATE(2540)] = 99255, - [SMALL_STATE(2541)] = 99327, - [SMALL_STATE(2542)] = 99401, - [SMALL_STATE(2543)] = 99483, - [SMALL_STATE(2544)] = 99579, - [SMALL_STATE(2545)] = 99683, - [SMALL_STATE(2546)] = 99787, - [SMALL_STATE(2547)] = 99891, - [SMALL_STATE(2548)] = 99995, - [SMALL_STATE(2549)] = 100099, - [SMALL_STATE(2550)] = 100203, - [SMALL_STATE(2551)] = 100307, - [SMALL_STATE(2552)] = 100411, - [SMALL_STATE(2553)] = 100517, - [SMALL_STATE(2554)] = 100621, - [SMALL_STATE(2555)] = 100675, - [SMALL_STATE(2556)] = 100729, - [SMALL_STATE(2557)] = 100801, - [SMALL_STATE(2558)] = 100855, - [SMALL_STATE(2559)] = 100909, - [SMALL_STATE(2560)] = 100963, - [SMALL_STATE(2561)] = 101017, - [SMALL_STATE(2562)] = 101065, - [SMALL_STATE(2563)] = 101119, - [SMALL_STATE(2564)] = 101167, - [SMALL_STATE(2565)] = 101221, - [SMALL_STATE(2566)] = 101271, - [SMALL_STATE(2567)] = 101321, - [SMALL_STATE(2568)] = 101375, - [SMALL_STATE(2569)] = 101429, - [SMALL_STATE(2570)] = 101497, - [SMALL_STATE(2571)] = 101567, - [SMALL_STATE(2572)] = 101623, - [SMALL_STATE(2573)] = 101727, - [SMALL_STATE(2574)] = 101777, - [SMALL_STATE(2575)] = 101827, - [SMALL_STATE(2576)] = 101877, - [SMALL_STATE(2577)] = 101927, - [SMALL_STATE(2578)] = 101993, - [SMALL_STATE(2579)] = 102065, - [SMALL_STATE(2580)] = 102169, - [SMALL_STATE(2581)] = 102233, - [SMALL_STATE(2582)] = 102299, - [SMALL_STATE(2583)] = 102367, - [SMALL_STATE(2584)] = 102431, - [SMALL_STATE(2585)] = 102491, - [SMALL_STATE(2586)] = 102555, - [SMALL_STATE(2587)] = 102615, - [SMALL_STATE(2588)] = 102719, - [SMALL_STATE(2589)] = 102823, - [SMALL_STATE(2590)] = 102927, - [SMALL_STATE(2591)] = 103031, - [SMALL_STATE(2592)] = 103135, - [SMALL_STATE(2593)] = 103239, - [SMALL_STATE(2594)] = 103303, - [SMALL_STATE(2595)] = 103363, - [SMALL_STATE(2596)] = 103467, - [SMALL_STATE(2597)] = 103517, - [SMALL_STATE(2598)] = 103567, - [SMALL_STATE(2599)] = 103617, - [SMALL_STATE(2600)] = 103667, - [SMALL_STATE(2601)] = 103731, - [SMALL_STATE(2602)] = 103835, - [SMALL_STATE(2603)] = 103895, - [SMALL_STATE(2604)] = 103945, - [SMALL_STATE(2605)] = 104049, - [SMALL_STATE(2606)] = 104103, - [SMALL_STATE(2607)] = 104207, - [SMALL_STATE(2608)] = 104271, - [SMALL_STATE(2609)] = 104375, - [SMALL_STATE(2610)] = 104434, - [SMALL_STATE(2611)] = 104497, - [SMALL_STATE(2612)] = 104598, - [SMALL_STATE(2613)] = 104655, - [SMALL_STATE(2614)] = 104714, - [SMALL_STATE(2615)] = 104773, - [SMALL_STATE(2616)] = 104832, - [SMALL_STATE(2617)] = 104891, - [SMALL_STATE(2618)] = 104950, - [SMALL_STATE(2619)] = 105009, - [SMALL_STATE(2620)] = 105066, - [SMALL_STATE(2621)] = 105125, - [SMALL_STATE(2622)] = 105190, - [SMALL_STATE(2623)] = 105243, - [SMALL_STATE(2624)] = 105304, - [SMALL_STATE(2625)] = 105361, - [SMALL_STATE(2626)] = 105418, - [SMALL_STATE(2627)] = 105477, - [SMALL_STATE(2628)] = 105536, - [SMALL_STATE(2629)] = 105595, - [SMALL_STATE(2630)] = 105654, - [SMALL_STATE(2631)] = 105717, - [SMALL_STATE(2632)] = 105774, - [SMALL_STATE(2633)] = 105831, - [SMALL_STATE(2634)] = 105888, - [SMALL_STATE(2635)] = 105945, - [SMALL_STATE(2636)] = 106002, - [SMALL_STATE(2637)] = 106059, - [SMALL_STATE(2638)] = 106116, - [SMALL_STATE(2639)] = 106165, - [SMALL_STATE(2640)] = 106222, - [SMALL_STATE(2641)] = 106279, - [SMALL_STATE(2642)] = 106336, - [SMALL_STATE(2643)] = 106385, - [SMALL_STATE(2644)] = 106434, - [SMALL_STATE(2645)] = 106535, - [SMALL_STATE(2646)] = 106592, - [SMALL_STATE(2647)] = 106641, - [SMALL_STATE(2648)] = 106698, - [SMALL_STATE(2649)] = 106746, - [SMALL_STATE(2650)] = 106792, - [SMALL_STATE(2651)] = 106838, - [SMALL_STATE(2652)] = 106884, - [SMALL_STATE(2653)] = 106932, - [SMALL_STATE(2654)] = 106978, - [SMALL_STATE(2655)] = 107024, - [SMALL_STATE(2656)] = 107070, - [SMALL_STATE(2657)] = 107116, - [SMALL_STATE(2658)] = 107162, - [SMALL_STATE(2659)] = 107208, - [SMALL_STATE(2660)] = 107254, - [SMALL_STATE(2661)] = 107300, - [SMALL_STATE(2662)] = 107346, - [SMALL_STATE(2663)] = 107392, - [SMALL_STATE(2664)] = 107438, - [SMALL_STATE(2665)] = 107484, - [SMALL_STATE(2666)] = 107530, - [SMALL_STATE(2667)] = 107576, - [SMALL_STATE(2668)] = 107624, - [SMALL_STATE(2669)] = 107670, - [SMALL_STATE(2670)] = 107716, - [SMALL_STATE(2671)] = 107762, - [SMALL_STATE(2672)] = 107808, - [SMALL_STATE(2673)] = 107854, - [SMALL_STATE(2674)] = 107900, - [SMALL_STATE(2675)] = 107946, - [SMALL_STATE(2676)] = 107994, - [SMALL_STATE(2677)] = 108042, - [SMALL_STATE(2678)] = 108090, - [SMALL_STATE(2679)] = 108136, - [SMALL_STATE(2680)] = 108182, - [SMALL_STATE(2681)] = 108228, - [SMALL_STATE(2682)] = 108276, - [SMALL_STATE(2683)] = 108324, - [SMALL_STATE(2684)] = 108382, - [SMALL_STATE(2685)] = 108428, - [SMALL_STATE(2686)] = 108474, - [SMALL_STATE(2687)] = 108522, - [SMALL_STATE(2688)] = 108568, - [SMALL_STATE(2689)] = 108614, - [SMALL_STATE(2690)] = 108662, - [SMALL_STATE(2691)] = 108708, - [SMALL_STATE(2692)] = 108754, - [SMALL_STATE(2693)] = 108800, - [SMALL_STATE(2694)] = 108846, - [SMALL_STATE(2695)] = 108896, - [SMALL_STATE(2696)] = 108942, - [SMALL_STATE(2697)] = 108988, - [SMALL_STATE(2698)] = 109036, - [SMALL_STATE(2699)] = 109084, - [SMALL_STATE(2700)] = 109134, - [SMALL_STATE(2701)] = 109184, - [SMALL_STATE(2702)] = 109230, - [SMALL_STATE(2703)] = 109276, - [SMALL_STATE(2704)] = 109322, - [SMALL_STATE(2705)] = 109368, - [SMALL_STATE(2706)] = 109414, - [SMALL_STATE(2707)] = 109462, - [SMALL_STATE(2708)] = 109508, - [SMALL_STATE(2709)] = 109554, - [SMALL_STATE(2710)] = 109602, - [SMALL_STATE(2711)] = 109648, - [SMALL_STATE(2712)] = 109704, - [SMALL_STATE(2713)] = 109750, - [SMALL_STATE(2714)] = 109801, - [SMALL_STATE(2715)] = 109852, - [SMALL_STATE(2716)] = 109897, - [SMALL_STATE(2717)] = 109942, - [SMALL_STATE(2718)] = 109987, - [SMALL_STATE(2719)] = 110032, - [SMALL_STATE(2720)] = 110081, - [SMALL_STATE(2721)] = 110126, - [SMALL_STATE(2722)] = 110171, - [SMALL_STATE(2723)] = 110238, - [SMALL_STATE(2724)] = 110283, + [SMALL_STATE(1808)] = 45123, + [SMALL_STATE(1809)] = 45231, + [SMALL_STATE(1810)] = 45339, + [SMALL_STATE(1811)] = 45447, + [SMALL_STATE(1812)] = 45501, + [SMALL_STATE(1813)] = 45555, + [SMALL_STATE(1814)] = 45663, + [SMALL_STATE(1815)] = 45735, + [SMALL_STATE(1816)] = 45825, + [SMALL_STATE(1817)] = 45881, + [SMALL_STATE(1818)] = 45989, + [SMALL_STATE(1819)] = 46097, + [SMALL_STATE(1820)] = 46149, + [SMALL_STATE(1821)] = 46205, + [SMALL_STATE(1822)] = 46283, + [SMALL_STATE(1823)] = 46339, + [SMALL_STATE(1824)] = 46395, + [SMALL_STATE(1825)] = 46451, + [SMALL_STATE(1826)] = 46507, + [SMALL_STATE(1827)] = 46589, + [SMALL_STATE(1828)] = 46649, + [SMALL_STATE(1829)] = 46741, + [SMALL_STATE(1830)] = 46835, + [SMALL_STATE(1831)] = 46931, + [SMALL_STATE(1832)] = 47039, + [SMALL_STATE(1833)] = 47095, + [SMALL_STATE(1834)] = 47203, + [SMALL_STATE(1835)] = 47261, + [SMALL_STATE(1836)] = 47353, + [SMALL_STATE(1837)] = 47415, + [SMALL_STATE(1838)] = 47467, + [SMALL_STATE(1839)] = 47539, + [SMALL_STATE(1840)] = 47647, + [SMALL_STATE(1841)] = 47719, + [SMALL_STATE(1842)] = 47817, + [SMALL_STATE(1843)] = 47925, + [SMALL_STATE(1844)] = 48033, + [SMALL_STATE(1845)] = 48149, + [SMALL_STATE(1846)] = 48209, + [SMALL_STATE(1847)] = 48267, + [SMALL_STATE(1848)] = 48353, + [SMALL_STATE(1849)] = 48405, + [SMALL_STATE(1850)] = 48473, + [SMALL_STATE(1851)] = 48535, + [SMALL_STATE(1852)] = 48605, + [SMALL_STATE(1853)] = 48713, + [SMALL_STATE(1854)] = 48821, + [SMALL_STATE(1855)] = 48929, + [SMALL_STATE(1856)] = 49025, + [SMALL_STATE(1857)] = 49123, + [SMALL_STATE(1858)] = 49185, + [SMALL_STATE(1859)] = 49293, + [SMALL_STATE(1860)] = 49345, + [SMALL_STATE(1861)] = 49453, + [SMALL_STATE(1862)] = 49527, + [SMALL_STATE(1863)] = 49603, + [SMALL_STATE(1864)] = 49711, + [SMALL_STATE(1865)] = 49775, + [SMALL_STATE(1866)] = 49883, + [SMALL_STATE(1867)] = 49961, + [SMALL_STATE(1868)] = 50039, + [SMALL_STATE(1869)] = 50111, + [SMALL_STATE(1870)] = 50211, + [SMALL_STATE(1871)] = 50305, + [SMALL_STATE(1872)] = 50363, + [SMALL_STATE(1873)] = 50417, + [SMALL_STATE(1874)] = 50503, + [SMALL_STATE(1875)] = 50611, + [SMALL_STATE(1876)] = 50719, + [SMALL_STATE(1877)] = 50827, + [SMALL_STATE(1878)] = 50943, + [SMALL_STATE(1879)] = 51051, + [SMALL_STATE(1880)] = 51133, + [SMALL_STATE(1881)] = 51205, + [SMALL_STATE(1882)] = 51265, + [SMALL_STATE(1883)] = 51365, + [SMALL_STATE(1884)] = 51473, + [SMALL_STATE(1885)] = 51525, + [SMALL_STATE(1886)] = 51587, + [SMALL_STATE(1887)] = 51641, + [SMALL_STATE(1888)] = 51711, + [SMALL_STATE(1889)] = 51783, + [SMALL_STATE(1890)] = 51834, + [SMALL_STATE(1891)] = 51903, + [SMALL_STATE(1892)] = 51956, + [SMALL_STATE(1893)] = 52013, + [SMALL_STATE(1894)] = 52082, + [SMALL_STATE(1895)] = 52157, + [SMALL_STATE(1896)] = 52264, + [SMALL_STATE(1897)] = 52319, + [SMALL_STATE(1898)] = 52430, + [SMALL_STATE(1899)] = 52481, + [SMALL_STATE(1900)] = 52532, + [SMALL_STATE(1901)] = 52583, + [SMALL_STATE(1902)] = 52656, + [SMALL_STATE(1903)] = 52709, + [SMALL_STATE(1904)] = 52760, + [SMALL_STATE(1905)] = 52813, + [SMALL_STATE(1906)] = 52864, + [SMALL_STATE(1907)] = 52915, + [SMALL_STATE(1908)] = 52982, + [SMALL_STATE(1909)] = 53043, + [SMALL_STATE(1910)] = 53106, + [SMALL_STATE(1911)] = 53213, + [SMALL_STATE(1912)] = 53320, + [SMALL_STATE(1913)] = 53383, + [SMALL_STATE(1914)] = 53438, + [SMALL_STATE(1915)] = 53521, + [SMALL_STATE(1916)] = 53628, + [SMALL_STATE(1917)] = 53679, + [SMALL_STATE(1918)] = 53732, + [SMALL_STATE(1919)] = 53785, + [SMALL_STATE(1920)] = 53836, + [SMALL_STATE(1921)] = 53893, + [SMALL_STATE(1922)] = 53956, + [SMALL_STATE(1923)] = 54019, + [SMALL_STATE(1924)] = 54070, + [SMALL_STATE(1925)] = 54121, + [SMALL_STATE(1926)] = 54174, + [SMALL_STATE(1927)] = 54225, + [SMALL_STATE(1928)] = 54276, + [SMALL_STATE(1929)] = 54327, + [SMALL_STATE(1930)] = 54384, + [SMALL_STATE(1931)] = 54441, + [SMALL_STATE(1932)] = 54494, + [SMALL_STATE(1933)] = 54547, + [SMALL_STATE(1934)] = 54598, + [SMALL_STATE(1935)] = 54649, + [SMALL_STATE(1936)] = 54700, + [SMALL_STATE(1937)] = 54751, + [SMALL_STATE(1938)] = 54858, + [SMALL_STATE(1939)] = 54965, + [SMALL_STATE(1940)] = 55046, + [SMALL_STATE(1941)] = 55117, + [SMALL_STATE(1942)] = 55212, + [SMALL_STATE(1943)] = 55309, + [SMALL_STATE(1944)] = 55386, + [SMALL_STATE(1945)] = 55475, + [SMALL_STATE(1946)] = 55566, + [SMALL_STATE(1947)] = 55659, + [SMALL_STATE(1948)] = 55734, + [SMALL_STATE(1949)] = 55811, + [SMALL_STATE(1950)] = 55896, + [SMALL_STATE(1951)] = 55995, + [SMALL_STATE(1952)] = 56102, + [SMALL_STATE(1953)] = 56209, + [SMALL_STATE(1954)] = 56316, + [SMALL_STATE(1955)] = 56423, + [SMALL_STATE(1956)] = 56530, + [SMALL_STATE(1957)] = 56637, + [SMALL_STATE(1958)] = 56744, + [SMALL_STATE(1959)] = 56795, + [SMALL_STATE(1960)] = 56846, + [SMALL_STATE(1961)] = 56897, + [SMALL_STATE(1962)] = 56948, + [SMALL_STATE(1963)] = 56999, + [SMALL_STATE(1964)] = 57050, + [SMALL_STATE(1965)] = 57101, + [SMALL_STATE(1966)] = 57154, + [SMALL_STATE(1967)] = 57213, + [SMALL_STATE(1968)] = 57270, + [SMALL_STATE(1969)] = 57325, + [SMALL_STATE(1970)] = 57382, + [SMALL_STATE(1971)] = 57435, + [SMALL_STATE(1972)] = 57486, + [SMALL_STATE(1973)] = 57537, + [SMALL_STATE(1974)] = 57590, + [SMALL_STATE(1975)] = 57643, + [SMALL_STATE(1976)] = 57694, + [SMALL_STATE(1977)] = 57751, + [SMALL_STATE(1978)] = 57802, + [SMALL_STATE(1979)] = 57853, + [SMALL_STATE(1980)] = 57906, + [SMALL_STATE(1981)] = 57957, + [SMALL_STATE(1982)] = 58014, + [SMALL_STATE(1983)] = 58073, + [SMALL_STATE(1984)] = 58130, + [SMALL_STATE(1985)] = 58181, + [SMALL_STATE(1986)] = 58232, + [SMALL_STATE(1987)] = 58283, + [SMALL_STATE(1988)] = 58334, + [SMALL_STATE(1989)] = 58385, + [SMALL_STATE(1990)] = 58436, + [SMALL_STATE(1991)] = 58487, + [SMALL_STATE(1992)] = 58538, + [SMALL_STATE(1993)] = 58589, + [SMALL_STATE(1994)] = 58640, + [SMALL_STATE(1995)] = 58691, + [SMALL_STATE(1996)] = 58742, + [SMALL_STATE(1997)] = 58793, + [SMALL_STATE(1998)] = 58844, + [SMALL_STATE(1999)] = 58895, + [SMALL_STATE(2000)] = 58948, + [SMALL_STATE(2001)] = 58999, + [SMALL_STATE(2002)] = 59050, + [SMALL_STATE(2003)] = 59107, + [SMALL_STATE(2004)] = 59158, + [SMALL_STATE(2005)] = 59209, + [SMALL_STATE(2006)] = 59260, + [SMALL_STATE(2007)] = 59311, + [SMALL_STATE(2008)] = 59362, + [SMALL_STATE(2009)] = 59413, + [SMALL_STATE(2010)] = 59464, + [SMALL_STATE(2011)] = 59515, + [SMALL_STATE(2012)] = 59566, + [SMALL_STATE(2013)] = 59623, + [SMALL_STATE(2014)] = 59730, + [SMALL_STATE(2015)] = 59781, + [SMALL_STATE(2016)] = 59832, + [SMALL_STATE(2017)] = 59883, + [SMALL_STATE(2018)] = 59936, + [SMALL_STATE(2019)] = 59987, + [SMALL_STATE(2020)] = 60038, + [SMALL_STATE(2021)] = 60089, + [SMALL_STATE(2022)] = 60140, + [SMALL_STATE(2023)] = 60191, + [SMALL_STATE(2024)] = 60242, + [SMALL_STATE(2025)] = 60293, + [SMALL_STATE(2026)] = 60344, + [SMALL_STATE(2027)] = 60395, + [SMALL_STATE(2028)] = 60446, + [SMALL_STATE(2029)] = 60497, + [SMALL_STATE(2030)] = 60548, + [SMALL_STATE(2031)] = 60599, + [SMALL_STATE(2032)] = 60650, + [SMALL_STATE(2033)] = 60701, + [SMALL_STATE(2034)] = 60752, + [SMALL_STATE(2035)] = 60803, + [SMALL_STATE(2036)] = 60854, + [SMALL_STATE(2037)] = 60905, + [SMALL_STATE(2038)] = 60956, + [SMALL_STATE(2039)] = 61007, + [SMALL_STATE(2040)] = 61058, + [SMALL_STATE(2041)] = 61115, + [SMALL_STATE(2042)] = 61170, + [SMALL_STATE(2043)] = 61253, + [SMALL_STATE(2044)] = 61364, + [SMALL_STATE(2045)] = 61475, + [SMALL_STATE(2046)] = 61586, + [SMALL_STATE(2047)] = 61695, + [SMALL_STATE(2048)] = 61806, + [SMALL_STATE(2049)] = 61889, + [SMALL_STATE(2050)] = 61944, + [SMALL_STATE(2051)] = 62017, + [SMALL_STATE(2052)] = 62076, + [SMALL_STATE(2053)] = 62135, + [SMALL_STATE(2054)] = 62194, + [SMALL_STATE(2055)] = 62249, + [SMALL_STATE(2056)] = 62300, + [SMALL_STATE(2057)] = 62373, + [SMALL_STATE(2058)] = 62430, + [SMALL_STATE(2059)] = 62487, + [SMALL_STATE(2060)] = 62556, + [SMALL_STATE(2061)] = 62629, + [SMALL_STATE(2062)] = 62698, + [SMALL_STATE(2063)] = 62781, + [SMALL_STATE(2064)] = 62844, + [SMALL_STATE(2065)] = 62907, + [SMALL_STATE(2066)] = 62960, + [SMALL_STATE(2067)] = 63013, + [SMALL_STATE(2068)] = 63096, + [SMALL_STATE(2069)] = 63161, + [SMALL_STATE(2070)] = 63226, + [SMALL_STATE(2071)] = 63299, + [SMALL_STATE(2072)] = 63356, + [SMALL_STATE(2073)] = 63413, + [SMALL_STATE(2074)] = 63470, + [SMALL_STATE(2075)] = 63523, + [SMALL_STATE(2076)] = 63586, + [SMALL_STATE(2077)] = 63659, + [SMALL_STATE(2078)] = 63722, + [SMALL_STATE(2079)] = 63785, + [SMALL_STATE(2080)] = 63838, + [SMALL_STATE(2081)] = 63891, + [SMALL_STATE(2082)] = 63974, + [SMALL_STATE(2083)] = 64047, + [SMALL_STATE(2084)] = 64116, + [SMALL_STATE(2085)] = 64175, + [SMALL_STATE(2086)] = 64244, + [SMALL_STATE(2087)] = 64315, + [SMALL_STATE(2088)] = 64388, + [SMALL_STATE(2089)] = 64499, + [SMALL_STATE(2090)] = 64610, + [SMALL_STATE(2091)] = 64663, + [SMALL_STATE(2092)] = 64772, + [SMALL_STATE(2093)] = 64833, + [SMALL_STATE(2094)] = 64940, + [SMALL_STATE(2095)] = 65047, + [SMALL_STATE(2096)] = 65154, + [SMALL_STATE(2097)] = 65261, + [SMALL_STATE(2098)] = 65368, + [SMALL_STATE(2099)] = 65449, + [SMALL_STATE(2100)] = 65520, + [SMALL_STATE(2101)] = 65615, + [SMALL_STATE(2102)] = 65712, + [SMALL_STATE(2103)] = 65789, + [SMALL_STATE(2104)] = 65878, + [SMALL_STATE(2105)] = 65969, + [SMALL_STATE(2106)] = 66062, + [SMALL_STATE(2107)] = 66137, + [SMALL_STATE(2108)] = 66214, + [SMALL_STATE(2109)] = 66299, + [SMALL_STATE(2110)] = 66398, + [SMALL_STATE(2111)] = 66505, + [SMALL_STATE(2112)] = 66612, + [SMALL_STATE(2113)] = 66719, + [SMALL_STATE(2114)] = 66826, + [SMALL_STATE(2115)] = 66933, + [SMALL_STATE(2116)] = 67040, + [SMALL_STATE(2117)] = 67147, + [SMALL_STATE(2118)] = 67254, + [SMALL_STATE(2119)] = 67323, + [SMALL_STATE(2120)] = 67398, + [SMALL_STATE(2121)] = 67505, + [SMALL_STATE(2122)] = 67572, + [SMALL_STATE(2123)] = 67623, + [SMALL_STATE(2124)] = 67733, + [SMALL_STATE(2125)] = 67807, + [SMALL_STATE(2126)] = 67857, + [SMALL_STATE(2127)] = 67933, + [SMALL_STATE(2128)] = 67983, + [SMALL_STATE(2129)] = 68035, + [SMALL_STATE(2130)] = 68145, + [SMALL_STATE(2131)] = 68195, + [SMALL_STATE(2132)] = 68255, + [SMALL_STATE(2133)] = 68309, + [SMALL_STATE(2134)] = 68365, + [SMALL_STATE(2135)] = 68423, + [SMALL_STATE(2136)] = 68475, + [SMALL_STATE(2137)] = 68527, + [SMALL_STATE(2138)] = 68581, + [SMALL_STATE(2139)] = 68645, + [SMALL_STATE(2140)] = 68695, + [SMALL_STATE(2141)] = 68747, + [SMALL_STATE(2142)] = 68799, + [SMALL_STATE(2143)] = 68853, + [SMALL_STATE(2144)] = 68907, + [SMALL_STATE(2145)] = 68959, + [SMALL_STATE(2146)] = 69011, + [SMALL_STATE(2147)] = 69065, + [SMALL_STATE(2148)] = 69117, + [SMALL_STATE(2149)] = 69167, + [SMALL_STATE(2150)] = 69253, + [SMALL_STATE(2151)] = 69327, + [SMALL_STATE(2152)] = 69377, + [SMALL_STATE(2153)] = 69453, + [SMALL_STATE(2154)] = 69505, + [SMALL_STATE(2155)] = 69611, + [SMALL_STATE(2156)] = 69667, + [SMALL_STATE(2157)] = 69717, + [SMALL_STATE(2158)] = 69827, + [SMALL_STATE(2159)] = 69877, + [SMALL_STATE(2160)] = 69935, + [SMALL_STATE(2161)] = 69985, + [SMALL_STATE(2162)] = 70039, + [SMALL_STATE(2163)] = 70093, + [SMALL_STATE(2164)] = 70147, + [SMALL_STATE(2165)] = 70201, + [SMALL_STATE(2166)] = 70255, + [SMALL_STATE(2167)] = 70311, + [SMALL_STATE(2168)] = 70365, + [SMALL_STATE(2169)] = 70419, + [SMALL_STATE(2170)] = 70469, + [SMALL_STATE(2171)] = 70575, + [SMALL_STATE(2172)] = 70625, + [SMALL_STATE(2173)] = 70689, + [SMALL_STATE(2174)] = 70755, + [SMALL_STATE(2175)] = 70819, + [SMALL_STATE(2176)] = 70883, + [SMALL_STATE(2177)] = 70933, + [SMALL_STATE(2178)] = 70983, + [SMALL_STATE(2179)] = 71033, + [SMALL_STATE(2180)] = 71083, + [SMALL_STATE(2181)] = 71191, + [SMALL_STATE(2182)] = 71241, + [SMALL_STATE(2183)] = 71315, + [SMALL_STATE(2184)] = 71391, + [SMALL_STATE(2185)] = 71447, + [SMALL_STATE(2186)] = 71497, + [SMALL_STATE(2187)] = 71547, + [SMALL_STATE(2188)] = 71597, + [SMALL_STATE(2189)] = 71647, + [SMALL_STATE(2190)] = 71703, + [SMALL_STATE(2191)] = 71761, + [SMALL_STATE(2192)] = 71811, + [SMALL_STATE(2193)] = 71875, + [SMALL_STATE(2194)] = 71941, + [SMALL_STATE(2195)] = 72015, + [SMALL_STATE(2196)] = 72089, + [SMALL_STATE(2197)] = 72165, + [SMALL_STATE(2198)] = 72227, + [SMALL_STATE(2199)] = 72289, + [SMALL_STATE(2200)] = 72343, + [SMALL_STATE(2201)] = 72419, + [SMALL_STATE(2202)] = 72471, + [SMALL_STATE(2203)] = 72523, + [SMALL_STATE(2204)] = 72585, + [SMALL_STATE(2205)] = 72647, + [SMALL_STATE(2206)] = 72707, + [SMALL_STATE(2207)] = 72767, + [SMALL_STATE(2208)] = 72831, + [SMALL_STATE(2209)] = 72889, + [SMALL_STATE(2210)] = 72947, + [SMALL_STATE(2211)] = 73009, + [SMALL_STATE(2212)] = 73071, + [SMALL_STATE(2213)] = 73133, + [SMALL_STATE(2214)] = 73195, + [SMALL_STATE(2215)] = 73257, + [SMALL_STATE(2216)] = 73319, + [SMALL_STATE(2217)] = 73373, + [SMALL_STATE(2218)] = 73423, + [SMALL_STATE(2219)] = 73481, + [SMALL_STATE(2220)] = 73535, + [SMALL_STATE(2221)] = 73645, + [SMALL_STATE(2222)] = 73699, + [SMALL_STATE(2223)] = 73757, + [SMALL_STATE(2224)] = 73867, + [SMALL_STATE(2225)] = 73927, + [SMALL_STATE(2226)] = 73987, + [SMALL_STATE(2227)] = 74093, + [SMALL_STATE(2228)] = 74199, + [SMALL_STATE(2229)] = 74253, + [SMALL_STATE(2230)] = 74359, + [SMALL_STATE(2231)] = 74465, + [SMALL_STATE(2232)] = 74571, + [SMALL_STATE(2233)] = 74651, + [SMALL_STATE(2234)] = 74761, + [SMALL_STATE(2235)] = 74831, + [SMALL_STATE(2236)] = 74941, + [SMALL_STATE(2237)] = 75035, + [SMALL_STATE(2238)] = 75131, + [SMALL_STATE(2239)] = 75207, + [SMALL_STATE(2240)] = 75295, + [SMALL_STATE(2241)] = 75385, + [SMALL_STATE(2242)] = 75477, + [SMALL_STATE(2243)] = 75551, + [SMALL_STATE(2244)] = 75627, + [SMALL_STATE(2245)] = 75711, + [SMALL_STATE(2246)] = 75809, + [SMALL_STATE(2247)] = 75915, + [SMALL_STATE(2248)] = 76021, + [SMALL_STATE(2249)] = 76127, + [SMALL_STATE(2250)] = 76233, + [SMALL_STATE(2251)] = 76339, + [SMALL_STATE(2252)] = 76445, + [SMALL_STATE(2253)] = 76551, + [SMALL_STATE(2254)] = 76607, + [SMALL_STATE(2255)] = 76717, + [SMALL_STATE(2256)] = 76823, + [SMALL_STATE(2257)] = 76933, + [SMALL_STATE(2258)] = 76983, + [SMALL_STATE(2259)] = 77093, + [SMALL_STATE(2260)] = 77143, + [SMALL_STATE(2261)] = 77193, + [SMALL_STATE(2262)] = 77299, + [SMALL_STATE(2263)] = 77349, + [SMALL_STATE(2264)] = 77399, + [SMALL_STATE(2265)] = 77449, + [SMALL_STATE(2266)] = 77559, + [SMALL_STATE(2267)] = 77609, + [SMALL_STATE(2268)] = 77677, + [SMALL_STATE(2269)] = 77787, + [SMALL_STATE(2270)] = 77897, + [SMALL_STATE(2271)] = 78007, + [SMALL_STATE(2272)] = 78117, + [SMALL_STATE(2273)] = 78227, + [SMALL_STATE(2274)] = 78277, + [SMALL_STATE(2275)] = 78387, + [SMALL_STATE(2276)] = 78441, + [SMALL_STATE(2277)] = 78551, + [SMALL_STATE(2278)] = 78605, + [SMALL_STATE(2279)] = 78659, + [SMALL_STATE(2280)] = 78713, + [SMALL_STATE(2281)] = 78763, + [SMALL_STATE(2282)] = 78873, + [SMALL_STATE(2283)] = 78937, + [SMALL_STATE(2284)] = 79003, + [SMALL_STATE(2285)] = 79113, + [SMALL_STATE(2286)] = 79163, + [SMALL_STATE(2287)] = 79237, + [SMALL_STATE(2288)] = 79291, + [SMALL_STATE(2289)] = 79359, + [SMALL_STATE(2290)] = 79425, + [SMALL_STATE(2291)] = 79499, + [SMALL_STATE(2292)] = 79605, + [SMALL_STATE(2293)] = 79671, + [SMALL_STATE(2294)] = 79725, + [SMALL_STATE(2295)] = 79801, + [SMALL_STATE(2296)] = 79867, + [SMALL_STATE(2297)] = 79917, + [SMALL_STATE(2298)] = 79981, + [SMALL_STATE(2299)] = 80047, + [SMALL_STATE(2300)] = 80111, + [SMALL_STATE(2301)] = 80221, + [SMALL_STATE(2302)] = 80285, + [SMALL_STATE(2303)] = 80395, + [SMALL_STATE(2304)] = 80505, + [SMALL_STATE(2305)] = 80569, + [SMALL_STATE(2306)] = 80679, + [SMALL_STATE(2307)] = 80743, + [SMALL_STATE(2308)] = 80793, + [SMALL_STATE(2309)] = 80847, + [SMALL_STATE(2310)] = 80911, + [SMALL_STATE(2311)] = 80977, + [SMALL_STATE(2312)] = 81031, + [SMALL_STATE(2313)] = 81081, + [SMALL_STATE(2314)] = 81131, + [SMALL_STATE(2315)] = 81183, + [SMALL_STATE(2316)] = 81233, + [SMALL_STATE(2317)] = 81283, + [SMALL_STATE(2318)] = 81333, + [SMALL_STATE(2319)] = 81383, + [SMALL_STATE(2320)] = 81433, + [SMALL_STATE(2321)] = 81543, + [SMALL_STATE(2322)] = 81607, + [SMALL_STATE(2323)] = 81717, + [SMALL_STATE(2324)] = 81827, + [SMALL_STATE(2325)] = 81937, + [SMALL_STATE(2326)] = 81995, + [SMALL_STATE(2327)] = 82049, + [SMALL_STATE(2328)] = 82113, + [SMALL_STATE(2329)] = 82167, + [SMALL_STATE(2330)] = 82233, + [SMALL_STATE(2331)] = 82299, + [SMALL_STATE(2332)] = 82365, + [SMALL_STATE(2333)] = 82431, + [SMALL_STATE(2334)] = 82495, + [SMALL_STATE(2335)] = 82561, + [SMALL_STATE(2336)] = 82615, + [SMALL_STATE(2337)] = 82681, + [SMALL_STATE(2338)] = 82735, + [SMALL_STATE(2339)] = 82785, + [SMALL_STATE(2340)] = 82835, + [SMALL_STATE(2341)] = 82945, + [SMALL_STATE(2342)] = 83055, + [SMALL_STATE(2343)] = 83165, + [SMALL_STATE(2344)] = 83275, + [SMALL_STATE(2345)] = 83385, + [SMALL_STATE(2346)] = 83435, + [SMALL_STATE(2347)] = 83545, + [SMALL_STATE(2348)] = 83655, + [SMALL_STATE(2349)] = 83765, + [SMALL_STATE(2350)] = 83829, + [SMALL_STATE(2351)] = 83893, + [SMALL_STATE(2352)] = 83959, + [SMALL_STATE(2353)] = 84017, + [SMALL_STATE(2354)] = 84067, + [SMALL_STATE(2355)] = 84119, + [SMALL_STATE(2356)] = 84183, + [SMALL_STATE(2357)] = 84233, + [SMALL_STATE(2358)] = 84297, + [SMALL_STATE(2359)] = 84403, + [SMALL_STATE(2360)] = 84469, + [SMALL_STATE(2361)] = 84535, + [SMALL_STATE(2362)] = 84589, + [SMALL_STATE(2363)] = 84639, + [SMALL_STATE(2364)] = 84749, + [SMALL_STATE(2365)] = 84811, + [SMALL_STATE(2366)] = 84921, + [SMALL_STATE(2367)] = 84971, + [SMALL_STATE(2368)] = 85021, + [SMALL_STATE(2369)] = 85073, + [SMALL_STATE(2370)] = 85131, + [SMALL_STATE(2371)] = 85237, + [SMALL_STATE(2372)] = 85302, + [SMALL_STATE(2373)] = 85379, + [SMALL_STATE(2374)] = 85438, + [SMALL_STATE(2375)] = 85497, + [SMALL_STATE(2376)] = 85556, + [SMALL_STATE(2377)] = 85615, + [SMALL_STATE(2378)] = 85696, + [SMALL_STATE(2379)] = 85755, + [SMALL_STATE(2380)] = 85860, + [SMALL_STATE(2381)] = 85965, + [SMALL_STATE(2382)] = 86070, + [SMALL_STATE(2383)] = 86175, + [SMALL_STATE(2384)] = 86280, + [SMALL_STATE(2385)] = 86359, + [SMALL_STATE(2386)] = 86428, + [SMALL_STATE(2387)] = 86521, + [SMALL_STATE(2388)] = 86616, + [SMALL_STATE(2389)] = 86691, + [SMALL_STATE(2390)] = 86778, + [SMALL_STATE(2391)] = 86867, + [SMALL_STATE(2392)] = 86958, + [SMALL_STATE(2393)] = 87031, + [SMALL_STATE(2394)] = 87106, + [SMALL_STATE(2395)] = 87189, + [SMALL_STATE(2396)] = 87286, + [SMALL_STATE(2397)] = 87391, + [SMALL_STATE(2398)] = 87496, + [SMALL_STATE(2399)] = 87601, + [SMALL_STATE(2400)] = 87706, + [SMALL_STATE(2401)] = 87811, + [SMALL_STATE(2402)] = 87916, + [SMALL_STATE(2403)] = 88021, + [SMALL_STATE(2404)] = 88126, + [SMALL_STATE(2405)] = 88231, + [SMALL_STATE(2406)] = 88290, + [SMALL_STATE(2407)] = 88395, + [SMALL_STATE(2408)] = 88500, + [SMALL_STATE(2409)] = 88605, + [SMALL_STATE(2410)] = 88710, + [SMALL_STATE(2411)] = 88815, + [SMALL_STATE(2412)] = 88894, + [SMALL_STATE(2413)] = 88963, + [SMALL_STATE(2414)] = 89056, + [SMALL_STATE(2415)] = 89151, + [SMALL_STATE(2416)] = 89226, + [SMALL_STATE(2417)] = 89313, + [SMALL_STATE(2418)] = 89402, + [SMALL_STATE(2419)] = 89493, + [SMALL_STATE(2420)] = 89566, + [SMALL_STATE(2421)] = 89641, + [SMALL_STATE(2422)] = 89724, + [SMALL_STATE(2423)] = 89821, + [SMALL_STATE(2424)] = 89926, + [SMALL_STATE(2425)] = 90031, + [SMALL_STATE(2426)] = 90136, + [SMALL_STATE(2427)] = 90241, + [SMALL_STATE(2428)] = 90346, + [SMALL_STATE(2429)] = 90451, + [SMALL_STATE(2430)] = 90556, + [SMALL_STATE(2431)] = 90661, + [SMALL_STATE(2432)] = 90766, + [SMALL_STATE(2433)] = 90823, + [SMALL_STATE(2434)] = 90880, + [SMALL_STATE(2435)] = 90939, + [SMALL_STATE(2436)] = 90998, + [SMALL_STATE(2437)] = 91103, + [SMALL_STATE(2438)] = 91162, + [SMALL_STATE(2439)] = 91213, + [SMALL_STATE(2440)] = 91268, + [SMALL_STATE(2441)] = 91373, + [SMALL_STATE(2442)] = 91430, + [SMALL_STATE(2443)] = 91535, + [SMALL_STATE(2444)] = 91604, + [SMALL_STATE(2445)] = 91709, + [SMALL_STATE(2446)] = 91768, + [SMALL_STATE(2447)] = 91819, + [SMALL_STATE(2448)] = 91874, + [SMALL_STATE(2449)] = 91929, + [SMALL_STATE(2450)] = 92034, + [SMALL_STATE(2451)] = 92093, + [SMALL_STATE(2452)] = 92198, + [SMALL_STATE(2453)] = 92267, + [SMALL_STATE(2454)] = 92326, + [SMALL_STATE(2455)] = 92383, + [SMALL_STATE(2456)] = 92442, + [SMALL_STATE(2457)] = 92501, + [SMALL_STATE(2458)] = 92552, + [SMALL_STATE(2459)] = 92609, + [SMALL_STATE(2460)] = 92666, + [SMALL_STATE(2461)] = 92725, + [SMALL_STATE(2462)] = 92778, + [SMALL_STATE(2463)] = 92833, + [SMALL_STATE(2464)] = 92902, + [SMALL_STATE(2465)] = 92953, + [SMALL_STATE(2466)] = 93020, + [SMALL_STATE(2467)] = 93093, + [SMALL_STATE(2468)] = 93198, + [SMALL_STATE(2469)] = 93263, + [SMALL_STATE(2470)] = 93322, + [SMALL_STATE(2471)] = 93389, + [SMALL_STATE(2472)] = 93462, + [SMALL_STATE(2473)] = 93567, + [SMALL_STATE(2474)] = 93632, + [SMALL_STATE(2475)] = 93683, + [SMALL_STATE(2476)] = 93752, + [SMALL_STATE(2477)] = 93821, + [SMALL_STATE(2478)] = 93928, + [SMALL_STATE(2479)] = 93983, + [SMALL_STATE(2480)] = 94058, + [SMALL_STATE(2481)] = 94113, + [SMALL_STATE(2482)] = 94220, + [SMALL_STATE(2483)] = 94273, + [SMALL_STATE(2484)] = 94378, + [SMALL_STATE(2485)] = 94433, + [SMALL_STATE(2486)] = 94490, + [SMALL_STATE(2487)] = 94595, + [SMALL_STATE(2488)] = 94654, + [SMALL_STATE(2489)] = 94713, + [SMALL_STATE(2490)] = 94772, + [SMALL_STATE(2491)] = 94831, + [SMALL_STATE(2492)] = 94890, + [SMALL_STATE(2493)] = 94943, + [SMALL_STATE(2494)] = 94994, + [SMALL_STATE(2495)] = 95099, + [SMALL_STATE(2496)] = 95158, + [SMALL_STATE(2497)] = 95263, + [SMALL_STATE(2498)] = 95332, + [SMALL_STATE(2499)] = 95387, + [SMALL_STATE(2500)] = 95446, + [SMALL_STATE(2501)] = 95505, + [SMALL_STATE(2502)] = 95556, + [SMALL_STATE(2503)] = 95645, + [SMALL_STATE(2504)] = 95704, + [SMALL_STATE(2505)] = 95809, + [SMALL_STATE(2506)] = 95914, + [SMALL_STATE(2507)] = 96019, + [SMALL_STATE(2508)] = 96124, + [SMALL_STATE(2509)] = 96229, + [SMALL_STATE(2510)] = 96308, + [SMALL_STATE(2511)] = 96377, + [SMALL_STATE(2512)] = 96470, + [SMALL_STATE(2513)] = 96565, + [SMALL_STATE(2514)] = 96640, + [SMALL_STATE(2515)] = 96727, + [SMALL_STATE(2516)] = 96816, + [SMALL_STATE(2517)] = 96907, + [SMALL_STATE(2518)] = 96980, + [SMALL_STATE(2519)] = 97055, + [SMALL_STATE(2520)] = 97138, + [SMALL_STATE(2521)] = 97235, + [SMALL_STATE(2522)] = 97340, + [SMALL_STATE(2523)] = 97445, + [SMALL_STATE(2524)] = 97550, + [SMALL_STATE(2525)] = 97655, + [SMALL_STATE(2526)] = 97760, + [SMALL_STATE(2527)] = 97865, + [SMALL_STATE(2528)] = 97970, + [SMALL_STATE(2529)] = 98075, + [SMALL_STATE(2530)] = 98126, + [SMALL_STATE(2531)] = 98185, + [SMALL_STATE(2532)] = 98252, + [SMALL_STATE(2533)] = 98325, + [SMALL_STATE(2534)] = 98430, + [SMALL_STATE(2535)] = 98487, + [SMALL_STATE(2536)] = 98538, + [SMALL_STATE(2537)] = 98589, + [SMALL_STATE(2538)] = 98693, + [SMALL_STATE(2539)] = 98743, + [SMALL_STATE(2540)] = 98797, + [SMALL_STATE(2541)] = 98851, + [SMALL_STATE(2542)] = 98905, + [SMALL_STATE(2543)] = 98973, + [SMALL_STATE(2544)] = 99027, + [SMALL_STATE(2545)] = 99131, + [SMALL_STATE(2546)] = 99235, + [SMALL_STATE(2547)] = 99299, + [SMALL_STATE(2548)] = 99359, + [SMALL_STATE(2549)] = 99413, + [SMALL_STATE(2550)] = 99477, + [SMALL_STATE(2551)] = 99537, + [SMALL_STATE(2552)] = 99609, + [SMALL_STATE(2553)] = 99673, + [SMALL_STATE(2554)] = 99733, + [SMALL_STATE(2555)] = 99837, + [SMALL_STATE(2556)] = 99941, + [SMALL_STATE(2557)] = 100045, + [SMALL_STATE(2558)] = 100149, + [SMALL_STATE(2559)] = 100253, + [SMALL_STATE(2560)] = 100357, + [SMALL_STATE(2561)] = 100421, + [SMALL_STATE(2562)] = 100487, + [SMALL_STATE(2563)] = 100547, + [SMALL_STATE(2564)] = 100615, + [SMALL_STATE(2565)] = 100663, + [SMALL_STATE(2566)] = 100713, + [SMALL_STATE(2567)] = 100817, + [SMALL_STATE(2568)] = 100867, + [SMALL_STATE(2569)] = 100923, + [SMALL_STATE(2570)] = 101027, + [SMALL_STATE(2571)] = 101091, + [SMALL_STATE(2572)] = 101195, + [SMALL_STATE(2573)] = 101299, + [SMALL_STATE(2574)] = 101367, + [SMALL_STATE(2575)] = 101461, + [SMALL_STATE(2576)] = 101531, + [SMALL_STATE(2577)] = 101635, + [SMALL_STATE(2578)] = 101709, + [SMALL_STATE(2579)] = 101795, + [SMALL_STATE(2580)] = 101887, + [SMALL_STATE(2581)] = 101947, + [SMALL_STATE(2582)] = 101995, + [SMALL_STATE(2583)] = 102083, + [SMALL_STATE(2584)] = 102137, + [SMALL_STATE(2585)] = 102227, + [SMALL_STATE(2586)] = 102285, + [SMALL_STATE(2587)] = 102389, + [SMALL_STATE(2588)] = 102493, + [SMALL_STATE(2589)] = 102565, + [SMALL_STATE(2590)] = 102671, + [SMALL_STATE(2591)] = 102745, + [SMALL_STATE(2592)] = 102795, + [SMALL_STATE(2593)] = 102899, + [SMALL_STATE(2594)] = 102953, + [SMALL_STATE(2595)] = 103057, + [SMALL_STATE(2596)] = 103139, + [SMALL_STATE(2597)] = 103235, + [SMALL_STATE(2598)] = 103339, + [SMALL_STATE(2599)] = 103389, + [SMALL_STATE(2600)] = 103455, + [SMALL_STATE(2601)] = 103527, + [SMALL_STATE(2602)] = 103631, + [SMALL_STATE(2603)] = 103695, + [SMALL_STATE(2604)] = 103745, + [SMALL_STATE(2605)] = 103795, + [SMALL_STATE(2606)] = 103845, + [SMALL_STATE(2607)] = 103899, + [SMALL_STATE(2608)] = 103953, + [SMALL_STATE(2609)] = 104057, + [SMALL_STATE(2610)] = 104111, + [SMALL_STATE(2611)] = 104161, + [SMALL_STATE(2612)] = 104211, + [SMALL_STATE(2613)] = 104315, + [SMALL_STATE(2614)] = 104419, + [SMALL_STATE(2615)] = 104469, + [SMALL_STATE(2616)] = 104573, + [SMALL_STATE(2617)] = 104677, + [SMALL_STATE(2618)] = 104781, + [SMALL_STATE(2619)] = 104859, + [SMALL_STATE(2620)] = 104913, + [SMALL_STATE(2621)] = 104961, + [SMALL_STATE(2622)] = 105018, + [SMALL_STATE(2623)] = 105075, + [SMALL_STATE(2624)] = 105132, + [SMALL_STATE(2625)] = 105195, + [SMALL_STATE(2626)] = 105296, + [SMALL_STATE(2627)] = 105355, + [SMALL_STATE(2628)] = 105456, + [SMALL_STATE(2629)] = 105513, + [SMALL_STATE(2630)] = 105578, + [SMALL_STATE(2631)] = 105637, + [SMALL_STATE(2632)] = 105694, + [SMALL_STATE(2633)] = 105751, + [SMALL_STATE(2634)] = 105810, + [SMALL_STATE(2635)] = 105867, + [SMALL_STATE(2636)] = 105920, + [SMALL_STATE(2637)] = 105979, + [SMALL_STATE(2638)] = 106038, + [SMALL_STATE(2639)] = 106095, + [SMALL_STATE(2640)] = 106154, + [SMALL_STATE(2641)] = 106213, + [SMALL_STATE(2642)] = 106270, + [SMALL_STATE(2643)] = 106327, + [SMALL_STATE(2644)] = 106384, + [SMALL_STATE(2645)] = 106445, + [SMALL_STATE(2646)] = 106502, + [SMALL_STATE(2647)] = 106565, + [SMALL_STATE(2648)] = 106622, + [SMALL_STATE(2649)] = 106679, + [SMALL_STATE(2650)] = 106738, + [SMALL_STATE(2651)] = 106797, + [SMALL_STATE(2652)] = 106846, + [SMALL_STATE(2653)] = 106905, + [SMALL_STATE(2654)] = 106964, + [SMALL_STATE(2655)] = 107023, + [SMALL_STATE(2656)] = 107072, + [SMALL_STATE(2657)] = 107121, + [SMALL_STATE(2658)] = 107170, + [SMALL_STATE(2659)] = 107227, + [SMALL_STATE(2660)] = 107284, + [SMALL_STATE(2661)] = 107330, + [SMALL_STATE(2662)] = 107376, + [SMALL_STATE(2663)] = 107424, + [SMALL_STATE(2664)] = 107470, + [SMALL_STATE(2665)] = 107516, + [SMALL_STATE(2666)] = 107562, + [SMALL_STATE(2667)] = 107612, + [SMALL_STATE(2668)] = 107658, + [SMALL_STATE(2669)] = 107704, + [SMALL_STATE(2670)] = 107752, + [SMALL_STATE(2671)] = 107798, + [SMALL_STATE(2672)] = 107844, + [SMALL_STATE(2673)] = 107890, + [SMALL_STATE(2674)] = 107936, + [SMALL_STATE(2675)] = 107982, + [SMALL_STATE(2676)] = 108028, + [SMALL_STATE(2677)] = 108074, + [SMALL_STATE(2678)] = 108120, + [SMALL_STATE(2679)] = 108166, + [SMALL_STATE(2680)] = 108212, + [SMALL_STATE(2681)] = 108258, + [SMALL_STATE(2682)] = 108304, + [SMALL_STATE(2683)] = 108350, + [SMALL_STATE(2684)] = 108400, + [SMALL_STATE(2685)] = 108448, + [SMALL_STATE(2686)] = 108494, + [SMALL_STATE(2687)] = 108540, + [SMALL_STATE(2688)] = 108586, + [SMALL_STATE(2689)] = 108632, + [SMALL_STATE(2690)] = 108678, + [SMALL_STATE(2691)] = 108724, + [SMALL_STATE(2692)] = 108770, + [SMALL_STATE(2693)] = 108828, + [SMALL_STATE(2694)] = 108874, + [SMALL_STATE(2695)] = 108920, + [SMALL_STATE(2696)] = 108966, + [SMALL_STATE(2697)] = 109012, + [SMALL_STATE(2698)] = 109058, + [SMALL_STATE(2699)] = 109106, + [SMALL_STATE(2700)] = 109154, + [SMALL_STATE(2701)] = 109200, + [SMALL_STATE(2702)] = 109246, + [SMALL_STATE(2703)] = 109292, + [SMALL_STATE(2704)] = 109338, + [SMALL_STATE(2705)] = 109384, + [SMALL_STATE(2706)] = 109430, + [SMALL_STATE(2707)] = 109476, + [SMALL_STATE(2708)] = 109524, + [SMALL_STATE(2709)] = 109570, + [SMALL_STATE(2710)] = 109618, + [SMALL_STATE(2711)] = 109666, + [SMALL_STATE(2712)] = 109712, + [SMALL_STATE(2713)] = 109760, + [SMALL_STATE(2714)] = 109808, + [SMALL_STATE(2715)] = 109854, + [SMALL_STATE(2716)] = 109902, + [SMALL_STATE(2717)] = 109948, + [SMALL_STATE(2718)] = 109994, + [SMALL_STATE(2719)] = 110042, + [SMALL_STATE(2720)] = 110092, + [SMALL_STATE(2721)] = 110138, + [SMALL_STATE(2722)] = 110184, + [SMALL_STATE(2723)] = 110232, + [SMALL_STATE(2724)] = 110280, [SMALL_STATE(2725)] = 110336, - [SMALL_STATE(2726)] = 110389, - [SMALL_STATE(2727)] = 110437, - [SMALL_STATE(2728)] = 110497, - [SMALL_STATE(2729)] = 110553, - [SMALL_STATE(2730)] = 110597, - [SMALL_STATE(2731)] = 110655, - [SMALL_STATE(2732)] = 110715, - [SMALL_STATE(2733)] = 110787, - [SMALL_STATE(2734)] = 110845, - [SMALL_STATE(2735)] = 110903, - [SMALL_STATE(2736)] = 110963, - [SMALL_STATE(2737)] = 111035, - [SMALL_STATE(2738)] = 111093, - [SMALL_STATE(2739)] = 111141, - [SMALL_STATE(2740)] = 111194, - [SMALL_STATE(2741)] = 111247, - [SMALL_STATE(2742)] = 111300, - [SMALL_STATE(2743)] = 111353, - [SMALL_STATE(2744)] = 111406, - [SMALL_STATE(2745)] = 111459, - [SMALL_STATE(2746)] = 111512, - [SMALL_STATE(2747)] = 111565, - [SMALL_STATE(2748)] = 111618, - [SMALL_STATE(2749)] = 111671, - [SMALL_STATE(2750)] = 111724, - [SMALL_STATE(2751)] = 111777, - [SMALL_STATE(2752)] = 111830, - [SMALL_STATE(2753)] = 111883, - [SMALL_STATE(2754)] = 111936, - [SMALL_STATE(2755)] = 111989, - [SMALL_STATE(2756)] = 112042, - [SMALL_STATE(2757)] = 112095, - [SMALL_STATE(2758)] = 112148, - [SMALL_STATE(2759)] = 112201, - [SMALL_STATE(2760)] = 112254, - [SMALL_STATE(2761)] = 112307, - [SMALL_STATE(2762)] = 112356, - [SMALL_STATE(2763)] = 112409, - [SMALL_STATE(2764)] = 112462, - [SMALL_STATE(2765)] = 112515, - [SMALL_STATE(2766)] = 112568, - [SMALL_STATE(2767)] = 112631, - [SMALL_STATE(2768)] = 112694, - [SMALL_STATE(2769)] = 112747, - [SMALL_STATE(2770)] = 112801, - [SMALL_STATE(2771)] = 112881, - [SMALL_STATE(2772)] = 112945, - [SMALL_STATE(2773)] = 112999, - [SMALL_STATE(2774)] = 113063, - [SMALL_STATE(2775)] = 113123, - [SMALL_STATE(2776)] = 113177, - [SMALL_STATE(2777)] = 113231, - [SMALL_STATE(2778)] = 113285, - [SMALL_STATE(2779)] = 113339, - [SMALL_STATE(2780)] = 113393, - [SMALL_STATE(2781)] = 113447, - [SMALL_STATE(2782)] = 113507, - [SMALL_STATE(2783)] = 113561, - [SMALL_STATE(2784)] = 113615, - [SMALL_STATE(2785)] = 113695, - [SMALL_STATE(2786)] = 113775, - [SMALL_STATE(2787)] = 113839, - [SMALL_STATE(2788)] = 113919, - [SMALL_STATE(2789)] = 113999, - [SMALL_STATE(2790)] = 114056, - [SMALL_STATE(2791)] = 114097, - [SMALL_STATE(2792)] = 114154, - [SMALL_STATE(2793)] = 114211, - [SMALL_STATE(2794)] = 114268, - [SMALL_STATE(2795)] = 114319, - [SMALL_STATE(2796)] = 114376, - [SMALL_STATE(2797)] = 114429, - [SMALL_STATE(2798)] = 114486, - [SMALL_STATE(2799)] = 114543, - [SMALL_STATE(2800)] = 114596, - [SMALL_STATE(2801)] = 114653, - [SMALL_STATE(2802)] = 114710, - [SMALL_STATE(2803)] = 114751, - [SMALL_STATE(2804)] = 114808, - [SMALL_STATE(2805)] = 114849, - [SMALL_STATE(2806)] = 114906, - [SMALL_STATE(2807)] = 114947, - [SMALL_STATE(2808)] = 115004, - [SMALL_STATE(2809)] = 115061, - [SMALL_STATE(2810)] = 115118, - [SMALL_STATE(2811)] = 115159, - [SMALL_STATE(2812)] = 115216, - [SMALL_STATE(2813)] = 115259, - [SMALL_STATE(2814)] = 115316, - [SMALL_STATE(2815)] = 115366, - [SMALL_STATE(2816)] = 115416, - [SMALL_STATE(2817)] = 115464, - [SMALL_STATE(2818)] = 115512, - [SMALL_STATE(2819)] = 115560, - [SMALL_STATE(2820)] = 115608, - [SMALL_STATE(2821)] = 115656, + [SMALL_STATE(2726)] = 110381, + [SMALL_STATE(2727)] = 110430, + [SMALL_STATE(2728)] = 110481, + [SMALL_STATE(2729)] = 110532, + [SMALL_STATE(2730)] = 110585, + [SMALL_STATE(2731)] = 110638, + [SMALL_STATE(2732)] = 110683, + [SMALL_STATE(2733)] = 110728, + [SMALL_STATE(2734)] = 110773, + [SMALL_STATE(2735)] = 110840, + [SMALL_STATE(2736)] = 110885, + [SMALL_STATE(2737)] = 110930, + [SMALL_STATE(2738)] = 110975, + [SMALL_STATE(2739)] = 111033, + [SMALL_STATE(2740)] = 111091, + [SMALL_STATE(2741)] = 111151, + [SMALL_STATE(2742)] = 111223, + [SMALL_STATE(2743)] = 111279, + [SMALL_STATE(2744)] = 111327, + [SMALL_STATE(2745)] = 111385, + [SMALL_STATE(2746)] = 111433, + [SMALL_STATE(2747)] = 111477, + [SMALL_STATE(2748)] = 111549, + [SMALL_STATE(2749)] = 111607, + [SMALL_STATE(2750)] = 111667, + [SMALL_STATE(2751)] = 111727, + [SMALL_STATE(2752)] = 111780, + [SMALL_STATE(2753)] = 111833, + [SMALL_STATE(2754)] = 111886, + [SMALL_STATE(2755)] = 111939, + [SMALL_STATE(2756)] = 111992, + [SMALL_STATE(2757)] = 112045, + [SMALL_STATE(2758)] = 112098, + [SMALL_STATE(2759)] = 112161, + [SMALL_STATE(2760)] = 112214, + [SMALL_STATE(2761)] = 112267, + [SMALL_STATE(2762)] = 112320, + [SMALL_STATE(2763)] = 112373, + [SMALL_STATE(2764)] = 112426, + [SMALL_STATE(2765)] = 112479, + [SMALL_STATE(2766)] = 112532, + [SMALL_STATE(2767)] = 112585, + [SMALL_STATE(2768)] = 112638, + [SMALL_STATE(2769)] = 112691, + [SMALL_STATE(2770)] = 112744, + [SMALL_STATE(2771)] = 112797, + [SMALL_STATE(2772)] = 112850, + [SMALL_STATE(2773)] = 112903, + [SMALL_STATE(2774)] = 112956, + [SMALL_STATE(2775)] = 113009, + [SMALL_STATE(2776)] = 113062, + [SMALL_STATE(2777)] = 113125, + [SMALL_STATE(2778)] = 113174, + [SMALL_STATE(2779)] = 113227, + [SMALL_STATE(2780)] = 113280, + [SMALL_STATE(2781)] = 113333, + [SMALL_STATE(2782)] = 113397, + [SMALL_STATE(2783)] = 113451, + [SMALL_STATE(2784)] = 113505, + [SMALL_STATE(2785)] = 113565, + [SMALL_STATE(2786)] = 113619, + [SMALL_STATE(2787)] = 113673, + [SMALL_STATE(2788)] = 113753, + [SMALL_STATE(2789)] = 113817, + [SMALL_STATE(2790)] = 113871, + [SMALL_STATE(2791)] = 113951, + [SMALL_STATE(2792)] = 114005, + [SMALL_STATE(2793)] = 114059, + [SMALL_STATE(2794)] = 114139, + [SMALL_STATE(2795)] = 114199, + [SMALL_STATE(2796)] = 114263, + [SMALL_STATE(2797)] = 114317, + [SMALL_STATE(2798)] = 114371, + [SMALL_STATE(2799)] = 114451, + [SMALL_STATE(2800)] = 114505, + [SMALL_STATE(2801)] = 114585, + [SMALL_STATE(2802)] = 114642, + [SMALL_STATE(2803)] = 114699, + [SMALL_STATE(2804)] = 114756, + [SMALL_STATE(2805)] = 114809, + [SMALL_STATE(2806)] = 114866, + [SMALL_STATE(2807)] = 114917, + [SMALL_STATE(2808)] = 114974, + [SMALL_STATE(2809)] = 115031, + [SMALL_STATE(2810)] = 115084, + [SMALL_STATE(2811)] = 115125, + [SMALL_STATE(2812)] = 115182, + [SMALL_STATE(2813)] = 115239, + [SMALL_STATE(2814)] = 115296, + [SMALL_STATE(2815)] = 115353, + [SMALL_STATE(2816)] = 115394, + [SMALL_STATE(2817)] = 115451, + [SMALL_STATE(2818)] = 115492, + [SMALL_STATE(2819)] = 115533, + [SMALL_STATE(2820)] = 115590, + [SMALL_STATE(2821)] = 115647, [SMALL_STATE(2822)] = 115704, - [SMALL_STATE(2823)] = 115752, - [SMALL_STATE(2824)] = 115800, - [SMALL_STATE(2825)] = 115848, - [SMALL_STATE(2826)] = 115896, - [SMALL_STATE(2827)] = 115944, - [SMALL_STATE(2828)] = 115992, - [SMALL_STATE(2829)] = 116040, - [SMALL_STATE(2830)] = 116090, - [SMALL_STATE(2831)] = 116138, - [SMALL_STATE(2832)] = 116186, - [SMALL_STATE(2833)] = 116234, - [SMALL_STATE(2834)] = 116282, - [SMALL_STATE(2835)] = 116330, - [SMALL_STATE(2836)] = 116378, - [SMALL_STATE(2837)] = 116426, - [SMALL_STATE(2838)] = 116474, - [SMALL_STATE(2839)] = 116522, - [SMALL_STATE(2840)] = 116570, - [SMALL_STATE(2841)] = 116618, - [SMALL_STATE(2842)] = 116666, - [SMALL_STATE(2843)] = 116714, - [SMALL_STATE(2844)] = 116764, - [SMALL_STATE(2845)] = 116812, - [SMALL_STATE(2846)] = 116860, - [SMALL_STATE(2847)] = 116908, - [SMALL_STATE(2848)] = 116958, - [SMALL_STATE(2849)] = 117006, - [SMALL_STATE(2850)] = 117054, - [SMALL_STATE(2851)] = 117104, - [SMALL_STATE(2852)] = 117154, - [SMALL_STATE(2853)] = 117202, - [SMALL_STATE(2854)] = 117252, - [SMALL_STATE(2855)] = 117300, - [SMALL_STATE(2856)] = 117348, - [SMALL_STATE(2857)] = 117396, - [SMALL_STATE(2858)] = 117446, - [SMALL_STATE(2859)] = 117494, - [SMALL_STATE(2860)] = 117542, - [SMALL_STATE(2861)] = 117590, - [SMALL_STATE(2862)] = 117638, - [SMALL_STATE(2863)] = 117688, - [SMALL_STATE(2864)] = 117736, - [SMALL_STATE(2865)] = 117784, - [SMALL_STATE(2866)] = 117834, - [SMALL_STATE(2867)] = 117882, - [SMALL_STATE(2868)] = 117930, - [SMALL_STATE(2869)] = 117980, - [SMALL_STATE(2870)] = 118028, - [SMALL_STATE(2871)] = 118078, - [SMALL_STATE(2872)] = 118126, - [SMALL_STATE(2873)] = 118176, - [SMALL_STATE(2874)] = 118224, - [SMALL_STATE(2875)] = 118272, - [SMALL_STATE(2876)] = 118307, - [SMALL_STATE(2877)] = 118348, - [SMALL_STATE(2878)] = 118389, - [SMALL_STATE(2879)] = 118430, - [SMALL_STATE(2880)] = 118458, - [SMALL_STATE(2881)] = 118486, - [SMALL_STATE(2882)] = 118514, - [SMALL_STATE(2883)] = 118542, - [SMALL_STATE(2884)] = 118570, - [SMALL_STATE(2885)] = 118598, - [SMALL_STATE(2886)] = 118626, - [SMALL_STATE(2887)] = 118654, - [SMALL_STATE(2888)] = 118682, - [SMALL_STATE(2889)] = 118710, - [SMALL_STATE(2890)] = 118738, - [SMALL_STATE(2891)] = 118766, - [SMALL_STATE(2892)] = 118794, - [SMALL_STATE(2893)] = 118822, - [SMALL_STATE(2894)] = 118850, - [SMALL_STATE(2895)] = 118878, - [SMALL_STATE(2896)] = 118906, - [SMALL_STATE(2897)] = 118934, - [SMALL_STATE(2898)] = 118962, - [SMALL_STATE(2899)] = 118990, - [SMALL_STATE(2900)] = 119018, - [SMALL_STATE(2901)] = 119046, - [SMALL_STATE(2902)] = 119074, - [SMALL_STATE(2903)] = 119102, - [SMALL_STATE(2904)] = 119130, - [SMALL_STATE(2905)] = 119158, - [SMALL_STATE(2906)] = 119186, - [SMALL_STATE(2907)] = 119214, - [SMALL_STATE(2908)] = 119242, - [SMALL_STATE(2909)] = 119270, - [SMALL_STATE(2910)] = 119298, - [SMALL_STATE(2911)] = 119326, - [SMALL_STATE(2912)] = 119354, - [SMALL_STATE(2913)] = 119382, - [SMALL_STATE(2914)] = 119409, - [SMALL_STATE(2915)] = 119436, - [SMALL_STATE(2916)] = 119462, - [SMALL_STATE(2917)] = 119492, - [SMALL_STATE(2918)] = 119518, - [SMALL_STATE(2919)] = 119544, - [SMALL_STATE(2920)] = 119570, - [SMALL_STATE(2921)] = 119596, - [SMALL_STATE(2922)] = 119646, - [SMALL_STATE(2923)] = 119676, - [SMALL_STATE(2924)] = 119708, - [SMALL_STATE(2925)] = 119736, - [SMALL_STATE(2926)] = 119774, - [SMALL_STATE(2927)] = 119800, - [SMALL_STATE(2928)] = 119826, - [SMALL_STATE(2929)] = 119852, - [SMALL_STATE(2930)] = 119880, - [SMALL_STATE(2931)] = 119906, - [SMALL_STATE(2932)] = 119944, - [SMALL_STATE(2933)] = 119978, - [SMALL_STATE(2934)] = 120016, - [SMALL_STATE(2935)] = 120041, - [SMALL_STATE(2936)] = 120066, - [SMALL_STATE(2937)] = 120091, - [SMALL_STATE(2938)] = 120122, - [SMALL_STATE(2939)] = 120149, - [SMALL_STATE(2940)] = 120178, - [SMALL_STATE(2941)] = 120203, - [SMALL_STATE(2942)] = 120227, - [SMALL_STATE(2943)] = 120261, - [SMALL_STATE(2944)] = 120285, - [SMALL_STATE(2945)] = 120319, - [SMALL_STATE(2946)] = 120353, - [SMALL_STATE(2947)] = 120377, - [SMALL_STATE(2948)] = 120401, - [SMALL_STATE(2949)] = 120433, - [SMALL_STATE(2950)] = 120461, - [SMALL_STATE(2951)] = 120485, - [SMALL_STATE(2952)] = 120519, - [SMALL_STATE(2953)] = 120543, - [SMALL_STATE(2954)] = 120567, - [SMALL_STATE(2955)] = 120591, - [SMALL_STATE(2956)] = 120615, - [SMALL_STATE(2957)] = 120639, - [SMALL_STATE(2958)] = 120663, - [SMALL_STATE(2959)] = 120687, - [SMALL_STATE(2960)] = 120711, - [SMALL_STATE(2961)] = 120735, - [SMALL_STATE(2962)] = 120759, - [SMALL_STATE(2963)] = 120783, - [SMALL_STATE(2964)] = 120807, - [SMALL_STATE(2965)] = 120831, - [SMALL_STATE(2966)] = 120855, - [SMALL_STATE(2967)] = 120879, - [SMALL_STATE(2968)] = 120903, - [SMALL_STATE(2969)] = 120937, - [SMALL_STATE(2970)] = 120961, - [SMALL_STATE(2971)] = 120985, - [SMALL_STATE(2972)] = 121011, - [SMALL_STATE(2973)] = 121035, - [SMALL_STATE(2974)] = 121059, - [SMALL_STATE(2975)] = 121091, - [SMALL_STATE(2976)] = 121115, - [SMALL_STATE(2977)] = 121139, - [SMALL_STATE(2978)] = 121173, - [SMALL_STATE(2979)] = 121197, - [SMALL_STATE(2980)] = 121219, - [SMALL_STATE(2981)] = 121241, - [SMALL_STATE(2982)] = 121267, - [SMALL_STATE(2983)] = 121301, - [SMALL_STATE(2984)] = 121325, - [SMALL_STATE(2985)] = 121359, - [SMALL_STATE(2986)] = 121393, - [SMALL_STATE(2987)] = 121415, - [SMALL_STATE(2988)] = 121439, - [SMALL_STATE(2989)] = 121463, - [SMALL_STATE(2990)] = 121487, - [SMALL_STATE(2991)] = 121511, - [SMALL_STATE(2992)] = 121535, - [SMALL_STATE(2993)] = 121559, - [SMALL_STATE(2994)] = 121583, - [SMALL_STATE(2995)] = 121607, - [SMALL_STATE(2996)] = 121631, - [SMALL_STATE(2997)] = 121663, - [SMALL_STATE(2998)] = 121687, - [SMALL_STATE(2999)] = 121711, - [SMALL_STATE(3000)] = 121735, - [SMALL_STATE(3001)] = 121769, - [SMALL_STATE(3002)] = 121793, - [SMALL_STATE(3003)] = 121827, - [SMALL_STATE(3004)] = 121849, - [SMALL_STATE(3005)] = 121871, - [SMALL_STATE(3006)] = 121895, - [SMALL_STATE(3007)] = 121929, - [SMALL_STATE(3008)] = 121953, - [SMALL_STATE(3009)] = 121987, - [SMALL_STATE(3010)] = 122009, - [SMALL_STATE(3011)] = 122033, - [SMALL_STATE(3012)] = 122057, - [SMALL_STATE(3013)] = 122081, - [SMALL_STATE(3014)] = 122103, - [SMALL_STATE(3015)] = 122127, - [SMALL_STATE(3016)] = 122151, - [SMALL_STATE(3017)] = 122183, - [SMALL_STATE(3018)] = 122207, - [SMALL_STATE(3019)] = 122231, - [SMALL_STATE(3020)] = 122255, - [SMALL_STATE(3021)] = 122277, - [SMALL_STATE(3022)] = 122301, - [SMALL_STATE(3023)] = 122325, - [SMALL_STATE(3024)] = 122349, - [SMALL_STATE(3025)] = 122373, - [SMALL_STATE(3026)] = 122395, - [SMALL_STATE(3027)] = 122429, - [SMALL_STATE(3028)] = 122453, - [SMALL_STATE(3029)] = 122477, - [SMALL_STATE(3030)] = 122499, - [SMALL_STATE(3031)] = 122523, - [SMALL_STATE(3032)] = 122547, - [SMALL_STATE(3033)] = 122579, - [SMALL_STATE(3034)] = 122603, - [SMALL_STATE(3035)] = 122635, - [SMALL_STATE(3036)] = 122669, - [SMALL_STATE(3037)] = 122703, - [SMALL_STATE(3038)] = 122737, - [SMALL_STATE(3039)] = 122761, - [SMALL_STATE(3040)] = 122785, - [SMALL_STATE(3041)] = 122819, - [SMALL_STATE(3042)] = 122843, - [SMALL_STATE(3043)] = 122867, - [SMALL_STATE(3044)] = 122910, - [SMALL_STATE(3045)] = 122953, - [SMALL_STATE(3046)] = 122996, - [SMALL_STATE(3047)] = 123041, - [SMALL_STATE(3048)] = 123070, - [SMALL_STATE(3049)] = 123109, - [SMALL_STATE(3050)] = 123138, - [SMALL_STATE(3051)] = 123177, - [SMALL_STATE(3052)] = 123216, - [SMALL_STATE(3053)] = 123255, - [SMALL_STATE(3054)] = 123284, - [SMALL_STATE(3055)] = 123309, - [SMALL_STATE(3056)] = 123338, - [SMALL_STATE(3057)] = 123363, - [SMALL_STATE(3058)] = 123406, - [SMALL_STATE(3059)] = 123449, - [SMALL_STATE(3060)] = 123474, - [SMALL_STATE(3061)] = 123517, - [SMALL_STATE(3062)] = 123546, - [SMALL_STATE(3063)] = 123589, - [SMALL_STATE(3064)] = 123632, - [SMALL_STATE(3065)] = 123675, - [SMALL_STATE(3066)] = 123718, - [SMALL_STATE(3067)] = 123761, - [SMALL_STATE(3068)] = 123804, - [SMALL_STATE(3069)] = 123843, - [SMALL_STATE(3070)] = 123886, - [SMALL_STATE(3071)] = 123929, - [SMALL_STATE(3072)] = 123972, - [SMALL_STATE(3073)] = 124015, - [SMALL_STATE(3074)] = 124058, - [SMALL_STATE(3075)] = 124101, - [SMALL_STATE(3076)] = 124130, - [SMALL_STATE(3077)] = 124159, - [SMALL_STATE(3078)] = 124188, - [SMALL_STATE(3079)] = 124217, - [SMALL_STATE(3080)] = 124260, - [SMALL_STATE(3081)] = 124303, - [SMALL_STATE(3082)] = 124346, - [SMALL_STATE(3083)] = 124389, - [SMALL_STATE(3084)] = 124432, - [SMALL_STATE(3085)] = 124452, - [SMALL_STATE(3086)] = 124488, - [SMALL_STATE(3087)] = 124510, - [SMALL_STATE(3088)] = 124548, - [SMALL_STATE(3089)] = 124570, - [SMALL_STATE(3090)] = 124592, - [SMALL_STATE(3091)] = 124614, - [SMALL_STATE(3092)] = 124638, - [SMALL_STATE(3093)] = 124660, - [SMALL_STATE(3094)] = 124682, - [SMALL_STATE(3095)] = 124704, - [SMALL_STATE(3096)] = 124732, - [SMALL_STATE(3097)] = 124756, - [SMALL_STATE(3098)] = 124792, - [SMALL_STATE(3099)] = 124828, - [SMALL_STATE(3100)] = 124850, - [SMALL_STATE(3101)] = 124874, - [SMALL_STATE(3102)] = 124896, - [SMALL_STATE(3103)] = 124918, - [SMALL_STATE(3104)] = 124940, - [SMALL_STATE(3105)] = 124962, - [SMALL_STATE(3106)] = 124998, - [SMALL_STATE(3107)] = 125022, - [SMALL_STATE(3108)] = 125042, - [SMALL_STATE(3109)] = 125062, - [SMALL_STATE(3110)] = 125082, - [SMALL_STATE(3111)] = 125102, - [SMALL_STATE(3112)] = 125138, - [SMALL_STATE(3113)] = 125158, - [SMALL_STATE(3114)] = 125178, - [SMALL_STATE(3115)] = 125198, - [SMALL_STATE(3116)] = 125218, - [SMALL_STATE(3117)] = 125238, - [SMALL_STATE(3118)] = 125258, - [SMALL_STATE(3119)] = 125278, - [SMALL_STATE(3120)] = 125298, - [SMALL_STATE(3121)] = 125318, - [SMALL_STATE(3122)] = 125338, - [SMALL_STATE(3123)] = 125358, - [SMALL_STATE(3124)] = 125378, - [SMALL_STATE(3125)] = 125404, - [SMALL_STATE(3126)] = 125424, - [SMALL_STATE(3127)] = 125444, - [SMALL_STATE(3128)] = 125464, - [SMALL_STATE(3129)] = 125484, - [SMALL_STATE(3130)] = 125512, - [SMALL_STATE(3131)] = 125532, - [SMALL_STATE(3132)] = 125552, - [SMALL_STATE(3133)] = 125572, - [SMALL_STATE(3134)] = 125592, - [SMALL_STATE(3135)] = 125612, - [SMALL_STATE(3136)] = 125648, - [SMALL_STATE(3137)] = 125668, - [SMALL_STATE(3138)] = 125688, - [SMALL_STATE(3139)] = 125708, - [SMALL_STATE(3140)] = 125728, - [SMALL_STATE(3141)] = 125748, - [SMALL_STATE(3142)] = 125768, - [SMALL_STATE(3143)] = 125788, - [SMALL_STATE(3144)] = 125824, - [SMALL_STATE(3145)] = 125860, - [SMALL_STATE(3146)] = 125888, - [SMALL_STATE(3147)] = 125916, - [SMALL_STATE(3148)] = 125952, - [SMALL_STATE(3149)] = 125980, - [SMALL_STATE(3150)] = 126008, - [SMALL_STATE(3151)] = 126032, - [SMALL_STATE(3152)] = 126058, - [SMALL_STATE(3153)] = 126094, - [SMALL_STATE(3154)] = 126122, - [SMALL_STATE(3155)] = 126150, - [SMALL_STATE(3156)] = 126176, - [SMALL_STATE(3157)] = 126196, - [SMALL_STATE(3158)] = 126233, - [SMALL_STATE(3159)] = 126258, - [SMALL_STATE(3160)] = 126291, - [SMALL_STATE(3161)] = 126328, - [SMALL_STATE(3162)] = 126365, - [SMALL_STATE(3163)] = 126402, - [SMALL_STATE(3164)] = 126439, - [SMALL_STATE(3165)] = 126476, - [SMALL_STATE(3166)] = 126497, - [SMALL_STATE(3167)] = 126520, - [SMALL_STATE(3168)] = 126549, - [SMALL_STATE(3169)] = 126570, - [SMALL_STATE(3170)] = 126607, - [SMALL_STATE(3171)] = 126644, - [SMALL_STATE(3172)] = 126675, - [SMALL_STATE(3173)] = 126712, - [SMALL_STATE(3174)] = 126745, - [SMALL_STATE(3175)] = 126768, - [SMALL_STATE(3176)] = 126797, - [SMALL_STATE(3177)] = 126834, - [SMALL_STATE(3178)] = 126873, - [SMALL_STATE(3179)] = 126910, - [SMALL_STATE(3180)] = 126931, - [SMALL_STATE(3181)] = 126968, - [SMALL_STATE(3182)] = 126993, - [SMALL_STATE(3183)] = 127030, - [SMALL_STATE(3184)] = 127067, - [SMALL_STATE(3185)] = 127096, - [SMALL_STATE(3186)] = 127133, - [SMALL_STATE(3187)] = 127162, - [SMALL_STATE(3188)] = 127199, - [SMALL_STATE(3189)] = 127232, - [SMALL_STATE(3190)] = 127263, - [SMALL_STATE(3191)] = 127296, - [SMALL_STATE(3192)] = 127333, - [SMALL_STATE(3193)] = 127370, - [SMALL_STATE(3194)] = 127391, - [SMALL_STATE(3195)] = 127424, - [SMALL_STATE(3196)] = 127457, - [SMALL_STATE(3197)] = 127488, - [SMALL_STATE(3198)] = 127519, - [SMALL_STATE(3199)] = 127550, - [SMALL_STATE(3200)] = 127587, - [SMALL_STATE(3201)] = 127610, - [SMALL_STATE(3202)] = 127631, - [SMALL_STATE(3203)] = 127664, - [SMALL_STATE(3204)] = 127697, - [SMALL_STATE(3205)] = 127718, - [SMALL_STATE(3206)] = 127755, - [SMALL_STATE(3207)] = 127776, - [SMALL_STATE(3208)] = 127799, - [SMALL_STATE(3209)] = 127836, - [SMALL_STATE(3210)] = 127873, - [SMALL_STATE(3211)] = 127906, - [SMALL_STATE(3212)] = 127943, - [SMALL_STATE(3213)] = 127966, - [SMALL_STATE(3214)] = 127999, - [SMALL_STATE(3215)] = 128028, - [SMALL_STATE(3216)] = 128048, - [SMALL_STATE(3217)] = 128072, - [SMALL_STATE(3218)] = 128092, - [SMALL_STATE(3219)] = 128112, - [SMALL_STATE(3220)] = 128134, - [SMALL_STATE(3221)] = 128156, - [SMALL_STATE(3222)] = 128178, - [SMALL_STATE(3223)] = 128202, - [SMALL_STATE(3224)] = 128220, - [SMALL_STATE(3225)] = 128238, - [SMALL_STATE(3226)] = 128256, - [SMALL_STATE(3227)] = 128274, - [SMALL_STATE(3228)] = 128292, - [SMALL_STATE(3229)] = 128312, - [SMALL_STATE(3230)] = 128332, - [SMALL_STATE(3231)] = 128350, - [SMALL_STATE(3232)] = 128368, - [SMALL_STATE(3233)] = 128388, - [SMALL_STATE(3234)] = 128408, - [SMALL_STATE(3235)] = 128426, - [SMALL_STATE(3236)] = 128444, - [SMALL_STATE(3237)] = 128462, - [SMALL_STATE(3238)] = 128480, - [SMALL_STATE(3239)] = 128498, - [SMALL_STATE(3240)] = 128518, - [SMALL_STATE(3241)] = 128538, - [SMALL_STATE(3242)] = 128558, - [SMALL_STATE(3243)] = 128582, - [SMALL_STATE(3244)] = 128602, - [SMALL_STATE(3245)] = 128626, - [SMALL_STATE(3246)] = 128646, - [SMALL_STATE(3247)] = 128666, - [SMALL_STATE(3248)] = 128684, - [SMALL_STATE(3249)] = 128706, - [SMALL_STATE(3250)] = 128726, - [SMALL_STATE(3251)] = 128746, - [SMALL_STATE(3252)] = 128770, - [SMALL_STATE(3253)] = 128790, - [SMALL_STATE(3254)] = 128808, - [SMALL_STATE(3255)] = 128830, - [SMALL_STATE(3256)] = 128850, - [SMALL_STATE(3257)] = 128886, - [SMALL_STATE(3258)] = 128906, - [SMALL_STATE(3259)] = 128926, - [SMALL_STATE(3260)] = 128946, - [SMALL_STATE(3261)] = 128966, - [SMALL_STATE(3262)] = 128986, - [SMALL_STATE(3263)] = 129012, - [SMALL_STATE(3264)] = 129032, - [SMALL_STATE(3265)] = 129052, - [SMALL_STATE(3266)] = 129072, - [SMALL_STATE(3267)] = 129092, - [SMALL_STATE(3268)] = 129116, - [SMALL_STATE(3269)] = 129140, - [SMALL_STATE(3270)] = 129160, - [SMALL_STATE(3271)] = 129180, - [SMALL_STATE(3272)] = 129200, - [SMALL_STATE(3273)] = 129222, - [SMALL_STATE(3274)] = 129242, - [SMALL_STATE(3275)] = 129262, - [SMALL_STATE(3276)] = 129286, - [SMALL_STATE(3277)] = 129310, - [SMALL_STATE(3278)] = 129330, - [SMALL_STATE(3279)] = 129352, - [SMALL_STATE(3280)] = 129378, - [SMALL_STATE(3281)] = 129398, - [SMALL_STATE(3282)] = 129418, - [SMALL_STATE(3283)] = 129438, - [SMALL_STATE(3284)] = 129460, - [SMALL_STATE(3285)] = 129480, - [SMALL_STATE(3286)] = 129500, - [SMALL_STATE(3287)] = 129520, - [SMALL_STATE(3288)] = 129537, - [SMALL_STATE(3289)] = 129556, - [SMALL_STATE(3290)] = 129573, - [SMALL_STATE(3291)] = 129608, - [SMALL_STATE(3292)] = 129643, - [SMALL_STATE(3293)] = 129676, - [SMALL_STATE(3294)] = 129711, - [SMALL_STATE(3295)] = 129746, - [SMALL_STATE(3296)] = 129779, - [SMALL_STATE(3297)] = 129810, - [SMALL_STATE(3298)] = 129845, - [SMALL_STATE(3299)] = 129880, - [SMALL_STATE(3300)] = 129901, - [SMALL_STATE(3301)] = 129936, - [SMALL_STATE(3302)] = 129955, - [SMALL_STATE(3303)] = 129978, - [SMALL_STATE(3304)] = 130001, - [SMALL_STATE(3305)] = 130022, - [SMALL_STATE(3306)] = 130041, - [SMALL_STATE(3307)] = 130066, - [SMALL_STATE(3308)] = 130101, - [SMALL_STATE(3309)] = 130136, - [SMALL_STATE(3310)] = 130153, - [SMALL_STATE(3311)] = 130188, - [SMALL_STATE(3312)] = 130207, - [SMALL_STATE(3313)] = 130238, - [SMALL_STATE(3314)] = 130267, - [SMALL_STATE(3315)] = 130298, - [SMALL_STATE(3316)] = 130319, - [SMALL_STATE(3317)] = 130354, - [SMALL_STATE(3318)] = 130371, - [SMALL_STATE(3319)] = 130399, - [SMALL_STATE(3320)] = 130415, - [SMALL_STATE(3321)] = 130443, - [SMALL_STATE(3322)] = 130471, - [SMALL_STATE(3323)] = 130487, - [SMALL_STATE(3324)] = 130515, - [SMALL_STATE(3325)] = 130543, - [SMALL_STATE(3326)] = 130559, - [SMALL_STATE(3327)] = 130587, - [SMALL_STATE(3328)] = 130603, - [SMALL_STATE(3329)] = 130619, - [SMALL_STATE(3330)] = 130635, - [SMALL_STATE(3331)] = 130655, - [SMALL_STATE(3332)] = 130671, - [SMALL_STATE(3333)] = 130687, - [SMALL_STATE(3334)] = 130715, - [SMALL_STATE(3335)] = 130743, - [SMALL_STATE(3336)] = 130765, - [SMALL_STATE(3337)] = 130781, - [SMALL_STATE(3338)] = 130797, - [SMALL_STATE(3339)] = 130817, - [SMALL_STATE(3340)] = 130835, - [SMALL_STATE(3341)] = 130859, - [SMALL_STATE(3342)] = 130891, - [SMALL_STATE(3343)] = 130919, - [SMALL_STATE(3344)] = 130947, - [SMALL_STATE(3345)] = 130963, - [SMALL_STATE(3346)] = 130985, - [SMALL_STATE(3347)] = 131001, - [SMALL_STATE(3348)] = 131019, - [SMALL_STATE(3349)] = 131047, - [SMALL_STATE(3350)] = 131079, - [SMALL_STATE(3351)] = 131107, - [SMALL_STATE(3352)] = 131123, - [SMALL_STATE(3353)] = 131139, - [SMALL_STATE(3354)] = 131165, - [SMALL_STATE(3355)] = 131187, - [SMALL_STATE(3356)] = 131203, - [SMALL_STATE(3357)] = 131225, - [SMALL_STATE(3358)] = 131241, - [SMALL_STATE(3359)] = 131267, - [SMALL_STATE(3360)] = 131283, - [SMALL_STATE(3361)] = 131309, - [SMALL_STATE(3362)] = 131329, - [SMALL_STATE(3363)] = 131361, - [SMALL_STATE(3364)] = 131377, - [SMALL_STATE(3365)] = 131403, - [SMALL_STATE(3366)] = 131435, - [SMALL_STATE(3367)] = 131451, - [SMALL_STATE(3368)] = 131477, - [SMALL_STATE(3369)] = 131503, - [SMALL_STATE(3370)] = 131531, - [SMALL_STATE(3371)] = 131557, - [SMALL_STATE(3372)] = 131573, - [SMALL_STATE(3373)] = 131591, - [SMALL_STATE(3374)] = 131607, - [SMALL_STATE(3375)] = 131633, - [SMALL_STATE(3376)] = 131651, - [SMALL_STATE(3377)] = 131679, - [SMALL_STATE(3378)] = 131695, - [SMALL_STATE(3379)] = 131711, - [SMALL_STATE(3380)] = 131739, - [SMALL_STATE(3381)] = 131769, - [SMALL_STATE(3382)] = 131801, - [SMALL_STATE(3383)] = 131819, - [SMALL_STATE(3384)] = 131835, - [SMALL_STATE(3385)] = 131857, - [SMALL_STATE(3386)] = 131883, - [SMALL_STATE(3387)] = 131899, - [SMALL_STATE(3388)] = 131927, - [SMALL_STATE(3389)] = 131949, - [SMALL_STATE(3390)] = 131981, - [SMALL_STATE(3391)] = 131997, - [SMALL_STATE(3392)] = 132025, - [SMALL_STATE(3393)] = 132053, - [SMALL_STATE(3394)] = 132081, - [SMALL_STATE(3395)] = 132109, - [SMALL_STATE(3396)] = 132141, - [SMALL_STATE(3397)] = 132173, - [SMALL_STATE(3398)] = 132201, - [SMALL_STATE(3399)] = 132217, - [SMALL_STATE(3400)] = 132243, - [SMALL_STATE(3401)] = 132271, - [SMALL_STATE(3402)] = 132287, - [SMALL_STATE(3403)] = 132315, - [SMALL_STATE(3404)] = 132343, - [SMALL_STATE(3405)] = 132375, - [SMALL_STATE(3406)] = 132403, - [SMALL_STATE(3407)] = 132419, - [SMALL_STATE(3408)] = 132451, - [SMALL_STATE(3409)] = 132479, - [SMALL_STATE(3410)] = 132495, - [SMALL_STATE(3411)] = 132511, - [SMALL_STATE(3412)] = 132543, - [SMALL_STATE(3413)] = 132565, - [SMALL_STATE(3414)] = 132597, - [SMALL_STATE(3415)] = 132625, - [SMALL_STATE(3416)] = 132653, - [SMALL_STATE(3417)] = 132685, - [SMALL_STATE(3418)] = 132711, - [SMALL_STATE(3419)] = 132739, - [SMALL_STATE(3420)] = 132767, - [SMALL_STATE(3421)] = 132783, - [SMALL_STATE(3422)] = 132815, - [SMALL_STATE(3423)] = 132843, - [SMALL_STATE(3424)] = 132871, - [SMALL_STATE(3425)] = 132903, - [SMALL_STATE(3426)] = 132931, - [SMALL_STATE(3427)] = 132959, - [SMALL_STATE(3428)] = 132985, - [SMALL_STATE(3429)] = 133013, - [SMALL_STATE(3430)] = 133041, - [SMALL_STATE(3431)] = 133057, - [SMALL_STATE(3432)] = 133073, - [SMALL_STATE(3433)] = 133089, - [SMALL_STATE(3434)] = 133111, - [SMALL_STATE(3435)] = 133143, - [SMALL_STATE(3436)] = 133175, - [SMALL_STATE(3437)] = 133193, - [SMALL_STATE(3438)] = 133209, - [SMALL_STATE(3439)] = 133241, - [SMALL_STATE(3440)] = 133257, - [SMALL_STATE(3441)] = 133285, - [SMALL_STATE(3442)] = 133317, - [SMALL_STATE(3443)] = 133345, - [SMALL_STATE(3444)] = 133363, - [SMALL_STATE(3445)] = 133379, - [SMALL_STATE(3446)] = 133395, - [SMALL_STATE(3447)] = 133423, - [SMALL_STATE(3448)] = 133445, - [SMALL_STATE(3449)] = 133461, - [SMALL_STATE(3450)] = 133489, - [SMALL_STATE(3451)] = 133507, - [SMALL_STATE(3452)] = 133535, - [SMALL_STATE(3453)] = 133563, - [SMALL_STATE(3454)] = 133579, - [SMALL_STATE(3455)] = 133595, - [SMALL_STATE(3456)] = 133611, - [SMALL_STATE(3457)] = 133627, - [SMALL_STATE(3458)] = 133643, - [SMALL_STATE(3459)] = 133671, - [SMALL_STATE(3460)] = 133699, - [SMALL_STATE(3461)] = 133727, - [SMALL_STATE(3462)] = 133755, - [SMALL_STATE(3463)] = 133783, - [SMALL_STATE(3464)] = 133799, - [SMALL_STATE(3465)] = 133820, - [SMALL_STATE(3466)] = 133843, - [SMALL_STATE(3467)] = 133864, - [SMALL_STATE(3468)] = 133885, - [SMALL_STATE(3469)] = 133908, - [SMALL_STATE(3470)] = 133933, - [SMALL_STATE(3471)] = 133956, - [SMALL_STATE(3472)] = 133975, - [SMALL_STATE(3473)] = 134004, - [SMALL_STATE(3474)] = 134029, - [SMALL_STATE(3475)] = 134058, - [SMALL_STATE(3476)] = 134083, - [SMALL_STATE(3477)] = 134108, - [SMALL_STATE(3478)] = 134133, - [SMALL_STATE(3479)] = 134158, - [SMALL_STATE(3480)] = 134183, - [SMALL_STATE(3481)] = 134208, - [SMALL_STATE(3482)] = 134237, - [SMALL_STATE(3483)] = 134252, - [SMALL_STATE(3484)] = 134267, - [SMALL_STATE(3485)] = 134292, - [SMALL_STATE(3486)] = 134315, - [SMALL_STATE(3487)] = 134344, - [SMALL_STATE(3488)] = 134363, - [SMALL_STATE(3489)] = 134386, - [SMALL_STATE(3490)] = 134401, - [SMALL_STATE(3491)] = 134416, - [SMALL_STATE(3492)] = 134441, - [SMALL_STATE(3493)] = 134466, - [SMALL_STATE(3494)] = 134483, - [SMALL_STATE(3495)] = 134500, - [SMALL_STATE(3496)] = 134523, - [SMALL_STATE(3497)] = 134552, - [SMALL_STATE(3498)] = 134575, - [SMALL_STATE(3499)] = 134598, - [SMALL_STATE(3500)] = 134619, - [SMALL_STATE(3501)] = 134640, - [SMALL_STATE(3502)] = 134665, - [SMALL_STATE(3503)] = 134686, - [SMALL_STATE(3504)] = 134703, - [SMALL_STATE(3505)] = 134732, - [SMALL_STATE(3506)] = 134755, - [SMALL_STATE(3507)] = 134770, - [SMALL_STATE(3508)] = 134796, - [SMALL_STATE(3509)] = 134822, - [SMALL_STATE(3510)] = 134844, - [SMALL_STATE(3511)] = 134866, - [SMALL_STATE(3512)] = 134888, - [SMALL_STATE(3513)] = 134910, - [SMALL_STATE(3514)] = 134936, - [SMALL_STATE(3515)] = 134958, - [SMALL_STATE(3516)] = 134980, - [SMALL_STATE(3517)] = 135002, - [SMALL_STATE(3518)] = 135024, - [SMALL_STATE(3519)] = 135046, - [SMALL_STATE(3520)] = 135068, - [SMALL_STATE(3521)] = 135090, - [SMALL_STATE(3522)] = 135108, - [SMALL_STATE(3523)] = 135126, - [SMALL_STATE(3524)] = 135148, - [SMALL_STATE(3525)] = 135166, - [SMALL_STATE(3526)] = 135184, - [SMALL_STATE(3527)] = 135206, - [SMALL_STATE(3528)] = 135224, - [SMALL_STATE(3529)] = 135246, - [SMALL_STATE(3530)] = 135268, - [SMALL_STATE(3531)] = 135290, - [SMALL_STATE(3532)] = 135312, - [SMALL_STATE(3533)] = 135334, - [SMALL_STATE(3534)] = 135356, - [SMALL_STATE(3535)] = 135378, - [SMALL_STATE(3536)] = 135400, - [SMALL_STATE(3537)] = 135422, - [SMALL_STATE(3538)] = 135444, - [SMALL_STATE(3539)] = 135466, - [SMALL_STATE(3540)] = 135488, - [SMALL_STATE(3541)] = 135514, - [SMALL_STATE(3542)] = 135536, - [SMALL_STATE(3543)] = 135556, - [SMALL_STATE(3544)] = 135582, - [SMALL_STATE(3545)] = 135604, - [SMALL_STATE(3546)] = 135630, - [SMALL_STATE(3547)] = 135656, - [SMALL_STATE(3548)] = 135670, - [SMALL_STATE(3549)] = 135692, - [SMALL_STATE(3550)] = 135708, - [SMALL_STATE(3551)] = 135730, - [SMALL_STATE(3552)] = 135752, - [SMALL_STATE(3553)] = 135774, - [SMALL_STATE(3554)] = 135796, - [SMALL_STATE(3555)] = 135818, - [SMALL_STATE(3556)] = 135844, - [SMALL_STATE(3557)] = 135866, - [SMALL_STATE(3558)] = 135888, - [SMALL_STATE(3559)] = 135914, - [SMALL_STATE(3560)] = 135928, - [SMALL_STATE(3561)] = 135950, - [SMALL_STATE(3562)] = 135972, - [SMALL_STATE(3563)] = 135994, - [SMALL_STATE(3564)] = 136020, - [SMALL_STATE(3565)] = 136042, - [SMALL_STATE(3566)] = 136064, - [SMALL_STATE(3567)] = 136086, - [SMALL_STATE(3568)] = 136108, - [SMALL_STATE(3569)] = 136130, - [SMALL_STATE(3570)] = 136152, - [SMALL_STATE(3571)] = 136178, - [SMALL_STATE(3572)] = 136196, - [SMALL_STATE(3573)] = 136222, - [SMALL_STATE(3574)] = 136244, - [SMALL_STATE(3575)] = 136270, - [SMALL_STATE(3576)] = 136296, - [SMALL_STATE(3577)] = 136314, - [SMALL_STATE(3578)] = 136340, - [SMALL_STATE(3579)] = 136366, - [SMALL_STATE(3580)] = 136388, - [SMALL_STATE(3581)] = 136410, - [SMALL_STATE(3582)] = 136436, - [SMALL_STATE(3583)] = 136458, - [SMALL_STATE(3584)] = 136480, - [SMALL_STATE(3585)] = 136502, - [SMALL_STATE(3586)] = 136524, - [SMALL_STATE(3587)] = 136546, - [SMALL_STATE(3588)] = 136560, - [SMALL_STATE(3589)] = 136582, - [SMALL_STATE(3590)] = 136600, - [SMALL_STATE(3591)] = 136626, - [SMALL_STATE(3592)] = 136648, - [SMALL_STATE(3593)] = 136662, - [SMALL_STATE(3594)] = 136688, - [SMALL_STATE(3595)] = 136714, - [SMALL_STATE(3596)] = 136736, - [SMALL_STATE(3597)] = 136758, - [SMALL_STATE(3598)] = 136776, - [SMALL_STATE(3599)] = 136794, - [SMALL_STATE(3600)] = 136820, - [SMALL_STATE(3601)] = 136846, - [SMALL_STATE(3602)] = 136864, - [SMALL_STATE(3603)] = 136886, - [SMALL_STATE(3604)] = 136908, - [SMALL_STATE(3605)] = 136926, - [SMALL_STATE(3606)] = 136952, - [SMALL_STATE(3607)] = 136970, - [SMALL_STATE(3608)] = 136984, - [SMALL_STATE(3609)] = 137002, - [SMALL_STATE(3610)] = 137028, - [SMALL_STATE(3611)] = 137054, - [SMALL_STATE(3612)] = 137076, - [SMALL_STATE(3613)] = 137098, - [SMALL_STATE(3614)] = 137120, - [SMALL_STATE(3615)] = 137134, - [SMALL_STATE(3616)] = 137152, - [SMALL_STATE(3617)] = 137178, - [SMALL_STATE(3618)] = 137200, - [SMALL_STATE(3619)] = 137220, - [SMALL_STATE(3620)] = 137246, - [SMALL_STATE(3621)] = 137272, - [SMALL_STATE(3622)] = 137298, - [SMALL_STATE(3623)] = 137320, - [SMALL_STATE(3624)] = 137342, - [SMALL_STATE(3625)] = 137366, - [SMALL_STATE(3626)] = 137384, - [SMALL_STATE(3627)] = 137402, - [SMALL_STATE(3628)] = 137420, - [SMALL_STATE(3629)] = 137442, - [SMALL_STATE(3630)] = 137464, - [SMALL_STATE(3631)] = 137486, - [SMALL_STATE(3632)] = 137504, - [SMALL_STATE(3633)] = 137522, - [SMALL_STATE(3634)] = 137540, - [SMALL_STATE(3635)] = 137566, - [SMALL_STATE(3636)] = 137588, - [SMALL_STATE(3637)] = 137614, - [SMALL_STATE(3638)] = 137632, - [SMALL_STATE(3639)] = 137658, - [SMALL_STATE(3640)] = 137684, - [SMALL_STATE(3641)] = 137702, - [SMALL_STATE(3642)] = 137724, - [SMALL_STATE(3643)] = 137750, - [SMALL_STATE(3644)] = 137776, - [SMALL_STATE(3645)] = 137790, - [SMALL_STATE(3646)] = 137816, - [SMALL_STATE(3647)] = 137838, - [SMALL_STATE(3648)] = 137862, - [SMALL_STATE(3649)] = 137888, - [SMALL_STATE(3650)] = 137906, - [SMALL_STATE(3651)] = 137932, - [SMALL_STATE(3652)] = 137954, - [SMALL_STATE(3653)] = 137980, - [SMALL_STATE(3654)] = 138002, - [SMALL_STATE(3655)] = 138018, - [SMALL_STATE(3656)] = 138040, - [SMALL_STATE(3657)] = 138062, - [SMALL_STATE(3658)] = 138084, - [SMALL_STATE(3659)] = 138106, - [SMALL_STATE(3660)] = 138124, - [SMALL_STATE(3661)] = 138140, - [SMALL_STATE(3662)] = 138160, - [SMALL_STATE(3663)] = 138176, - [SMALL_STATE(3664)] = 138202, - [SMALL_STATE(3665)] = 138224, - [SMALL_STATE(3666)] = 138246, - [SMALL_STATE(3667)] = 138272, - [SMALL_STATE(3668)] = 138286, - [SMALL_STATE(3669)] = 138300, - [SMALL_STATE(3670)] = 138322, - [SMALL_STATE(3671)] = 138348, - [SMALL_STATE(3672)] = 138370, - [SMALL_STATE(3673)] = 138392, - [SMALL_STATE(3674)] = 138414, - [SMALL_STATE(3675)] = 138436, - [SMALL_STATE(3676)] = 138462, - [SMALL_STATE(3677)] = 138488, - [SMALL_STATE(3678)] = 138514, - [SMALL_STATE(3679)] = 138536, - [SMALL_STATE(3680)] = 138558, - [SMALL_STATE(3681)] = 138580, - [SMALL_STATE(3682)] = 138602, - [SMALL_STATE(3683)] = 138624, - [SMALL_STATE(3684)] = 138646, - [SMALL_STATE(3685)] = 138660, - [SMALL_STATE(3686)] = 138686, - [SMALL_STATE(3687)] = 138708, - [SMALL_STATE(3688)] = 138722, - [SMALL_STATE(3689)] = 138748, - [SMALL_STATE(3690)] = 138774, - [SMALL_STATE(3691)] = 138796, - [SMALL_STATE(3692)] = 138818, - [SMALL_STATE(3693)] = 138840, - [SMALL_STATE(3694)] = 138866, - [SMALL_STATE(3695)] = 138880, - [SMALL_STATE(3696)] = 138906, - [SMALL_STATE(3697)] = 138922, - [SMALL_STATE(3698)] = 138938, - [SMALL_STATE(3699)] = 138956, - [SMALL_STATE(3700)] = 138978, - [SMALL_STATE(3701)] = 139000, - [SMALL_STATE(3702)] = 139022, - [SMALL_STATE(3703)] = 139036, - [SMALL_STATE(3704)] = 139058, - [SMALL_STATE(3705)] = 139080, - [SMALL_STATE(3706)] = 139102, - [SMALL_STATE(3707)] = 139124, - [SMALL_STATE(3708)] = 139138, - [SMALL_STATE(3709)] = 139160, - [SMALL_STATE(3710)] = 139186, - [SMALL_STATE(3711)] = 139208, - [SMALL_STATE(3712)] = 139228, - [SMALL_STATE(3713)] = 139250, - [SMALL_STATE(3714)] = 139266, - [SMALL_STATE(3715)] = 139284, - [SMALL_STATE(3716)] = 139306, - [SMALL_STATE(3717)] = 139332, - [SMALL_STATE(3718)] = 139358, - [SMALL_STATE(3719)] = 139380, - [SMALL_STATE(3720)] = 139406, - [SMALL_STATE(3721)] = 139432, - [SMALL_STATE(3722)] = 139454, - [SMALL_STATE(3723)] = 139470, - [SMALL_STATE(3724)] = 139496, - [SMALL_STATE(3725)] = 139518, - [SMALL_STATE(3726)] = 139540, - [SMALL_STATE(3727)] = 139562, - [SMALL_STATE(3728)] = 139584, - [SMALL_STATE(3729)] = 139606, - [SMALL_STATE(3730)] = 139628, - [SMALL_STATE(3731)] = 139648, - [SMALL_STATE(3732)] = 139668, - [SMALL_STATE(3733)] = 139688, - [SMALL_STATE(3734)] = 139708, - [SMALL_STATE(3735)] = 139730, - [SMALL_STATE(3736)] = 139752, - [SMALL_STATE(3737)] = 139774, - [SMALL_STATE(3738)] = 139796, - [SMALL_STATE(3739)] = 139818, - [SMALL_STATE(3740)] = 139844, - [SMALL_STATE(3741)] = 139858, - [SMALL_STATE(3742)] = 139880, - [SMALL_STATE(3743)] = 139898, - [SMALL_STATE(3744)] = 139912, - [SMALL_STATE(3745)] = 139938, - [SMALL_STATE(3746)] = 139960, - [SMALL_STATE(3747)] = 139982, - [SMALL_STATE(3748)] = 140004, - [SMALL_STATE(3749)] = 140026, - [SMALL_STATE(3750)] = 140044, - [SMALL_STATE(3751)] = 140061, - [SMALL_STATE(3752)] = 140078, - [SMALL_STATE(3753)] = 140101, - [SMALL_STATE(3754)] = 140124, - [SMALL_STATE(3755)] = 140141, - [SMALL_STATE(3756)] = 140164, - [SMALL_STATE(3757)] = 140181, - [SMALL_STATE(3758)] = 140198, - [SMALL_STATE(3759)] = 140217, - [SMALL_STATE(3760)] = 140234, - [SMALL_STATE(3761)] = 140247, - [SMALL_STATE(3762)] = 140270, - [SMALL_STATE(3763)] = 140283, - [SMALL_STATE(3764)] = 140302, - [SMALL_STATE(3765)] = 140321, - [SMALL_STATE(3766)] = 140338, - [SMALL_STATE(3767)] = 140357, - [SMALL_STATE(3768)] = 140372, - [SMALL_STATE(3769)] = 140395, - [SMALL_STATE(3770)] = 140414, - [SMALL_STATE(3771)] = 140431, - [SMALL_STATE(3772)] = 140446, - [SMALL_STATE(3773)] = 140459, - [SMALL_STATE(3774)] = 140480, - [SMALL_STATE(3775)] = 140503, - [SMALL_STATE(3776)] = 140526, - [SMALL_STATE(3777)] = 140539, - [SMALL_STATE(3778)] = 140556, - [SMALL_STATE(3779)] = 140577, - [SMALL_STATE(3780)] = 140590, - [SMALL_STATE(3781)] = 140613, - [SMALL_STATE(3782)] = 140636, - [SMALL_STATE(3783)] = 140659, - [SMALL_STATE(3784)] = 140676, - [SMALL_STATE(3785)] = 140699, - [SMALL_STATE(3786)] = 140718, - [SMALL_STATE(3787)] = 140735, - [SMALL_STATE(3788)] = 140758, - [SMALL_STATE(3789)] = 140781, - [SMALL_STATE(3790)] = 140794, - [SMALL_STATE(3791)] = 140811, - [SMALL_STATE(3792)] = 140830, - [SMALL_STATE(3793)] = 140847, - [SMALL_STATE(3794)] = 140864, - [SMALL_STATE(3795)] = 140881, - [SMALL_STATE(3796)] = 140896, - [SMALL_STATE(3797)] = 140913, - [SMALL_STATE(3798)] = 140930, - [SMALL_STATE(3799)] = 140953, - [SMALL_STATE(3800)] = 140970, - [SMALL_STATE(3801)] = 140987, - [SMALL_STATE(3802)] = 141004, - [SMALL_STATE(3803)] = 141027, - [SMALL_STATE(3804)] = 141044, - [SMALL_STATE(3805)] = 141067, - [SMALL_STATE(3806)] = 141080, - [SMALL_STATE(3807)] = 141097, - [SMALL_STATE(3808)] = 141114, - [SMALL_STATE(3809)] = 141131, - [SMALL_STATE(3810)] = 141148, - [SMALL_STATE(3811)] = 141165, - [SMALL_STATE(3812)] = 141178, - [SMALL_STATE(3813)] = 141201, - [SMALL_STATE(3814)] = 141218, - [SMALL_STATE(3815)] = 141235, - [SMALL_STATE(3816)] = 141252, - [SMALL_STATE(3817)] = 141275, - [SMALL_STATE(3818)] = 141294, - [SMALL_STATE(3819)] = 141317, - [SMALL_STATE(3820)] = 141334, - [SMALL_STATE(3821)] = 141351, - [SMALL_STATE(3822)] = 141374, - [SMALL_STATE(3823)] = 141397, - [SMALL_STATE(3824)] = 141420, - [SMALL_STATE(3825)] = 141439, - [SMALL_STATE(3826)] = 141452, - [SMALL_STATE(3827)] = 141475, - [SMALL_STATE(3828)] = 141494, - [SMALL_STATE(3829)] = 141517, - [SMALL_STATE(3830)] = 141536, - [SMALL_STATE(3831)] = 141559, - [SMALL_STATE(3832)] = 141582, - [SMALL_STATE(3833)] = 141601, - [SMALL_STATE(3834)] = 141624, - [SMALL_STATE(3835)] = 141641, - [SMALL_STATE(3836)] = 141660, - [SMALL_STATE(3837)] = 141683, - [SMALL_STATE(3838)] = 141706, - [SMALL_STATE(3839)] = 141725, - [SMALL_STATE(3840)] = 141742, - [SMALL_STATE(3841)] = 141765, - [SMALL_STATE(3842)] = 141788, - [SMALL_STATE(3843)] = 141811, - [SMALL_STATE(3844)] = 141834, - [SMALL_STATE(3845)] = 141851, - [SMALL_STATE(3846)] = 141874, - [SMALL_STATE(3847)] = 141897, - [SMALL_STATE(3848)] = 141914, - [SMALL_STATE(3849)] = 141931, - [SMALL_STATE(3850)] = 141950, - [SMALL_STATE(3851)] = 141965, - [SMALL_STATE(3852)] = 141988, - [SMALL_STATE(3853)] = 142007, - [SMALL_STATE(3854)] = 142030, - [SMALL_STATE(3855)] = 142053, - [SMALL_STATE(3856)] = 142070, - [SMALL_STATE(3857)] = 142093, - [SMALL_STATE(3858)] = 142112, - [SMALL_STATE(3859)] = 142135, - [SMALL_STATE(3860)] = 142158, - [SMALL_STATE(3861)] = 142181, - [SMALL_STATE(3862)] = 142200, - [SMALL_STATE(3863)] = 142213, - [SMALL_STATE(3864)] = 142236, - [SMALL_STATE(3865)] = 142253, - [SMALL_STATE(3866)] = 142276, - [SMALL_STATE(3867)] = 142299, - [SMALL_STATE(3868)] = 142322, - [SMALL_STATE(3869)] = 142339, - [SMALL_STATE(3870)] = 142360, - [SMALL_STATE(3871)] = 142377, - [SMALL_STATE(3872)] = 142400, - [SMALL_STATE(3873)] = 142423, - [SMALL_STATE(3874)] = 142446, - [SMALL_STATE(3875)] = 142469, - [SMALL_STATE(3876)] = 142486, - [SMALL_STATE(3877)] = 142499, - [SMALL_STATE(3878)] = 142518, - [SMALL_STATE(3879)] = 142541, - [SMALL_STATE(3880)] = 142558, - [SMALL_STATE(3881)] = 142581, - [SMALL_STATE(3882)] = 142594, - [SMALL_STATE(3883)] = 142617, - [SMALL_STATE(3884)] = 142640, - [SMALL_STATE(3885)] = 142657, - [SMALL_STATE(3886)] = 142674, - [SMALL_STATE(3887)] = 142687, - [SMALL_STATE(3888)] = 142704, - [SMALL_STATE(3889)] = 142727, - [SMALL_STATE(3890)] = 142744, - [SMALL_STATE(3891)] = 142767, - [SMALL_STATE(3892)] = 142784, - [SMALL_STATE(3893)] = 142797, - [SMALL_STATE(3894)] = 142814, - [SMALL_STATE(3895)] = 142837, - [SMALL_STATE(3896)] = 142854, - [SMALL_STATE(3897)] = 142871, - [SMALL_STATE(3898)] = 142894, - [SMALL_STATE(3899)] = 142917, - [SMALL_STATE(3900)] = 142936, - [SMALL_STATE(3901)] = 142953, - [SMALL_STATE(3902)] = 142971, - [SMALL_STATE(3903)] = 142987, - [SMALL_STATE(3904)] = 143005, - [SMALL_STATE(3905)] = 143021, - [SMALL_STATE(3906)] = 143037, - [SMALL_STATE(3907)] = 143057, - [SMALL_STATE(3908)] = 143073, - [SMALL_STATE(3909)] = 143089, - [SMALL_STATE(3910)] = 143105, - [SMALL_STATE(3911)] = 143117, - [SMALL_STATE(3912)] = 143133, - [SMALL_STATE(3913)] = 143149, - [SMALL_STATE(3914)] = 143165, - [SMALL_STATE(3915)] = 143177, - [SMALL_STATE(3916)] = 143193, - [SMALL_STATE(3917)] = 143209, - [SMALL_STATE(3918)] = 143221, - [SMALL_STATE(3919)] = 143233, - [SMALL_STATE(3920)] = 143245, - [SMALL_STATE(3921)] = 143257, - [SMALL_STATE(3922)] = 143269, - [SMALL_STATE(3923)] = 143281, - [SMALL_STATE(3924)] = 143299, - [SMALL_STATE(3925)] = 143311, - [SMALL_STATE(3926)] = 143323, - [SMALL_STATE(3927)] = 143335, - [SMALL_STATE(3928)] = 143347, - [SMALL_STATE(3929)] = 143359, - [SMALL_STATE(3930)] = 143371, - [SMALL_STATE(3931)] = 143383, - [SMALL_STATE(3932)] = 143395, - [SMALL_STATE(3933)] = 143407, - [SMALL_STATE(3934)] = 143419, - [SMALL_STATE(3935)] = 143431, - [SMALL_STATE(3936)] = 143443, - [SMALL_STATE(3937)] = 143459, - [SMALL_STATE(3938)] = 143475, - [SMALL_STATE(3939)] = 143491, - [SMALL_STATE(3940)] = 143511, - [SMALL_STATE(3941)] = 143527, - [SMALL_STATE(3942)] = 143539, - [SMALL_STATE(3943)] = 143555, - [SMALL_STATE(3944)] = 143567, - [SMALL_STATE(3945)] = 143587, - [SMALL_STATE(3946)] = 143599, - [SMALL_STATE(3947)] = 143611, - [SMALL_STATE(3948)] = 143627, - [SMALL_STATE(3949)] = 143643, - [SMALL_STATE(3950)] = 143659, - [SMALL_STATE(3951)] = 143675, - [SMALL_STATE(3952)] = 143695, - [SMALL_STATE(3953)] = 143711, - [SMALL_STATE(3954)] = 143723, - [SMALL_STATE(3955)] = 143735, - [SMALL_STATE(3956)] = 143747, - [SMALL_STATE(3957)] = 143763, - [SMALL_STATE(3958)] = 143779, - [SMALL_STATE(3959)] = 143795, - [SMALL_STATE(3960)] = 143811, - [SMALL_STATE(3961)] = 143827, - [SMALL_STATE(3962)] = 143847, - [SMALL_STATE(3963)] = 143865, - [SMALL_STATE(3964)] = 143881, - [SMALL_STATE(3965)] = 143901, - [SMALL_STATE(3966)] = 143917, - [SMALL_STATE(3967)] = 143933, - [SMALL_STATE(3968)] = 143949, - [SMALL_STATE(3969)] = 143965, - [SMALL_STATE(3970)] = 143981, - [SMALL_STATE(3971)] = 143997, - [SMALL_STATE(3972)] = 144013, - [SMALL_STATE(3973)] = 144029, - [SMALL_STATE(3974)] = 144045, - [SMALL_STATE(3975)] = 144061, - [SMALL_STATE(3976)] = 144077, - [SMALL_STATE(3977)] = 144097, - [SMALL_STATE(3978)] = 144113, - [SMALL_STATE(3979)] = 144129, - [SMALL_STATE(3980)] = 144141, - [SMALL_STATE(3981)] = 144161, - [SMALL_STATE(3982)] = 144175, - [SMALL_STATE(3983)] = 144187, - [SMALL_STATE(3984)] = 144205, - [SMALL_STATE(3985)] = 144217, - [SMALL_STATE(3986)] = 144229, - [SMALL_STATE(3987)] = 144249, - [SMALL_STATE(3988)] = 144269, - [SMALL_STATE(3989)] = 144285, - [SMALL_STATE(3990)] = 144301, - [SMALL_STATE(3991)] = 144317, - [SMALL_STATE(3992)] = 144333, - [SMALL_STATE(3993)] = 144345, - [SMALL_STATE(3994)] = 144361, - [SMALL_STATE(3995)] = 144373, - [SMALL_STATE(3996)] = 144385, - [SMALL_STATE(3997)] = 144397, - [SMALL_STATE(3998)] = 144411, - [SMALL_STATE(3999)] = 144425, - [SMALL_STATE(4000)] = 144437, - [SMALL_STATE(4001)] = 144449, - [SMALL_STATE(4002)] = 144469, - [SMALL_STATE(4003)] = 144481, - [SMALL_STATE(4004)] = 144497, - [SMALL_STATE(4005)] = 144509, - [SMALL_STATE(4006)] = 144527, - [SMALL_STATE(4007)] = 144543, - [SMALL_STATE(4008)] = 144557, - [SMALL_STATE(4009)] = 144573, - [SMALL_STATE(4010)] = 144593, - [SMALL_STATE(4011)] = 144613, - [SMALL_STATE(4012)] = 144625, - [SMALL_STATE(4013)] = 144645, - [SMALL_STATE(4014)] = 144665, - [SMALL_STATE(4015)] = 144681, - [SMALL_STATE(4016)] = 144697, - [SMALL_STATE(4017)] = 144709, - [SMALL_STATE(4018)] = 144721, - [SMALL_STATE(4019)] = 144733, - [SMALL_STATE(4020)] = 144749, - [SMALL_STATE(4021)] = 144761, - [SMALL_STATE(4022)] = 144777, - [SMALL_STATE(4023)] = 144793, - [SMALL_STATE(4024)] = 144805, - [SMALL_STATE(4025)] = 144825, - [SMALL_STATE(4026)] = 144837, - [SMALL_STATE(4027)] = 144849, - [SMALL_STATE(4028)] = 144861, - [SMALL_STATE(4029)] = 144877, - [SMALL_STATE(4030)] = 144889, - [SMALL_STATE(4031)] = 144901, - [SMALL_STATE(4032)] = 144921, - [SMALL_STATE(4033)] = 144933, - [SMALL_STATE(4034)] = 144945, - [SMALL_STATE(4035)] = 144957, - [SMALL_STATE(4036)] = 144969, - [SMALL_STATE(4037)] = 144981, - [SMALL_STATE(4038)] = 144993, - [SMALL_STATE(4039)] = 145013, - [SMALL_STATE(4040)] = 145033, - [SMALL_STATE(4041)] = 145045, - [SMALL_STATE(4042)] = 145057, - [SMALL_STATE(4043)] = 145077, - [SMALL_STATE(4044)] = 145089, - [SMALL_STATE(4045)] = 145101, - [SMALL_STATE(4046)] = 145113, - [SMALL_STATE(4047)] = 145131, - [SMALL_STATE(4048)] = 145143, - [SMALL_STATE(4049)] = 145155, - [SMALL_STATE(4050)] = 145171, - [SMALL_STATE(4051)] = 145183, - [SMALL_STATE(4052)] = 145195, - [SMALL_STATE(4053)] = 145207, - [SMALL_STATE(4054)] = 145227, - [SMALL_STATE(4055)] = 145243, - [SMALL_STATE(4056)] = 145255, - [SMALL_STATE(4057)] = 145271, - [SMALL_STATE(4058)] = 145289, - [SMALL_STATE(4059)] = 145301, - [SMALL_STATE(4060)] = 145317, - [SMALL_STATE(4061)] = 145333, - [SMALL_STATE(4062)] = 145345, - [SMALL_STATE(4063)] = 145365, - [SMALL_STATE(4064)] = 145377, - [SMALL_STATE(4065)] = 145393, - [SMALL_STATE(4066)] = 145409, - [SMALL_STATE(4067)] = 145425, - [SMALL_STATE(4068)] = 145437, - [SMALL_STATE(4069)] = 145449, - [SMALL_STATE(4070)] = 145461, - [SMALL_STATE(4071)] = 145473, - [SMALL_STATE(4072)] = 145485, - [SMALL_STATE(4073)] = 145497, - [SMALL_STATE(4074)] = 145509, - [SMALL_STATE(4075)] = 145521, - [SMALL_STATE(4076)] = 145537, - [SMALL_STATE(4077)] = 145549, - [SMALL_STATE(4078)] = 145565, - [SMALL_STATE(4079)] = 145577, - [SMALL_STATE(4080)] = 145593, - [SMALL_STATE(4081)] = 145609, - [SMALL_STATE(4082)] = 145625, - [SMALL_STATE(4083)] = 145641, - [SMALL_STATE(4084)] = 145653, - [SMALL_STATE(4085)] = 145665, - [SMALL_STATE(4086)] = 145683, - [SMALL_STATE(4087)] = 145699, - [SMALL_STATE(4088)] = 145715, - [SMALL_STATE(4089)] = 145727, - [SMALL_STATE(4090)] = 145739, - [SMALL_STATE(4091)] = 145751, - [SMALL_STATE(4092)] = 145763, - [SMALL_STATE(4093)] = 145781, - [SMALL_STATE(4094)] = 145797, - [SMALL_STATE(4095)] = 145817, - [SMALL_STATE(4096)] = 145833, - [SMALL_STATE(4097)] = 145849, - [SMALL_STATE(4098)] = 145865, - [SMALL_STATE(4099)] = 145881, - [SMALL_STATE(4100)] = 145897, - [SMALL_STATE(4101)] = 145913, - [SMALL_STATE(4102)] = 145929, - [SMALL_STATE(4103)] = 145945, - [SMALL_STATE(4104)] = 145961, - [SMALL_STATE(4105)] = 145979, - [SMALL_STATE(4106)] = 145995, - [SMALL_STATE(4107)] = 146011, - [SMALL_STATE(4108)] = 146029, - [SMALL_STATE(4109)] = 146047, - [SMALL_STATE(4110)] = 146063, - [SMALL_STATE(4111)] = 146079, - [SMALL_STATE(4112)] = 146095, - [SMALL_STATE(4113)] = 146113, - [SMALL_STATE(4114)] = 146129, - [SMALL_STATE(4115)] = 146145, - [SMALL_STATE(4116)] = 146161, - [SMALL_STATE(4117)] = 146177, - [SMALL_STATE(4118)] = 146193, - [SMALL_STATE(4119)] = 146209, - [SMALL_STATE(4120)] = 146225, - [SMALL_STATE(4121)] = 146241, - [SMALL_STATE(4122)] = 146257, - [SMALL_STATE(4123)] = 146273, - [SMALL_STATE(4124)] = 146289, - [SMALL_STATE(4125)] = 146305, - [SMALL_STATE(4126)] = 146321, - [SMALL_STATE(4127)] = 146337, - [SMALL_STATE(4128)] = 146353, - [SMALL_STATE(4129)] = 146369, - [SMALL_STATE(4130)] = 146387, - [SMALL_STATE(4131)] = 146403, - [SMALL_STATE(4132)] = 146419, - [SMALL_STATE(4133)] = 146437, - [SMALL_STATE(4134)] = 146453, - [SMALL_STATE(4135)] = 146469, - [SMALL_STATE(4136)] = 146485, - [SMALL_STATE(4137)] = 146503, - [SMALL_STATE(4138)] = 146521, - [SMALL_STATE(4139)] = 146537, - [SMALL_STATE(4140)] = 146553, - [SMALL_STATE(4141)] = 146569, - [SMALL_STATE(4142)] = 146585, - [SMALL_STATE(4143)] = 146601, - [SMALL_STATE(4144)] = 146619, - [SMALL_STATE(4145)] = 146635, - [SMALL_STATE(4146)] = 146651, - [SMALL_STATE(4147)] = 146667, - [SMALL_STATE(4148)] = 146687, - [SMALL_STATE(4149)] = 146699, - [SMALL_STATE(4150)] = 146715, - [SMALL_STATE(4151)] = 146735, - [SMALL_STATE(4152)] = 146755, - [SMALL_STATE(4153)] = 146771, - [SMALL_STATE(4154)] = 146791, - [SMALL_STATE(4155)] = 146811, - [SMALL_STATE(4156)] = 146827, - [SMALL_STATE(4157)] = 146843, - [SMALL_STATE(4158)] = 146863, - [SMALL_STATE(4159)] = 146879, - [SMALL_STATE(4160)] = 146895, - [SMALL_STATE(4161)] = 146915, - [SMALL_STATE(4162)] = 146935, - [SMALL_STATE(4163)] = 146951, - [SMALL_STATE(4164)] = 146969, - [SMALL_STATE(4165)] = 146981, - [SMALL_STATE(4166)] = 146997, - [SMALL_STATE(4167)] = 147013, - [SMALL_STATE(4168)] = 147029, - [SMALL_STATE(4169)] = 147045, - [SMALL_STATE(4170)] = 147061, - [SMALL_STATE(4171)] = 147077, - [SMALL_STATE(4172)] = 147097, - [SMALL_STATE(4173)] = 147117, - [SMALL_STATE(4174)] = 147137, - [SMALL_STATE(4175)] = 147157, - [SMALL_STATE(4176)] = 147177, - [SMALL_STATE(4177)] = 147197, - [SMALL_STATE(4178)] = 147209, - [SMALL_STATE(4179)] = 147229, - [SMALL_STATE(4180)] = 147241, - [SMALL_STATE(4181)] = 147259, - [SMALL_STATE(4182)] = 147271, - [SMALL_STATE(4183)] = 147283, - [SMALL_STATE(4184)] = 147299, - [SMALL_STATE(4185)] = 147319, - [SMALL_STATE(4186)] = 147339, - [SMALL_STATE(4187)] = 147351, - [SMALL_STATE(4188)] = 147363, - [SMALL_STATE(4189)] = 147379, - [SMALL_STATE(4190)] = 147399, - [SMALL_STATE(4191)] = 147419, - [SMALL_STATE(4192)] = 147439, - [SMALL_STATE(4193)] = 147455, - [SMALL_STATE(4194)] = 147475, - [SMALL_STATE(4195)] = 147491, - [SMALL_STATE(4196)] = 147507, - [SMALL_STATE(4197)] = 147527, - [SMALL_STATE(4198)] = 147547, - [SMALL_STATE(4199)] = 147563, - [SMALL_STATE(4200)] = 147579, - [SMALL_STATE(4201)] = 147599, - [SMALL_STATE(4202)] = 147619, - [SMALL_STATE(4203)] = 147637, - [SMALL_STATE(4204)] = 147657, - [SMALL_STATE(4205)] = 147673, - [SMALL_STATE(4206)] = 147689, - [SMALL_STATE(4207)] = 147705, - [SMALL_STATE(4208)] = 147725, - [SMALL_STATE(4209)] = 147745, - [SMALL_STATE(4210)] = 147761, - [SMALL_STATE(4211)] = 147775, - [SMALL_STATE(4212)] = 147791, - [SMALL_STATE(4213)] = 147807, - [SMALL_STATE(4214)] = 147823, - [SMALL_STATE(4215)] = 147839, - [SMALL_STATE(4216)] = 147855, - [SMALL_STATE(4217)] = 147871, - [SMALL_STATE(4218)] = 147891, - [SMALL_STATE(4219)] = 147909, - [SMALL_STATE(4220)] = 147925, - [SMALL_STATE(4221)] = 147937, - [SMALL_STATE(4222)] = 147953, - [SMALL_STATE(4223)] = 147973, - [SMALL_STATE(4224)] = 147985, - [SMALL_STATE(4225)] = 148005, - [SMALL_STATE(4226)] = 148025, - [SMALL_STATE(4227)] = 148037, - [SMALL_STATE(4228)] = 148049, - [SMALL_STATE(4229)] = 148069, - [SMALL_STATE(4230)] = 148089, - [SMALL_STATE(4231)] = 148105, - [SMALL_STATE(4232)] = 148121, - [SMALL_STATE(4233)] = 148137, - [SMALL_STATE(4234)] = 148153, - [SMALL_STATE(4235)] = 148169, - [SMALL_STATE(4236)] = 148185, - [SMALL_STATE(4237)] = 148201, - [SMALL_STATE(4238)] = 148217, - [SMALL_STATE(4239)] = 148233, - [SMALL_STATE(4240)] = 148249, - [SMALL_STATE(4241)] = 148265, - [SMALL_STATE(4242)] = 148281, - [SMALL_STATE(4243)] = 148297, - [SMALL_STATE(4244)] = 148313, - [SMALL_STATE(4245)] = 148329, - [SMALL_STATE(4246)] = 148345, - [SMALL_STATE(4247)] = 148361, - [SMALL_STATE(4248)] = 148379, - [SMALL_STATE(4249)] = 148399, - [SMALL_STATE(4250)] = 148419, - [SMALL_STATE(4251)] = 148439, - [SMALL_STATE(4252)] = 148451, - [SMALL_STATE(4253)] = 148463, - [SMALL_STATE(4254)] = 148483, - [SMALL_STATE(4255)] = 148501, - [SMALL_STATE(4256)] = 148513, - [SMALL_STATE(4257)] = 148533, - [SMALL_STATE(4258)] = 148545, - [SMALL_STATE(4259)] = 148565, - [SMALL_STATE(4260)] = 148577, - [SMALL_STATE(4261)] = 148597, - [SMALL_STATE(4262)] = 148609, - [SMALL_STATE(4263)] = 148621, - [SMALL_STATE(4264)] = 148637, - [SMALL_STATE(4265)] = 148653, - [SMALL_STATE(4266)] = 148665, - [SMALL_STATE(4267)] = 148677, - [SMALL_STATE(4268)] = 148689, - [SMALL_STATE(4269)] = 148705, - [SMALL_STATE(4270)] = 148721, - [SMALL_STATE(4271)] = 148733, - [SMALL_STATE(4272)] = 148745, - [SMALL_STATE(4273)] = 148757, - [SMALL_STATE(4274)] = 148777, - [SMALL_STATE(4275)] = 148789, - [SMALL_STATE(4276)] = 148801, - [SMALL_STATE(4277)] = 148815, - [SMALL_STATE(4278)] = 148831, - [SMALL_STATE(4279)] = 148843, - [SMALL_STATE(4280)] = 148863, - [SMALL_STATE(4281)] = 148875, - [SMALL_STATE(4282)] = 148887, - [SMALL_STATE(4283)] = 148899, - [SMALL_STATE(4284)] = 148911, - [SMALL_STATE(4285)] = 148923, - [SMALL_STATE(4286)] = 148935, - [SMALL_STATE(4287)] = 148947, - [SMALL_STATE(4288)] = 148959, - [SMALL_STATE(4289)] = 148971, - [SMALL_STATE(4290)] = 148989, - [SMALL_STATE(4291)] = 149007, - [SMALL_STATE(4292)] = 149027, - [SMALL_STATE(4293)] = 149047, - [SMALL_STATE(4294)] = 149067, - [SMALL_STATE(4295)] = 149079, - [SMALL_STATE(4296)] = 149095, - [SMALL_STATE(4297)] = 149113, - [SMALL_STATE(4298)] = 149129, - [SMALL_STATE(4299)] = 149149, - [SMALL_STATE(4300)] = 149165, - [SMALL_STATE(4301)] = 149181, - [SMALL_STATE(4302)] = 149201, - [SMALL_STATE(4303)] = 149217, - [SMALL_STATE(4304)] = 149229, - [SMALL_STATE(4305)] = 149249, - [SMALL_STATE(4306)] = 149269, - [SMALL_STATE(4307)] = 149289, - [SMALL_STATE(4308)] = 149301, - [SMALL_STATE(4309)] = 149321, - [SMALL_STATE(4310)] = 149335, - [SMALL_STATE(4311)] = 149347, - [SMALL_STATE(4312)] = 149359, - [SMALL_STATE(4313)] = 149371, - [SMALL_STATE(4314)] = 149387, - [SMALL_STATE(4315)] = 149403, - [SMALL_STATE(4316)] = 149415, - [SMALL_STATE(4317)] = 149427, - [SMALL_STATE(4318)] = 149443, - [SMALL_STATE(4319)] = 149455, - [SMALL_STATE(4320)] = 149475, - [SMALL_STATE(4321)] = 149495, - [SMALL_STATE(4322)] = 149511, - [SMALL_STATE(4323)] = 149527, - [SMALL_STATE(4324)] = 149547, - [SMALL_STATE(4325)] = 149559, - [SMALL_STATE(4326)] = 149575, - [SMALL_STATE(4327)] = 149591, - [SMALL_STATE(4328)] = 149603, - [SMALL_STATE(4329)] = 149619, - [SMALL_STATE(4330)] = 149639, - [SMALL_STATE(4331)] = 149651, - [SMALL_STATE(4332)] = 149667, - [SMALL_STATE(4333)] = 149683, - [SMALL_STATE(4334)] = 149699, - [SMALL_STATE(4335)] = 149715, - [SMALL_STATE(4336)] = 149735, - [SMALL_STATE(4337)] = 149751, - [SMALL_STATE(4338)] = 149767, - [SMALL_STATE(4339)] = 149783, - [SMALL_STATE(4340)] = 149795, - [SMALL_STATE(4341)] = 149807, - [SMALL_STATE(4342)] = 149819, - [SMALL_STATE(4343)] = 149831, - [SMALL_STATE(4344)] = 149843, - [SMALL_STATE(4345)] = 149859, - [SMALL_STATE(4346)] = 149875, - [SMALL_STATE(4347)] = 149891, - [SMALL_STATE(4348)] = 149907, - [SMALL_STATE(4349)] = 149927, - [SMALL_STATE(4350)] = 149943, - [SMALL_STATE(4351)] = 149959, - [SMALL_STATE(4352)] = 149975, - [SMALL_STATE(4353)] = 149991, - [SMALL_STATE(4354)] = 150007, - [SMALL_STATE(4355)] = 150027, - [SMALL_STATE(4356)] = 150047, - [SMALL_STATE(4357)] = 150063, - [SMALL_STATE(4358)] = 150079, - [SMALL_STATE(4359)] = 150095, - [SMALL_STATE(4360)] = 150115, - [SMALL_STATE(4361)] = 150131, - [SMALL_STATE(4362)] = 150147, - [SMALL_STATE(4363)] = 150163, - [SMALL_STATE(4364)] = 150179, - [SMALL_STATE(4365)] = 150195, - [SMALL_STATE(4366)] = 150211, - [SMALL_STATE(4367)] = 150227, - [SMALL_STATE(4368)] = 150243, - [SMALL_STATE(4369)] = 150259, - [SMALL_STATE(4370)] = 150275, - [SMALL_STATE(4371)] = 150291, - [SMALL_STATE(4372)] = 150303, - [SMALL_STATE(4373)] = 150319, - [SMALL_STATE(4374)] = 150335, - [SMALL_STATE(4375)] = 150347, - [SMALL_STATE(4376)] = 150359, - [SMALL_STATE(4377)] = 150375, - [SMALL_STATE(4378)] = 150391, - [SMALL_STATE(4379)] = 150407, - [SMALL_STATE(4380)] = 150423, - [SMALL_STATE(4381)] = 150440, - [SMALL_STATE(4382)] = 150457, - [SMALL_STATE(4383)] = 150474, - [SMALL_STATE(4384)] = 150489, - [SMALL_STATE(4385)] = 150506, - [SMALL_STATE(4386)] = 150521, - [SMALL_STATE(4387)] = 150538, - [SMALL_STATE(4388)] = 150555, - [SMALL_STATE(4389)] = 150572, - [SMALL_STATE(4390)] = 150585, - [SMALL_STATE(4391)] = 150602, - [SMALL_STATE(4392)] = 150619, - [SMALL_STATE(4393)] = 150636, - [SMALL_STATE(4394)] = 150653, - [SMALL_STATE(4395)] = 150670, - [SMALL_STATE(4396)] = 150687, - [SMALL_STATE(4397)] = 150704, - [SMALL_STATE(4398)] = 150721, - [SMALL_STATE(4399)] = 150738, - [SMALL_STATE(4400)] = 150755, - [SMALL_STATE(4401)] = 150772, - [SMALL_STATE(4402)] = 150789, - [SMALL_STATE(4403)] = 150806, - [SMALL_STATE(4404)] = 150819, - [SMALL_STATE(4405)] = 150836, - [SMALL_STATE(4406)] = 150853, - [SMALL_STATE(4407)] = 150870, - [SMALL_STATE(4408)] = 150887, - [SMALL_STATE(4409)] = 150904, - [SMALL_STATE(4410)] = 150921, - [SMALL_STATE(4411)] = 150938, - [SMALL_STATE(4412)] = 150955, - [SMALL_STATE(4413)] = 150972, - [SMALL_STATE(4414)] = 150989, - [SMALL_STATE(4415)] = 151004, - [SMALL_STATE(4416)] = 151021, - [SMALL_STATE(4417)] = 151036, - [SMALL_STATE(4418)] = 151051, - [SMALL_STATE(4419)] = 151066, - [SMALL_STATE(4420)] = 151081, - [SMALL_STATE(4421)] = 151098, - [SMALL_STATE(4422)] = 151111, - [SMALL_STATE(4423)] = 151128, - [SMALL_STATE(4424)] = 151143, - [SMALL_STATE(4425)] = 151160, - [SMALL_STATE(4426)] = 151173, - [SMALL_STATE(4427)] = 151188, - [SMALL_STATE(4428)] = 151203, - [SMALL_STATE(4429)] = 151220, - [SMALL_STATE(4430)] = 151237, - [SMALL_STATE(4431)] = 151254, - [SMALL_STATE(4432)] = 151269, - [SMALL_STATE(4433)] = 151286, - [SMALL_STATE(4434)] = 151303, - [SMALL_STATE(4435)] = 151320, - [SMALL_STATE(4436)] = 151337, - [SMALL_STATE(4437)] = 151354, - [SMALL_STATE(4438)] = 151371, - [SMALL_STATE(4439)] = 151388, - [SMALL_STATE(4440)] = 151405, - [SMALL_STATE(4441)] = 151416, - [SMALL_STATE(4442)] = 151433, - [SMALL_STATE(4443)] = 151450, - [SMALL_STATE(4444)] = 151467, - [SMALL_STATE(4445)] = 151484, - [SMALL_STATE(4446)] = 151495, - [SMALL_STATE(4447)] = 151510, - [SMALL_STATE(4448)] = 151527, - [SMALL_STATE(4449)] = 151544, - [SMALL_STATE(4450)] = 151561, - [SMALL_STATE(4451)] = 151576, - [SMALL_STATE(4452)] = 151591, - [SMALL_STATE(4453)] = 151608, - [SMALL_STATE(4454)] = 151625, - [SMALL_STATE(4455)] = 151642, - [SMALL_STATE(4456)] = 151657, - [SMALL_STATE(4457)] = 151674, - [SMALL_STATE(4458)] = 151689, - [SMALL_STATE(4459)] = 151704, - [SMALL_STATE(4460)] = 151719, - [SMALL_STATE(4461)] = 151734, - [SMALL_STATE(4462)] = 151751, - [SMALL_STATE(4463)] = 151766, - [SMALL_STATE(4464)] = 151783, - [SMALL_STATE(4465)] = 151798, - [SMALL_STATE(4466)] = 151815, - [SMALL_STATE(4467)] = 151832, - [SMALL_STATE(4468)] = 151843, - [SMALL_STATE(4469)] = 151860, - [SMALL_STATE(4470)] = 151871, - [SMALL_STATE(4471)] = 151888, - [SMALL_STATE(4472)] = 151905, - [SMALL_STATE(4473)] = 151922, - [SMALL_STATE(4474)] = 151939, - [SMALL_STATE(4475)] = 151956, - [SMALL_STATE(4476)] = 151973, - [SMALL_STATE(4477)] = 151990, - [SMALL_STATE(4478)] = 152007, - [SMALL_STATE(4479)] = 152024, - [SMALL_STATE(4480)] = 152041, - [SMALL_STATE(4481)] = 152056, - [SMALL_STATE(4482)] = 152073, - [SMALL_STATE(4483)] = 152090, - [SMALL_STATE(4484)] = 152103, - [SMALL_STATE(4485)] = 152120, - [SMALL_STATE(4486)] = 152137, - [SMALL_STATE(4487)] = 152154, - [SMALL_STATE(4488)] = 152167, - [SMALL_STATE(4489)] = 152180, - [SMALL_STATE(4490)] = 152197, - [SMALL_STATE(4491)] = 152214, - [SMALL_STATE(4492)] = 152229, - [SMALL_STATE(4493)] = 152246, - [SMALL_STATE(4494)] = 152263, - [SMALL_STATE(4495)] = 152280, - [SMALL_STATE(4496)] = 152297, - [SMALL_STATE(4497)] = 152314, - [SMALL_STATE(4498)] = 152331, - [SMALL_STATE(4499)] = 152348, - [SMALL_STATE(4500)] = 152363, - [SMALL_STATE(4501)] = 152380, - [SMALL_STATE(4502)] = 152397, - [SMALL_STATE(4503)] = 152414, - [SMALL_STATE(4504)] = 152431, - [SMALL_STATE(4505)] = 152448, - [SMALL_STATE(4506)] = 152463, - [SMALL_STATE(4507)] = 152478, - [SMALL_STATE(4508)] = 152495, - [SMALL_STATE(4509)] = 152512, - [SMALL_STATE(4510)] = 152529, - [SMALL_STATE(4511)] = 152546, - [SMALL_STATE(4512)] = 152563, - [SMALL_STATE(4513)] = 152580, - [SMALL_STATE(4514)] = 152597, - [SMALL_STATE(4515)] = 152614, - [SMALL_STATE(4516)] = 152629, - [SMALL_STATE(4517)] = 152639, - [SMALL_STATE(4518)] = 152649, - [SMALL_STATE(4519)] = 152659, - [SMALL_STATE(4520)] = 152669, - [SMALL_STATE(4521)] = 152679, - [SMALL_STATE(4522)] = 152689, - [SMALL_STATE(4523)] = 152699, - [SMALL_STATE(4524)] = 152711, - [SMALL_STATE(4525)] = 152725, - [SMALL_STATE(4526)] = 152735, - [SMALL_STATE(4527)] = 152745, - [SMALL_STATE(4528)] = 152755, - [SMALL_STATE(4529)] = 152765, - [SMALL_STATE(4530)] = 152775, - [SMALL_STATE(4531)] = 152785, - [SMALL_STATE(4532)] = 152799, - [SMALL_STATE(4533)] = 152809, - [SMALL_STATE(4534)] = 152823, - [SMALL_STATE(4535)] = 152833, - [SMALL_STATE(4536)] = 152843, - [SMALL_STATE(4537)] = 152853, - [SMALL_STATE(4538)] = 152867, - [SMALL_STATE(4539)] = 152877, - [SMALL_STATE(4540)] = 152887, - [SMALL_STATE(4541)] = 152901, - [SMALL_STATE(4542)] = 152915, - [SMALL_STATE(4543)] = 152929, - [SMALL_STATE(4544)] = 152943, - [SMALL_STATE(4545)] = 152957, - [SMALL_STATE(4546)] = 152971, - [SMALL_STATE(4547)] = 152981, - [SMALL_STATE(4548)] = 152991, - [SMALL_STATE(4549)] = 153001, - [SMALL_STATE(4550)] = 153011, - [SMALL_STATE(4551)] = 153021, - [SMALL_STATE(4552)] = 153031, - [SMALL_STATE(4553)] = 153045, - [SMALL_STATE(4554)] = 153059, - [SMALL_STATE(4555)] = 153073, - [SMALL_STATE(4556)] = 153087, - [SMALL_STATE(4557)] = 153097, - [SMALL_STATE(4558)] = 153107, - [SMALL_STATE(4559)] = 153117, - [SMALL_STATE(4560)] = 153127, - [SMALL_STATE(4561)] = 153137, - [SMALL_STATE(4562)] = 153147, - [SMALL_STATE(4563)] = 153157, - [SMALL_STATE(4564)] = 153167, - [SMALL_STATE(4565)] = 153179, - [SMALL_STATE(4566)] = 153189, - [SMALL_STATE(4567)] = 153201, - [SMALL_STATE(4568)] = 153211, - [SMALL_STATE(4569)] = 153225, - [SMALL_STATE(4570)] = 153235, - [SMALL_STATE(4571)] = 153245, - [SMALL_STATE(4572)] = 153255, - [SMALL_STATE(4573)] = 153265, - [SMALL_STATE(4574)] = 153275, - [SMALL_STATE(4575)] = 153285, - [SMALL_STATE(4576)] = 153295, - [SMALL_STATE(4577)] = 153309, - [SMALL_STATE(4578)] = 153319, - [SMALL_STATE(4579)] = 153333, - [SMALL_STATE(4580)] = 153343, - [SMALL_STATE(4581)] = 153353, - [SMALL_STATE(4582)] = 153363, - [SMALL_STATE(4583)] = 153373, - [SMALL_STATE(4584)] = 153383, - [SMALL_STATE(4585)] = 153393, - [SMALL_STATE(4586)] = 153403, - [SMALL_STATE(4587)] = 153417, - [SMALL_STATE(4588)] = 153431, - [SMALL_STATE(4589)] = 153445, - [SMALL_STATE(4590)] = 153455, - [SMALL_STATE(4591)] = 153469, - [SMALL_STATE(4592)] = 153483, - [SMALL_STATE(4593)] = 153493, - [SMALL_STATE(4594)] = 153503, - [SMALL_STATE(4595)] = 153517, - [SMALL_STATE(4596)] = 153531, - [SMALL_STATE(4597)] = 153545, - [SMALL_STATE(4598)] = 153559, - [SMALL_STATE(4599)] = 153569, - [SMALL_STATE(4600)] = 153583, - [SMALL_STATE(4601)] = 153593, - [SMALL_STATE(4602)] = 153603, - [SMALL_STATE(4603)] = 153617, - [SMALL_STATE(4604)] = 153627, - [SMALL_STATE(4605)] = 153637, - [SMALL_STATE(4606)] = 153647, - [SMALL_STATE(4607)] = 153657, - [SMALL_STATE(4608)] = 153667, - [SMALL_STATE(4609)] = 153677, - [SMALL_STATE(4610)] = 153687, - [SMALL_STATE(4611)] = 153697, - [SMALL_STATE(4612)] = 153707, - [SMALL_STATE(4613)] = 153717, - [SMALL_STATE(4614)] = 153727, - [SMALL_STATE(4615)] = 153737, - [SMALL_STATE(4616)] = 153747, - [SMALL_STATE(4617)] = 153757, - [SMALL_STATE(4618)] = 153767, - [SMALL_STATE(4619)] = 153777, - [SMALL_STATE(4620)] = 153787, - [SMALL_STATE(4621)] = 153801, - [SMALL_STATE(4622)] = 153815, - [SMALL_STATE(4623)] = 153829, - [SMALL_STATE(4624)] = 153839, - [SMALL_STATE(4625)] = 153849, - [SMALL_STATE(4626)] = 153859, - [SMALL_STATE(4627)] = 153869, - [SMALL_STATE(4628)] = 153879, - [SMALL_STATE(4629)] = 153889, - [SMALL_STATE(4630)] = 153899, - [SMALL_STATE(4631)] = 153909, - [SMALL_STATE(4632)] = 153919, - [SMALL_STATE(4633)] = 153929, - [SMALL_STATE(4634)] = 153939, - [SMALL_STATE(4635)] = 153949, - [SMALL_STATE(4636)] = 153959, - [SMALL_STATE(4637)] = 153973, - [SMALL_STATE(4638)] = 153983, - [SMALL_STATE(4639)] = 153997, - [SMALL_STATE(4640)] = 154011, - [SMALL_STATE(4641)] = 154021, - [SMALL_STATE(4642)] = 154031, - [SMALL_STATE(4643)] = 154041, - [SMALL_STATE(4644)] = 154055, - [SMALL_STATE(4645)] = 154069, - [SMALL_STATE(4646)] = 154079, - [SMALL_STATE(4647)] = 154093, - [SMALL_STATE(4648)] = 154107, - [SMALL_STATE(4649)] = 154117, - [SMALL_STATE(4650)] = 154131, - [SMALL_STATE(4651)] = 154145, - [SMALL_STATE(4652)] = 154157, - [SMALL_STATE(4653)] = 154167, - [SMALL_STATE(4654)] = 154181, - [SMALL_STATE(4655)] = 154195, - [SMALL_STATE(4656)] = 154205, - [SMALL_STATE(4657)] = 154219, - [SMALL_STATE(4658)] = 154229, - [SMALL_STATE(4659)] = 154239, - [SMALL_STATE(4660)] = 154249, - [SMALL_STATE(4661)] = 154259, - [SMALL_STATE(4662)] = 154273, - [SMALL_STATE(4663)] = 154283, - [SMALL_STATE(4664)] = 154297, - [SMALL_STATE(4665)] = 154307, - [SMALL_STATE(4666)] = 154317, - [SMALL_STATE(4667)] = 154327, - [SMALL_STATE(4668)] = 154337, - [SMALL_STATE(4669)] = 154351, - [SMALL_STATE(4670)] = 154361, - [SMALL_STATE(4671)] = 154371, - [SMALL_STATE(4672)] = 154385, - [SMALL_STATE(4673)] = 154399, - [SMALL_STATE(4674)] = 154409, - [SMALL_STATE(4675)] = 154419, - [SMALL_STATE(4676)] = 154429, - [SMALL_STATE(4677)] = 154439, - [SMALL_STATE(4678)] = 154449, - [SMALL_STATE(4679)] = 154463, - [SMALL_STATE(4680)] = 154473, - [SMALL_STATE(4681)] = 154483, - [SMALL_STATE(4682)] = 154497, - [SMALL_STATE(4683)] = 154507, - [SMALL_STATE(4684)] = 154519, - [SMALL_STATE(4685)] = 154533, - [SMALL_STATE(4686)] = 154547, - [SMALL_STATE(4687)] = 154561, - [SMALL_STATE(4688)] = 154575, - [SMALL_STATE(4689)] = 154589, - [SMALL_STATE(4690)] = 154599, - [SMALL_STATE(4691)] = 154609, - [SMALL_STATE(4692)] = 154619, - [SMALL_STATE(4693)] = 154633, - [SMALL_STATE(4694)] = 154647, - [SMALL_STATE(4695)] = 154657, - [SMALL_STATE(4696)] = 154667, - [SMALL_STATE(4697)] = 154677, - [SMALL_STATE(4698)] = 154691, - [SMALL_STATE(4699)] = 154705, - [SMALL_STATE(4700)] = 154715, - [SMALL_STATE(4701)] = 154729, - [SMALL_STATE(4702)] = 154739, - [SMALL_STATE(4703)] = 154749, - [SMALL_STATE(4704)] = 154759, - [SMALL_STATE(4705)] = 154769, - [SMALL_STATE(4706)] = 154779, - [SMALL_STATE(4707)] = 154789, - [SMALL_STATE(4708)] = 154799, - [SMALL_STATE(4709)] = 154813, - [SMALL_STATE(4710)] = 154823, - [SMALL_STATE(4711)] = 154833, - [SMALL_STATE(4712)] = 154843, - [SMALL_STATE(4713)] = 154857, - [SMALL_STATE(4714)] = 154871, - [SMALL_STATE(4715)] = 154885, - [SMALL_STATE(4716)] = 154895, - [SMALL_STATE(4717)] = 154909, - [SMALL_STATE(4718)] = 154919, - [SMALL_STATE(4719)] = 154929, - [SMALL_STATE(4720)] = 154939, - [SMALL_STATE(4721)] = 154949, - [SMALL_STATE(4722)] = 154963, - [SMALL_STATE(4723)] = 154973, - [SMALL_STATE(4724)] = 154983, - [SMALL_STATE(4725)] = 154993, - [SMALL_STATE(4726)] = 155003, - [SMALL_STATE(4727)] = 155013, - [SMALL_STATE(4728)] = 155023, - [SMALL_STATE(4729)] = 155033, - [SMALL_STATE(4730)] = 155043, - [SMALL_STATE(4731)] = 155057, - [SMALL_STATE(4732)] = 155067, - [SMALL_STATE(4733)] = 155077, - [SMALL_STATE(4734)] = 155091, - [SMALL_STATE(4735)] = 155105, - [SMALL_STATE(4736)] = 155117, - [SMALL_STATE(4737)] = 155131, - [SMALL_STATE(4738)] = 155141, - [SMALL_STATE(4739)] = 155151, - [SMALL_STATE(4740)] = 155161, - [SMALL_STATE(4741)] = 155175, - [SMALL_STATE(4742)] = 155185, - [SMALL_STATE(4743)] = 155195, - [SMALL_STATE(4744)] = 155205, - [SMALL_STATE(4745)] = 155219, - [SMALL_STATE(4746)] = 155233, - [SMALL_STATE(4747)] = 155247, - [SMALL_STATE(4748)] = 155257, - [SMALL_STATE(4749)] = 155267, - [SMALL_STATE(4750)] = 155277, - [SMALL_STATE(4751)] = 155287, - [SMALL_STATE(4752)] = 155297, - [SMALL_STATE(4753)] = 155307, - [SMALL_STATE(4754)] = 155317, - [SMALL_STATE(4755)] = 155327, - [SMALL_STATE(4756)] = 155337, - [SMALL_STATE(4757)] = 155347, - [SMALL_STATE(4758)] = 155357, - [SMALL_STATE(4759)] = 155367, - [SMALL_STATE(4760)] = 155377, - [SMALL_STATE(4761)] = 155387, - [SMALL_STATE(4762)] = 155397, - [SMALL_STATE(4763)] = 155407, - [SMALL_STATE(4764)] = 155417, - [SMALL_STATE(4765)] = 155427, - [SMALL_STATE(4766)] = 155437, - [SMALL_STATE(4767)] = 155447, - [SMALL_STATE(4768)] = 155457, - [SMALL_STATE(4769)] = 155467, - [SMALL_STATE(4770)] = 155477, - [SMALL_STATE(4771)] = 155487, - [SMALL_STATE(4772)] = 155497, - [SMALL_STATE(4773)] = 155507, - [SMALL_STATE(4774)] = 155517, - [SMALL_STATE(4775)] = 155527, - [SMALL_STATE(4776)] = 155537, - [SMALL_STATE(4777)] = 155547, - [SMALL_STATE(4778)] = 155557, - [SMALL_STATE(4779)] = 155567, - [SMALL_STATE(4780)] = 155577, - [SMALL_STATE(4781)] = 155591, - [SMALL_STATE(4782)] = 155601, - [SMALL_STATE(4783)] = 155611, - [SMALL_STATE(4784)] = 155625, - [SMALL_STATE(4785)] = 155639, - [SMALL_STATE(4786)] = 155653, - [SMALL_STATE(4787)] = 155663, - [SMALL_STATE(4788)] = 155677, - [SMALL_STATE(4789)] = 155687, - [SMALL_STATE(4790)] = 155701, - [SMALL_STATE(4791)] = 155715, - [SMALL_STATE(4792)] = 155725, - [SMALL_STATE(4793)] = 155739, - [SMALL_STATE(4794)] = 155749, - [SMALL_STATE(4795)] = 155759, - [SMALL_STATE(4796)] = 155769, - [SMALL_STATE(4797)] = 155779, - [SMALL_STATE(4798)] = 155793, - [SMALL_STATE(4799)] = 155803, - [SMALL_STATE(4800)] = 155813, - [SMALL_STATE(4801)] = 155823, - [SMALL_STATE(4802)] = 155833, - [SMALL_STATE(4803)] = 155847, - [SMALL_STATE(4804)] = 155857, - [SMALL_STATE(4805)] = 155867, - [SMALL_STATE(4806)] = 155877, - [SMALL_STATE(4807)] = 155891, - [SMALL_STATE(4808)] = 155901, - [SMALL_STATE(4809)] = 155915, - [SMALL_STATE(4810)] = 155925, - [SMALL_STATE(4811)] = 155939, - [SMALL_STATE(4812)] = 155949, - [SMALL_STATE(4813)] = 155963, - [SMALL_STATE(4814)] = 155975, - [SMALL_STATE(4815)] = 155985, - [SMALL_STATE(4816)] = 155999, - [SMALL_STATE(4817)] = 156009, - [SMALL_STATE(4818)] = 156019, - [SMALL_STATE(4819)] = 156029, - [SMALL_STATE(4820)] = 156039, - [SMALL_STATE(4821)] = 156049, - [SMALL_STATE(4822)] = 156059, - [SMALL_STATE(4823)] = 156069, - [SMALL_STATE(4824)] = 156079, - [SMALL_STATE(4825)] = 156089, - [SMALL_STATE(4826)] = 156099, - [SMALL_STATE(4827)] = 156109, - [SMALL_STATE(4828)] = 156119, - [SMALL_STATE(4829)] = 156129, - [SMALL_STATE(4830)] = 156143, - [SMALL_STATE(4831)] = 156153, - [SMALL_STATE(4832)] = 156163, - [SMALL_STATE(4833)] = 156173, - [SMALL_STATE(4834)] = 156183, - [SMALL_STATE(4835)] = 156193, - [SMALL_STATE(4836)] = 156203, - [SMALL_STATE(4837)] = 156213, - [SMALL_STATE(4838)] = 156223, - [SMALL_STATE(4839)] = 156233, - [SMALL_STATE(4840)] = 156243, - [SMALL_STATE(4841)] = 156253, - [SMALL_STATE(4842)] = 156263, - [SMALL_STATE(4843)] = 156273, - [SMALL_STATE(4844)] = 156283, - [SMALL_STATE(4845)] = 156293, - [SMALL_STATE(4846)] = 156303, - [SMALL_STATE(4847)] = 156313, - [SMALL_STATE(4848)] = 156323, - [SMALL_STATE(4849)] = 156333, - [SMALL_STATE(4850)] = 156343, - [SMALL_STATE(4851)] = 156353, - [SMALL_STATE(4852)] = 156363, - [SMALL_STATE(4853)] = 156373, - [SMALL_STATE(4854)] = 156383, - [SMALL_STATE(4855)] = 156393, - [SMALL_STATE(4856)] = 156403, - [SMALL_STATE(4857)] = 156413, - [SMALL_STATE(4858)] = 156423, - [SMALL_STATE(4859)] = 156433, - [SMALL_STATE(4860)] = 156443, - [SMALL_STATE(4861)] = 156453, - [SMALL_STATE(4862)] = 156463, - [SMALL_STATE(4863)] = 156473, - [SMALL_STATE(4864)] = 156483, - [SMALL_STATE(4865)] = 156493, - [SMALL_STATE(4866)] = 156503, - [SMALL_STATE(4867)] = 156513, - [SMALL_STATE(4868)] = 156523, - [SMALL_STATE(4869)] = 156533, - [SMALL_STATE(4870)] = 156547, - [SMALL_STATE(4871)] = 156557, - [SMALL_STATE(4872)] = 156567, - [SMALL_STATE(4873)] = 156577, - [SMALL_STATE(4874)] = 156587, - [SMALL_STATE(4875)] = 156597, - [SMALL_STATE(4876)] = 156607, - [SMALL_STATE(4877)] = 156617, - [SMALL_STATE(4878)] = 156627, - [SMALL_STATE(4879)] = 156641, - [SMALL_STATE(4880)] = 156655, - [SMALL_STATE(4881)] = 156665, - [SMALL_STATE(4882)] = 156677, - [SMALL_STATE(4883)] = 156687, - [SMALL_STATE(4884)] = 156697, - [SMALL_STATE(4885)] = 156707, - [SMALL_STATE(4886)] = 156717, - [SMALL_STATE(4887)] = 156727, - [SMALL_STATE(4888)] = 156741, - [SMALL_STATE(4889)] = 156751, - [SMALL_STATE(4890)] = 156761, - [SMALL_STATE(4891)] = 156775, - [SMALL_STATE(4892)] = 156787, - [SMALL_STATE(4893)] = 156797, - [SMALL_STATE(4894)] = 156807, - [SMALL_STATE(4895)] = 156817, - [SMALL_STATE(4896)] = 156827, - [SMALL_STATE(4897)] = 156841, - [SMALL_STATE(4898)] = 156855, - [SMALL_STATE(4899)] = 156865, - [SMALL_STATE(4900)] = 156879, - [SMALL_STATE(4901)] = 156889, - [SMALL_STATE(4902)] = 156899, - [SMALL_STATE(4903)] = 156909, - [SMALL_STATE(4904)] = 156919, - [SMALL_STATE(4905)] = 156929, - [SMALL_STATE(4906)] = 156943, - [SMALL_STATE(4907)] = 156953, - [SMALL_STATE(4908)] = 156963, - [SMALL_STATE(4909)] = 156977, - [SMALL_STATE(4910)] = 156987, - [SMALL_STATE(4911)] = 157001, - [SMALL_STATE(4912)] = 157011, - [SMALL_STATE(4913)] = 157021, - [SMALL_STATE(4914)] = 157031, - [SMALL_STATE(4915)] = 157041, - [SMALL_STATE(4916)] = 157051, - [SMALL_STATE(4917)] = 157061, - [SMALL_STATE(4918)] = 157071, - [SMALL_STATE(4919)] = 157081, - [SMALL_STATE(4920)] = 157091, - [SMALL_STATE(4921)] = 157101, - [SMALL_STATE(4922)] = 157111, - [SMALL_STATE(4923)] = 157121, - [SMALL_STATE(4924)] = 157131, - [SMALL_STATE(4925)] = 157141, - [SMALL_STATE(4926)] = 157155, - [SMALL_STATE(4927)] = 157165, - [SMALL_STATE(4928)] = 157179, - [SMALL_STATE(4929)] = 157189, - [SMALL_STATE(4930)] = 157199, - [SMALL_STATE(4931)] = 157211, - [SMALL_STATE(4932)] = 157221, - [SMALL_STATE(4933)] = 157231, - [SMALL_STATE(4934)] = 157241, - [SMALL_STATE(4935)] = 157251, - [SMALL_STATE(4936)] = 157261, - [SMALL_STATE(4937)] = 157271, - [SMALL_STATE(4938)] = 157281, - [SMALL_STATE(4939)] = 157291, - [SMALL_STATE(4940)] = 157305, - [SMALL_STATE(4941)] = 157315, - [SMALL_STATE(4942)] = 157325, - [SMALL_STATE(4943)] = 157335, - [SMALL_STATE(4944)] = 157345, - [SMALL_STATE(4945)] = 157355, - [SMALL_STATE(4946)] = 157365, - [SMALL_STATE(4947)] = 157379, - [SMALL_STATE(4948)] = 157389, - [SMALL_STATE(4949)] = 157399, - [SMALL_STATE(4950)] = 157413, - [SMALL_STATE(4951)] = 157427, - [SMALL_STATE(4952)] = 157437, - [SMALL_STATE(4953)] = 157447, - [SMALL_STATE(4954)] = 157457, - [SMALL_STATE(4955)] = 157467, - [SMALL_STATE(4956)] = 157481, - [SMALL_STATE(4957)] = 157495, - [SMALL_STATE(4958)] = 157505, - [SMALL_STATE(4959)] = 157519, - [SMALL_STATE(4960)] = 157533, - [SMALL_STATE(4961)] = 157547, - [SMALL_STATE(4962)] = 157561, - [SMALL_STATE(4963)] = 157575, - [SMALL_STATE(4964)] = 157585, - [SMALL_STATE(4965)] = 157599, - [SMALL_STATE(4966)] = 157613, - [SMALL_STATE(4967)] = 157627, - [SMALL_STATE(4968)] = 157641, - [SMALL_STATE(4969)] = 157651, - [SMALL_STATE(4970)] = 157665, - [SMALL_STATE(4971)] = 157675, - [SMALL_STATE(4972)] = 157689, - [SMALL_STATE(4973)] = 157703, - [SMALL_STATE(4974)] = 157717, - [SMALL_STATE(4975)] = 157731, - [SMALL_STATE(4976)] = 157745, - [SMALL_STATE(4977)] = 157755, - [SMALL_STATE(4978)] = 157769, - [SMALL_STATE(4979)] = 157779, - [SMALL_STATE(4980)] = 157789, - [SMALL_STATE(4981)] = 157799, - [SMALL_STATE(4982)] = 157813, - [SMALL_STATE(4983)] = 157825, - [SMALL_STATE(4984)] = 157835, - [SMALL_STATE(4985)] = 157847, - [SMALL_STATE(4986)] = 157857, - [SMALL_STATE(4987)] = 157867, - [SMALL_STATE(4988)] = 157881, - [SMALL_STATE(4989)] = 157891, - [SMALL_STATE(4990)] = 157903, - [SMALL_STATE(4991)] = 157917, - [SMALL_STATE(4992)] = 157927, - [SMALL_STATE(4993)] = 157937, - [SMALL_STATE(4994)] = 157949, - [SMALL_STATE(4995)] = 157963, - [SMALL_STATE(4996)] = 157973, - [SMALL_STATE(4997)] = 157987, - [SMALL_STATE(4998)] = 158001, - [SMALL_STATE(4999)] = 158015, - [SMALL_STATE(5000)] = 158029, - [SMALL_STATE(5001)] = 158043, - [SMALL_STATE(5002)] = 158057, - [SMALL_STATE(5003)] = 158067, - [SMALL_STATE(5004)] = 158079, - [SMALL_STATE(5005)] = 158091, - [SMALL_STATE(5006)] = 158105, - [SMALL_STATE(5007)] = 158119, - [SMALL_STATE(5008)] = 158129, - [SMALL_STATE(5009)] = 158143, - [SMALL_STATE(5010)] = 158155, - [SMALL_STATE(5011)] = 158165, - [SMALL_STATE(5012)] = 158179, - [SMALL_STATE(5013)] = 158189, - [SMALL_STATE(5014)] = 158199, - [SMALL_STATE(5015)] = 158213, - [SMALL_STATE(5016)] = 158223, - [SMALL_STATE(5017)] = 158237, - [SMALL_STATE(5018)] = 158247, - [SMALL_STATE(5019)] = 158261, - [SMALL_STATE(5020)] = 158273, - [SMALL_STATE(5021)] = 158287, - [SMALL_STATE(5022)] = 158297, - [SMALL_STATE(5023)] = 158311, - [SMALL_STATE(5024)] = 158325, - [SMALL_STATE(5025)] = 158335, - [SMALL_STATE(5026)] = 158345, - [SMALL_STATE(5027)] = 158359, - [SMALL_STATE(5028)] = 158373, - [SMALL_STATE(5029)] = 158383, - [SMALL_STATE(5030)] = 158397, - [SMALL_STATE(5031)] = 158411, - [SMALL_STATE(5032)] = 158421, - [SMALL_STATE(5033)] = 158435, - [SMALL_STATE(5034)] = 158449, - [SMALL_STATE(5035)] = 158459, - [SMALL_STATE(5036)] = 158469, - [SMALL_STATE(5037)] = 158479, - [SMALL_STATE(5038)] = 158489, - [SMALL_STATE(5039)] = 158503, - [SMALL_STATE(5040)] = 158515, - [SMALL_STATE(5041)] = 158525, - [SMALL_STATE(5042)] = 158537, - [SMALL_STATE(5043)] = 158547, - [SMALL_STATE(5044)] = 158557, - [SMALL_STATE(5045)] = 158567, - [SMALL_STATE(5046)] = 158577, - [SMALL_STATE(5047)] = 158587, - [SMALL_STATE(5048)] = 158597, - [SMALL_STATE(5049)] = 158607, - [SMALL_STATE(5050)] = 158617, - [SMALL_STATE(5051)] = 158627, - [SMALL_STATE(5052)] = 158637, - [SMALL_STATE(5053)] = 158651, - [SMALL_STATE(5054)] = 158661, - [SMALL_STATE(5055)] = 158671, - [SMALL_STATE(5056)] = 158681, - [SMALL_STATE(5057)] = 158691, - [SMALL_STATE(5058)] = 158701, - [SMALL_STATE(5059)] = 158711, - [SMALL_STATE(5060)] = 158721, - [SMALL_STATE(5061)] = 158731, - [SMALL_STATE(5062)] = 158741, - [SMALL_STATE(5063)] = 158755, - [SMALL_STATE(5064)] = 158765, - [SMALL_STATE(5065)] = 158775, - [SMALL_STATE(5066)] = 158785, - [SMALL_STATE(5067)] = 158795, - [SMALL_STATE(5068)] = 158805, - [SMALL_STATE(5069)] = 158815, - [SMALL_STATE(5070)] = 158825, - [SMALL_STATE(5071)] = 158835, - [SMALL_STATE(5072)] = 158845, - [SMALL_STATE(5073)] = 158855, - [SMALL_STATE(5074)] = 158865, - [SMALL_STATE(5075)] = 158875, - [SMALL_STATE(5076)] = 158887, - [SMALL_STATE(5077)] = 158899, - [SMALL_STATE(5078)] = 158909, - [SMALL_STATE(5079)] = 158919, - [SMALL_STATE(5080)] = 158929, - [SMALL_STATE(5081)] = 158943, - [SMALL_STATE(5082)] = 158953, - [SMALL_STATE(5083)] = 158963, - [SMALL_STATE(5084)] = 158973, - [SMALL_STATE(5085)] = 158983, - [SMALL_STATE(5086)] = 158993, - [SMALL_STATE(5087)] = 159003, - [SMALL_STATE(5088)] = 159013, - [SMALL_STATE(5089)] = 159023, - [SMALL_STATE(5090)] = 159033, - [SMALL_STATE(5091)] = 159043, - [SMALL_STATE(5092)] = 159053, - [SMALL_STATE(5093)] = 159063, - [SMALL_STATE(5094)] = 159073, - [SMALL_STATE(5095)] = 159083, - [SMALL_STATE(5096)] = 159093, - [SMALL_STATE(5097)] = 159105, - [SMALL_STATE(5098)] = 159115, - [SMALL_STATE(5099)] = 159125, - [SMALL_STATE(5100)] = 159135, - [SMALL_STATE(5101)] = 159145, - [SMALL_STATE(5102)] = 159155, - [SMALL_STATE(5103)] = 159165, - [SMALL_STATE(5104)] = 159175, - [SMALL_STATE(5105)] = 159185, - [SMALL_STATE(5106)] = 159195, - [SMALL_STATE(5107)] = 159207, - [SMALL_STATE(5108)] = 159217, - [SMALL_STATE(5109)] = 159231, - [SMALL_STATE(5110)] = 159241, - [SMALL_STATE(5111)] = 159251, - [SMALL_STATE(5112)] = 159261, - [SMALL_STATE(5113)] = 159271, - [SMALL_STATE(5114)] = 159281, - [SMALL_STATE(5115)] = 159291, - [SMALL_STATE(5116)] = 159305, - [SMALL_STATE(5117)] = 159319, - [SMALL_STATE(5118)] = 159329, - [SMALL_STATE(5119)] = 159339, - [SMALL_STATE(5120)] = 159349, - [SMALL_STATE(5121)] = 159359, - [SMALL_STATE(5122)] = 159373, - [SMALL_STATE(5123)] = 159383, - [SMALL_STATE(5124)] = 159393, - [SMALL_STATE(5125)] = 159403, - [SMALL_STATE(5126)] = 159413, - [SMALL_STATE(5127)] = 159422, - [SMALL_STATE(5128)] = 159433, - [SMALL_STATE(5129)] = 159444, - [SMALL_STATE(5130)] = 159453, - [SMALL_STATE(5131)] = 159464, - [SMALL_STATE(5132)] = 159475, - [SMALL_STATE(5133)] = 159484, - [SMALL_STATE(5134)] = 159495, - [SMALL_STATE(5135)] = 159504, - [SMALL_STATE(5136)] = 159515, - [SMALL_STATE(5137)] = 159526, - [SMALL_STATE(5138)] = 159537, - [SMALL_STATE(5139)] = 159548, - [SMALL_STATE(5140)] = 159559, - [SMALL_STATE(5141)] = 159568, - [SMALL_STATE(5142)] = 159579, - [SMALL_STATE(5143)] = 159590, - [SMALL_STATE(5144)] = 159601, - [SMALL_STATE(5145)] = 159612, - [SMALL_STATE(5146)] = 159623, - [SMALL_STATE(5147)] = 159634, - [SMALL_STATE(5148)] = 159643, - [SMALL_STATE(5149)] = 159654, - [SMALL_STATE(5150)] = 159665, - [SMALL_STATE(5151)] = 159676, - [SMALL_STATE(5152)] = 159687, - [SMALL_STATE(5153)] = 159696, - [SMALL_STATE(5154)] = 159707, - [SMALL_STATE(5155)] = 159718, - [SMALL_STATE(5156)] = 159729, - [SMALL_STATE(5157)] = 159740, - [SMALL_STATE(5158)] = 159751, - [SMALL_STATE(5159)] = 159762, - [SMALL_STATE(5160)] = 159771, - [SMALL_STATE(5161)] = 159780, - [SMALL_STATE(5162)] = 159791, - [SMALL_STATE(5163)] = 159802, - [SMALL_STATE(5164)] = 159813, - [SMALL_STATE(5165)] = 159824, - [SMALL_STATE(5166)] = 159835, - [SMALL_STATE(5167)] = 159846, - [SMALL_STATE(5168)] = 159857, - [SMALL_STATE(5169)] = 159868, - [SMALL_STATE(5170)] = 159877, - [SMALL_STATE(5171)] = 159888, - [SMALL_STATE(5172)] = 159899, - [SMALL_STATE(5173)] = 159908, - [SMALL_STATE(5174)] = 159919, - [SMALL_STATE(5175)] = 159930, - [SMALL_STATE(5176)] = 159941, - [SMALL_STATE(5177)] = 159952, - [SMALL_STATE(5178)] = 159963, - [SMALL_STATE(5179)] = 159972, - [SMALL_STATE(5180)] = 159983, - [SMALL_STATE(5181)] = 159994, - [SMALL_STATE(5182)] = 160005, - [SMALL_STATE(5183)] = 160016, - [SMALL_STATE(5184)] = 160027, - [SMALL_STATE(5185)] = 160038, - [SMALL_STATE(5186)] = 160049, - [SMALL_STATE(5187)] = 160060, - [SMALL_STATE(5188)] = 160071, - [SMALL_STATE(5189)] = 160082, - [SMALL_STATE(5190)] = 160093, - [SMALL_STATE(5191)] = 160104, - [SMALL_STATE(5192)] = 160115, - [SMALL_STATE(5193)] = 160126, - [SMALL_STATE(5194)] = 160135, - [SMALL_STATE(5195)] = 160144, - [SMALL_STATE(5196)] = 160153, - [SMALL_STATE(5197)] = 160162, - [SMALL_STATE(5198)] = 160173, - [SMALL_STATE(5199)] = 160184, - [SMALL_STATE(5200)] = 160193, - [SMALL_STATE(5201)] = 160204, - [SMALL_STATE(5202)] = 160215, - [SMALL_STATE(5203)] = 160226, - [SMALL_STATE(5204)] = 160237, - [SMALL_STATE(5205)] = 160248, - [SMALL_STATE(5206)] = 160259, - [SMALL_STATE(5207)] = 160270, - [SMALL_STATE(5208)] = 160279, - [SMALL_STATE(5209)] = 160290, - [SMALL_STATE(5210)] = 160301, - [SMALL_STATE(5211)] = 160312, - [SMALL_STATE(5212)] = 160323, - [SMALL_STATE(5213)] = 160334, - [SMALL_STATE(5214)] = 160345, - [SMALL_STATE(5215)] = 160354, - [SMALL_STATE(5216)] = 160365, - [SMALL_STATE(5217)] = 160376, - [SMALL_STATE(5218)] = 160387, - [SMALL_STATE(5219)] = 160398, - [SMALL_STATE(5220)] = 160409, - [SMALL_STATE(5221)] = 160420, - [SMALL_STATE(5222)] = 160429, - [SMALL_STATE(5223)] = 160440, - [SMALL_STATE(5224)] = 160451, - [SMALL_STATE(5225)] = 160462, - [SMALL_STATE(5226)] = 160471, - [SMALL_STATE(5227)] = 160482, - [SMALL_STATE(5228)] = 160493, - [SMALL_STATE(5229)] = 160504, - [SMALL_STATE(5230)] = 160515, - [SMALL_STATE(5231)] = 160524, - [SMALL_STATE(5232)] = 160535, - [SMALL_STATE(5233)] = 160546, - [SMALL_STATE(5234)] = 160557, - [SMALL_STATE(5235)] = 160568, - [SMALL_STATE(5236)] = 160579, - [SMALL_STATE(5237)] = 160590, - [SMALL_STATE(5238)] = 160601, - [SMALL_STATE(5239)] = 160610, - [SMALL_STATE(5240)] = 160621, - [SMALL_STATE(5241)] = 160632, - [SMALL_STATE(5242)] = 160643, - [SMALL_STATE(5243)] = 160654, - [SMALL_STATE(5244)] = 160665, - [SMALL_STATE(5245)] = 160674, - [SMALL_STATE(5246)] = 160683, - [SMALL_STATE(5247)] = 160694, - [SMALL_STATE(5248)] = 160705, - [SMALL_STATE(5249)] = 160716, - [SMALL_STATE(5250)] = 160727, - [SMALL_STATE(5251)] = 160738, - [SMALL_STATE(5252)] = 160749, - [SMALL_STATE(5253)] = 160760, - [SMALL_STATE(5254)] = 160771, - [SMALL_STATE(5255)] = 160782, - [SMALL_STATE(5256)] = 160793, - [SMALL_STATE(5257)] = 160804, - [SMALL_STATE(5258)] = 160815, - [SMALL_STATE(5259)] = 160826, - [SMALL_STATE(5260)] = 160835, - [SMALL_STATE(5261)] = 160844, - [SMALL_STATE(5262)] = 160855, - [SMALL_STATE(5263)] = 160864, - [SMALL_STATE(5264)] = 160873, - [SMALL_STATE(5265)] = 160884, - [SMALL_STATE(5266)] = 160895, - [SMALL_STATE(5267)] = 160906, - [SMALL_STATE(5268)] = 160917, - [SMALL_STATE(5269)] = 160928, - [SMALL_STATE(5270)] = 160939, - [SMALL_STATE(5271)] = 160950, - [SMALL_STATE(5272)] = 160961, - [SMALL_STATE(5273)] = 160970, - [SMALL_STATE(5274)] = 160981, - [SMALL_STATE(5275)] = 160992, - [SMALL_STATE(5276)] = 161003, - [SMALL_STATE(5277)] = 161014, - [SMALL_STATE(5278)] = 161023, - [SMALL_STATE(5279)] = 161032, - [SMALL_STATE(5280)] = 161043, - [SMALL_STATE(5281)] = 161054, - [SMALL_STATE(5282)] = 161065, - [SMALL_STATE(5283)] = 161076, - [SMALL_STATE(5284)] = 161087, - [SMALL_STATE(5285)] = 161096, - [SMALL_STATE(5286)] = 161105, - [SMALL_STATE(5287)] = 161116, - [SMALL_STATE(5288)] = 161127, - [SMALL_STATE(5289)] = 161138, - [SMALL_STATE(5290)] = 161149, - [SMALL_STATE(5291)] = 161158, - [SMALL_STATE(5292)] = 161169, - [SMALL_STATE(5293)] = 161180, - [SMALL_STATE(5294)] = 161191, - [SMALL_STATE(5295)] = 161202, - [SMALL_STATE(5296)] = 161213, - [SMALL_STATE(5297)] = 161224, - [SMALL_STATE(5298)] = 161233, - [SMALL_STATE(5299)] = 161244, - [SMALL_STATE(5300)] = 161255, - [SMALL_STATE(5301)] = 161266, - [SMALL_STATE(5302)] = 161277, - [SMALL_STATE(5303)] = 161288, - [SMALL_STATE(5304)] = 161299, - [SMALL_STATE(5305)] = 161310, - [SMALL_STATE(5306)] = 161319, - [SMALL_STATE(5307)] = 161328, - [SMALL_STATE(5308)] = 161337, - [SMALL_STATE(5309)] = 161348, - [SMALL_STATE(5310)] = 161357, - [SMALL_STATE(5311)] = 161368, - [SMALL_STATE(5312)] = 161379, - [SMALL_STATE(5313)] = 161390, - [SMALL_STATE(5314)] = 161399, - [SMALL_STATE(5315)] = 161408, - [SMALL_STATE(5316)] = 161419, - [SMALL_STATE(5317)] = 161428, - [SMALL_STATE(5318)] = 161439, - [SMALL_STATE(5319)] = 161450, - [SMALL_STATE(5320)] = 161459, - [SMALL_STATE(5321)] = 161470, - [SMALL_STATE(5322)] = 161481, - [SMALL_STATE(5323)] = 161492, - [SMALL_STATE(5324)] = 161503, - [SMALL_STATE(5325)] = 161514, - [SMALL_STATE(5326)] = 161525, - [SMALL_STATE(5327)] = 161536, - [SMALL_STATE(5328)] = 161547, - [SMALL_STATE(5329)] = 161558, - [SMALL_STATE(5330)] = 161567, - [SMALL_STATE(5331)] = 161576, - [SMALL_STATE(5332)] = 161585, - [SMALL_STATE(5333)] = 161596, - [SMALL_STATE(5334)] = 161605, - [SMALL_STATE(5335)] = 161614, - [SMALL_STATE(5336)] = 161625, - [SMALL_STATE(5337)] = 161636, - [SMALL_STATE(5338)] = 161647, - [SMALL_STATE(5339)] = 161658, - [SMALL_STATE(5340)] = 161669, - [SMALL_STATE(5341)] = 161680, - [SMALL_STATE(5342)] = 161691, - [SMALL_STATE(5343)] = 161702, - [SMALL_STATE(5344)] = 161713, - [SMALL_STATE(5345)] = 161724, - [SMALL_STATE(5346)] = 161733, - [SMALL_STATE(5347)] = 161744, - [SMALL_STATE(5348)] = 161755, - [SMALL_STATE(5349)] = 161764, - [SMALL_STATE(5350)] = 161775, - [SMALL_STATE(5351)] = 161786, - [SMALL_STATE(5352)] = 161797, - [SMALL_STATE(5353)] = 161808, - [SMALL_STATE(5354)] = 161819, - [SMALL_STATE(5355)] = 161830, - [SMALL_STATE(5356)] = 161839, - [SMALL_STATE(5357)] = 161848, - [SMALL_STATE(5358)] = 161859, - [SMALL_STATE(5359)] = 161870, - [SMALL_STATE(5360)] = 161879, - [SMALL_STATE(5361)] = 161890, - [SMALL_STATE(5362)] = 161901, - [SMALL_STATE(5363)] = 161912, - [SMALL_STATE(5364)] = 161923, - [SMALL_STATE(5365)] = 161934, - [SMALL_STATE(5366)] = 161945, - [SMALL_STATE(5367)] = 161956, - [SMALL_STATE(5368)] = 161967, - [SMALL_STATE(5369)] = 161976, - [SMALL_STATE(5370)] = 161987, - [SMALL_STATE(5371)] = 161998, - [SMALL_STATE(5372)] = 162009, - [SMALL_STATE(5373)] = 162020, - [SMALL_STATE(5374)] = 162031, - [SMALL_STATE(5375)] = 162042, - [SMALL_STATE(5376)] = 162053, - [SMALL_STATE(5377)] = 162064, - [SMALL_STATE(5378)] = 162075, - [SMALL_STATE(5379)] = 162086, - [SMALL_STATE(5380)] = 162095, - [SMALL_STATE(5381)] = 162106, - [SMALL_STATE(5382)] = 162117, - [SMALL_STATE(5383)] = 162128, - [SMALL_STATE(5384)] = 162137, - [SMALL_STATE(5385)] = 162146, - [SMALL_STATE(5386)] = 162155, - [SMALL_STATE(5387)] = 162166, - [SMALL_STATE(5388)] = 162177, - [SMALL_STATE(5389)] = 162188, - [SMALL_STATE(5390)] = 162197, - [SMALL_STATE(5391)] = 162208, - [SMALL_STATE(5392)] = 162219, - [SMALL_STATE(5393)] = 162228, - [SMALL_STATE(5394)] = 162239, - [SMALL_STATE(5395)] = 162250, - [SMALL_STATE(5396)] = 162261, - [SMALL_STATE(5397)] = 162272, - [SMALL_STATE(5398)] = 162283, - [SMALL_STATE(5399)] = 162294, - [SMALL_STATE(5400)] = 162305, - [SMALL_STATE(5401)] = 162314, - [SMALL_STATE(5402)] = 162325, - [SMALL_STATE(5403)] = 162336, - [SMALL_STATE(5404)] = 162347, - [SMALL_STATE(5405)] = 162358, - [SMALL_STATE(5406)] = 162369, - [SMALL_STATE(5407)] = 162380, - [SMALL_STATE(5408)] = 162391, - [SMALL_STATE(5409)] = 162402, - [SMALL_STATE(5410)] = 162413, - [SMALL_STATE(5411)] = 162424, - [SMALL_STATE(5412)] = 162435, - [SMALL_STATE(5413)] = 162446, - [SMALL_STATE(5414)] = 162455, - [SMALL_STATE(5415)] = 162466, - [SMALL_STATE(5416)] = 162477, - [SMALL_STATE(5417)] = 162486, - [SMALL_STATE(5418)] = 162495, - [SMALL_STATE(5419)] = 162506, - [SMALL_STATE(5420)] = 162515, - [SMALL_STATE(5421)] = 162524, - [SMALL_STATE(5422)] = 162535, - [SMALL_STATE(5423)] = 162546, - [SMALL_STATE(5424)] = 162557, - [SMALL_STATE(5425)] = 162568, - [SMALL_STATE(5426)] = 162579, - [SMALL_STATE(5427)] = 162590, - [SMALL_STATE(5428)] = 162601, - [SMALL_STATE(5429)] = 162612, - [SMALL_STATE(5430)] = 162623, - [SMALL_STATE(5431)] = 162634, - [SMALL_STATE(5432)] = 162645, - [SMALL_STATE(5433)] = 162656, - [SMALL_STATE(5434)] = 162665, - [SMALL_STATE(5435)] = 162674, - [SMALL_STATE(5436)] = 162685, - [SMALL_STATE(5437)] = 162696, - [SMALL_STATE(5438)] = 162705, - [SMALL_STATE(5439)] = 162716, - [SMALL_STATE(5440)] = 162727, - [SMALL_STATE(5441)] = 162738, - [SMALL_STATE(5442)] = 162747, - [SMALL_STATE(5443)] = 162758, - [SMALL_STATE(5444)] = 162769, - [SMALL_STATE(5445)] = 162780, - [SMALL_STATE(5446)] = 162791, - [SMALL_STATE(5447)] = 162802, - [SMALL_STATE(5448)] = 162813, - [SMALL_STATE(5449)] = 162824, - [SMALL_STATE(5450)] = 162835, - [SMALL_STATE(5451)] = 162846, - [SMALL_STATE(5452)] = 162857, - [SMALL_STATE(5453)] = 162868, - [SMALL_STATE(5454)] = 162879, - [SMALL_STATE(5455)] = 162890, - [SMALL_STATE(5456)] = 162901, - [SMALL_STATE(5457)] = 162912, - [SMALL_STATE(5458)] = 162923, - [SMALL_STATE(5459)] = 162934, - [SMALL_STATE(5460)] = 162945, - [SMALL_STATE(5461)] = 162956, - [SMALL_STATE(5462)] = 162967, - [SMALL_STATE(5463)] = 162976, - [SMALL_STATE(5464)] = 162985, - [SMALL_STATE(5465)] = 162994, - [SMALL_STATE(5466)] = 163003, - [SMALL_STATE(5467)] = 163011, - [SMALL_STATE(5468)] = 163019, - [SMALL_STATE(5469)] = 163027, - [SMALL_STATE(5470)] = 163035, - [SMALL_STATE(5471)] = 163043, - [SMALL_STATE(5472)] = 163051, - [SMALL_STATE(5473)] = 163059, - [SMALL_STATE(5474)] = 163067, - [SMALL_STATE(5475)] = 163075, - [SMALL_STATE(5476)] = 163083, - [SMALL_STATE(5477)] = 163091, - [SMALL_STATE(5478)] = 163099, - [SMALL_STATE(5479)] = 163107, - [SMALL_STATE(5480)] = 163115, - [SMALL_STATE(5481)] = 163123, - [SMALL_STATE(5482)] = 163131, - [SMALL_STATE(5483)] = 163141, - [SMALL_STATE(5484)] = 163149, - [SMALL_STATE(5485)] = 163157, - [SMALL_STATE(5486)] = 163165, - [SMALL_STATE(5487)] = 163173, - [SMALL_STATE(5488)] = 163181, - [SMALL_STATE(5489)] = 163189, - [SMALL_STATE(5490)] = 163197, - [SMALL_STATE(5491)] = 163205, - [SMALL_STATE(5492)] = 163213, - [SMALL_STATE(5493)] = 163221, - [SMALL_STATE(5494)] = 163229, - [SMALL_STATE(5495)] = 163239, - [SMALL_STATE(5496)] = 163247, - [SMALL_STATE(5497)] = 163255, - [SMALL_STATE(5498)] = 163263, - [SMALL_STATE(5499)] = 163271, - [SMALL_STATE(5500)] = 163279, - [SMALL_STATE(5501)] = 163287, - [SMALL_STATE(5502)] = 163295, - [SMALL_STATE(5503)] = 163303, - [SMALL_STATE(5504)] = 163311, - [SMALL_STATE(5505)] = 163319, - [SMALL_STATE(5506)] = 163327, - [SMALL_STATE(5507)] = 163335, - [SMALL_STATE(5508)] = 163343, - [SMALL_STATE(5509)] = 163351, - [SMALL_STATE(5510)] = 163359, - [SMALL_STATE(5511)] = 163367, - [SMALL_STATE(5512)] = 163375, - [SMALL_STATE(5513)] = 163383, - [SMALL_STATE(5514)] = 163391, - [SMALL_STATE(5515)] = 163399, - [SMALL_STATE(5516)] = 163407, - [SMALL_STATE(5517)] = 163415, - [SMALL_STATE(5518)] = 163423, - [SMALL_STATE(5519)] = 163431, - [SMALL_STATE(5520)] = 163439, - [SMALL_STATE(5521)] = 163447, - [SMALL_STATE(5522)] = 163455, - [SMALL_STATE(5523)] = 163463, - [SMALL_STATE(5524)] = 163471, - [SMALL_STATE(5525)] = 163479, - [SMALL_STATE(5526)] = 163487, - [SMALL_STATE(5527)] = 163495, - [SMALL_STATE(5528)] = 163503, - [SMALL_STATE(5529)] = 163511, - [SMALL_STATE(5530)] = 163519, - [SMALL_STATE(5531)] = 163527, - [SMALL_STATE(5532)] = 163535, - [SMALL_STATE(5533)] = 163543, - [SMALL_STATE(5534)] = 163551, - [SMALL_STATE(5535)] = 163559, - [SMALL_STATE(5536)] = 163567, - [SMALL_STATE(5537)] = 163575, - [SMALL_STATE(5538)] = 163583, - [SMALL_STATE(5539)] = 163591, - [SMALL_STATE(5540)] = 163599, - [SMALL_STATE(5541)] = 163607, - [SMALL_STATE(5542)] = 163615, - [SMALL_STATE(5543)] = 163623, - [SMALL_STATE(5544)] = 163631, - [SMALL_STATE(5545)] = 163639, - [SMALL_STATE(5546)] = 163647, - [SMALL_STATE(5547)] = 163655, - [SMALL_STATE(5548)] = 163663, - [SMALL_STATE(5549)] = 163671, - [SMALL_STATE(5550)] = 163679, - [SMALL_STATE(5551)] = 163687, - [SMALL_STATE(5552)] = 163695, - [SMALL_STATE(5553)] = 163703, - [SMALL_STATE(5554)] = 163713, - [SMALL_STATE(5555)] = 163721, - [SMALL_STATE(5556)] = 163729, - [SMALL_STATE(5557)] = 163737, - [SMALL_STATE(5558)] = 163745, - [SMALL_STATE(5559)] = 163753, - [SMALL_STATE(5560)] = 163761, - [SMALL_STATE(5561)] = 163769, - [SMALL_STATE(5562)] = 163777, - [SMALL_STATE(5563)] = 163785, - [SMALL_STATE(5564)] = 163793, - [SMALL_STATE(5565)] = 163801, - [SMALL_STATE(5566)] = 163809, - [SMALL_STATE(5567)] = 163817, - [SMALL_STATE(5568)] = 163825, - [SMALL_STATE(5569)] = 163833, - [SMALL_STATE(5570)] = 163841, - [SMALL_STATE(5571)] = 163849, - [SMALL_STATE(5572)] = 163857, - [SMALL_STATE(5573)] = 163865, - [SMALL_STATE(5574)] = 163873, - [SMALL_STATE(5575)] = 163881, - [SMALL_STATE(5576)] = 163889, - [SMALL_STATE(5577)] = 163897, - [SMALL_STATE(5578)] = 163905, - [SMALL_STATE(5579)] = 163913, - [SMALL_STATE(5580)] = 163921, - [SMALL_STATE(5581)] = 163929, - [SMALL_STATE(5582)] = 163937, - [SMALL_STATE(5583)] = 163945, - [SMALL_STATE(5584)] = 163953, - [SMALL_STATE(5585)] = 163961, - [SMALL_STATE(5586)] = 163969, - [SMALL_STATE(5587)] = 163977, - [SMALL_STATE(5588)] = 163985, - [SMALL_STATE(5589)] = 163993, - [SMALL_STATE(5590)] = 164001, - [SMALL_STATE(5591)] = 164009, - [SMALL_STATE(5592)] = 164017, - [SMALL_STATE(5593)] = 164025, - [SMALL_STATE(5594)] = 164033, - [SMALL_STATE(5595)] = 164041, - [SMALL_STATE(5596)] = 164049, - [SMALL_STATE(5597)] = 164057, - [SMALL_STATE(5598)] = 164065, - [SMALL_STATE(5599)] = 164073, - [SMALL_STATE(5600)] = 164081, - [SMALL_STATE(5601)] = 164089, - [SMALL_STATE(5602)] = 164097, - [SMALL_STATE(5603)] = 164105, - [SMALL_STATE(5604)] = 164113, - [SMALL_STATE(5605)] = 164121, - [SMALL_STATE(5606)] = 164129, - [SMALL_STATE(5607)] = 164137, - [SMALL_STATE(5608)] = 164145, - [SMALL_STATE(5609)] = 164153, - [SMALL_STATE(5610)] = 164161, - [SMALL_STATE(5611)] = 164169, - [SMALL_STATE(5612)] = 164177, - [SMALL_STATE(5613)] = 164185, - [SMALL_STATE(5614)] = 164193, - [SMALL_STATE(5615)] = 164201, - [SMALL_STATE(5616)] = 164209, - [SMALL_STATE(5617)] = 164217, - [SMALL_STATE(5618)] = 164225, - [SMALL_STATE(5619)] = 164233, - [SMALL_STATE(5620)] = 164241, - [SMALL_STATE(5621)] = 164249, - [SMALL_STATE(5622)] = 164257, - [SMALL_STATE(5623)] = 164265, - [SMALL_STATE(5624)] = 164273, - [SMALL_STATE(5625)] = 164281, - [SMALL_STATE(5626)] = 164289, - [SMALL_STATE(5627)] = 164297, - [SMALL_STATE(5628)] = 164307, - [SMALL_STATE(5629)] = 164315, - [SMALL_STATE(5630)] = 164323, - [SMALL_STATE(5631)] = 164331, - [SMALL_STATE(5632)] = 164339, - [SMALL_STATE(5633)] = 164347, - [SMALL_STATE(5634)] = 164355, - [SMALL_STATE(5635)] = 164363, - [SMALL_STATE(5636)] = 164371, - [SMALL_STATE(5637)] = 164379, - [SMALL_STATE(5638)] = 164387, - [SMALL_STATE(5639)] = 164395, - [SMALL_STATE(5640)] = 164403, - [SMALL_STATE(5641)] = 164411, - [SMALL_STATE(5642)] = 164419, - [SMALL_STATE(5643)] = 164427, - [SMALL_STATE(5644)] = 164435, - [SMALL_STATE(5645)] = 164443, - [SMALL_STATE(5646)] = 164451, - [SMALL_STATE(5647)] = 164459, - [SMALL_STATE(5648)] = 164467, - [SMALL_STATE(5649)] = 164475, - [SMALL_STATE(5650)] = 164485, - [SMALL_STATE(5651)] = 164493, - [SMALL_STATE(5652)] = 164501, - [SMALL_STATE(5653)] = 164509, - [SMALL_STATE(5654)] = 164517, - [SMALL_STATE(5655)] = 164525, - [SMALL_STATE(5656)] = 164535, - [SMALL_STATE(5657)] = 164543, - [SMALL_STATE(5658)] = 164551, - [SMALL_STATE(5659)] = 164559, - [SMALL_STATE(5660)] = 164567, - [SMALL_STATE(5661)] = 164575, - [SMALL_STATE(5662)] = 164583, - [SMALL_STATE(5663)] = 164593, - [SMALL_STATE(5664)] = 164601, - [SMALL_STATE(5665)] = 164609, - [SMALL_STATE(5666)] = 164617, - [SMALL_STATE(5667)] = 164625, - [SMALL_STATE(5668)] = 164633, - [SMALL_STATE(5669)] = 164643, - [SMALL_STATE(5670)] = 164651, - [SMALL_STATE(5671)] = 164659, - [SMALL_STATE(5672)] = 164667, - [SMALL_STATE(5673)] = 164675, - [SMALL_STATE(5674)] = 164683, - [SMALL_STATE(5675)] = 164691, - [SMALL_STATE(5676)] = 164699, - [SMALL_STATE(5677)] = 164707, - [SMALL_STATE(5678)] = 164715, - [SMALL_STATE(5679)] = 164723, - [SMALL_STATE(5680)] = 164731, - [SMALL_STATE(5681)] = 164739, - [SMALL_STATE(5682)] = 164747, - [SMALL_STATE(5683)] = 164755, - [SMALL_STATE(5684)] = 164765, - [SMALL_STATE(5685)] = 164773, - [SMALL_STATE(5686)] = 164781, - [SMALL_STATE(5687)] = 164789, - [SMALL_STATE(5688)] = 164797, - [SMALL_STATE(5689)] = 164805, - [SMALL_STATE(5690)] = 164813, - [SMALL_STATE(5691)] = 164821, - [SMALL_STATE(5692)] = 164829, - [SMALL_STATE(5693)] = 164837, - [SMALL_STATE(5694)] = 164845, - [SMALL_STATE(5695)] = 164853, - [SMALL_STATE(5696)] = 164861, - [SMALL_STATE(5697)] = 164869, - [SMALL_STATE(5698)] = 164877, - [SMALL_STATE(5699)] = 164885, - [SMALL_STATE(5700)] = 164893, - [SMALL_STATE(5701)] = 164901, - [SMALL_STATE(5702)] = 164909, - [SMALL_STATE(5703)] = 164917, - [SMALL_STATE(5704)] = 164925, - [SMALL_STATE(5705)] = 164933, - [SMALL_STATE(5706)] = 164941, - [SMALL_STATE(5707)] = 164949, - [SMALL_STATE(5708)] = 164957, - [SMALL_STATE(5709)] = 164965, - [SMALL_STATE(5710)] = 164973, - [SMALL_STATE(5711)] = 164981, - [SMALL_STATE(5712)] = 164989, - [SMALL_STATE(5713)] = 164997, - [SMALL_STATE(5714)] = 165005, - [SMALL_STATE(5715)] = 165013, - [SMALL_STATE(5716)] = 165021, - [SMALL_STATE(5717)] = 165029, - [SMALL_STATE(5718)] = 165037, - [SMALL_STATE(5719)] = 165045, - [SMALL_STATE(5720)] = 165053, - [SMALL_STATE(5721)] = 165061, - [SMALL_STATE(5722)] = 165069, - [SMALL_STATE(5723)] = 165077, - [SMALL_STATE(5724)] = 165085, - [SMALL_STATE(5725)] = 165093, - [SMALL_STATE(5726)] = 165101, - [SMALL_STATE(5727)] = 165109, - [SMALL_STATE(5728)] = 165117, - [SMALL_STATE(5729)] = 165125, - [SMALL_STATE(5730)] = 165133, - [SMALL_STATE(5731)] = 165141, - [SMALL_STATE(5732)] = 165149, - [SMALL_STATE(5733)] = 165157, - [SMALL_STATE(5734)] = 165165, - [SMALL_STATE(5735)] = 165173, - [SMALL_STATE(5736)] = 165181, - [SMALL_STATE(5737)] = 165189, - [SMALL_STATE(5738)] = 165197, - [SMALL_STATE(5739)] = 165205, - [SMALL_STATE(5740)] = 165213, - [SMALL_STATE(5741)] = 165221, - [SMALL_STATE(5742)] = 165229, - [SMALL_STATE(5743)] = 165237, - [SMALL_STATE(5744)] = 165245, - [SMALL_STATE(5745)] = 165253, - [SMALL_STATE(5746)] = 165261, - [SMALL_STATE(5747)] = 165269, - [SMALL_STATE(5748)] = 165277, - [SMALL_STATE(5749)] = 165285, - [SMALL_STATE(5750)] = 165293, - [SMALL_STATE(5751)] = 165301, - [SMALL_STATE(5752)] = 165309, - [SMALL_STATE(5753)] = 165317, - [SMALL_STATE(5754)] = 165325, - [SMALL_STATE(5755)] = 165333, - [SMALL_STATE(5756)] = 165341, - [SMALL_STATE(5757)] = 165349, - [SMALL_STATE(5758)] = 165357, - [SMALL_STATE(5759)] = 165365, - [SMALL_STATE(5760)] = 165373, - [SMALL_STATE(5761)] = 165381, - [SMALL_STATE(5762)] = 165389, - [SMALL_STATE(5763)] = 165397, - [SMALL_STATE(5764)] = 165405, - [SMALL_STATE(5765)] = 165413, - [SMALL_STATE(5766)] = 165421, - [SMALL_STATE(5767)] = 165429, - [SMALL_STATE(5768)] = 165437, - [SMALL_STATE(5769)] = 165445, - [SMALL_STATE(5770)] = 165453, - [SMALL_STATE(5771)] = 165461, - [SMALL_STATE(5772)] = 165469, - [SMALL_STATE(5773)] = 165477, - [SMALL_STATE(5774)] = 165485, - [SMALL_STATE(5775)] = 165493, - [SMALL_STATE(5776)] = 165501, - [SMALL_STATE(5777)] = 165509, - [SMALL_STATE(5778)] = 165517, - [SMALL_STATE(5779)] = 165525, - [SMALL_STATE(5780)] = 165533, - [SMALL_STATE(5781)] = 165541, - [SMALL_STATE(5782)] = 165549, - [SMALL_STATE(5783)] = 165557, - [SMALL_STATE(5784)] = 165565, - [SMALL_STATE(5785)] = 165573, - [SMALL_STATE(5786)] = 165581, - [SMALL_STATE(5787)] = 165589, - [SMALL_STATE(5788)] = 165597, - [SMALL_STATE(5789)] = 165605, - [SMALL_STATE(5790)] = 165613, - [SMALL_STATE(5791)] = 165621, - [SMALL_STATE(5792)] = 165629, - [SMALL_STATE(5793)] = 165637, - [SMALL_STATE(5794)] = 165645, - [SMALL_STATE(5795)] = 165653, - [SMALL_STATE(5796)] = 165661, - [SMALL_STATE(5797)] = 165669, - [SMALL_STATE(5798)] = 165677, - [SMALL_STATE(5799)] = 165685, - [SMALL_STATE(5800)] = 165693, - [SMALL_STATE(5801)] = 165701, - [SMALL_STATE(5802)] = 165711, - [SMALL_STATE(5803)] = 165719, - [SMALL_STATE(5804)] = 165727, - [SMALL_STATE(5805)] = 165735, - [SMALL_STATE(5806)] = 165743, - [SMALL_STATE(5807)] = 165751, - [SMALL_STATE(5808)] = 165759, - [SMALL_STATE(5809)] = 165767, - [SMALL_STATE(5810)] = 165775, - [SMALL_STATE(5811)] = 165783, - [SMALL_STATE(5812)] = 165791, - [SMALL_STATE(5813)] = 165799, - [SMALL_STATE(5814)] = 165807, - [SMALL_STATE(5815)] = 165815, - [SMALL_STATE(5816)] = 165823, - [SMALL_STATE(5817)] = 165831, - [SMALL_STATE(5818)] = 165839, - [SMALL_STATE(5819)] = 165847, - [SMALL_STATE(5820)] = 165855, - [SMALL_STATE(5821)] = 165863, - [SMALL_STATE(5822)] = 165871, - [SMALL_STATE(5823)] = 165879, - [SMALL_STATE(5824)] = 165887, - [SMALL_STATE(5825)] = 165895, - [SMALL_STATE(5826)] = 165903, - [SMALL_STATE(5827)] = 165911, - [SMALL_STATE(5828)] = 165919, - [SMALL_STATE(5829)] = 165927, - [SMALL_STATE(5830)] = 165935, - [SMALL_STATE(5831)] = 165943, - [SMALL_STATE(5832)] = 165951, - [SMALL_STATE(5833)] = 165959, - [SMALL_STATE(5834)] = 165967, - [SMALL_STATE(5835)] = 165975, - [SMALL_STATE(5836)] = 165983, - [SMALL_STATE(5837)] = 165991, - [SMALL_STATE(5838)] = 165999, - [SMALL_STATE(5839)] = 166007, - [SMALL_STATE(5840)] = 166015, - [SMALL_STATE(5841)] = 166023, - [SMALL_STATE(5842)] = 166031, - [SMALL_STATE(5843)] = 166039, - [SMALL_STATE(5844)] = 166047, - [SMALL_STATE(5845)] = 166055, - [SMALL_STATE(5846)] = 166063, - [SMALL_STATE(5847)] = 166071, - [SMALL_STATE(5848)] = 166079, - [SMALL_STATE(5849)] = 166087, - [SMALL_STATE(5850)] = 166095, - [SMALL_STATE(5851)] = 166103, - [SMALL_STATE(5852)] = 166111, - [SMALL_STATE(5853)] = 166119, - [SMALL_STATE(5854)] = 166127, - [SMALL_STATE(5855)] = 166135, - [SMALL_STATE(5856)] = 166143, - [SMALL_STATE(5857)] = 166151, - [SMALL_STATE(5858)] = 166159, - [SMALL_STATE(5859)] = 166167, - [SMALL_STATE(5860)] = 166175, - [SMALL_STATE(5861)] = 166183, - [SMALL_STATE(5862)] = 166191, - [SMALL_STATE(5863)] = 166199, - [SMALL_STATE(5864)] = 166207, - [SMALL_STATE(5865)] = 166215, - [SMALL_STATE(5866)] = 166223, - [SMALL_STATE(5867)] = 166231, - [SMALL_STATE(5868)] = 166239, - [SMALL_STATE(5869)] = 166247, + [SMALL_STATE(2823)] = 115747, + [SMALL_STATE(2824)] = 115788, + [SMALL_STATE(2825)] = 115845, + [SMALL_STATE(2826)] = 115902, + [SMALL_STATE(2827)] = 115952, + [SMALL_STATE(2828)] = 116002, + [SMALL_STATE(2829)] = 116050, + [SMALL_STATE(2830)] = 116098, + [SMALL_STATE(2831)] = 116146, + [SMALL_STATE(2832)] = 116194, + [SMALL_STATE(2833)] = 116242, + [SMALL_STATE(2834)] = 116290, + [SMALL_STATE(2835)] = 116338, + [SMALL_STATE(2836)] = 116388, + [SMALL_STATE(2837)] = 116436, + [SMALL_STATE(2838)] = 116484, + [SMALL_STATE(2839)] = 116532, + [SMALL_STATE(2840)] = 116582, + [SMALL_STATE(2841)] = 116630, + [SMALL_STATE(2842)] = 116678, + [SMALL_STATE(2843)] = 116728, + [SMALL_STATE(2844)] = 116776, + [SMALL_STATE(2845)] = 116824, + [SMALL_STATE(2846)] = 116872, + [SMALL_STATE(2847)] = 116920, + [SMALL_STATE(2848)] = 116968, + [SMALL_STATE(2849)] = 117016, + [SMALL_STATE(2850)] = 117064, + [SMALL_STATE(2851)] = 117112, + [SMALL_STATE(2852)] = 117160, + [SMALL_STATE(2853)] = 117208, + [SMALL_STATE(2854)] = 117256, + [SMALL_STATE(2855)] = 117304, + [SMALL_STATE(2856)] = 117354, + [SMALL_STATE(2857)] = 117402, + [SMALL_STATE(2858)] = 117452, + [SMALL_STATE(2859)] = 117500, + [SMALL_STATE(2860)] = 117548, + [SMALL_STATE(2861)] = 117598, + [SMALL_STATE(2862)] = 117646, + [SMALL_STATE(2863)] = 117694, + [SMALL_STATE(2864)] = 117744, + [SMALL_STATE(2865)] = 117792, + [SMALL_STATE(2866)] = 117842, + [SMALL_STATE(2867)] = 117890, + [SMALL_STATE(2868)] = 117938, + [SMALL_STATE(2869)] = 117988, + [SMALL_STATE(2870)] = 118036, + [SMALL_STATE(2871)] = 118084, + [SMALL_STATE(2872)] = 118132, + [SMALL_STATE(2873)] = 118182, + [SMALL_STATE(2874)] = 118230, + [SMALL_STATE(2875)] = 118278, + [SMALL_STATE(2876)] = 118326, + [SMALL_STATE(2877)] = 118374, + [SMALL_STATE(2878)] = 118422, + [SMALL_STATE(2879)] = 118470, + [SMALL_STATE(2880)] = 118518, + [SMALL_STATE(2881)] = 118566, + [SMALL_STATE(2882)] = 118614, + [SMALL_STATE(2883)] = 118662, + [SMALL_STATE(2884)] = 118712, + [SMALL_STATE(2885)] = 118760, + [SMALL_STATE(2886)] = 118808, + [SMALL_STATE(2887)] = 118858, + [SMALL_STATE(2888)] = 118893, + [SMALL_STATE(2889)] = 118934, + [SMALL_STATE(2890)] = 118975, + [SMALL_STATE(2891)] = 119016, + [SMALL_STATE(2892)] = 119044, + [SMALL_STATE(2893)] = 119072, + [SMALL_STATE(2894)] = 119100, + [SMALL_STATE(2895)] = 119128, + [SMALL_STATE(2896)] = 119156, + [SMALL_STATE(2897)] = 119184, + [SMALL_STATE(2898)] = 119212, + [SMALL_STATE(2899)] = 119240, + [SMALL_STATE(2900)] = 119268, + [SMALL_STATE(2901)] = 119296, + [SMALL_STATE(2902)] = 119324, + [SMALL_STATE(2903)] = 119352, + [SMALL_STATE(2904)] = 119380, + [SMALL_STATE(2905)] = 119408, + [SMALL_STATE(2906)] = 119436, + [SMALL_STATE(2907)] = 119464, + [SMALL_STATE(2908)] = 119492, + [SMALL_STATE(2909)] = 119520, + [SMALL_STATE(2910)] = 119548, + [SMALL_STATE(2911)] = 119576, + [SMALL_STATE(2912)] = 119604, + [SMALL_STATE(2913)] = 119632, + [SMALL_STATE(2914)] = 119660, + [SMALL_STATE(2915)] = 119688, + [SMALL_STATE(2916)] = 119716, + [SMALL_STATE(2917)] = 119744, + [SMALL_STATE(2918)] = 119772, + [SMALL_STATE(2919)] = 119800, + [SMALL_STATE(2920)] = 119828, + [SMALL_STATE(2921)] = 119856, + [SMALL_STATE(2922)] = 119884, + [SMALL_STATE(2923)] = 119912, + [SMALL_STATE(2924)] = 119940, + [SMALL_STATE(2925)] = 119968, + [SMALL_STATE(2926)] = 119995, + [SMALL_STATE(2927)] = 120026, + [SMALL_STATE(2928)] = 120053, + [SMALL_STATE(2929)] = 120084, + [SMALL_STATE(2930)] = 120115, + [SMALL_STATE(2931)] = 120146, + [SMALL_STATE(2932)] = 120177, + [SMALL_STATE(2933)] = 120208, + [SMALL_STATE(2934)] = 120234, + [SMALL_STATE(2935)] = 120260, + [SMALL_STATE(2936)] = 120286, + [SMALL_STATE(2937)] = 120312, + [SMALL_STATE(2938)] = 120338, + [SMALL_STATE(2939)] = 120364, + [SMALL_STATE(2940)] = 120390, + [SMALL_STATE(2941)] = 120424, + [SMALL_STATE(2942)] = 120452, + [SMALL_STATE(2943)] = 120490, + [SMALL_STATE(2944)] = 120540, + [SMALL_STATE(2945)] = 120572, + [SMALL_STATE(2946)] = 120610, + [SMALL_STATE(2947)] = 120648, + [SMALL_STATE(2948)] = 120674, + [SMALL_STATE(2949)] = 120704, + [SMALL_STATE(2950)] = 120730, + [SMALL_STATE(2951)] = 120758, + [SMALL_STATE(2952)] = 120788, + [SMALL_STATE(2953)] = 120813, + [SMALL_STATE(2954)] = 120842, + [SMALL_STATE(2955)] = 120873, + [SMALL_STATE(2956)] = 120898, + [SMALL_STATE(2957)] = 120923, + [SMALL_STATE(2958)] = 120948, + [SMALL_STATE(2959)] = 120972, + [SMALL_STATE(2960)] = 120996, + [SMALL_STATE(2961)] = 121020, + [SMALL_STATE(2962)] = 121044, + [SMALL_STATE(2963)] = 121076, + [SMALL_STATE(2964)] = 121110, + [SMALL_STATE(2965)] = 121144, + [SMALL_STATE(2966)] = 121178, + [SMALL_STATE(2967)] = 121202, + [SMALL_STATE(2968)] = 121226, + [SMALL_STATE(2969)] = 121248, + [SMALL_STATE(2970)] = 121274, + [SMALL_STATE(2971)] = 121298, + [SMALL_STATE(2972)] = 121322, + [SMALL_STATE(2973)] = 121346, + [SMALL_STATE(2974)] = 121378, + [SMALL_STATE(2975)] = 121412, + [SMALL_STATE(2976)] = 121446, + [SMALL_STATE(2977)] = 121480, + [SMALL_STATE(2978)] = 121504, + [SMALL_STATE(2979)] = 121528, + [SMALL_STATE(2980)] = 121562, + [SMALL_STATE(2981)] = 121588, + [SMALL_STATE(2982)] = 121612, + [SMALL_STATE(2983)] = 121636, + [SMALL_STATE(2984)] = 121660, + [SMALL_STATE(2985)] = 121684, + [SMALL_STATE(2986)] = 121706, + [SMALL_STATE(2987)] = 121730, + [SMALL_STATE(2988)] = 121754, + [SMALL_STATE(2989)] = 121778, + [SMALL_STATE(2990)] = 121810, + [SMALL_STATE(2991)] = 121844, + [SMALL_STATE(2992)] = 121878, + [SMALL_STATE(2993)] = 121912, + [SMALL_STATE(2994)] = 121944, + [SMALL_STATE(2995)] = 121968, + [SMALL_STATE(2996)] = 121992, + [SMALL_STATE(2997)] = 122018, + [SMALL_STATE(2998)] = 122042, + [SMALL_STATE(2999)] = 122064, + [SMALL_STATE(3000)] = 122088, + [SMALL_STATE(3001)] = 122112, + [SMALL_STATE(3002)] = 122144, + [SMALL_STATE(3003)] = 122178, + [SMALL_STATE(3004)] = 122212, + [SMALL_STATE(3005)] = 122246, + [SMALL_STATE(3006)] = 122270, + [SMALL_STATE(3007)] = 122294, + [SMALL_STATE(3008)] = 122318, + [SMALL_STATE(3009)] = 122340, + [SMALL_STATE(3010)] = 122364, + [SMALL_STATE(3011)] = 122388, + [SMALL_STATE(3012)] = 122412, + [SMALL_STATE(3013)] = 122436, + [SMALL_STATE(3014)] = 122460, + [SMALL_STATE(3015)] = 122484, + [SMALL_STATE(3016)] = 122508, + [SMALL_STATE(3017)] = 122530, + [SMALL_STATE(3018)] = 122554, + [SMALL_STATE(3019)] = 122588, + [SMALL_STATE(3020)] = 122612, + [SMALL_STATE(3021)] = 122636, + [SMALL_STATE(3022)] = 122658, + [SMALL_STATE(3023)] = 122682, + [SMALL_STATE(3024)] = 122706, + [SMALL_STATE(3025)] = 122730, + [SMALL_STATE(3026)] = 122754, + [SMALL_STATE(3027)] = 122778, + [SMALL_STATE(3028)] = 122802, + [SMALL_STATE(3029)] = 122826, + [SMALL_STATE(3030)] = 122850, + [SMALL_STATE(3031)] = 122872, + [SMALL_STATE(3032)] = 122896, + [SMALL_STATE(3033)] = 122920, + [SMALL_STATE(3034)] = 122944, + [SMALL_STATE(3035)] = 122968, + [SMALL_STATE(3036)] = 122992, + [SMALL_STATE(3037)] = 123016, + [SMALL_STATE(3038)] = 123038, + [SMALL_STATE(3039)] = 123060, + [SMALL_STATE(3040)] = 123084, + [SMALL_STATE(3041)] = 123108, + [SMALL_STATE(3042)] = 123136, + [SMALL_STATE(3043)] = 123160, + [SMALL_STATE(3044)] = 123184, + [SMALL_STATE(3045)] = 123208, + [SMALL_STATE(3046)] = 123232, + [SMALL_STATE(3047)] = 123256, + [SMALL_STATE(3048)] = 123280, + [SMALL_STATE(3049)] = 123308, + [SMALL_STATE(3050)] = 123332, + [SMALL_STATE(3051)] = 123356, + [SMALL_STATE(3052)] = 123380, + [SMALL_STATE(3053)] = 123408, + [SMALL_STATE(3054)] = 123436, + [SMALL_STATE(3055)] = 123460, + [SMALL_STATE(3056)] = 123492, + [SMALL_STATE(3057)] = 123520, + [SMALL_STATE(3058)] = 123548, + [SMALL_STATE(3059)] = 123582, + [SMALL_STATE(3060)] = 123606, + [SMALL_STATE(3061)] = 123634, + [SMALL_STATE(3062)] = 123668, + [SMALL_STATE(3063)] = 123702, + [SMALL_STATE(3064)] = 123736, + [SMALL_STATE(3065)] = 123758, + [SMALL_STATE(3066)] = 123782, + [SMALL_STATE(3067)] = 123806, + [SMALL_STATE(3068)] = 123831, + [SMALL_STATE(3069)] = 123874, + [SMALL_STATE(3070)] = 123917, + [SMALL_STATE(3071)] = 123962, + [SMALL_STATE(3072)] = 124005, + [SMALL_STATE(3073)] = 124048, + [SMALL_STATE(3074)] = 124077, + [SMALL_STATE(3075)] = 124120, + [SMALL_STATE(3076)] = 124149, + [SMALL_STATE(3077)] = 124178, + [SMALL_STATE(3078)] = 124207, + [SMALL_STATE(3079)] = 124250, + [SMALL_STATE(3080)] = 124275, + [SMALL_STATE(3081)] = 124318, + [SMALL_STATE(3082)] = 124361, + [SMALL_STATE(3083)] = 124390, + [SMALL_STATE(3084)] = 124433, + [SMALL_STATE(3085)] = 124476, + [SMALL_STATE(3086)] = 124519, + [SMALL_STATE(3087)] = 124562, + [SMALL_STATE(3088)] = 124601, + [SMALL_STATE(3089)] = 124626, + [SMALL_STATE(3090)] = 124669, + [SMALL_STATE(3091)] = 124712, + [SMALL_STATE(3092)] = 124741, + [SMALL_STATE(3093)] = 124784, + [SMALL_STATE(3094)] = 124827, + [SMALL_STATE(3095)] = 124870, + [SMALL_STATE(3096)] = 124909, + [SMALL_STATE(3097)] = 124948, + [SMALL_STATE(3098)] = 124977, + [SMALL_STATE(3099)] = 125016, + [SMALL_STATE(3100)] = 125059, + [SMALL_STATE(3101)] = 125102, + [SMALL_STATE(3102)] = 125145, + [SMALL_STATE(3103)] = 125184, + [SMALL_STATE(3104)] = 125227, + [SMALL_STATE(3105)] = 125270, + [SMALL_STATE(3106)] = 125299, + [SMALL_STATE(3107)] = 125342, + [SMALL_STATE(3108)] = 125371, + [SMALL_STATE(3109)] = 125391, + [SMALL_STATE(3110)] = 125419, + [SMALL_STATE(3111)] = 125439, + [SMALL_STATE(3112)] = 125467, + [SMALL_STATE(3113)] = 125489, + [SMALL_STATE(3114)] = 125511, + [SMALL_STATE(3115)] = 125531, + [SMALL_STATE(3116)] = 125559, + [SMALL_STATE(3117)] = 125579, + [SMALL_STATE(3118)] = 125599, + [SMALL_STATE(3119)] = 125623, + [SMALL_STATE(3120)] = 125647, + [SMALL_STATE(3121)] = 125671, + [SMALL_STATE(3122)] = 125699, + [SMALL_STATE(3123)] = 125719, + [SMALL_STATE(3124)] = 125747, + [SMALL_STATE(3125)] = 125775, + [SMALL_STATE(3126)] = 125795, + [SMALL_STATE(3127)] = 125819, + [SMALL_STATE(3128)] = 125843, + [SMALL_STATE(3129)] = 125867, + [SMALL_STATE(3130)] = 125903, + [SMALL_STATE(3131)] = 125925, + [SMALL_STATE(3132)] = 125945, + [SMALL_STATE(3133)] = 125967, + [SMALL_STATE(3134)] = 125989, + [SMALL_STATE(3135)] = 126025, + [SMALL_STATE(3136)] = 126051, + [SMALL_STATE(3137)] = 126075, + [SMALL_STATE(3138)] = 126099, + [SMALL_STATE(3139)] = 126119, + [SMALL_STATE(3140)] = 126155, + [SMALL_STATE(3141)] = 126175, + [SMALL_STATE(3142)] = 126195, + [SMALL_STATE(3143)] = 126221, + [SMALL_STATE(3144)] = 126247, + [SMALL_STATE(3145)] = 126269, + [SMALL_STATE(3146)] = 126289, + [SMALL_STATE(3147)] = 126309, + [SMALL_STATE(3148)] = 126329, + [SMALL_STATE(3149)] = 126349, + [SMALL_STATE(3150)] = 126369, + [SMALL_STATE(3151)] = 126389, + [SMALL_STATE(3152)] = 126409, + [SMALL_STATE(3153)] = 126429, + [SMALL_STATE(3154)] = 126449, + [SMALL_STATE(3155)] = 126485, + [SMALL_STATE(3156)] = 126505, + [SMALL_STATE(3157)] = 126525, + [SMALL_STATE(3158)] = 126545, + [SMALL_STATE(3159)] = 126565, + [SMALL_STATE(3160)] = 126585, + [SMALL_STATE(3161)] = 126605, + [SMALL_STATE(3162)] = 126625, + [SMALL_STATE(3163)] = 126647, + [SMALL_STATE(3164)] = 126669, + [SMALL_STATE(3165)] = 126691, + [SMALL_STATE(3166)] = 126711, + [SMALL_STATE(3167)] = 126747, + [SMALL_STATE(3168)] = 126783, + [SMALL_STATE(3169)] = 126805, + [SMALL_STATE(3170)] = 126829, + [SMALL_STATE(3171)] = 126867, + [SMALL_STATE(3172)] = 126889, + [SMALL_STATE(3173)] = 126917, + [SMALL_STATE(3174)] = 126937, + [SMALL_STATE(3175)] = 126957, + [SMALL_STATE(3176)] = 126993, + [SMALL_STATE(3177)] = 127013, + [SMALL_STATE(3178)] = 127033, + [SMALL_STATE(3179)] = 127057, + [SMALL_STATE(3180)] = 127079, + [SMALL_STATE(3181)] = 127101, + [SMALL_STATE(3182)] = 127129, + [SMALL_STATE(3183)] = 127149, + [SMALL_STATE(3184)] = 127171, + [SMALL_STATE(3185)] = 127195, + [SMALL_STATE(3186)] = 127217, + [SMALL_STATE(3187)] = 127237, + [SMALL_STATE(3188)] = 127273, + [SMALL_STATE(3189)] = 127309, + [SMALL_STATE(3190)] = 127345, + [SMALL_STATE(3191)] = 127382, + [SMALL_STATE(3192)] = 127415, + [SMALL_STATE(3193)] = 127452, + [SMALL_STATE(3194)] = 127481, + [SMALL_STATE(3195)] = 127512, + [SMALL_STATE(3196)] = 127545, + [SMALL_STATE(3197)] = 127568, + [SMALL_STATE(3198)] = 127589, + [SMALL_STATE(3199)] = 127610, + [SMALL_STATE(3200)] = 127647, + [SMALL_STATE(3201)] = 127668, + [SMALL_STATE(3202)] = 127705, + [SMALL_STATE(3203)] = 127738, + [SMALL_STATE(3204)] = 127761, + [SMALL_STATE(3205)] = 127784, + [SMALL_STATE(3206)] = 127817, + [SMALL_STATE(3207)] = 127850, + [SMALL_STATE(3208)] = 127883, + [SMALL_STATE(3209)] = 127922, + [SMALL_STATE(3210)] = 127953, + [SMALL_STATE(3211)] = 127984, + [SMALL_STATE(3212)] = 128015, + [SMALL_STATE(3213)] = 128052, + [SMALL_STATE(3214)] = 128089, + [SMALL_STATE(3215)] = 128118, + [SMALL_STATE(3216)] = 128155, + [SMALL_STATE(3217)] = 128192, + [SMALL_STATE(3218)] = 128215, + [SMALL_STATE(3219)] = 128252, + [SMALL_STATE(3220)] = 128281, + [SMALL_STATE(3221)] = 128318, + [SMALL_STATE(3222)] = 128355, + [SMALL_STATE(3223)] = 128392, + [SMALL_STATE(3224)] = 128429, + [SMALL_STATE(3225)] = 128466, + [SMALL_STATE(3226)] = 128499, + [SMALL_STATE(3227)] = 128520, + [SMALL_STATE(3228)] = 128557, + [SMALL_STATE(3229)] = 128588, + [SMALL_STATE(3230)] = 128621, + [SMALL_STATE(3231)] = 128658, + [SMALL_STATE(3232)] = 128695, + [SMALL_STATE(3233)] = 128732, + [SMALL_STATE(3234)] = 128769, + [SMALL_STATE(3235)] = 128802, + [SMALL_STATE(3236)] = 128825, + [SMALL_STATE(3237)] = 128862, + [SMALL_STATE(3238)] = 128899, + [SMALL_STATE(3239)] = 128928, + [SMALL_STATE(3240)] = 128953, + [SMALL_STATE(3241)] = 128982, + [SMALL_STATE(3242)] = 129007, + [SMALL_STATE(3243)] = 129040, + [SMALL_STATE(3244)] = 129077, + [SMALL_STATE(3245)] = 129114, + [SMALL_STATE(3246)] = 129134, + [SMALL_STATE(3247)] = 129152, + [SMALL_STATE(3248)] = 129176, + [SMALL_STATE(3249)] = 129194, + [SMALL_STATE(3250)] = 129212, + [SMALL_STATE(3251)] = 129230, + [SMALL_STATE(3252)] = 129266, + [SMALL_STATE(3253)] = 129286, + [SMALL_STATE(3254)] = 129306, + [SMALL_STATE(3255)] = 129326, + [SMALL_STATE(3256)] = 129346, + [SMALL_STATE(3257)] = 129366, + [SMALL_STATE(3258)] = 129386, + [SMALL_STATE(3259)] = 129406, + [SMALL_STATE(3260)] = 129426, + [SMALL_STATE(3261)] = 129446, + [SMALL_STATE(3262)] = 129464, + [SMALL_STATE(3263)] = 129482, + [SMALL_STATE(3264)] = 129500, + [SMALL_STATE(3265)] = 129518, + [SMALL_STATE(3266)] = 129538, + [SMALL_STATE(3267)] = 129562, + [SMALL_STATE(3268)] = 129580, + [SMALL_STATE(3269)] = 129598, + [SMALL_STATE(3270)] = 129618, + [SMALL_STATE(3271)] = 129640, + [SMALL_STATE(3272)] = 129660, + [SMALL_STATE(3273)] = 129680, + [SMALL_STATE(3274)] = 129700, + [SMALL_STATE(3275)] = 129720, + [SMALL_STATE(3276)] = 129742, + [SMALL_STATE(3277)] = 129762, + [SMALL_STATE(3278)] = 129782, + [SMALL_STATE(3279)] = 129800, + [SMALL_STATE(3280)] = 129820, + [SMALL_STATE(3281)] = 129840, + [SMALL_STATE(3282)] = 129860, + [SMALL_STATE(3283)] = 129878, + [SMALL_STATE(3284)] = 129896, + [SMALL_STATE(3285)] = 129920, + [SMALL_STATE(3286)] = 129940, + [SMALL_STATE(3287)] = 129960, + [SMALL_STATE(3288)] = 129984, + [SMALL_STATE(3289)] = 130004, + [SMALL_STATE(3290)] = 130024, + [SMALL_STATE(3291)] = 130042, + [SMALL_STATE(3292)] = 130066, + [SMALL_STATE(3293)] = 130090, + [SMALL_STATE(3294)] = 130112, + [SMALL_STATE(3295)] = 130132, + [SMALL_STATE(3296)] = 130152, + [SMALL_STATE(3297)] = 130176, + [SMALL_STATE(3298)] = 130200, + [SMALL_STATE(3299)] = 130222, + [SMALL_STATE(3300)] = 130246, + [SMALL_STATE(3301)] = 130266, + [SMALL_STATE(3302)] = 130286, + [SMALL_STATE(3303)] = 130312, + [SMALL_STATE(3304)] = 130332, + [SMALL_STATE(3305)] = 130352, + [SMALL_STATE(3306)] = 130374, + [SMALL_STATE(3307)] = 130394, + [SMALL_STATE(3308)] = 130414, + [SMALL_STATE(3309)] = 130434, + [SMALL_STATE(3310)] = 130454, + [SMALL_STATE(3311)] = 130474, + [SMALL_STATE(3312)] = 130500, + [SMALL_STATE(3313)] = 130520, + [SMALL_STATE(3314)] = 130542, + [SMALL_STATE(3315)] = 130562, + [SMALL_STATE(3316)] = 130582, + [SMALL_STATE(3317)] = 130600, + [SMALL_STATE(3318)] = 130618, + [SMALL_STATE(3319)] = 130640, + [SMALL_STATE(3320)] = 130662, + [SMALL_STATE(3321)] = 130682, + [SMALL_STATE(3322)] = 130700, + [SMALL_STATE(3323)] = 130720, + [SMALL_STATE(3324)] = 130745, + [SMALL_STATE(3325)] = 130768, + [SMALL_STATE(3326)] = 130789, + [SMALL_STATE(3327)] = 130824, + [SMALL_STATE(3328)] = 130859, + [SMALL_STATE(3329)] = 130890, + [SMALL_STATE(3330)] = 130925, + [SMALL_STATE(3331)] = 130960, + [SMALL_STATE(3332)] = 130995, + [SMALL_STATE(3333)] = 131016, + [SMALL_STATE(3334)] = 131051, + [SMALL_STATE(3335)] = 131086, + [SMALL_STATE(3336)] = 131105, + [SMALL_STATE(3337)] = 131136, + [SMALL_STATE(3338)] = 131157, + [SMALL_STATE(3339)] = 131178, + [SMALL_STATE(3340)] = 131199, + [SMALL_STATE(3341)] = 131216, + [SMALL_STATE(3342)] = 131239, + [SMALL_STATE(3343)] = 131258, + [SMALL_STATE(3344)] = 131277, + [SMALL_STATE(3345)] = 131312, + [SMALL_STATE(3346)] = 131331, + [SMALL_STATE(3347)] = 131352, + [SMALL_STATE(3348)] = 131387, + [SMALL_STATE(3349)] = 131416, + [SMALL_STATE(3350)] = 131451, + [SMALL_STATE(3351)] = 131482, + [SMALL_STATE(3352)] = 131503, + [SMALL_STATE(3353)] = 131524, + [SMALL_STATE(3354)] = 131557, + [SMALL_STATE(3355)] = 131574, + [SMALL_STATE(3356)] = 131591, + [SMALL_STATE(3357)] = 131608, + [SMALL_STATE(3358)] = 131641, + [SMALL_STATE(3359)] = 131662, + [SMALL_STATE(3360)] = 131697, + [SMALL_STATE(3361)] = 131729, + [SMALL_STATE(3362)] = 131757, + [SMALL_STATE(3363)] = 131785, + [SMALL_STATE(3364)] = 131801, + [SMALL_STATE(3365)] = 131829, + [SMALL_STATE(3366)] = 131857, + [SMALL_STATE(3367)] = 131885, + [SMALL_STATE(3368)] = 131913, + [SMALL_STATE(3369)] = 131945, + [SMALL_STATE(3370)] = 131977, + [SMALL_STATE(3371)] = 132009, + [SMALL_STATE(3372)] = 132041, + [SMALL_STATE(3373)] = 132061, + [SMALL_STATE(3374)] = 132077, + [SMALL_STATE(3375)] = 132109, + [SMALL_STATE(3376)] = 132137, + [SMALL_STATE(3377)] = 132169, + [SMALL_STATE(3378)] = 132185, + [SMALL_STATE(3379)] = 132213, + [SMALL_STATE(3380)] = 132245, + [SMALL_STATE(3381)] = 132277, + [SMALL_STATE(3382)] = 132299, + [SMALL_STATE(3383)] = 132331, + [SMALL_STATE(3384)] = 132347, + [SMALL_STATE(3385)] = 132373, + [SMALL_STATE(3386)] = 132399, + [SMALL_STATE(3387)] = 132415, + [SMALL_STATE(3388)] = 132441, + [SMALL_STATE(3389)] = 132469, + [SMALL_STATE(3390)] = 132493, + [SMALL_STATE(3391)] = 132525, + [SMALL_STATE(3392)] = 132541, + [SMALL_STATE(3393)] = 132563, + [SMALL_STATE(3394)] = 132585, + [SMALL_STATE(3395)] = 132601, + [SMALL_STATE(3396)] = 132631, + [SMALL_STATE(3397)] = 132653, + [SMALL_STATE(3398)] = 132679, + [SMALL_STATE(3399)] = 132707, + [SMALL_STATE(3400)] = 132733, + [SMALL_STATE(3401)] = 132749, + [SMALL_STATE(3402)] = 132777, + [SMALL_STATE(3403)] = 132809, + [SMALL_STATE(3404)] = 132831, + [SMALL_STATE(3405)] = 132857, + [SMALL_STATE(3406)] = 132885, + [SMALL_STATE(3407)] = 132913, + [SMALL_STATE(3408)] = 132929, + [SMALL_STATE(3409)] = 132955, + [SMALL_STATE(3410)] = 132971, + [SMALL_STATE(3411)] = 132987, + [SMALL_STATE(3412)] = 133005, + [SMALL_STATE(3413)] = 133037, + [SMALL_STATE(3414)] = 133065, + [SMALL_STATE(3415)] = 133081, + [SMALL_STATE(3416)] = 133109, + [SMALL_STATE(3417)] = 133137, + [SMALL_STATE(3418)] = 133163, + [SMALL_STATE(3419)] = 133179, + [SMALL_STATE(3420)] = 133207, + [SMALL_STATE(3421)] = 133235, + [SMALL_STATE(3422)] = 133263, + [SMALL_STATE(3423)] = 133291, + [SMALL_STATE(3424)] = 133311, + [SMALL_STATE(3425)] = 133337, + [SMALL_STATE(3426)] = 133365, + [SMALL_STATE(3427)] = 133381, + [SMALL_STATE(3428)] = 133397, + [SMALL_STATE(3429)] = 133425, + [SMALL_STATE(3430)] = 133453, + [SMALL_STATE(3431)] = 133485, + [SMALL_STATE(3432)] = 133501, + [SMALL_STATE(3433)] = 133529, + [SMALL_STATE(3434)] = 133557, + [SMALL_STATE(3435)] = 133585, + [SMALL_STATE(3436)] = 133611, + [SMALL_STATE(3437)] = 133627, + [SMALL_STATE(3438)] = 133655, + [SMALL_STATE(3439)] = 133671, + [SMALL_STATE(3440)] = 133687, + [SMALL_STATE(3441)] = 133715, + [SMALL_STATE(3442)] = 133731, + [SMALL_STATE(3443)] = 133759, + [SMALL_STATE(3444)] = 133791, + [SMALL_STATE(3445)] = 133807, + [SMALL_STATE(3446)] = 133823, + [SMALL_STATE(3447)] = 133851, + [SMALL_STATE(3448)] = 133869, + [SMALL_STATE(3449)] = 133885, + [SMALL_STATE(3450)] = 133901, + [SMALL_STATE(3451)] = 133917, + [SMALL_STATE(3452)] = 133939, + [SMALL_STATE(3453)] = 133967, + [SMALL_STATE(3454)] = 133993, + [SMALL_STATE(3455)] = 134025, + [SMALL_STATE(3456)] = 134053, + [SMALL_STATE(3457)] = 134081, + [SMALL_STATE(3458)] = 134097, + [SMALL_STATE(3459)] = 134113, + [SMALL_STATE(3460)] = 134145, + [SMALL_STATE(3461)] = 134171, + [SMALL_STATE(3462)] = 134199, + [SMALL_STATE(3463)] = 134227, + [SMALL_STATE(3464)] = 134243, + [SMALL_STATE(3465)] = 134259, + [SMALL_STATE(3466)] = 134287, + [SMALL_STATE(3467)] = 134309, + [SMALL_STATE(3468)] = 134325, + [SMALL_STATE(3469)] = 134357, + [SMALL_STATE(3470)] = 134373, + [SMALL_STATE(3471)] = 134389, + [SMALL_STATE(3472)] = 134405, + [SMALL_STATE(3473)] = 134421, + [SMALL_STATE(3474)] = 134437, + [SMALL_STATE(3475)] = 134455, + [SMALL_STATE(3476)] = 134471, + [SMALL_STATE(3477)] = 134487, + [SMALL_STATE(3478)] = 134503, + [SMALL_STATE(3479)] = 134525, + [SMALL_STATE(3480)] = 134545, + [SMALL_STATE(3481)] = 134563, + [SMALL_STATE(3482)] = 134579, + [SMALL_STATE(3483)] = 134597, + [SMALL_STATE(3484)] = 134613, + [SMALL_STATE(3485)] = 134641, + [SMALL_STATE(3486)] = 134669, + [SMALL_STATE(3487)] = 134697, + [SMALL_STATE(3488)] = 134713, + [SMALL_STATE(3489)] = 134729, + [SMALL_STATE(3490)] = 134751, + [SMALL_STATE(3491)] = 134783, + [SMALL_STATE(3492)] = 134811, + [SMALL_STATE(3493)] = 134839, + [SMALL_STATE(3494)] = 134867, + [SMALL_STATE(3495)] = 134883, + [SMALL_STATE(3496)] = 134911, + [SMALL_STATE(3497)] = 134939, + [SMALL_STATE(3498)] = 134967, + [SMALL_STATE(3499)] = 134995, + [SMALL_STATE(3500)] = 135023, + [SMALL_STATE(3501)] = 135038, + [SMALL_STATE(3502)] = 135061, + [SMALL_STATE(3503)] = 135090, + [SMALL_STATE(3504)] = 135113, + [SMALL_STATE(3505)] = 135134, + [SMALL_STATE(3506)] = 135155, + [SMALL_STATE(3507)] = 135180, + [SMALL_STATE(3508)] = 135205, + [SMALL_STATE(3509)] = 135228, + [SMALL_STATE(3510)] = 135253, + [SMALL_STATE(3511)] = 135276, + [SMALL_STATE(3512)] = 135297, + [SMALL_STATE(3513)] = 135320, + [SMALL_STATE(3514)] = 135339, + [SMALL_STATE(3515)] = 135360, + [SMALL_STATE(3516)] = 135381, + [SMALL_STATE(3517)] = 135404, + [SMALL_STATE(3518)] = 135429, + [SMALL_STATE(3519)] = 135454, + [SMALL_STATE(3520)] = 135483, + [SMALL_STATE(3521)] = 135508, + [SMALL_STATE(3522)] = 135537, + [SMALL_STATE(3523)] = 135554, + [SMALL_STATE(3524)] = 135583, + [SMALL_STATE(3525)] = 135606, + [SMALL_STATE(3526)] = 135631, + [SMALL_STATE(3527)] = 135648, + [SMALL_STATE(3528)] = 135663, + [SMALL_STATE(3529)] = 135682, + [SMALL_STATE(3530)] = 135699, + [SMALL_STATE(3531)] = 135724, + [SMALL_STATE(3532)] = 135753, + [SMALL_STATE(3533)] = 135768, + [SMALL_STATE(3534)] = 135791, + [SMALL_STATE(3535)] = 135814, + [SMALL_STATE(3536)] = 135829, + [SMALL_STATE(3537)] = 135850, + [SMALL_STATE(3538)] = 135875, + [SMALL_STATE(3539)] = 135900, + [SMALL_STATE(3540)] = 135929, + [SMALL_STATE(3541)] = 135944, + [SMALL_STATE(3542)] = 135969, + [SMALL_STATE(3543)] = 135994, + [SMALL_STATE(3544)] = 136020, + [SMALL_STATE(3545)] = 136042, + [SMALL_STATE(3546)] = 136064, + [SMALL_STATE(3547)] = 136086, + [SMALL_STATE(3548)] = 136112, + [SMALL_STATE(3549)] = 136134, + [SMALL_STATE(3550)] = 136156, + [SMALL_STATE(3551)] = 136178, + [SMALL_STATE(3552)] = 136200, + [SMALL_STATE(3553)] = 136222, + [SMALL_STATE(3554)] = 136240, + [SMALL_STATE(3555)] = 136262, + [SMALL_STATE(3556)] = 136284, + [SMALL_STATE(3557)] = 136306, + [SMALL_STATE(3558)] = 136328, + [SMALL_STATE(3559)] = 136342, + [SMALL_STATE(3560)] = 136356, + [SMALL_STATE(3561)] = 136374, + [SMALL_STATE(3562)] = 136396, + [SMALL_STATE(3563)] = 136418, + [SMALL_STATE(3564)] = 136440, + [SMALL_STATE(3565)] = 136466, + [SMALL_STATE(3566)] = 136488, + [SMALL_STATE(3567)] = 136514, + [SMALL_STATE(3568)] = 136536, + [SMALL_STATE(3569)] = 136558, + [SMALL_STATE(3570)] = 136580, + [SMALL_STATE(3571)] = 136602, + [SMALL_STATE(3572)] = 136624, + [SMALL_STATE(3573)] = 136646, + [SMALL_STATE(3574)] = 136664, + [SMALL_STATE(3575)] = 136686, + [SMALL_STATE(3576)] = 136708, + [SMALL_STATE(3577)] = 136734, + [SMALL_STATE(3578)] = 136760, + [SMALL_STATE(3579)] = 136782, + [SMALL_STATE(3580)] = 136804, + [SMALL_STATE(3581)] = 136818, + [SMALL_STATE(3582)] = 136844, + [SMALL_STATE(3583)] = 136870, + [SMALL_STATE(3584)] = 136896, + [SMALL_STATE(3585)] = 136922, + [SMALL_STATE(3586)] = 136944, + [SMALL_STATE(3587)] = 136958, + [SMALL_STATE(3588)] = 136984, + [SMALL_STATE(3589)] = 137010, + [SMALL_STATE(3590)] = 137032, + [SMALL_STATE(3591)] = 137054, + [SMALL_STATE(3592)] = 137076, + [SMALL_STATE(3593)] = 137098, + [SMALL_STATE(3594)] = 137120, + [SMALL_STATE(3595)] = 137142, + [SMALL_STATE(3596)] = 137168, + [SMALL_STATE(3597)] = 137194, + [SMALL_STATE(3598)] = 137220, + [SMALL_STATE(3599)] = 137242, + [SMALL_STATE(3600)] = 137264, + [SMALL_STATE(3601)] = 137286, + [SMALL_STATE(3602)] = 137312, + [SMALL_STATE(3603)] = 137330, + [SMALL_STATE(3604)] = 137356, + [SMALL_STATE(3605)] = 137372, + [SMALL_STATE(3606)] = 137398, + [SMALL_STATE(3607)] = 137424, + [SMALL_STATE(3608)] = 137450, + [SMALL_STATE(3609)] = 137476, + [SMALL_STATE(3610)] = 137498, + [SMALL_STATE(3611)] = 137520, + [SMALL_STATE(3612)] = 137546, + [SMALL_STATE(3613)] = 137568, + [SMALL_STATE(3614)] = 137590, + [SMALL_STATE(3615)] = 137616, + [SMALL_STATE(3616)] = 137638, + [SMALL_STATE(3617)] = 137660, + [SMALL_STATE(3618)] = 137686, + [SMALL_STATE(3619)] = 137700, + [SMALL_STATE(3620)] = 137726, + [SMALL_STATE(3621)] = 137752, + [SMALL_STATE(3622)] = 137766, + [SMALL_STATE(3623)] = 137788, + [SMALL_STATE(3624)] = 137810, + [SMALL_STATE(3625)] = 137824, + [SMALL_STATE(3626)] = 137850, + [SMALL_STATE(3627)] = 137876, + [SMALL_STATE(3628)] = 137902, + [SMALL_STATE(3629)] = 137916, + [SMALL_STATE(3630)] = 137934, + [SMALL_STATE(3631)] = 137956, + [SMALL_STATE(3632)] = 137978, + [SMALL_STATE(3633)] = 138000, + [SMALL_STATE(3634)] = 138022, + [SMALL_STATE(3635)] = 138042, + [SMALL_STATE(3636)] = 138068, + [SMALL_STATE(3637)] = 138090, + [SMALL_STATE(3638)] = 138104, + [SMALL_STATE(3639)] = 138130, + [SMALL_STATE(3640)] = 138152, + [SMALL_STATE(3641)] = 138174, + [SMALL_STATE(3642)] = 138200, + [SMALL_STATE(3643)] = 138222, + [SMALL_STATE(3644)] = 138244, + [SMALL_STATE(3645)] = 138270, + [SMALL_STATE(3646)] = 138296, + [SMALL_STATE(3647)] = 138322, + [SMALL_STATE(3648)] = 138344, + [SMALL_STATE(3649)] = 138366, + [SMALL_STATE(3650)] = 138388, + [SMALL_STATE(3651)] = 138414, + [SMALL_STATE(3652)] = 138436, + [SMALL_STATE(3653)] = 138458, + [SMALL_STATE(3654)] = 138476, + [SMALL_STATE(3655)] = 138494, + [SMALL_STATE(3656)] = 138512, + [SMALL_STATE(3657)] = 138538, + [SMALL_STATE(3658)] = 138560, + [SMALL_STATE(3659)] = 138586, + [SMALL_STATE(3660)] = 138608, + [SMALL_STATE(3661)] = 138630, + [SMALL_STATE(3662)] = 138656, + [SMALL_STATE(3663)] = 138682, + [SMALL_STATE(3664)] = 138704, + [SMALL_STATE(3665)] = 138726, + [SMALL_STATE(3666)] = 138748, + [SMALL_STATE(3667)] = 138770, + [SMALL_STATE(3668)] = 138792, + [SMALL_STATE(3669)] = 138814, + [SMALL_STATE(3670)] = 138836, + [SMALL_STATE(3671)] = 138858, + [SMALL_STATE(3672)] = 138884, + [SMALL_STATE(3673)] = 138910, + [SMALL_STATE(3674)] = 138932, + [SMALL_STATE(3675)] = 138954, + [SMALL_STATE(3676)] = 138980, + [SMALL_STATE(3677)] = 139006, + [SMALL_STATE(3678)] = 139032, + [SMALL_STATE(3679)] = 139050, + [SMALL_STATE(3680)] = 139068, + [SMALL_STATE(3681)] = 139086, + [SMALL_STATE(3682)] = 139104, + [SMALL_STATE(3683)] = 139122, + [SMALL_STATE(3684)] = 139140, + [SMALL_STATE(3685)] = 139156, + [SMALL_STATE(3686)] = 139172, + [SMALL_STATE(3687)] = 139192, + [SMALL_STATE(3688)] = 139208, + [SMALL_STATE(3689)] = 139234, + [SMALL_STATE(3690)] = 139254, + [SMALL_STATE(3691)] = 139274, + [SMALL_STATE(3692)] = 139294, + [SMALL_STATE(3693)] = 139314, + [SMALL_STATE(3694)] = 139340, + [SMALL_STATE(3695)] = 139358, + [SMALL_STATE(3696)] = 139376, + [SMALL_STATE(3697)] = 139394, + [SMALL_STATE(3698)] = 139412, + [SMALL_STATE(3699)] = 139432, + [SMALL_STATE(3700)] = 139456, + [SMALL_STATE(3701)] = 139480, + [SMALL_STATE(3702)] = 139498, + [SMALL_STATE(3703)] = 139516, + [SMALL_STATE(3704)] = 139534, + [SMALL_STATE(3705)] = 139552, + [SMALL_STATE(3706)] = 139574, + [SMALL_STATE(3707)] = 139592, + [SMALL_STATE(3708)] = 139610, + [SMALL_STATE(3709)] = 139628, + [SMALL_STATE(3710)] = 139642, + [SMALL_STATE(3711)] = 139656, + [SMALL_STATE(3712)] = 139674, + [SMALL_STATE(3713)] = 139692, + [SMALL_STATE(3714)] = 139718, + [SMALL_STATE(3715)] = 139740, + [SMALL_STATE(3716)] = 139758, + [SMALL_STATE(3717)] = 139784, + [SMALL_STATE(3718)] = 139798, + [SMALL_STATE(3719)] = 139820, + [SMALL_STATE(3720)] = 139842, + [SMALL_STATE(3721)] = 139868, + [SMALL_STATE(3722)] = 139890, + [SMALL_STATE(3723)] = 139912, + [SMALL_STATE(3724)] = 139934, + [SMALL_STATE(3725)] = 139948, + [SMALL_STATE(3726)] = 139970, + [SMALL_STATE(3727)] = 139992, + [SMALL_STATE(3728)] = 140014, + [SMALL_STATE(3729)] = 140036, + [SMALL_STATE(3730)] = 140058, + [SMALL_STATE(3731)] = 140080, + [SMALL_STATE(3732)] = 140106, + [SMALL_STATE(3733)] = 140128, + [SMALL_STATE(3734)] = 140150, + [SMALL_STATE(3735)] = 140172, + [SMALL_STATE(3736)] = 140194, + [SMALL_STATE(3737)] = 140216, + [SMALL_STATE(3738)] = 140238, + [SMALL_STATE(3739)] = 140260, + [SMALL_STATE(3740)] = 140282, + [SMALL_STATE(3741)] = 140304, + [SMALL_STATE(3742)] = 140318, + [SMALL_STATE(3743)] = 140340, + [SMALL_STATE(3744)] = 140362, + [SMALL_STATE(3745)] = 140384, + [SMALL_STATE(3746)] = 140402, + [SMALL_STATE(3747)] = 140424, + [SMALL_STATE(3748)] = 140446, + [SMALL_STATE(3749)] = 140472, + [SMALL_STATE(3750)] = 140486, + [SMALL_STATE(3751)] = 140512, + [SMALL_STATE(3752)] = 140534, + [SMALL_STATE(3753)] = 140560, + [SMALL_STATE(3754)] = 140586, + [SMALL_STATE(3755)] = 140608, + [SMALL_STATE(3756)] = 140624, + [SMALL_STATE(3757)] = 140640, + [SMALL_STATE(3758)] = 140662, + [SMALL_STATE(3759)] = 140678, + [SMALL_STATE(3760)] = 140698, + [SMALL_STATE(3761)] = 140714, + [SMALL_STATE(3762)] = 140736, + [SMALL_STATE(3763)] = 140758, + [SMALL_STATE(3764)] = 140780, + [SMALL_STATE(3765)] = 140802, + [SMALL_STATE(3766)] = 140824, + [SMALL_STATE(3767)] = 140846, + [SMALL_STATE(3768)] = 140868, + [SMALL_STATE(3769)] = 140890, + [SMALL_STATE(3770)] = 140912, + [SMALL_STATE(3771)] = 140934, + [SMALL_STATE(3772)] = 140960, + [SMALL_STATE(3773)] = 140982, + [SMALL_STATE(3774)] = 141008, + [SMALL_STATE(3775)] = 141024, + [SMALL_STATE(3776)] = 141050, + [SMALL_STATE(3777)] = 141072, + [SMALL_STATE(3778)] = 141086, + [SMALL_STATE(3779)] = 141108, + [SMALL_STATE(3780)] = 141130, + [SMALL_STATE(3781)] = 141152, + [SMALL_STATE(3782)] = 141174, + [SMALL_STATE(3783)] = 141196, + [SMALL_STATE(3784)] = 141218, + [SMALL_STATE(3785)] = 141240, + [SMALL_STATE(3786)] = 141262, + [SMALL_STATE(3787)] = 141284, + [SMALL_STATE(3788)] = 141301, + [SMALL_STATE(3789)] = 141324, + [SMALL_STATE(3790)] = 141341, + [SMALL_STATE(3791)] = 141364, + [SMALL_STATE(3792)] = 141381, + [SMALL_STATE(3793)] = 141404, + [SMALL_STATE(3794)] = 141427, + [SMALL_STATE(3795)] = 141450, + [SMALL_STATE(3796)] = 141463, + [SMALL_STATE(3797)] = 141486, + [SMALL_STATE(3798)] = 141509, + [SMALL_STATE(3799)] = 141526, + [SMALL_STATE(3800)] = 141539, + [SMALL_STATE(3801)] = 141562, + [SMALL_STATE(3802)] = 141579, + [SMALL_STATE(3803)] = 141596, + [SMALL_STATE(3804)] = 141619, + [SMALL_STATE(3805)] = 141638, + [SMALL_STATE(3806)] = 141655, + [SMALL_STATE(3807)] = 141678, + [SMALL_STATE(3808)] = 141697, + [SMALL_STATE(3809)] = 141714, + [SMALL_STATE(3810)] = 141737, + [SMALL_STATE(3811)] = 141750, + [SMALL_STATE(3812)] = 141763, + [SMALL_STATE(3813)] = 141786, + [SMALL_STATE(3814)] = 141803, + [SMALL_STATE(3815)] = 141826, + [SMALL_STATE(3816)] = 141843, + [SMALL_STATE(3817)] = 141860, + [SMALL_STATE(3818)] = 141873, + [SMALL_STATE(3819)] = 141890, + [SMALL_STATE(3820)] = 141913, + [SMALL_STATE(3821)] = 141930, + [SMALL_STATE(3822)] = 141947, + [SMALL_STATE(3823)] = 141964, + [SMALL_STATE(3824)] = 141987, + [SMALL_STATE(3825)] = 142010, + [SMALL_STATE(3826)] = 142027, + [SMALL_STATE(3827)] = 142040, + [SMALL_STATE(3828)] = 142057, + [SMALL_STATE(3829)] = 142076, + [SMALL_STATE(3830)] = 142093, + [SMALL_STATE(3831)] = 142116, + [SMALL_STATE(3832)] = 142129, + [SMALL_STATE(3833)] = 142152, + [SMALL_STATE(3834)] = 142165, + [SMALL_STATE(3835)] = 142182, + [SMALL_STATE(3836)] = 142205, + [SMALL_STATE(3837)] = 142222, + [SMALL_STATE(3838)] = 142239, + [SMALL_STATE(3839)] = 142262, + [SMALL_STATE(3840)] = 142281, + [SMALL_STATE(3841)] = 142298, + [SMALL_STATE(3842)] = 142315, + [SMALL_STATE(3843)] = 142334, + [SMALL_STATE(3844)] = 142351, + [SMALL_STATE(3845)] = 142368, + [SMALL_STATE(3846)] = 142391, + [SMALL_STATE(3847)] = 142404, + [SMALL_STATE(3848)] = 142421, + [SMALL_STATE(3849)] = 142438, + [SMALL_STATE(3850)] = 142455, + [SMALL_STATE(3851)] = 142474, + [SMALL_STATE(3852)] = 142497, + [SMALL_STATE(3853)] = 142520, + [SMALL_STATE(3854)] = 142537, + [SMALL_STATE(3855)] = 142554, + [SMALL_STATE(3856)] = 142577, + [SMALL_STATE(3857)] = 142594, + [SMALL_STATE(3858)] = 142611, + [SMALL_STATE(3859)] = 142628, + [SMALL_STATE(3860)] = 142645, + [SMALL_STATE(3861)] = 142662, + [SMALL_STATE(3862)] = 142681, + [SMALL_STATE(3863)] = 142700, + [SMALL_STATE(3864)] = 142715, + [SMALL_STATE(3865)] = 142734, + [SMALL_STATE(3866)] = 142757, + [SMALL_STATE(3867)] = 142776, + [SMALL_STATE(3868)] = 142799, + [SMALL_STATE(3869)] = 142816, + [SMALL_STATE(3870)] = 142829, + [SMALL_STATE(3871)] = 142842, + [SMALL_STATE(3872)] = 142855, + [SMALL_STATE(3873)] = 142868, + [SMALL_STATE(3874)] = 142891, + [SMALL_STATE(3875)] = 142914, + [SMALL_STATE(3876)] = 142931, + [SMALL_STATE(3877)] = 142948, + [SMALL_STATE(3878)] = 142971, + [SMALL_STATE(3879)] = 142988, + [SMALL_STATE(3880)] = 143011, + [SMALL_STATE(3881)] = 143030, + [SMALL_STATE(3882)] = 143045, + [SMALL_STATE(3883)] = 143068, + [SMALL_STATE(3884)] = 143085, + [SMALL_STATE(3885)] = 143106, + [SMALL_STATE(3886)] = 143127, + [SMALL_STATE(3887)] = 143150, + [SMALL_STATE(3888)] = 143167, + [SMALL_STATE(3889)] = 143184, + [SMALL_STATE(3890)] = 143203, + [SMALL_STATE(3891)] = 143220, + [SMALL_STATE(3892)] = 143239, + [SMALL_STATE(3893)] = 143258, + [SMALL_STATE(3894)] = 143281, + [SMALL_STATE(3895)] = 143298, + [SMALL_STATE(3896)] = 143315, + [SMALL_STATE(3897)] = 143334, + [SMALL_STATE(3898)] = 143351, + [SMALL_STATE(3899)] = 143374, + [SMALL_STATE(3900)] = 143391, + [SMALL_STATE(3901)] = 143414, + [SMALL_STATE(3902)] = 143437, + [SMALL_STATE(3903)] = 143460, + [SMALL_STATE(3904)] = 143483, + [SMALL_STATE(3905)] = 143506, + [SMALL_STATE(3906)] = 143523, + [SMALL_STATE(3907)] = 143546, + [SMALL_STATE(3908)] = 143569, + [SMALL_STATE(3909)] = 143586, + [SMALL_STATE(3910)] = 143609, + [SMALL_STATE(3911)] = 143632, + [SMALL_STATE(3912)] = 143655, + [SMALL_STATE(3913)] = 143674, + [SMALL_STATE(3914)] = 143691, + [SMALL_STATE(3915)] = 143714, + [SMALL_STATE(3916)] = 143733, + [SMALL_STATE(3917)] = 143752, + [SMALL_STATE(3918)] = 143775, + [SMALL_STATE(3919)] = 143798, + [SMALL_STATE(3920)] = 143821, + [SMALL_STATE(3921)] = 143844, + [SMALL_STATE(3922)] = 143865, + [SMALL_STATE(3923)] = 143888, + [SMALL_STATE(3924)] = 143911, + [SMALL_STATE(3925)] = 143934, + [SMALL_STATE(3926)] = 143957, + [SMALL_STATE(3927)] = 143980, + [SMALL_STATE(3928)] = 144003, + [SMALL_STATE(3929)] = 144018, + [SMALL_STATE(3930)] = 144037, + [SMALL_STATE(3931)] = 144052, + [SMALL_STATE(3932)] = 144069, + [SMALL_STATE(3933)] = 144092, + [SMALL_STATE(3934)] = 144105, + [SMALL_STATE(3935)] = 144128, + [SMALL_STATE(3936)] = 144151, + [SMALL_STATE(3937)] = 144170, + [SMALL_STATE(3938)] = 144193, + [SMALL_STATE(3939)] = 144209, + [SMALL_STATE(3940)] = 144225, + [SMALL_STATE(3941)] = 144239, + [SMALL_STATE(3942)] = 144251, + [SMALL_STATE(3943)] = 144267, + [SMALL_STATE(3944)] = 144287, + [SMALL_STATE(3945)] = 144303, + [SMALL_STATE(3946)] = 144315, + [SMALL_STATE(3947)] = 144327, + [SMALL_STATE(3948)] = 144339, + [SMALL_STATE(3949)] = 144351, + [SMALL_STATE(3950)] = 144371, + [SMALL_STATE(3951)] = 144387, + [SMALL_STATE(3952)] = 144403, + [SMALL_STATE(3953)] = 144423, + [SMALL_STATE(3954)] = 144439, + [SMALL_STATE(3955)] = 144455, + [SMALL_STATE(3956)] = 144471, + [SMALL_STATE(3957)] = 144487, + [SMALL_STATE(3958)] = 144499, + [SMALL_STATE(3959)] = 144511, + [SMALL_STATE(3960)] = 144523, + [SMALL_STATE(3961)] = 144535, + [SMALL_STATE(3962)] = 144547, + [SMALL_STATE(3963)] = 144563, + [SMALL_STATE(3964)] = 144579, + [SMALL_STATE(3965)] = 144595, + [SMALL_STATE(3966)] = 144611, + [SMALL_STATE(3967)] = 144629, + [SMALL_STATE(3968)] = 144649, + [SMALL_STATE(3969)] = 144665, + [SMALL_STATE(3970)] = 144677, + [SMALL_STATE(3971)] = 144693, + [SMALL_STATE(3972)] = 144709, + [SMALL_STATE(3973)] = 144721, + [SMALL_STATE(3974)] = 144739, + [SMALL_STATE(3975)] = 144751, + [SMALL_STATE(3976)] = 144771, + [SMALL_STATE(3977)] = 144787, + [SMALL_STATE(3978)] = 144803, + [SMALL_STATE(3979)] = 144819, + [SMALL_STATE(3980)] = 144835, + [SMALL_STATE(3981)] = 144851, + [SMALL_STATE(3982)] = 144867, + [SMALL_STATE(3983)] = 144883, + [SMALL_STATE(3984)] = 144899, + [SMALL_STATE(3985)] = 144915, + [SMALL_STATE(3986)] = 144931, + [SMALL_STATE(3987)] = 144947, + [SMALL_STATE(3988)] = 144963, + [SMALL_STATE(3989)] = 144981, + [SMALL_STATE(3990)] = 144993, + [SMALL_STATE(3991)] = 145005, + [SMALL_STATE(3992)] = 145021, + [SMALL_STATE(3993)] = 145037, + [SMALL_STATE(3994)] = 145055, + [SMALL_STATE(3995)] = 145071, + [SMALL_STATE(3996)] = 145083, + [SMALL_STATE(3997)] = 145099, + [SMALL_STATE(3998)] = 145111, + [SMALL_STATE(3999)] = 145131, + [SMALL_STATE(4000)] = 145149, + [SMALL_STATE(4001)] = 145161, + [SMALL_STATE(4002)] = 145173, + [SMALL_STATE(4003)] = 145185, + [SMALL_STATE(4004)] = 145201, + [SMALL_STATE(4005)] = 145217, + [SMALL_STATE(4006)] = 145233, + [SMALL_STATE(4007)] = 145245, + [SMALL_STATE(4008)] = 145257, + [SMALL_STATE(4009)] = 145277, + [SMALL_STATE(4010)] = 145293, + [SMALL_STATE(4011)] = 145305, + [SMALL_STATE(4012)] = 145321, + [SMALL_STATE(4013)] = 145333, + [SMALL_STATE(4014)] = 145349, + [SMALL_STATE(4015)] = 145361, + [SMALL_STATE(4016)] = 145373, + [SMALL_STATE(4017)] = 145385, + [SMALL_STATE(4018)] = 145397, + [SMALL_STATE(4019)] = 145409, + [SMALL_STATE(4020)] = 145421, + [SMALL_STATE(4021)] = 145433, + [SMALL_STATE(4022)] = 145445, + [SMALL_STATE(4023)] = 145461, + [SMALL_STATE(4024)] = 145477, + [SMALL_STATE(4025)] = 145493, + [SMALL_STATE(4026)] = 145505, + [SMALL_STATE(4027)] = 145525, + [SMALL_STATE(4028)] = 145541, + [SMALL_STATE(4029)] = 145557, + [SMALL_STATE(4030)] = 145573, + [SMALL_STATE(4031)] = 145589, + [SMALL_STATE(4032)] = 145601, + [SMALL_STATE(4033)] = 145613, + [SMALL_STATE(4034)] = 145629, + [SMALL_STATE(4035)] = 145641, + [SMALL_STATE(4036)] = 145657, + [SMALL_STATE(4037)] = 145675, + [SMALL_STATE(4038)] = 145687, + [SMALL_STATE(4039)] = 145699, + [SMALL_STATE(4040)] = 145715, + [SMALL_STATE(4041)] = 145731, + [SMALL_STATE(4042)] = 145743, + [SMALL_STATE(4043)] = 145755, + [SMALL_STATE(4044)] = 145771, + [SMALL_STATE(4045)] = 145787, + [SMALL_STATE(4046)] = 145803, + [SMALL_STATE(4047)] = 145815, + [SMALL_STATE(4048)] = 145831, + [SMALL_STATE(4049)] = 145847, + [SMALL_STATE(4050)] = 145865, + [SMALL_STATE(4051)] = 145883, + [SMALL_STATE(4052)] = 145899, + [SMALL_STATE(4053)] = 145915, + [SMALL_STATE(4054)] = 145931, + [SMALL_STATE(4055)] = 145947, + [SMALL_STATE(4056)] = 145963, + [SMALL_STATE(4057)] = 145979, + [SMALL_STATE(4058)] = 145995, + [SMALL_STATE(4059)] = 146011, + [SMALL_STATE(4060)] = 146029, + [SMALL_STATE(4061)] = 146049, + [SMALL_STATE(4062)] = 146065, + [SMALL_STATE(4063)] = 146081, + [SMALL_STATE(4064)] = 146097, + [SMALL_STATE(4065)] = 146113, + [SMALL_STATE(4066)] = 146129, + [SMALL_STATE(4067)] = 146149, + [SMALL_STATE(4068)] = 146165, + [SMALL_STATE(4069)] = 146181, + [SMALL_STATE(4070)] = 146197, + [SMALL_STATE(4071)] = 146217, + [SMALL_STATE(4072)] = 146229, + [SMALL_STATE(4073)] = 146241, + [SMALL_STATE(4074)] = 146253, + [SMALL_STATE(4075)] = 146265, + [SMALL_STATE(4076)] = 146277, + [SMALL_STATE(4077)] = 146297, + [SMALL_STATE(4078)] = 146313, + [SMALL_STATE(4079)] = 146329, + [SMALL_STATE(4080)] = 146341, + [SMALL_STATE(4081)] = 146353, + [SMALL_STATE(4082)] = 146373, + [SMALL_STATE(4083)] = 146393, + [SMALL_STATE(4084)] = 146409, + [SMALL_STATE(4085)] = 146421, + [SMALL_STATE(4086)] = 146433, + [SMALL_STATE(4087)] = 146445, + [SMALL_STATE(4088)] = 146465, + [SMALL_STATE(4089)] = 146477, + [SMALL_STATE(4090)] = 146489, + [SMALL_STATE(4091)] = 146501, + [SMALL_STATE(4092)] = 146517, + [SMALL_STATE(4093)] = 146537, + [SMALL_STATE(4094)] = 146557, + [SMALL_STATE(4095)] = 146575, + [SMALL_STATE(4096)] = 146593, + [SMALL_STATE(4097)] = 146613, + [SMALL_STATE(4098)] = 146625, + [SMALL_STATE(4099)] = 146641, + [SMALL_STATE(4100)] = 146661, + [SMALL_STATE(4101)] = 146677, + [SMALL_STATE(4102)] = 146697, + [SMALL_STATE(4103)] = 146709, + [SMALL_STATE(4104)] = 146727, + [SMALL_STATE(4105)] = 146739, + [SMALL_STATE(4106)] = 146751, + [SMALL_STATE(4107)] = 146767, + [SMALL_STATE(4108)] = 146783, + [SMALL_STATE(4109)] = 146803, + [SMALL_STATE(4110)] = 146815, + [SMALL_STATE(4111)] = 146827, + [SMALL_STATE(4112)] = 146843, + [SMALL_STATE(4113)] = 146863, + [SMALL_STATE(4114)] = 146875, + [SMALL_STATE(4115)] = 146891, + [SMALL_STATE(4116)] = 146903, + [SMALL_STATE(4117)] = 146919, + [SMALL_STATE(4118)] = 146931, + [SMALL_STATE(4119)] = 146947, + [SMALL_STATE(4120)] = 146967, + [SMALL_STATE(4121)] = 146979, + [SMALL_STATE(4122)] = 146999, + [SMALL_STATE(4123)] = 147015, + [SMALL_STATE(4124)] = 147031, + [SMALL_STATE(4125)] = 147051, + [SMALL_STATE(4126)] = 147071, + [SMALL_STATE(4127)] = 147083, + [SMALL_STATE(4128)] = 147099, + [SMALL_STATE(4129)] = 147119, + [SMALL_STATE(4130)] = 147135, + [SMALL_STATE(4131)] = 147147, + [SMALL_STATE(4132)] = 147167, + [SMALL_STATE(4133)] = 147179, + [SMALL_STATE(4134)] = 147195, + [SMALL_STATE(4135)] = 147207, + [SMALL_STATE(4136)] = 147223, + [SMALL_STATE(4137)] = 147235, + [SMALL_STATE(4138)] = 147247, + [SMALL_STATE(4139)] = 147267, + [SMALL_STATE(4140)] = 147283, + [SMALL_STATE(4141)] = 147303, + [SMALL_STATE(4142)] = 147319, + [SMALL_STATE(4143)] = 147331, + [SMALL_STATE(4144)] = 147343, + [SMALL_STATE(4145)] = 147355, + [SMALL_STATE(4146)] = 147367, + [SMALL_STATE(4147)] = 147379, + [SMALL_STATE(4148)] = 147391, + [SMALL_STATE(4149)] = 147403, + [SMALL_STATE(4150)] = 147415, + [SMALL_STATE(4151)] = 147427, + [SMALL_STATE(4152)] = 147439, + [SMALL_STATE(4153)] = 147459, + [SMALL_STATE(4154)] = 147475, + [SMALL_STATE(4155)] = 147495, + [SMALL_STATE(4156)] = 147513, + [SMALL_STATE(4157)] = 147525, + [SMALL_STATE(4158)] = 147537, + [SMALL_STATE(4159)] = 147557, + [SMALL_STATE(4160)] = 147569, + [SMALL_STATE(4161)] = 147585, + [SMALL_STATE(4162)] = 147601, + [SMALL_STATE(4163)] = 147621, + [SMALL_STATE(4164)] = 147639, + [SMALL_STATE(4165)] = 147651, + [SMALL_STATE(4166)] = 147663, + [SMALL_STATE(4167)] = 147683, + [SMALL_STATE(4168)] = 147703, + [SMALL_STATE(4169)] = 147719, + [SMALL_STATE(4170)] = 147735, + [SMALL_STATE(4171)] = 147755, + [SMALL_STATE(4172)] = 147767, + [SMALL_STATE(4173)] = 147787, + [SMALL_STATE(4174)] = 147803, + [SMALL_STATE(4175)] = 147815, + [SMALL_STATE(4176)] = 147831, + [SMALL_STATE(4177)] = 147843, + [SMALL_STATE(4178)] = 147859, + [SMALL_STATE(4179)] = 147879, + [SMALL_STATE(4180)] = 147895, + [SMALL_STATE(4181)] = 147907, + [SMALL_STATE(4182)] = 147919, + [SMALL_STATE(4183)] = 147935, + [SMALL_STATE(4184)] = 147951, + [SMALL_STATE(4185)] = 147963, + [SMALL_STATE(4186)] = 147975, + [SMALL_STATE(4187)] = 147987, + [SMALL_STATE(4188)] = 148005, + [SMALL_STATE(4189)] = 148017, + [SMALL_STATE(4190)] = 148029, + [SMALL_STATE(4191)] = 148045, + [SMALL_STATE(4192)] = 148061, + [SMALL_STATE(4193)] = 148077, + [SMALL_STATE(4194)] = 148093, + [SMALL_STATE(4195)] = 148105, + [SMALL_STATE(4196)] = 148117, + [SMALL_STATE(4197)] = 148137, + [SMALL_STATE(4198)] = 148149, + [SMALL_STATE(4199)] = 148167, + [SMALL_STATE(4200)] = 148179, + [SMALL_STATE(4201)] = 148199, + [SMALL_STATE(4202)] = 148211, + [SMALL_STATE(4203)] = 148231, + [SMALL_STATE(4204)] = 148247, + [SMALL_STATE(4205)] = 148263, + [SMALL_STATE(4206)] = 148279, + [SMALL_STATE(4207)] = 148295, + [SMALL_STATE(4208)] = 148315, + [SMALL_STATE(4209)] = 148335, + [SMALL_STATE(4210)] = 148353, + [SMALL_STATE(4211)] = 148373, + [SMALL_STATE(4212)] = 148393, + [SMALL_STATE(4213)] = 148413, + [SMALL_STATE(4214)] = 148433, + [SMALL_STATE(4215)] = 148449, + [SMALL_STATE(4216)] = 148465, + [SMALL_STATE(4217)] = 148483, + [SMALL_STATE(4218)] = 148503, + [SMALL_STATE(4219)] = 148517, + [SMALL_STATE(4220)] = 148529, + [SMALL_STATE(4221)] = 148545, + [SMALL_STATE(4222)] = 148565, + [SMALL_STATE(4223)] = 148585, + [SMALL_STATE(4224)] = 148605, + [SMALL_STATE(4225)] = 148617, + [SMALL_STATE(4226)] = 148635, + [SMALL_STATE(4227)] = 148655, + [SMALL_STATE(4228)] = 148667, + [SMALL_STATE(4229)] = 148683, + [SMALL_STATE(4230)] = 148703, + [SMALL_STATE(4231)] = 148723, + [SMALL_STATE(4232)] = 148743, + [SMALL_STATE(4233)] = 148763, + [SMALL_STATE(4234)] = 148775, + [SMALL_STATE(4235)] = 148791, + [SMALL_STATE(4236)] = 148807, + [SMALL_STATE(4237)] = 148823, + [SMALL_STATE(4238)] = 148843, + [SMALL_STATE(4239)] = 148859, + [SMALL_STATE(4240)] = 148875, + [SMALL_STATE(4241)] = 148893, + [SMALL_STATE(4242)] = 148913, + [SMALL_STATE(4243)] = 148933, + [SMALL_STATE(4244)] = 148949, + [SMALL_STATE(4245)] = 148965, + [SMALL_STATE(4246)] = 148977, + [SMALL_STATE(4247)] = 148993, + [SMALL_STATE(4248)] = 149009, + [SMALL_STATE(4249)] = 149025, + [SMALL_STATE(4250)] = 149041, + [SMALL_STATE(4251)] = 149057, + [SMALL_STATE(4252)] = 149073, + [SMALL_STATE(4253)] = 149089, + [SMALL_STATE(4254)] = 149105, + [SMALL_STATE(4255)] = 149121, + [SMALL_STATE(4256)] = 149137, + [SMALL_STATE(4257)] = 149153, + [SMALL_STATE(4258)] = 149167, + [SMALL_STATE(4259)] = 149183, + [SMALL_STATE(4260)] = 149199, + [SMALL_STATE(4261)] = 149215, + [SMALL_STATE(4262)] = 149235, + [SMALL_STATE(4263)] = 149247, + [SMALL_STATE(4264)] = 149261, + [SMALL_STATE(4265)] = 149281, + [SMALL_STATE(4266)] = 149297, + [SMALL_STATE(4267)] = 149311, + [SMALL_STATE(4268)] = 149323, + [SMALL_STATE(4269)] = 149339, + [SMALL_STATE(4270)] = 149355, + [SMALL_STATE(4271)] = 149371, + [SMALL_STATE(4272)] = 149389, + [SMALL_STATE(4273)] = 149409, + [SMALL_STATE(4274)] = 149425, + [SMALL_STATE(4275)] = 149439, + [SMALL_STATE(4276)] = 149455, + [SMALL_STATE(4277)] = 149471, + [SMALL_STATE(4278)] = 149491, + [SMALL_STATE(4279)] = 149507, + [SMALL_STATE(4280)] = 149523, + [SMALL_STATE(4281)] = 149539, + [SMALL_STATE(4282)] = 149555, + [SMALL_STATE(4283)] = 149575, + [SMALL_STATE(4284)] = 149591, + [SMALL_STATE(4285)] = 149603, + [SMALL_STATE(4286)] = 149619, + [SMALL_STATE(4287)] = 149635, + [SMALL_STATE(4288)] = 149655, + [SMALL_STATE(4289)] = 149671, + [SMALL_STATE(4290)] = 149683, + [SMALL_STATE(4291)] = 149695, + [SMALL_STATE(4292)] = 149715, + [SMALL_STATE(4293)] = 149727, + [SMALL_STATE(4294)] = 149739, + [SMALL_STATE(4295)] = 149759, + [SMALL_STATE(4296)] = 149775, + [SMALL_STATE(4297)] = 149787, + [SMALL_STATE(4298)] = 149799, + [SMALL_STATE(4299)] = 149811, + [SMALL_STATE(4300)] = 149823, + [SMALL_STATE(4301)] = 149839, + [SMALL_STATE(4302)] = 149851, + [SMALL_STATE(4303)] = 149867, + [SMALL_STATE(4304)] = 149883, + [SMALL_STATE(4305)] = 149899, + [SMALL_STATE(4306)] = 149915, + [SMALL_STATE(4307)] = 149927, + [SMALL_STATE(4308)] = 149947, + [SMALL_STATE(4309)] = 149963, + [SMALL_STATE(4310)] = 149979, + [SMALL_STATE(4311)] = 149995, + [SMALL_STATE(4312)] = 150011, + [SMALL_STATE(4313)] = 150029, + [SMALL_STATE(4314)] = 150047, + [SMALL_STATE(4315)] = 150063, + [SMALL_STATE(4316)] = 150075, + [SMALL_STATE(4317)] = 150095, + [SMALL_STATE(4318)] = 150111, + [SMALL_STATE(4319)] = 150127, + [SMALL_STATE(4320)] = 150139, + [SMALL_STATE(4321)] = 150151, + [SMALL_STATE(4322)] = 150167, + [SMALL_STATE(4323)] = 150179, + [SMALL_STATE(4324)] = 150191, + [SMALL_STATE(4325)] = 150211, + [SMALL_STATE(4326)] = 150227, + [SMALL_STATE(4327)] = 150243, + [SMALL_STATE(4328)] = 150259, + [SMALL_STATE(4329)] = 150275, + [SMALL_STATE(4330)] = 150287, + [SMALL_STATE(4331)] = 150303, + [SMALL_STATE(4332)] = 150319, + [SMALL_STATE(4333)] = 150339, + [SMALL_STATE(4334)] = 150357, + [SMALL_STATE(4335)] = 150377, + [SMALL_STATE(4336)] = 150389, + [SMALL_STATE(4337)] = 150405, + [SMALL_STATE(4338)] = 150417, + [SMALL_STATE(4339)] = 150433, + [SMALL_STATE(4340)] = 150449, + [SMALL_STATE(4341)] = 150465, + [SMALL_STATE(4342)] = 150485, + [SMALL_STATE(4343)] = 150501, + [SMALL_STATE(4344)] = 150521, + [SMALL_STATE(4345)] = 150535, + [SMALL_STATE(4346)] = 150547, + [SMALL_STATE(4347)] = 150563, + [SMALL_STATE(4348)] = 150579, + [SMALL_STATE(4349)] = 150597, + [SMALL_STATE(4350)] = 150617, + [SMALL_STATE(4351)] = 150633, + [SMALL_STATE(4352)] = 150649, + [SMALL_STATE(4353)] = 150665, + [SMALL_STATE(4354)] = 150681, + [SMALL_STATE(4355)] = 150697, + [SMALL_STATE(4356)] = 150717, + [SMALL_STATE(4357)] = 150733, + [SMALL_STATE(4358)] = 150749, + [SMALL_STATE(4359)] = 150765, + [SMALL_STATE(4360)] = 150777, + [SMALL_STATE(4361)] = 150789, + [SMALL_STATE(4362)] = 150801, + [SMALL_STATE(4363)] = 150817, + [SMALL_STATE(4364)] = 150837, + [SMALL_STATE(4365)] = 150857, + [SMALL_STATE(4366)] = 150873, + [SMALL_STATE(4367)] = 150889, + [SMALL_STATE(4368)] = 150905, + [SMALL_STATE(4369)] = 150921, + [SMALL_STATE(4370)] = 150933, + [SMALL_STATE(4371)] = 150945, + [SMALL_STATE(4372)] = 150961, + [SMALL_STATE(4373)] = 150977, + [SMALL_STATE(4374)] = 150993, + [SMALL_STATE(4375)] = 151009, + [SMALL_STATE(4376)] = 151025, + [SMALL_STATE(4377)] = 151037, + [SMALL_STATE(4378)] = 151049, + [SMALL_STATE(4379)] = 151061, + [SMALL_STATE(4380)] = 151079, + [SMALL_STATE(4381)] = 151099, + [SMALL_STATE(4382)] = 151119, + [SMALL_STATE(4383)] = 151135, + [SMALL_STATE(4384)] = 151153, + [SMALL_STATE(4385)] = 151169, + [SMALL_STATE(4386)] = 151185, + [SMALL_STATE(4387)] = 151201, + [SMALL_STATE(4388)] = 151217, + [SMALL_STATE(4389)] = 151233, + [SMALL_STATE(4390)] = 151249, + [SMALL_STATE(4391)] = 151261, + [SMALL_STATE(4392)] = 151273, + [SMALL_STATE(4393)] = 151285, + [SMALL_STATE(4394)] = 151301, + [SMALL_STATE(4395)] = 151317, + [SMALL_STATE(4396)] = 151337, + [SMALL_STATE(4397)] = 151353, + [SMALL_STATE(4398)] = 151369, + [SMALL_STATE(4399)] = 151389, + [SMALL_STATE(4400)] = 151401, + [SMALL_STATE(4401)] = 151417, + [SMALL_STATE(4402)] = 151433, + [SMALL_STATE(4403)] = 151449, + [SMALL_STATE(4404)] = 151467, + [SMALL_STATE(4405)] = 151483, + [SMALL_STATE(4406)] = 151499, + [SMALL_STATE(4407)] = 151515, + [SMALL_STATE(4408)] = 151527, + [SMALL_STATE(4409)] = 151543, + [SMALL_STATE(4410)] = 151559, + [SMALL_STATE(4411)] = 151571, + [SMALL_STATE(4412)] = 151587, + [SMALL_STATE(4413)] = 151603, + [SMALL_STATE(4414)] = 151623, + [SMALL_STATE(4415)] = 151635, + [SMALL_STATE(4416)] = 151651, + [SMALL_STATE(4417)] = 151663, + [SMALL_STATE(4418)] = 151680, + [SMALL_STATE(4419)] = 151697, + [SMALL_STATE(4420)] = 151714, + [SMALL_STATE(4421)] = 151731, + [SMALL_STATE(4422)] = 151746, + [SMALL_STATE(4423)] = 151761, + [SMALL_STATE(4424)] = 151778, + [SMALL_STATE(4425)] = 151795, + [SMALL_STATE(4426)] = 151812, + [SMALL_STATE(4427)] = 151825, + [SMALL_STATE(4428)] = 151838, + [SMALL_STATE(4429)] = 151855, + [SMALL_STATE(4430)] = 151866, + [SMALL_STATE(4431)] = 151881, + [SMALL_STATE(4432)] = 151898, + [SMALL_STATE(4433)] = 151915, + [SMALL_STATE(4434)] = 151932, + [SMALL_STATE(4435)] = 151949, + [SMALL_STATE(4436)] = 151964, + [SMALL_STATE(4437)] = 151981, + [SMALL_STATE(4438)] = 151998, + [SMALL_STATE(4439)] = 152013, + [SMALL_STATE(4440)] = 152028, + [SMALL_STATE(4441)] = 152041, + [SMALL_STATE(4442)] = 152056, + [SMALL_STATE(4443)] = 152073, + [SMALL_STATE(4444)] = 152090, + [SMALL_STATE(4445)] = 152107, + [SMALL_STATE(4446)] = 152122, + [SMALL_STATE(4447)] = 152139, + [SMALL_STATE(4448)] = 152154, + [SMALL_STATE(4449)] = 152171, + [SMALL_STATE(4450)] = 152188, + [SMALL_STATE(4451)] = 152203, + [SMALL_STATE(4452)] = 152216, + [SMALL_STATE(4453)] = 152233, + [SMALL_STATE(4454)] = 152248, + [SMALL_STATE(4455)] = 152265, + [SMALL_STATE(4456)] = 152282, + [SMALL_STATE(4457)] = 152295, + [SMALL_STATE(4458)] = 152310, + [SMALL_STATE(4459)] = 152327, + [SMALL_STATE(4460)] = 152344, + [SMALL_STATE(4461)] = 152361, + [SMALL_STATE(4462)] = 152378, + [SMALL_STATE(4463)] = 152395, + [SMALL_STATE(4464)] = 152412, + [SMALL_STATE(4465)] = 152429, + [SMALL_STATE(4466)] = 152446, + [SMALL_STATE(4467)] = 152463, + [SMALL_STATE(4468)] = 152480, + [SMALL_STATE(4469)] = 152497, + [SMALL_STATE(4470)] = 152512, + [SMALL_STATE(4471)] = 152529, + [SMALL_STATE(4472)] = 152542, + [SMALL_STATE(4473)] = 152559, + [SMALL_STATE(4474)] = 152576, + [SMALL_STATE(4475)] = 152593, + [SMALL_STATE(4476)] = 152610, + [SMALL_STATE(4477)] = 152627, + [SMALL_STATE(4478)] = 152644, + [SMALL_STATE(4479)] = 152661, + [SMALL_STATE(4480)] = 152678, + [SMALL_STATE(4481)] = 152693, + [SMALL_STATE(4482)] = 152710, + [SMALL_STATE(4483)] = 152727, + [SMALL_STATE(4484)] = 152738, + [SMALL_STATE(4485)] = 152753, + [SMALL_STATE(4486)] = 152770, + [SMALL_STATE(4487)] = 152787, + [SMALL_STATE(4488)] = 152804, + [SMALL_STATE(4489)] = 152821, + [SMALL_STATE(4490)] = 152838, + [SMALL_STATE(4491)] = 152855, + [SMALL_STATE(4492)] = 152872, + [SMALL_STATE(4493)] = 152889, + [SMALL_STATE(4494)] = 152906, + [SMALL_STATE(4495)] = 152923, + [SMALL_STATE(4496)] = 152940, + [SMALL_STATE(4497)] = 152957, + [SMALL_STATE(4498)] = 152974, + [SMALL_STATE(4499)] = 152991, + [SMALL_STATE(4500)] = 153008, + [SMALL_STATE(4501)] = 153025, + [SMALL_STATE(4502)] = 153042, + [SMALL_STATE(4503)] = 153059, + [SMALL_STATE(4504)] = 153074, + [SMALL_STATE(4505)] = 153091, + [SMALL_STATE(4506)] = 153106, + [SMALL_STATE(4507)] = 153123, + [SMALL_STATE(4508)] = 153140, + [SMALL_STATE(4509)] = 153155, + [SMALL_STATE(4510)] = 153172, + [SMALL_STATE(4511)] = 153187, + [SMALL_STATE(4512)] = 153204, + [SMALL_STATE(4513)] = 153221, + [SMALL_STATE(4514)] = 153238, + [SMALL_STATE(4515)] = 153255, + [SMALL_STATE(4516)] = 153272, + [SMALL_STATE(4517)] = 153289, + [SMALL_STATE(4518)] = 153304, + [SMALL_STATE(4519)] = 153321, + [SMALL_STATE(4520)] = 153338, + [SMALL_STATE(4521)] = 153355, + [SMALL_STATE(4522)] = 153366, + [SMALL_STATE(4523)] = 153383, + [SMALL_STATE(4524)] = 153400, + [SMALL_STATE(4525)] = 153417, + [SMALL_STATE(4526)] = 153428, + [SMALL_STATE(4527)] = 153445, + [SMALL_STATE(4528)] = 153462, + [SMALL_STATE(4529)] = 153479, + [SMALL_STATE(4530)] = 153496, + [SMALL_STATE(4531)] = 153513, + [SMALL_STATE(4532)] = 153530, + [SMALL_STATE(4533)] = 153545, + [SMALL_STATE(4534)] = 153562, + [SMALL_STATE(4535)] = 153577, + [SMALL_STATE(4536)] = 153592, + [SMALL_STATE(4537)] = 153607, + [SMALL_STATE(4538)] = 153622, + [SMALL_STATE(4539)] = 153635, + [SMALL_STATE(4540)] = 153650, + [SMALL_STATE(4541)] = 153667, + [SMALL_STATE(4542)] = 153684, + [SMALL_STATE(4543)] = 153701, + [SMALL_STATE(4544)] = 153718, + [SMALL_STATE(4545)] = 153735, + [SMALL_STATE(4546)] = 153750, + [SMALL_STATE(4547)] = 153767, + [SMALL_STATE(4548)] = 153784, + [SMALL_STATE(4549)] = 153801, + [SMALL_STATE(4550)] = 153818, + [SMALL_STATE(4551)] = 153835, + [SMALL_STATE(4552)] = 153852, + [SMALL_STATE(4553)] = 153869, + [SMALL_STATE(4554)] = 153879, + [SMALL_STATE(4555)] = 153889, + [SMALL_STATE(4556)] = 153899, + [SMALL_STATE(4557)] = 153913, + [SMALL_STATE(4558)] = 153923, + [SMALL_STATE(4559)] = 153933, + [SMALL_STATE(4560)] = 153943, + [SMALL_STATE(4561)] = 153957, + [SMALL_STATE(4562)] = 153971, + [SMALL_STATE(4563)] = 153981, + [SMALL_STATE(4564)] = 153995, + [SMALL_STATE(4565)] = 154005, + [SMALL_STATE(4566)] = 154019, + [SMALL_STATE(4567)] = 154033, + [SMALL_STATE(4568)] = 154043, + [SMALL_STATE(4569)] = 154053, + [SMALL_STATE(4570)] = 154067, + [SMALL_STATE(4571)] = 154081, + [SMALL_STATE(4572)] = 154095, + [SMALL_STATE(4573)] = 154105, + [SMALL_STATE(4574)] = 154115, + [SMALL_STATE(4575)] = 154125, + [SMALL_STATE(4576)] = 154135, + [SMALL_STATE(4577)] = 154145, + [SMALL_STATE(4578)] = 154155, + [SMALL_STATE(4579)] = 154165, + [SMALL_STATE(4580)] = 154175, + [SMALL_STATE(4581)] = 154185, + [SMALL_STATE(4582)] = 154195, + [SMALL_STATE(4583)] = 154209, + [SMALL_STATE(4584)] = 154223, + [SMALL_STATE(4585)] = 154237, + [SMALL_STATE(4586)] = 154251, + [SMALL_STATE(4587)] = 154261, + [SMALL_STATE(4588)] = 154275, + [SMALL_STATE(4589)] = 154289, + [SMALL_STATE(4590)] = 154299, + [SMALL_STATE(4591)] = 154309, + [SMALL_STATE(4592)] = 154319, + [SMALL_STATE(4593)] = 154333, + [SMALL_STATE(4594)] = 154347, + [SMALL_STATE(4595)] = 154361, + [SMALL_STATE(4596)] = 154375, + [SMALL_STATE(4597)] = 154389, + [SMALL_STATE(4598)] = 154399, + [SMALL_STATE(4599)] = 154409, + [SMALL_STATE(4600)] = 154423, + [SMALL_STATE(4601)] = 154437, + [SMALL_STATE(4602)] = 154447, + [SMALL_STATE(4603)] = 154457, + [SMALL_STATE(4604)] = 154467, + [SMALL_STATE(4605)] = 154477, + [SMALL_STATE(4606)] = 154487, + [SMALL_STATE(4607)] = 154501, + [SMALL_STATE(4608)] = 154511, + [SMALL_STATE(4609)] = 154525, + [SMALL_STATE(4610)] = 154535, + [SMALL_STATE(4611)] = 154545, + [SMALL_STATE(4612)] = 154555, + [SMALL_STATE(4613)] = 154565, + [SMALL_STATE(4614)] = 154579, + [SMALL_STATE(4615)] = 154589, + [SMALL_STATE(4616)] = 154603, + [SMALL_STATE(4617)] = 154617, + [SMALL_STATE(4618)] = 154627, + [SMALL_STATE(4619)] = 154639, + [SMALL_STATE(4620)] = 154651, + [SMALL_STATE(4621)] = 154661, + [SMALL_STATE(4622)] = 154673, + [SMALL_STATE(4623)] = 154687, + [SMALL_STATE(4624)] = 154697, + [SMALL_STATE(4625)] = 154707, + [SMALL_STATE(4626)] = 154717, + [SMALL_STATE(4627)] = 154727, + [SMALL_STATE(4628)] = 154741, + [SMALL_STATE(4629)] = 154751, + [SMALL_STATE(4630)] = 154765, + [SMALL_STATE(4631)] = 154779, + [SMALL_STATE(4632)] = 154793, + [SMALL_STATE(4633)] = 154807, + [SMALL_STATE(4634)] = 154821, + [SMALL_STATE(4635)] = 154831, + [SMALL_STATE(4636)] = 154845, + [SMALL_STATE(4637)] = 154855, + [SMALL_STATE(4638)] = 154869, + [SMALL_STATE(4639)] = 154883, + [SMALL_STATE(4640)] = 154897, + [SMALL_STATE(4641)] = 154911, + [SMALL_STATE(4642)] = 154921, + [SMALL_STATE(4643)] = 154935, + [SMALL_STATE(4644)] = 154945, + [SMALL_STATE(4645)] = 154955, + [SMALL_STATE(4646)] = 154969, + [SMALL_STATE(4647)] = 154979, + [SMALL_STATE(4648)] = 154993, + [SMALL_STATE(4649)] = 155007, + [SMALL_STATE(4650)] = 155021, + [SMALL_STATE(4651)] = 155035, + [SMALL_STATE(4652)] = 155049, + [SMALL_STATE(4653)] = 155059, + [SMALL_STATE(4654)] = 155073, + [SMALL_STATE(4655)] = 155083, + [SMALL_STATE(4656)] = 155093, + [SMALL_STATE(4657)] = 155103, + [SMALL_STATE(4658)] = 155113, + [SMALL_STATE(4659)] = 155123, + [SMALL_STATE(4660)] = 155133, + [SMALL_STATE(4661)] = 155143, + [SMALL_STATE(4662)] = 155153, + [SMALL_STATE(4663)] = 155163, + [SMALL_STATE(4664)] = 155177, + [SMALL_STATE(4665)] = 155187, + [SMALL_STATE(4666)] = 155201, + [SMALL_STATE(4667)] = 155215, + [SMALL_STATE(4668)] = 155229, + [SMALL_STATE(4669)] = 155243, + [SMALL_STATE(4670)] = 155257, + [SMALL_STATE(4671)] = 155271, + [SMALL_STATE(4672)] = 155281, + [SMALL_STATE(4673)] = 155291, + [SMALL_STATE(4674)] = 155301, + [SMALL_STATE(4675)] = 155311, + [SMALL_STATE(4676)] = 155325, + [SMALL_STATE(4677)] = 155339, + [SMALL_STATE(4678)] = 155353, + [SMALL_STATE(4679)] = 155363, + [SMALL_STATE(4680)] = 155377, + [SMALL_STATE(4681)] = 155391, + [SMALL_STATE(4682)] = 155405, + [SMALL_STATE(4683)] = 155419, + [SMALL_STATE(4684)] = 155429, + [SMALL_STATE(4685)] = 155439, + [SMALL_STATE(4686)] = 155449, + [SMALL_STATE(4687)] = 155459, + [SMALL_STATE(4688)] = 155469, + [SMALL_STATE(4689)] = 155479, + [SMALL_STATE(4690)] = 155489, + [SMALL_STATE(4691)] = 155499, + [SMALL_STATE(4692)] = 155513, + [SMALL_STATE(4693)] = 155527, + [SMALL_STATE(4694)] = 155541, + [SMALL_STATE(4695)] = 155555, + [SMALL_STATE(4696)] = 155565, + [SMALL_STATE(4697)] = 155575, + [SMALL_STATE(4698)] = 155585, + [SMALL_STATE(4699)] = 155595, + [SMALL_STATE(4700)] = 155605, + [SMALL_STATE(4701)] = 155615, + [SMALL_STATE(4702)] = 155625, + [SMALL_STATE(4703)] = 155635, + [SMALL_STATE(4704)] = 155649, + [SMALL_STATE(4705)] = 155659, + [SMALL_STATE(4706)] = 155669, + [SMALL_STATE(4707)] = 155683, + [SMALL_STATE(4708)] = 155693, + [SMALL_STATE(4709)] = 155703, + [SMALL_STATE(4710)] = 155713, + [SMALL_STATE(4711)] = 155723, + [SMALL_STATE(4712)] = 155733, + [SMALL_STATE(4713)] = 155743, + [SMALL_STATE(4714)] = 155753, + [SMALL_STATE(4715)] = 155763, + [SMALL_STATE(4716)] = 155777, + [SMALL_STATE(4717)] = 155787, + [SMALL_STATE(4718)] = 155801, + [SMALL_STATE(4719)] = 155815, + [SMALL_STATE(4720)] = 155825, + [SMALL_STATE(4721)] = 155839, + [SMALL_STATE(4722)] = 155849, + [SMALL_STATE(4723)] = 155859, + [SMALL_STATE(4724)] = 155869, + [SMALL_STATE(4725)] = 155879, + [SMALL_STATE(4726)] = 155889, + [SMALL_STATE(4727)] = 155899, + [SMALL_STATE(4728)] = 155913, + [SMALL_STATE(4729)] = 155923, + [SMALL_STATE(4730)] = 155933, + [SMALL_STATE(4731)] = 155947, + [SMALL_STATE(4732)] = 155957, + [SMALL_STATE(4733)] = 155971, + [SMALL_STATE(4734)] = 155981, + [SMALL_STATE(4735)] = 155991, + [SMALL_STATE(4736)] = 156001, + [SMALL_STATE(4737)] = 156011, + [SMALL_STATE(4738)] = 156021, + [SMALL_STATE(4739)] = 156035, + [SMALL_STATE(4740)] = 156049, + [SMALL_STATE(4741)] = 156061, + [SMALL_STATE(4742)] = 156071, + [SMALL_STATE(4743)] = 156081, + [SMALL_STATE(4744)] = 156091, + [SMALL_STATE(4745)] = 156105, + [SMALL_STATE(4746)] = 156115, + [SMALL_STATE(4747)] = 156125, + [SMALL_STATE(4748)] = 156135, + [SMALL_STATE(4749)] = 156145, + [SMALL_STATE(4750)] = 156159, + [SMALL_STATE(4751)] = 156169, + [SMALL_STATE(4752)] = 156179, + [SMALL_STATE(4753)] = 156189, + [SMALL_STATE(4754)] = 156203, + [SMALL_STATE(4755)] = 156217, + [SMALL_STATE(4756)] = 156227, + [SMALL_STATE(4757)] = 156237, + [SMALL_STATE(4758)] = 156251, + [SMALL_STATE(4759)] = 156261, + [SMALL_STATE(4760)] = 156271, + [SMALL_STATE(4761)] = 156281, + [SMALL_STATE(4762)] = 156291, + [SMALL_STATE(4763)] = 156305, + [SMALL_STATE(4764)] = 156315, + [SMALL_STATE(4765)] = 156325, + [SMALL_STATE(4766)] = 156335, + [SMALL_STATE(4767)] = 156345, + [SMALL_STATE(4768)] = 156355, + [SMALL_STATE(4769)] = 156365, + [SMALL_STATE(4770)] = 156375, + [SMALL_STATE(4771)] = 156385, + [SMALL_STATE(4772)] = 156395, + [SMALL_STATE(4773)] = 156405, + [SMALL_STATE(4774)] = 156419, + [SMALL_STATE(4775)] = 156429, + [SMALL_STATE(4776)] = 156439, + [SMALL_STATE(4777)] = 156449, + [SMALL_STATE(4778)] = 156459, + [SMALL_STATE(4779)] = 156469, + [SMALL_STATE(4780)] = 156481, + [SMALL_STATE(4781)] = 156491, + [SMALL_STATE(4782)] = 156501, + [SMALL_STATE(4783)] = 156511, + [SMALL_STATE(4784)] = 156521, + [SMALL_STATE(4785)] = 156531, + [SMALL_STATE(4786)] = 156541, + [SMALL_STATE(4787)] = 156551, + [SMALL_STATE(4788)] = 156563, + [SMALL_STATE(4789)] = 156575, + [SMALL_STATE(4790)] = 156585, + [SMALL_STATE(4791)] = 156595, + [SMALL_STATE(4792)] = 156605, + [SMALL_STATE(4793)] = 156615, + [SMALL_STATE(4794)] = 156625, + [SMALL_STATE(4795)] = 156635, + [SMALL_STATE(4796)] = 156645, + [SMALL_STATE(4797)] = 156655, + [SMALL_STATE(4798)] = 156665, + [SMALL_STATE(4799)] = 156675, + [SMALL_STATE(4800)] = 156685, + [SMALL_STATE(4801)] = 156695, + [SMALL_STATE(4802)] = 156705, + [SMALL_STATE(4803)] = 156717, + [SMALL_STATE(4804)] = 156731, + [SMALL_STATE(4805)] = 156741, + [SMALL_STATE(4806)] = 156755, + [SMALL_STATE(4807)] = 156769, + [SMALL_STATE(4808)] = 156781, + [SMALL_STATE(4809)] = 156791, + [SMALL_STATE(4810)] = 156801, + [SMALL_STATE(4811)] = 156811, + [SMALL_STATE(4812)] = 156821, + [SMALL_STATE(4813)] = 156835, + [SMALL_STATE(4814)] = 156845, + [SMALL_STATE(4815)] = 156855, + [SMALL_STATE(4816)] = 156865, + [SMALL_STATE(4817)] = 156875, + [SMALL_STATE(4818)] = 156889, + [SMALL_STATE(4819)] = 156899, + [SMALL_STATE(4820)] = 156913, + [SMALL_STATE(4821)] = 156927, + [SMALL_STATE(4822)] = 156937, + [SMALL_STATE(4823)] = 156951, + [SMALL_STATE(4824)] = 156965, + [SMALL_STATE(4825)] = 156979, + [SMALL_STATE(4826)] = 156989, + [SMALL_STATE(4827)] = 157003, + [SMALL_STATE(4828)] = 157017, + [SMALL_STATE(4829)] = 157027, + [SMALL_STATE(4830)] = 157039, + [SMALL_STATE(4831)] = 157049, + [SMALL_STATE(4832)] = 157059, + [SMALL_STATE(4833)] = 157069, + [SMALL_STATE(4834)] = 157083, + [SMALL_STATE(4835)] = 157097, + [SMALL_STATE(4836)] = 157111, + [SMALL_STATE(4837)] = 157121, + [SMALL_STATE(4838)] = 157131, + [SMALL_STATE(4839)] = 157141, + [SMALL_STATE(4840)] = 157155, + [SMALL_STATE(4841)] = 157165, + [SMALL_STATE(4842)] = 157175, + [SMALL_STATE(4843)] = 157189, + [SMALL_STATE(4844)] = 157201, + [SMALL_STATE(4845)] = 157215, + [SMALL_STATE(4846)] = 157229, + [SMALL_STATE(4847)] = 157243, + [SMALL_STATE(4848)] = 157253, + [SMALL_STATE(4849)] = 157267, + [SMALL_STATE(4850)] = 157281, + [SMALL_STATE(4851)] = 157291, + [SMALL_STATE(4852)] = 157305, + [SMALL_STATE(4853)] = 157315, + [SMALL_STATE(4854)] = 157329, + [SMALL_STATE(4855)] = 157339, + [SMALL_STATE(4856)] = 157353, + [SMALL_STATE(4857)] = 157363, + [SMALL_STATE(4858)] = 157373, + [SMALL_STATE(4859)] = 157383, + [SMALL_STATE(4860)] = 157393, + [SMALL_STATE(4861)] = 157403, + [SMALL_STATE(4862)] = 157413, + [SMALL_STATE(4863)] = 157423, + [SMALL_STATE(4864)] = 157433, + [SMALL_STATE(4865)] = 157445, + [SMALL_STATE(4866)] = 157455, + [SMALL_STATE(4867)] = 157465, + [SMALL_STATE(4868)] = 157475, + [SMALL_STATE(4869)] = 157485, + [SMALL_STATE(4870)] = 157499, + [SMALL_STATE(4871)] = 157511, + [SMALL_STATE(4872)] = 157521, + [SMALL_STATE(4873)] = 157531, + [SMALL_STATE(4874)] = 157545, + [SMALL_STATE(4875)] = 157555, + [SMALL_STATE(4876)] = 157565, + [SMALL_STATE(4877)] = 157577, + [SMALL_STATE(4878)] = 157587, + [SMALL_STATE(4879)] = 157597, + [SMALL_STATE(4880)] = 157607, + [SMALL_STATE(4881)] = 157619, + [SMALL_STATE(4882)] = 157629, + [SMALL_STATE(4883)] = 157639, + [SMALL_STATE(4884)] = 157649, + [SMALL_STATE(4885)] = 157659, + [SMALL_STATE(4886)] = 157671, + [SMALL_STATE(4887)] = 157681, + [SMALL_STATE(4888)] = 157691, + [SMALL_STATE(4889)] = 157701, + [SMALL_STATE(4890)] = 157711, + [SMALL_STATE(4891)] = 157721, + [SMALL_STATE(4892)] = 157731, + [SMALL_STATE(4893)] = 157741, + [SMALL_STATE(4894)] = 157751, + [SMALL_STATE(4895)] = 157761, + [SMALL_STATE(4896)] = 157771, + [SMALL_STATE(4897)] = 157781, + [SMALL_STATE(4898)] = 157791, + [SMALL_STATE(4899)] = 157801, + [SMALL_STATE(4900)] = 157811, + [SMALL_STATE(4901)] = 157821, + [SMALL_STATE(4902)] = 157831, + [SMALL_STATE(4903)] = 157841, + [SMALL_STATE(4904)] = 157851, + [SMALL_STATE(4905)] = 157861, + [SMALL_STATE(4906)] = 157871, + [SMALL_STATE(4907)] = 157881, + [SMALL_STATE(4908)] = 157891, + [SMALL_STATE(4909)] = 157901, + [SMALL_STATE(4910)] = 157911, + [SMALL_STATE(4911)] = 157921, + [SMALL_STATE(4912)] = 157931, + [SMALL_STATE(4913)] = 157941, + [SMALL_STATE(4914)] = 157951, + [SMALL_STATE(4915)] = 157961, + [SMALL_STATE(4916)] = 157971, + [SMALL_STATE(4917)] = 157981, + [SMALL_STATE(4918)] = 157991, + [SMALL_STATE(4919)] = 158001, + [SMALL_STATE(4920)] = 158011, + [SMALL_STATE(4921)] = 158021, + [SMALL_STATE(4922)] = 158031, + [SMALL_STATE(4923)] = 158041, + [SMALL_STATE(4924)] = 158051, + [SMALL_STATE(4925)] = 158061, + [SMALL_STATE(4926)] = 158071, + [SMALL_STATE(4927)] = 158085, + [SMALL_STATE(4928)] = 158095, + [SMALL_STATE(4929)] = 158105, + [SMALL_STATE(4930)] = 158115, + [SMALL_STATE(4931)] = 158125, + [SMALL_STATE(4932)] = 158135, + [SMALL_STATE(4933)] = 158145, + [SMALL_STATE(4934)] = 158155, + [SMALL_STATE(4935)] = 158165, + [SMALL_STATE(4936)] = 158175, + [SMALL_STATE(4937)] = 158185, + [SMALL_STATE(4938)] = 158195, + [SMALL_STATE(4939)] = 158209, + [SMALL_STATE(4940)] = 158219, + [SMALL_STATE(4941)] = 158233, + [SMALL_STATE(4942)] = 158243, + [SMALL_STATE(4943)] = 158253, + [SMALL_STATE(4944)] = 158263, + [SMALL_STATE(4945)] = 158273, + [SMALL_STATE(4946)] = 158283, + [SMALL_STATE(4947)] = 158293, + [SMALL_STATE(4948)] = 158303, + [SMALL_STATE(4949)] = 158313, + [SMALL_STATE(4950)] = 158323, + [SMALL_STATE(4951)] = 158333, + [SMALL_STATE(4952)] = 158347, + [SMALL_STATE(4953)] = 158357, + [SMALL_STATE(4954)] = 158367, + [SMALL_STATE(4955)] = 158377, + [SMALL_STATE(4956)] = 158387, + [SMALL_STATE(4957)] = 158397, + [SMALL_STATE(4958)] = 158407, + [SMALL_STATE(4959)] = 158417, + [SMALL_STATE(4960)] = 158427, + [SMALL_STATE(4961)] = 158437, + [SMALL_STATE(4962)] = 158447, + [SMALL_STATE(4963)] = 158457, + [SMALL_STATE(4964)] = 158467, + [SMALL_STATE(4965)] = 158477, + [SMALL_STATE(4966)] = 158487, + [SMALL_STATE(4967)] = 158497, + [SMALL_STATE(4968)] = 158507, + [SMALL_STATE(4969)] = 158517, + [SMALL_STATE(4970)] = 158527, + [SMALL_STATE(4971)] = 158537, + [SMALL_STATE(4972)] = 158547, + [SMALL_STATE(4973)] = 158557, + [SMALL_STATE(4974)] = 158567, + [SMALL_STATE(4975)] = 158581, + [SMALL_STATE(4976)] = 158591, + [SMALL_STATE(4977)] = 158601, + [SMALL_STATE(4978)] = 158611, + [SMALL_STATE(4979)] = 158625, + [SMALL_STATE(4980)] = 158635, + [SMALL_STATE(4981)] = 158649, + [SMALL_STATE(4982)] = 158663, + [SMALL_STATE(4983)] = 158673, + [SMALL_STATE(4984)] = 158683, + [SMALL_STATE(4985)] = 158693, + [SMALL_STATE(4986)] = 158703, + [SMALL_STATE(4987)] = 158713, + [SMALL_STATE(4988)] = 158723, + [SMALL_STATE(4989)] = 158733, + [SMALL_STATE(4990)] = 158743, + [SMALL_STATE(4991)] = 158757, + [SMALL_STATE(4992)] = 158767, + [SMALL_STATE(4993)] = 158777, + [SMALL_STATE(4994)] = 158787, + [SMALL_STATE(4995)] = 158801, + [SMALL_STATE(4996)] = 158811, + [SMALL_STATE(4997)] = 158821, + [SMALL_STATE(4998)] = 158831, + [SMALL_STATE(4999)] = 158845, + [SMALL_STATE(5000)] = 158859, + [SMALL_STATE(5001)] = 158869, + [SMALL_STATE(5002)] = 158883, + [SMALL_STATE(5003)] = 158893, + [SMALL_STATE(5004)] = 158903, + [SMALL_STATE(5005)] = 158917, + [SMALL_STATE(5006)] = 158927, + [SMALL_STATE(5007)] = 158937, + [SMALL_STATE(5008)] = 158947, + [SMALL_STATE(5009)] = 158957, + [SMALL_STATE(5010)] = 158967, + [SMALL_STATE(5011)] = 158981, + [SMALL_STATE(5012)] = 158991, + [SMALL_STATE(5013)] = 159003, + [SMALL_STATE(5014)] = 159013, + [SMALL_STATE(5015)] = 159023, + [SMALL_STATE(5016)] = 159033, + [SMALL_STATE(5017)] = 159047, + [SMALL_STATE(5018)] = 159057, + [SMALL_STATE(5019)] = 159067, + [SMALL_STATE(5020)] = 159081, + [SMALL_STATE(5021)] = 159091, + [SMALL_STATE(5022)] = 159101, + [SMALL_STATE(5023)] = 159115, + [SMALL_STATE(5024)] = 159129, + [SMALL_STATE(5025)] = 159139, + [SMALL_STATE(5026)] = 159153, + [SMALL_STATE(5027)] = 159163, + [SMALL_STATE(5028)] = 159173, + [SMALL_STATE(5029)] = 159183, + [SMALL_STATE(5030)] = 159197, + [SMALL_STATE(5031)] = 159207, + [SMALL_STATE(5032)] = 159217, + [SMALL_STATE(5033)] = 159231, + [SMALL_STATE(5034)] = 159241, + [SMALL_STATE(5035)] = 159255, + [SMALL_STATE(5036)] = 159269, + [SMALL_STATE(5037)] = 159279, + [SMALL_STATE(5038)] = 159293, + [SMALL_STATE(5039)] = 159303, + [SMALL_STATE(5040)] = 159313, + [SMALL_STATE(5041)] = 159327, + [SMALL_STATE(5042)] = 159341, + [SMALL_STATE(5043)] = 159351, + [SMALL_STATE(5044)] = 159361, + [SMALL_STATE(5045)] = 159371, + [SMALL_STATE(5046)] = 159381, + [SMALL_STATE(5047)] = 159391, + [SMALL_STATE(5048)] = 159401, + [SMALL_STATE(5049)] = 159411, + [SMALL_STATE(5050)] = 159421, + [SMALL_STATE(5051)] = 159431, + [SMALL_STATE(5052)] = 159441, + [SMALL_STATE(5053)] = 159451, + [SMALL_STATE(5054)] = 159465, + [SMALL_STATE(5055)] = 159475, + [SMALL_STATE(5056)] = 159485, + [SMALL_STATE(5057)] = 159495, + [SMALL_STATE(5058)] = 159505, + [SMALL_STATE(5059)] = 159517, + [SMALL_STATE(5060)] = 159527, + [SMALL_STATE(5061)] = 159537, + [SMALL_STATE(5062)] = 159549, + [SMALL_STATE(5063)] = 159563, + [SMALL_STATE(5064)] = 159577, + [SMALL_STATE(5065)] = 159587, + [SMALL_STATE(5066)] = 159601, + [SMALL_STATE(5067)] = 159611, + [SMALL_STATE(5068)] = 159621, + [SMALL_STATE(5069)] = 159631, + [SMALL_STATE(5070)] = 159645, + [SMALL_STATE(5071)] = 159655, + [SMALL_STATE(5072)] = 159669, + [SMALL_STATE(5073)] = 159679, + [SMALL_STATE(5074)] = 159693, + [SMALL_STATE(5075)] = 159703, + [SMALL_STATE(5076)] = 159713, + [SMALL_STATE(5077)] = 159723, + [SMALL_STATE(5078)] = 159737, + [SMALL_STATE(5079)] = 159751, + [SMALL_STATE(5080)] = 159761, + [SMALL_STATE(5081)] = 159771, + [SMALL_STATE(5082)] = 159781, + [SMALL_STATE(5083)] = 159795, + [SMALL_STATE(5084)] = 159805, + [SMALL_STATE(5085)] = 159819, + [SMALL_STATE(5086)] = 159829, + [SMALL_STATE(5087)] = 159839, + [SMALL_STATE(5088)] = 159849, + [SMALL_STATE(5089)] = 159859, + [SMALL_STATE(5090)] = 159869, + [SMALL_STATE(5091)] = 159879, + [SMALL_STATE(5092)] = 159889, + [SMALL_STATE(5093)] = 159899, + [SMALL_STATE(5094)] = 159909, + [SMALL_STATE(5095)] = 159919, + [SMALL_STATE(5096)] = 159929, + [SMALL_STATE(5097)] = 159939, + [SMALL_STATE(5098)] = 159949, + [SMALL_STATE(5099)] = 159959, + [SMALL_STATE(5100)] = 159973, + [SMALL_STATE(5101)] = 159983, + [SMALL_STATE(5102)] = 159993, + [SMALL_STATE(5103)] = 160003, + [SMALL_STATE(5104)] = 160013, + [SMALL_STATE(5105)] = 160027, + [SMALL_STATE(5106)] = 160037, + [SMALL_STATE(5107)] = 160047, + [SMALL_STATE(5108)] = 160057, + [SMALL_STATE(5109)] = 160071, + [SMALL_STATE(5110)] = 160085, + [SMALL_STATE(5111)] = 160099, + [SMALL_STATE(5112)] = 160111, + [SMALL_STATE(5113)] = 160125, + [SMALL_STATE(5114)] = 160139, + [SMALL_STATE(5115)] = 160149, + [SMALL_STATE(5116)] = 160163, + [SMALL_STATE(5117)] = 160175, + [SMALL_STATE(5118)] = 160187, + [SMALL_STATE(5119)] = 160197, + [SMALL_STATE(5120)] = 160207, + [SMALL_STATE(5121)] = 160217, + [SMALL_STATE(5122)] = 160227, + [SMALL_STATE(5123)] = 160237, + [SMALL_STATE(5124)] = 160247, + [SMALL_STATE(5125)] = 160257, + [SMALL_STATE(5126)] = 160267, + [SMALL_STATE(5127)] = 160281, + [SMALL_STATE(5128)] = 160291, + [SMALL_STATE(5129)] = 160301, + [SMALL_STATE(5130)] = 160311, + [SMALL_STATE(5131)] = 160321, + [SMALL_STATE(5132)] = 160331, + [SMALL_STATE(5133)] = 160341, + [SMALL_STATE(5134)] = 160353, + [SMALL_STATE(5135)] = 160363, + [SMALL_STATE(5136)] = 160373, + [SMALL_STATE(5137)] = 160383, + [SMALL_STATE(5138)] = 160393, + [SMALL_STATE(5139)] = 160403, + [SMALL_STATE(5140)] = 160413, + [SMALL_STATE(5141)] = 160423, + [SMALL_STATE(5142)] = 160433, + [SMALL_STATE(5143)] = 160443, + [SMALL_STATE(5144)] = 160453, + [SMALL_STATE(5145)] = 160463, + [SMALL_STATE(5146)] = 160475, + [SMALL_STATE(5147)] = 160485, + [SMALL_STATE(5148)] = 160495, + [SMALL_STATE(5149)] = 160505, + [SMALL_STATE(5150)] = 160519, + [SMALL_STATE(5151)] = 160529, + [SMALL_STATE(5152)] = 160539, + [SMALL_STATE(5153)] = 160549, + [SMALL_STATE(5154)] = 160563, + [SMALL_STATE(5155)] = 160573, + [SMALL_STATE(5156)] = 160583, + [SMALL_STATE(5157)] = 160593, + [SMALL_STATE(5158)] = 160603, + [SMALL_STATE(5159)] = 160613, + [SMALL_STATE(5160)] = 160623, + [SMALL_STATE(5161)] = 160633, + [SMALL_STATE(5162)] = 160643, + [SMALL_STATE(5163)] = 160653, + [SMALL_STATE(5164)] = 160664, + [SMALL_STATE(5165)] = 160675, + [SMALL_STATE(5166)] = 160686, + [SMALL_STATE(5167)] = 160695, + [SMALL_STATE(5168)] = 160706, + [SMALL_STATE(5169)] = 160715, + [SMALL_STATE(5170)] = 160724, + [SMALL_STATE(5171)] = 160735, + [SMALL_STATE(5172)] = 160744, + [SMALL_STATE(5173)] = 160755, + [SMALL_STATE(5174)] = 160766, + [SMALL_STATE(5175)] = 160777, + [SMALL_STATE(5176)] = 160786, + [SMALL_STATE(5177)] = 160797, + [SMALL_STATE(5178)] = 160806, + [SMALL_STATE(5179)] = 160817, + [SMALL_STATE(5180)] = 160826, + [SMALL_STATE(5181)] = 160835, + [SMALL_STATE(5182)] = 160844, + [SMALL_STATE(5183)] = 160853, + [SMALL_STATE(5184)] = 160864, + [SMALL_STATE(5185)] = 160875, + [SMALL_STATE(5186)] = 160886, + [SMALL_STATE(5187)] = 160897, + [SMALL_STATE(5188)] = 160908, + [SMALL_STATE(5189)] = 160919, + [SMALL_STATE(5190)] = 160930, + [SMALL_STATE(5191)] = 160941, + [SMALL_STATE(5192)] = 160952, + [SMALL_STATE(5193)] = 160961, + [SMALL_STATE(5194)] = 160972, + [SMALL_STATE(5195)] = 160981, + [SMALL_STATE(5196)] = 160992, + [SMALL_STATE(5197)] = 161003, + [SMALL_STATE(5198)] = 161014, + [SMALL_STATE(5199)] = 161025, + [SMALL_STATE(5200)] = 161036, + [SMALL_STATE(5201)] = 161047, + [SMALL_STATE(5202)] = 161058, + [SMALL_STATE(5203)] = 161069, + [SMALL_STATE(5204)] = 161080, + [SMALL_STATE(5205)] = 161091, + [SMALL_STATE(5206)] = 161100, + [SMALL_STATE(5207)] = 161111, + [SMALL_STATE(5208)] = 161120, + [SMALL_STATE(5209)] = 161131, + [SMALL_STATE(5210)] = 161142, + [SMALL_STATE(5211)] = 161153, + [SMALL_STATE(5212)] = 161164, + [SMALL_STATE(5213)] = 161175, + [SMALL_STATE(5214)] = 161186, + [SMALL_STATE(5215)] = 161197, + [SMALL_STATE(5216)] = 161208, + [SMALL_STATE(5217)] = 161219, + [SMALL_STATE(5218)] = 161230, + [SMALL_STATE(5219)] = 161241, + [SMALL_STATE(5220)] = 161252, + [SMALL_STATE(5221)] = 161263, + [SMALL_STATE(5222)] = 161274, + [SMALL_STATE(5223)] = 161285, + [SMALL_STATE(5224)] = 161294, + [SMALL_STATE(5225)] = 161305, + [SMALL_STATE(5226)] = 161316, + [SMALL_STATE(5227)] = 161325, + [SMALL_STATE(5228)] = 161336, + [SMALL_STATE(5229)] = 161345, + [SMALL_STATE(5230)] = 161354, + [SMALL_STATE(5231)] = 161365, + [SMALL_STATE(5232)] = 161374, + [SMALL_STATE(5233)] = 161385, + [SMALL_STATE(5234)] = 161394, + [SMALL_STATE(5235)] = 161403, + [SMALL_STATE(5236)] = 161414, + [SMALL_STATE(5237)] = 161425, + [SMALL_STATE(5238)] = 161434, + [SMALL_STATE(5239)] = 161445, + [SMALL_STATE(5240)] = 161454, + [SMALL_STATE(5241)] = 161465, + [SMALL_STATE(5242)] = 161474, + [SMALL_STATE(5243)] = 161485, + [SMALL_STATE(5244)] = 161496, + [SMALL_STATE(5245)] = 161507, + [SMALL_STATE(5246)] = 161518, + [SMALL_STATE(5247)] = 161529, + [SMALL_STATE(5248)] = 161540, + [SMALL_STATE(5249)] = 161551, + [SMALL_STATE(5250)] = 161560, + [SMALL_STATE(5251)] = 161571, + [SMALL_STATE(5252)] = 161582, + [SMALL_STATE(5253)] = 161593, + [SMALL_STATE(5254)] = 161604, + [SMALL_STATE(5255)] = 161615, + [SMALL_STATE(5256)] = 161626, + [SMALL_STATE(5257)] = 161637, + [SMALL_STATE(5258)] = 161648, + [SMALL_STATE(5259)] = 161659, + [SMALL_STATE(5260)] = 161670, + [SMALL_STATE(5261)] = 161681, + [SMALL_STATE(5262)] = 161690, + [SMALL_STATE(5263)] = 161701, + [SMALL_STATE(5264)] = 161710, + [SMALL_STATE(5265)] = 161719, + [SMALL_STATE(5266)] = 161730, + [SMALL_STATE(5267)] = 161741, + [SMALL_STATE(5268)] = 161752, + [SMALL_STATE(5269)] = 161763, + [SMALL_STATE(5270)] = 161774, + [SMALL_STATE(5271)] = 161785, + [SMALL_STATE(5272)] = 161796, + [SMALL_STATE(5273)] = 161805, + [SMALL_STATE(5274)] = 161816, + [SMALL_STATE(5275)] = 161827, + [SMALL_STATE(5276)] = 161838, + [SMALL_STATE(5277)] = 161849, + [SMALL_STATE(5278)] = 161860, + [SMALL_STATE(5279)] = 161871, + [SMALL_STATE(5280)] = 161882, + [SMALL_STATE(5281)] = 161893, + [SMALL_STATE(5282)] = 161904, + [SMALL_STATE(5283)] = 161915, + [SMALL_STATE(5284)] = 161926, + [SMALL_STATE(5285)] = 161935, + [SMALL_STATE(5286)] = 161946, + [SMALL_STATE(5287)] = 161957, + [SMALL_STATE(5288)] = 161968, + [SMALL_STATE(5289)] = 161979, + [SMALL_STATE(5290)] = 161990, + [SMALL_STATE(5291)] = 162001, + [SMALL_STATE(5292)] = 162012, + [SMALL_STATE(5293)] = 162023, + [SMALL_STATE(5294)] = 162034, + [SMALL_STATE(5295)] = 162045, + [SMALL_STATE(5296)] = 162056, + [SMALL_STATE(5297)] = 162065, + [SMALL_STATE(5298)] = 162076, + [SMALL_STATE(5299)] = 162085, + [SMALL_STATE(5300)] = 162096, + [SMALL_STATE(5301)] = 162107, + [SMALL_STATE(5302)] = 162118, + [SMALL_STATE(5303)] = 162129, + [SMALL_STATE(5304)] = 162140, + [SMALL_STATE(5305)] = 162151, + [SMALL_STATE(5306)] = 162162, + [SMALL_STATE(5307)] = 162173, + [SMALL_STATE(5308)] = 162184, + [SMALL_STATE(5309)] = 162193, + [SMALL_STATE(5310)] = 162204, + [SMALL_STATE(5311)] = 162213, + [SMALL_STATE(5312)] = 162224, + [SMALL_STATE(5313)] = 162235, + [SMALL_STATE(5314)] = 162246, + [SMALL_STATE(5315)] = 162257, + [SMALL_STATE(5316)] = 162268, + [SMALL_STATE(5317)] = 162279, + [SMALL_STATE(5318)] = 162290, + [SMALL_STATE(5319)] = 162299, + [SMALL_STATE(5320)] = 162308, + [SMALL_STATE(5321)] = 162319, + [SMALL_STATE(5322)] = 162328, + [SMALL_STATE(5323)] = 162339, + [SMALL_STATE(5324)] = 162350, + [SMALL_STATE(5325)] = 162361, + [SMALL_STATE(5326)] = 162370, + [SMALL_STATE(5327)] = 162381, + [SMALL_STATE(5328)] = 162392, + [SMALL_STATE(5329)] = 162403, + [SMALL_STATE(5330)] = 162414, + [SMALL_STATE(5331)] = 162423, + [SMALL_STATE(5332)] = 162434, + [SMALL_STATE(5333)] = 162445, + [SMALL_STATE(5334)] = 162456, + [SMALL_STATE(5335)] = 162467, + [SMALL_STATE(5336)] = 162478, + [SMALL_STATE(5337)] = 162489, + [SMALL_STATE(5338)] = 162500, + [SMALL_STATE(5339)] = 162511, + [SMALL_STATE(5340)] = 162522, + [SMALL_STATE(5341)] = 162533, + [SMALL_STATE(5342)] = 162542, + [SMALL_STATE(5343)] = 162553, + [SMALL_STATE(5344)] = 162562, + [SMALL_STATE(5345)] = 162573, + [SMALL_STATE(5346)] = 162584, + [SMALL_STATE(5347)] = 162595, + [SMALL_STATE(5348)] = 162606, + [SMALL_STATE(5349)] = 162617, + [SMALL_STATE(5350)] = 162628, + [SMALL_STATE(5351)] = 162639, + [SMALL_STATE(5352)] = 162650, + [SMALL_STATE(5353)] = 162661, + [SMALL_STATE(5354)] = 162672, + [SMALL_STATE(5355)] = 162683, + [SMALL_STATE(5356)] = 162692, + [SMALL_STATE(5357)] = 162703, + [SMALL_STATE(5358)] = 162712, + [SMALL_STATE(5359)] = 162723, + [SMALL_STATE(5360)] = 162732, + [SMALL_STATE(5361)] = 162743, + [SMALL_STATE(5362)] = 162754, + [SMALL_STATE(5363)] = 162765, + [SMALL_STATE(5364)] = 162776, + [SMALL_STATE(5365)] = 162787, + [SMALL_STATE(5366)] = 162796, + [SMALL_STATE(5367)] = 162807, + [SMALL_STATE(5368)] = 162816, + [SMALL_STATE(5369)] = 162827, + [SMALL_STATE(5370)] = 162838, + [SMALL_STATE(5371)] = 162849, + [SMALL_STATE(5372)] = 162858, + [SMALL_STATE(5373)] = 162869, + [SMALL_STATE(5374)] = 162880, + [SMALL_STATE(5375)] = 162891, + [SMALL_STATE(5376)] = 162900, + [SMALL_STATE(5377)] = 162911, + [SMALL_STATE(5378)] = 162922, + [SMALL_STATE(5379)] = 162933, + [SMALL_STATE(5380)] = 162944, + [SMALL_STATE(5381)] = 162955, + [SMALL_STATE(5382)] = 162966, + [SMALL_STATE(5383)] = 162977, + [SMALL_STATE(5384)] = 162988, + [SMALL_STATE(5385)] = 162999, + [SMALL_STATE(5386)] = 163010, + [SMALL_STATE(5387)] = 163021, + [SMALL_STATE(5388)] = 163032, + [SMALL_STATE(5389)] = 163043, + [SMALL_STATE(5390)] = 163054, + [SMALL_STATE(5391)] = 163065, + [SMALL_STATE(5392)] = 163076, + [SMALL_STATE(5393)] = 163087, + [SMALL_STATE(5394)] = 163096, + [SMALL_STATE(5395)] = 163107, + [SMALL_STATE(5396)] = 163118, + [SMALL_STATE(5397)] = 163129, + [SMALL_STATE(5398)] = 163140, + [SMALL_STATE(5399)] = 163151, + [SMALL_STATE(5400)] = 163162, + [SMALL_STATE(5401)] = 163173, + [SMALL_STATE(5402)] = 163182, + [SMALL_STATE(5403)] = 163193, + [SMALL_STATE(5404)] = 163204, + [SMALL_STATE(5405)] = 163215, + [SMALL_STATE(5406)] = 163224, + [SMALL_STATE(5407)] = 163235, + [SMALL_STATE(5408)] = 163246, + [SMALL_STATE(5409)] = 163257, + [SMALL_STATE(5410)] = 163268, + [SMALL_STATE(5411)] = 163279, + [SMALL_STATE(5412)] = 163290, + [SMALL_STATE(5413)] = 163301, + [SMALL_STATE(5414)] = 163312, + [SMALL_STATE(5415)] = 163323, + [SMALL_STATE(5416)] = 163332, + [SMALL_STATE(5417)] = 163343, + [SMALL_STATE(5418)] = 163354, + [SMALL_STATE(5419)] = 163365, + [SMALL_STATE(5420)] = 163376, + [SMALL_STATE(5421)] = 163387, + [SMALL_STATE(5422)] = 163398, + [SMALL_STATE(5423)] = 163409, + [SMALL_STATE(5424)] = 163420, + [SMALL_STATE(5425)] = 163429, + [SMALL_STATE(5426)] = 163440, + [SMALL_STATE(5427)] = 163451, + [SMALL_STATE(5428)] = 163460, + [SMALL_STATE(5429)] = 163471, + [SMALL_STATE(5430)] = 163482, + [SMALL_STATE(5431)] = 163493, + [SMALL_STATE(5432)] = 163504, + [SMALL_STATE(5433)] = 163515, + [SMALL_STATE(5434)] = 163524, + [SMALL_STATE(5435)] = 163535, + [SMALL_STATE(5436)] = 163546, + [SMALL_STATE(5437)] = 163557, + [SMALL_STATE(5438)] = 163566, + [SMALL_STATE(5439)] = 163577, + [SMALL_STATE(5440)] = 163586, + [SMALL_STATE(5441)] = 163597, + [SMALL_STATE(5442)] = 163608, + [SMALL_STATE(5443)] = 163619, + [SMALL_STATE(5444)] = 163630, + [SMALL_STATE(5445)] = 163641, + [SMALL_STATE(5446)] = 163652, + [SMALL_STATE(5447)] = 163663, + [SMALL_STATE(5448)] = 163672, + [SMALL_STATE(5449)] = 163683, + [SMALL_STATE(5450)] = 163692, + [SMALL_STATE(5451)] = 163703, + [SMALL_STATE(5452)] = 163714, + [SMALL_STATE(5453)] = 163725, + [SMALL_STATE(5454)] = 163736, + [SMALL_STATE(5455)] = 163745, + [SMALL_STATE(5456)] = 163754, + [SMALL_STATE(5457)] = 163763, + [SMALL_STATE(5458)] = 163774, + [SMALL_STATE(5459)] = 163783, + [SMALL_STATE(5460)] = 163792, + [SMALL_STATE(5461)] = 163801, + [SMALL_STATE(5462)] = 163810, + [SMALL_STATE(5463)] = 163821, + [SMALL_STATE(5464)] = 163832, + [SMALL_STATE(5465)] = 163843, + [SMALL_STATE(5466)] = 163852, + [SMALL_STATE(5467)] = 163863, + [SMALL_STATE(5468)] = 163874, + [SMALL_STATE(5469)] = 163885, + [SMALL_STATE(5470)] = 163896, + [SMALL_STATE(5471)] = 163905, + [SMALL_STATE(5472)] = 163914, + [SMALL_STATE(5473)] = 163925, + [SMALL_STATE(5474)] = 163936, + [SMALL_STATE(5475)] = 163945, + [SMALL_STATE(5476)] = 163956, + [SMALL_STATE(5477)] = 163965, + [SMALL_STATE(5478)] = 163976, + [SMALL_STATE(5479)] = 163987, + [SMALL_STATE(5480)] = 163998, + [SMALL_STATE(5481)] = 164009, + [SMALL_STATE(5482)] = 164020, + [SMALL_STATE(5483)] = 164031, + [SMALL_STATE(5484)] = 164042, + [SMALL_STATE(5485)] = 164053, + [SMALL_STATE(5486)] = 164064, + [SMALL_STATE(5487)] = 164075, + [SMALL_STATE(5488)] = 164086, + [SMALL_STATE(5489)] = 164097, + [SMALL_STATE(5490)] = 164108, + [SMALL_STATE(5491)] = 164119, + [SMALL_STATE(5492)] = 164128, + [SMALL_STATE(5493)] = 164139, + [SMALL_STATE(5494)] = 164150, + [SMALL_STATE(5495)] = 164161, + [SMALL_STATE(5496)] = 164172, + [SMALL_STATE(5497)] = 164183, + [SMALL_STATE(5498)] = 164194, + [SMALL_STATE(5499)] = 164205, + [SMALL_STATE(5500)] = 164214, + [SMALL_STATE(5501)] = 164223, + [SMALL_STATE(5502)] = 164234, + [SMALL_STATE(5503)] = 164243, + [SMALL_STATE(5504)] = 164254, + [SMALL_STATE(5505)] = 164265, + [SMALL_STATE(5506)] = 164276, + [SMALL_STATE(5507)] = 164284, + [SMALL_STATE(5508)] = 164292, + [SMALL_STATE(5509)] = 164300, + [SMALL_STATE(5510)] = 164308, + [SMALL_STATE(5511)] = 164318, + [SMALL_STATE(5512)] = 164326, + [SMALL_STATE(5513)] = 164334, + [SMALL_STATE(5514)] = 164342, + [SMALL_STATE(5515)] = 164350, + [SMALL_STATE(5516)] = 164358, + [SMALL_STATE(5517)] = 164366, + [SMALL_STATE(5518)] = 164376, + [SMALL_STATE(5519)] = 164384, + [SMALL_STATE(5520)] = 164392, + [SMALL_STATE(5521)] = 164400, + [SMALL_STATE(5522)] = 164408, + [SMALL_STATE(5523)] = 164416, + [SMALL_STATE(5524)] = 164424, + [SMALL_STATE(5525)] = 164432, + [SMALL_STATE(5526)] = 164440, + [SMALL_STATE(5527)] = 164448, + [SMALL_STATE(5528)] = 164456, + [SMALL_STATE(5529)] = 164464, + [SMALL_STATE(5530)] = 164472, + [SMALL_STATE(5531)] = 164480, + [SMALL_STATE(5532)] = 164488, + [SMALL_STATE(5533)] = 164496, + [SMALL_STATE(5534)] = 164504, + [SMALL_STATE(5535)] = 164512, + [SMALL_STATE(5536)] = 164520, + [SMALL_STATE(5537)] = 164528, + [SMALL_STATE(5538)] = 164536, + [SMALL_STATE(5539)] = 164544, + [SMALL_STATE(5540)] = 164552, + [SMALL_STATE(5541)] = 164560, + [SMALL_STATE(5542)] = 164568, + [SMALL_STATE(5543)] = 164576, + [SMALL_STATE(5544)] = 164584, + [SMALL_STATE(5545)] = 164592, + [SMALL_STATE(5546)] = 164600, + [SMALL_STATE(5547)] = 164608, + [SMALL_STATE(5548)] = 164616, + [SMALL_STATE(5549)] = 164624, + [SMALL_STATE(5550)] = 164632, + [SMALL_STATE(5551)] = 164640, + [SMALL_STATE(5552)] = 164648, + [SMALL_STATE(5553)] = 164656, + [SMALL_STATE(5554)] = 164664, + [SMALL_STATE(5555)] = 164672, + [SMALL_STATE(5556)] = 164680, + [SMALL_STATE(5557)] = 164688, + [SMALL_STATE(5558)] = 164698, + [SMALL_STATE(5559)] = 164706, + [SMALL_STATE(5560)] = 164714, + [SMALL_STATE(5561)] = 164722, + [SMALL_STATE(5562)] = 164730, + [SMALL_STATE(5563)] = 164738, + [SMALL_STATE(5564)] = 164746, + [SMALL_STATE(5565)] = 164754, + [SMALL_STATE(5566)] = 164762, + [SMALL_STATE(5567)] = 164770, + [SMALL_STATE(5568)] = 164778, + [SMALL_STATE(5569)] = 164786, + [SMALL_STATE(5570)] = 164794, + [SMALL_STATE(5571)] = 164802, + [SMALL_STATE(5572)] = 164810, + [SMALL_STATE(5573)] = 164818, + [SMALL_STATE(5574)] = 164826, + [SMALL_STATE(5575)] = 164834, + [SMALL_STATE(5576)] = 164842, + [SMALL_STATE(5577)] = 164850, + [SMALL_STATE(5578)] = 164860, + [SMALL_STATE(5579)] = 164868, + [SMALL_STATE(5580)] = 164876, + [SMALL_STATE(5581)] = 164884, + [SMALL_STATE(5582)] = 164892, + [SMALL_STATE(5583)] = 164902, + [SMALL_STATE(5584)] = 164910, + [SMALL_STATE(5585)] = 164918, + [SMALL_STATE(5586)] = 164926, + [SMALL_STATE(5587)] = 164934, + [SMALL_STATE(5588)] = 164942, + [SMALL_STATE(5589)] = 164950, + [SMALL_STATE(5590)] = 164958, + [SMALL_STATE(5591)] = 164966, + [SMALL_STATE(5592)] = 164974, + [SMALL_STATE(5593)] = 164982, + [SMALL_STATE(5594)] = 164990, + [SMALL_STATE(5595)] = 164998, + [SMALL_STATE(5596)] = 165006, + [SMALL_STATE(5597)] = 165014, + [SMALL_STATE(5598)] = 165022, + [SMALL_STATE(5599)] = 165030, + [SMALL_STATE(5600)] = 165038, + [SMALL_STATE(5601)] = 165046, + [SMALL_STATE(5602)] = 165054, + [SMALL_STATE(5603)] = 165062, + [SMALL_STATE(5604)] = 165070, + [SMALL_STATE(5605)] = 165078, + [SMALL_STATE(5606)] = 165086, + [SMALL_STATE(5607)] = 165094, + [SMALL_STATE(5608)] = 165102, + [SMALL_STATE(5609)] = 165110, + [SMALL_STATE(5610)] = 165118, + [SMALL_STATE(5611)] = 165126, + [SMALL_STATE(5612)] = 165134, + [SMALL_STATE(5613)] = 165142, + [SMALL_STATE(5614)] = 165150, + [SMALL_STATE(5615)] = 165158, + [SMALL_STATE(5616)] = 165166, + [SMALL_STATE(5617)] = 165174, + [SMALL_STATE(5618)] = 165182, + [SMALL_STATE(5619)] = 165190, + [SMALL_STATE(5620)] = 165198, + [SMALL_STATE(5621)] = 165206, + [SMALL_STATE(5622)] = 165214, + [SMALL_STATE(5623)] = 165222, + [SMALL_STATE(5624)] = 165230, + [SMALL_STATE(5625)] = 165238, + [SMALL_STATE(5626)] = 165246, + [SMALL_STATE(5627)] = 165254, + [SMALL_STATE(5628)] = 165262, + [SMALL_STATE(5629)] = 165270, + [SMALL_STATE(5630)] = 165278, + [SMALL_STATE(5631)] = 165286, + [SMALL_STATE(5632)] = 165294, + [SMALL_STATE(5633)] = 165302, + [SMALL_STATE(5634)] = 165310, + [SMALL_STATE(5635)] = 165318, + [SMALL_STATE(5636)] = 165326, + [SMALL_STATE(5637)] = 165334, + [SMALL_STATE(5638)] = 165342, + [SMALL_STATE(5639)] = 165350, + [SMALL_STATE(5640)] = 165358, + [SMALL_STATE(5641)] = 165366, + [SMALL_STATE(5642)] = 165374, + [SMALL_STATE(5643)] = 165382, + [SMALL_STATE(5644)] = 165390, + [SMALL_STATE(5645)] = 165398, + [SMALL_STATE(5646)] = 165406, + [SMALL_STATE(5647)] = 165414, + [SMALL_STATE(5648)] = 165422, + [SMALL_STATE(5649)] = 165430, + [SMALL_STATE(5650)] = 165438, + [SMALL_STATE(5651)] = 165446, + [SMALL_STATE(5652)] = 165454, + [SMALL_STATE(5653)] = 165462, + [SMALL_STATE(5654)] = 165470, + [SMALL_STATE(5655)] = 165480, + [SMALL_STATE(5656)] = 165488, + [SMALL_STATE(5657)] = 165496, + [SMALL_STATE(5658)] = 165504, + [SMALL_STATE(5659)] = 165512, + [SMALL_STATE(5660)] = 165520, + [SMALL_STATE(5661)] = 165528, + [SMALL_STATE(5662)] = 165536, + [SMALL_STATE(5663)] = 165544, + [SMALL_STATE(5664)] = 165552, + [SMALL_STATE(5665)] = 165560, + [SMALL_STATE(5666)] = 165568, + [SMALL_STATE(5667)] = 165576, + [SMALL_STATE(5668)] = 165584, + [SMALL_STATE(5669)] = 165592, + [SMALL_STATE(5670)] = 165600, + [SMALL_STATE(5671)] = 165608, + [SMALL_STATE(5672)] = 165616, + [SMALL_STATE(5673)] = 165624, + [SMALL_STATE(5674)] = 165632, + [SMALL_STATE(5675)] = 165640, + [SMALL_STATE(5676)] = 165648, + [SMALL_STATE(5677)] = 165656, + [SMALL_STATE(5678)] = 165664, + [SMALL_STATE(5679)] = 165672, + [SMALL_STATE(5680)] = 165680, + [SMALL_STATE(5681)] = 165688, + [SMALL_STATE(5682)] = 165698, + [SMALL_STATE(5683)] = 165706, + [SMALL_STATE(5684)] = 165714, + [SMALL_STATE(5685)] = 165722, + [SMALL_STATE(5686)] = 165730, + [SMALL_STATE(5687)] = 165738, + [SMALL_STATE(5688)] = 165746, + [SMALL_STATE(5689)] = 165754, + [SMALL_STATE(5690)] = 165762, + [SMALL_STATE(5691)] = 165770, + [SMALL_STATE(5692)] = 165778, + [SMALL_STATE(5693)] = 165786, + [SMALL_STATE(5694)] = 165794, + [SMALL_STATE(5695)] = 165802, + [SMALL_STATE(5696)] = 165812, + [SMALL_STATE(5697)] = 165820, + [SMALL_STATE(5698)] = 165828, + [SMALL_STATE(5699)] = 165836, + [SMALL_STATE(5700)] = 165844, + [SMALL_STATE(5701)] = 165852, + [SMALL_STATE(5702)] = 165860, + [SMALL_STATE(5703)] = 165868, + [SMALL_STATE(5704)] = 165876, + [SMALL_STATE(5705)] = 165884, + [SMALL_STATE(5706)] = 165892, + [SMALL_STATE(5707)] = 165900, + [SMALL_STATE(5708)] = 165908, + [SMALL_STATE(5709)] = 165916, + [SMALL_STATE(5710)] = 165924, + [SMALL_STATE(5711)] = 165932, + [SMALL_STATE(5712)] = 165940, + [SMALL_STATE(5713)] = 165948, + [SMALL_STATE(5714)] = 165956, + [SMALL_STATE(5715)] = 165964, + [SMALL_STATE(5716)] = 165972, + [SMALL_STATE(5717)] = 165980, + [SMALL_STATE(5718)] = 165988, + [SMALL_STATE(5719)] = 165996, + [SMALL_STATE(5720)] = 166004, + [SMALL_STATE(5721)] = 166012, + [SMALL_STATE(5722)] = 166020, + [SMALL_STATE(5723)] = 166028, + [SMALL_STATE(5724)] = 166036, + [SMALL_STATE(5725)] = 166046, + [SMALL_STATE(5726)] = 166054, + [SMALL_STATE(5727)] = 166062, + [SMALL_STATE(5728)] = 166070, + [SMALL_STATE(5729)] = 166078, + [SMALL_STATE(5730)] = 166086, + [SMALL_STATE(5731)] = 166094, + [SMALL_STATE(5732)] = 166102, + [SMALL_STATE(5733)] = 166110, + [SMALL_STATE(5734)] = 166118, + [SMALL_STATE(5735)] = 166126, + [SMALL_STATE(5736)] = 166134, + [SMALL_STATE(5737)] = 166142, + [SMALL_STATE(5738)] = 166150, + [SMALL_STATE(5739)] = 166158, + [SMALL_STATE(5740)] = 166166, + [SMALL_STATE(5741)] = 166174, + [SMALL_STATE(5742)] = 166182, + [SMALL_STATE(5743)] = 166190, + [SMALL_STATE(5744)] = 166198, + [SMALL_STATE(5745)] = 166206, + [SMALL_STATE(5746)] = 166214, + [SMALL_STATE(5747)] = 166222, + [SMALL_STATE(5748)] = 166230, + [SMALL_STATE(5749)] = 166238, + [SMALL_STATE(5750)] = 166246, + [SMALL_STATE(5751)] = 166254, + [SMALL_STATE(5752)] = 166262, + [SMALL_STATE(5753)] = 166270, + [SMALL_STATE(5754)] = 166278, + [SMALL_STATE(5755)] = 166286, + [SMALL_STATE(5756)] = 166294, + [SMALL_STATE(5757)] = 166302, + [SMALL_STATE(5758)] = 166310, + [SMALL_STATE(5759)] = 166318, + [SMALL_STATE(5760)] = 166326, + [SMALL_STATE(5761)] = 166334, + [SMALL_STATE(5762)] = 166342, + [SMALL_STATE(5763)] = 166350, + [SMALL_STATE(5764)] = 166358, + [SMALL_STATE(5765)] = 166366, + [SMALL_STATE(5766)] = 166374, + [SMALL_STATE(5767)] = 166382, + [SMALL_STATE(5768)] = 166390, + [SMALL_STATE(5769)] = 166398, + [SMALL_STATE(5770)] = 166406, + [SMALL_STATE(5771)] = 166414, + [SMALL_STATE(5772)] = 166422, + [SMALL_STATE(5773)] = 166430, + [SMALL_STATE(5774)] = 166438, + [SMALL_STATE(5775)] = 166446, + [SMALL_STATE(5776)] = 166454, + [SMALL_STATE(5777)] = 166462, + [SMALL_STATE(5778)] = 166470, + [SMALL_STATE(5779)] = 166478, + [SMALL_STATE(5780)] = 166486, + [SMALL_STATE(5781)] = 166494, + [SMALL_STATE(5782)] = 166502, + [SMALL_STATE(5783)] = 166510, + [SMALL_STATE(5784)] = 166518, + [SMALL_STATE(5785)] = 166526, + [SMALL_STATE(5786)] = 166534, + [SMALL_STATE(5787)] = 166542, + [SMALL_STATE(5788)] = 166550, + [SMALL_STATE(5789)] = 166558, + [SMALL_STATE(5790)] = 166566, + [SMALL_STATE(5791)] = 166574, + [SMALL_STATE(5792)] = 166582, + [SMALL_STATE(5793)] = 166590, + [SMALL_STATE(5794)] = 166598, + [SMALL_STATE(5795)] = 166606, + [SMALL_STATE(5796)] = 166614, + [SMALL_STATE(5797)] = 166622, + [SMALL_STATE(5798)] = 166630, + [SMALL_STATE(5799)] = 166638, + [SMALL_STATE(5800)] = 166646, + [SMALL_STATE(5801)] = 166654, + [SMALL_STATE(5802)] = 166662, + [SMALL_STATE(5803)] = 166670, + [SMALL_STATE(5804)] = 166678, + [SMALL_STATE(5805)] = 166686, + [SMALL_STATE(5806)] = 166694, + [SMALL_STATE(5807)] = 166702, + [SMALL_STATE(5808)] = 166710, + [SMALL_STATE(5809)] = 166718, + [SMALL_STATE(5810)] = 166726, + [SMALL_STATE(5811)] = 166734, + [SMALL_STATE(5812)] = 166742, + [SMALL_STATE(5813)] = 166750, + [SMALL_STATE(5814)] = 166758, + [SMALL_STATE(5815)] = 166766, + [SMALL_STATE(5816)] = 166774, + [SMALL_STATE(5817)] = 166782, + [SMALL_STATE(5818)] = 166790, + [SMALL_STATE(5819)] = 166798, + [SMALL_STATE(5820)] = 166806, + [SMALL_STATE(5821)] = 166814, + [SMALL_STATE(5822)] = 166822, + [SMALL_STATE(5823)] = 166830, + [SMALL_STATE(5824)] = 166838, + [SMALL_STATE(5825)] = 166846, + [SMALL_STATE(5826)] = 166854, + [SMALL_STATE(5827)] = 166862, + [SMALL_STATE(5828)] = 166870, + [SMALL_STATE(5829)] = 166878, + [SMALL_STATE(5830)] = 166886, + [SMALL_STATE(5831)] = 166894, + [SMALL_STATE(5832)] = 166902, + [SMALL_STATE(5833)] = 166910, + [SMALL_STATE(5834)] = 166918, + [SMALL_STATE(5835)] = 166926, + [SMALL_STATE(5836)] = 166934, + [SMALL_STATE(5837)] = 166942, + [SMALL_STATE(5838)] = 166950, + [SMALL_STATE(5839)] = 166958, + [SMALL_STATE(5840)] = 166966, + [SMALL_STATE(5841)] = 166974, + [SMALL_STATE(5842)] = 166982, + [SMALL_STATE(5843)] = 166990, + [SMALL_STATE(5844)] = 166998, + [SMALL_STATE(5845)] = 167006, + [SMALL_STATE(5846)] = 167014, + [SMALL_STATE(5847)] = 167022, + [SMALL_STATE(5848)] = 167030, + [SMALL_STATE(5849)] = 167038, + [SMALL_STATE(5850)] = 167046, + [SMALL_STATE(5851)] = 167054, + [SMALL_STATE(5852)] = 167062, + [SMALL_STATE(5853)] = 167070, + [SMALL_STATE(5854)] = 167078, + [SMALL_STATE(5855)] = 167086, + [SMALL_STATE(5856)] = 167094, + [SMALL_STATE(5857)] = 167102, + [SMALL_STATE(5858)] = 167110, + [SMALL_STATE(5859)] = 167118, + [SMALL_STATE(5860)] = 167126, + [SMALL_STATE(5861)] = 167134, + [SMALL_STATE(5862)] = 167142, + [SMALL_STATE(5863)] = 167150, + [SMALL_STATE(5864)] = 167158, + [SMALL_STATE(5865)] = 167166, + [SMALL_STATE(5866)] = 167174, + [SMALL_STATE(5867)] = 167182, + [SMALL_STATE(5868)] = 167190, + [SMALL_STATE(5869)] = 167198, + [SMALL_STATE(5870)] = 167206, + [SMALL_STATE(5871)] = 167214, + [SMALL_STATE(5872)] = 167222, + [SMALL_STATE(5873)] = 167230, + [SMALL_STATE(5874)] = 167238, + [SMALL_STATE(5875)] = 167246, + [SMALL_STATE(5876)] = 167254, + [SMALL_STATE(5877)] = 167262, + [SMALL_STATE(5878)] = 167270, + [SMALL_STATE(5879)] = 167278, + [SMALL_STATE(5880)] = 167286, + [SMALL_STATE(5881)] = 167294, + [SMALL_STATE(5882)] = 167302, + [SMALL_STATE(5883)] = 167310, + [SMALL_STATE(5884)] = 167318, + [SMALL_STATE(5885)] = 167326, + [SMALL_STATE(5886)] = 167334, + [SMALL_STATE(5887)] = 167342, + [SMALL_STATE(5888)] = 167350, + [SMALL_STATE(5889)] = 167358, + [SMALL_STATE(5890)] = 167366, + [SMALL_STATE(5891)] = 167374, + [SMALL_STATE(5892)] = 167382, + [SMALL_STATE(5893)] = 167390, + [SMALL_STATE(5894)] = 167398, + [SMALL_STATE(5895)] = 167406, + [SMALL_STATE(5896)] = 167414, + [SMALL_STATE(5897)] = 167424, + [SMALL_STATE(5898)] = 167432, + [SMALL_STATE(5899)] = 167440, + [SMALL_STATE(5900)] = 167448, + [SMALL_STATE(5901)] = 167456, + [SMALL_STATE(5902)] = 167464, + [SMALL_STATE(5903)] = 167472, + [SMALL_STATE(5904)] = 167480, + [SMALL_STATE(5905)] = 167488, + [SMALL_STATE(5906)] = 167496, + [SMALL_STATE(5907)] = 167504, + [SMALL_STATE(5908)] = 167512, + [SMALL_STATE(5909)] = 167520, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -277643,219 +278987,219 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(639), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(541), [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(560), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5668), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(483), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(540), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(568), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5577), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(486), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(402), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(696), [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5444), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5232), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4687), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5270), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5400), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2943), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5487), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5242), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5378), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4827), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5290), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5388), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4843), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4870), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5234), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(300), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(390), [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5655), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4404), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4411), - [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3861), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5634), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4290), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5602), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5490), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3327), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(729), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(435), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5724), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(982), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4529), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4433), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3850), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2314), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5847), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5849), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5583), [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 236), [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 236), [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 93), @@ -277864,4434 +279208,4467 @@ static const TSParseActionEntry ts_parse_actions[] = { [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 52), [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 52), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(52), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(36), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(195), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(241), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(981), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3852), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(194), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(228), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(982), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3880), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 32), [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 32), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(621), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 32), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(485), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(325), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 32), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(627), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(488), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 29), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 29), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 49), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 49), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 49), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 49), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 75), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 75), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 75), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 75), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 29), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 29), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 49), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 49), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 49), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 49), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1959] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3001), - [1963] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3260), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2817), - [2324] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(199), - [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(417), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [2333] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4996), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1947] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3259), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [1963] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2978), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2885), + [2324] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(203), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(678), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [2333] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5023), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(199), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4996), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(203), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5023), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 38), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 38), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 274), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 38), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 38), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 239), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 239), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 33), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 33), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 271), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 271), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 34), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 34), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 33), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 33), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 272), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 272), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 37), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 37), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 273), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 273), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 49), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 49), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 298), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 298), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 48), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 48), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 37), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 37), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 39), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 39), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 189), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 199), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 167), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 265), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 265), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 171), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 87), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 228), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 73), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 73), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 74), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 74), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 92), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 48), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 48), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 85), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 40), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 40), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 25), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 25), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 27), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 27), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 45), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 45), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 197), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 198), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 198), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 269), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 269), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 237), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 189), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 271), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 271), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 272), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 272), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 45), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 45), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 48), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 48), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 48), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 48), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 273), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 273), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 92), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 85), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 37), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 37), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 298), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 298), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 265), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 265), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 87), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 33), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 33), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 33), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 33), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 34), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 34), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 39), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 39), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 49), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 49), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 73), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 73), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 74), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 74), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 40), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 40), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 239), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 239), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 228), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 25), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 25), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 27), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 27), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 199), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 37), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 37), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 167), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 171), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 197), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 269), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 269), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 198), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 198), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 237), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 270), [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 270), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), - [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), - [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5593), - [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1098), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(488), - [3553] = {.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), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(5156), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5587), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1001), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(245), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), - [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(542), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT_REPEAT(4290), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 75), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 75), - [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 13), - [3638] = {.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), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 79), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 79), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 19), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 19), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT(3294), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3669] = {.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, 32), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(490), + [3547] = {.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), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5682), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1014), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5778), + [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1134), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(5417), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT_REPEAT(4209), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(252), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(543), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 75), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 75), + [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(405), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 19), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 19), + [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT(3333), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 79), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 79), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3661] = {.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), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [3675] = {.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, 32), [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), - [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(328), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(623), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(333), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(629), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1520), - [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2511), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3227), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2867), - [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1485), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(334), - [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2268), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(5625), - [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(4393), - [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(4396), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3062), - [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3903), - [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1725), - [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1929), - [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2401), - [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1728), - [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1933), - [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2451), - [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2774), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2824), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2064), - [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1797), - [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1706), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1726), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 13), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [4074] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 30), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 16), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 16), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 67), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 67), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 15), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 15), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 19), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 19), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 18), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 18), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 68), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 68), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 69), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 69), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 66), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 66), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 66), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 66), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 19), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 19), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 76), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 76), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 264), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 264), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 19), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 19), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 69), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 69), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 295), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 295), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), - [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 75), REDUCE(sym_nested_type_identifier, 3, 0, 133), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 63), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 63), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), - [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 21), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 21), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 20), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 20), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 28), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 28), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 54), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 54), - [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), - [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 71), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 71), - [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 15), - [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 15), - [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 80), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 80), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 30), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 30), - [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), - [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), - [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), - [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), - [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), - [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 30), - [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 31), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 30), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5360), - [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 30), REDUCE(sym_object_pattern, 3, 0, 31), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 26), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 70), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 72), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), - [4764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(153), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 72), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), - [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), - [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), - [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 31), - [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(160), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(160), - [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(160), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), - [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(161), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(161), - [4961] = {.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), - [4965] = {.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), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [4981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(161), - [4984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(161), - [4987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(160), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), - [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(518), - [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(154), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(154), - [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(154), - [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 26), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 70), - [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 70), REDUCE(sym_assignment_expression, 3, 0, 70), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 70), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(154), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5097] = {.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), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 41), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 41), - [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 41), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 15), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(162), - [5200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), - [5203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), - [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), - [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 70), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(158), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 50), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(158), - [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(158), - [5390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(158), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 44), - [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 44), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [5423] = {.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), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), - [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), - [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), - [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(157), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(155), - [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 30), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(157), - [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(157), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(157), - [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(155), - [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(155), - [5685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(155), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [5706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 30), REDUCE(sym_object_pattern, 3, 0, 31), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(151), - [5786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), - [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), - [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(152), - [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(651), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 30), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), - [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), - [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 49), REDUCE(sym_class, 4, 0, 148), - [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 49), REDUCE(sym_class, 4, 0, 148), - [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 149), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 149), - [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 150), - [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 150), - [5871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), - [5874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), - [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), - [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), - [5914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), - [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), - [5920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), - [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), - [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), - [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 268), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 268), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), - [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), - [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 217), - [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 217), - [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 296), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 296), - [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 297), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 297), - [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 316), - [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 316), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 317), - [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 317), - [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 332), - [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 332), - [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 267), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 267), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), - [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(2720), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2716), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 52), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 52), - [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT_REPEAT(3903), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), - [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(1056), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), - [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), - [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), - [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), - [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), - [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(5156), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5140), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 31), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), - [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), - [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), - [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), - [7137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280), - [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 279), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 299), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 300), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 320), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 325), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 334), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 287), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [7231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(542), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [7334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5845), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), - [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [7397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3832), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 57), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(946), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1053), - [7568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(964), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1059), - [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 283), - [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 286), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 302), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 303), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), - [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 36), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(953), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [7649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1096), - [7652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(973), - [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), - [7668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), - [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 305), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 318), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 319), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), - [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), - [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), - [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 337), - [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [7747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1002), - [7750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), - [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), - [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 259), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), - [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), - [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), - [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(962), - [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278), - [7802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1037), - [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(967), - [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1043), - [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), - [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(488), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 276), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 51), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), - [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 33), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), - [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(355), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), - [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(4398), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4494), - [8045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [8047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4495), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 65), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [8240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4958), - [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), - [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), - [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), - [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), - [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [8327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), - [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), - [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), - [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 51), - [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 333), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 335), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 339), - [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), - [8455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2429), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(2794), - [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), - [8465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2315), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), - [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 299), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), - [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), - [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 279), - [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(623), - [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), - [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), - [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 36), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 177), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 94), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 35), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 193), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), - [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 87), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), - [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [9235] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3264), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2829), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1482), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(334), + [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2355), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(5548), + [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(4454), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(4455), + [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3099), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3988), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1749), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1890), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2495), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1757), + [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1891), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2457), + [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2784), + [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2832), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1513), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1790), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1670), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2498), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2079), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1746), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 13), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4058] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 30), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), SHIFT(1120), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 16), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 16), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), SHIFT(1120), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [4118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), SHIFT(1120), + [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), SHIFT(1120), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), SHIFT(1120), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), SHIFT(1120), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 15), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 15), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 67), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 67), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 136), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 136), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 264), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 264), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 295), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 295), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 21), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 21), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 19), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 19), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 19), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 19), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 66), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 66), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 75), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 75), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 76), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 76), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 18), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 18), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 137), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 137), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 138), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 138), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 139), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 4, 0, 139), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 63), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 63), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 66), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 66), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 68), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 68), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 69), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 69), + [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 19), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 19), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 69), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 69), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 76), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 76), + [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 75), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 71), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 71), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 15), + [4543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 15), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 30), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 31), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 30), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 80), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 80), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 30), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 30), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 20), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 20), + [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 28), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 28), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), + [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), + [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 54), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 54), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 72), + [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), + [4752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(153), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 30), REDUCE(sym_object_pattern, 3, 0, 31), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5420), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 72), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), + [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 26), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 70), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(158), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 31), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(158), + [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(157), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(157), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(158), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [4993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), SHIFT(1038), + [4996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), SHIFT(1038), + [4999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), SHIFT(1038), + [5002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), SHIFT(1038), + [5005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), SHIFT(1038), + [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), SHIFT(1038), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(157), + [5016] = {.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), + [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(157), + [5023] = {.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), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [5047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(158), + [5050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(155), + [5053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(155), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(155), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 15), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5091] = {.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), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(155), + [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 26), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 70), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), + [5118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(520), + [5121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 70), REDUCE(sym_assignment_expression, 3, 0, 70), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 70), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [5181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 41), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 41), + [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 41), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(161), + [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(161), + [5263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(161), + [5266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(161), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), + [5329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), + [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), + [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 70), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(159), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 50), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(159), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(159), + [5466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(159), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), + [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 44), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 44), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5635] = {.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), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(154), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(156), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 30), REDUCE(sym_object_pattern, 3, 0, 31), + [5756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(154), + [5766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(154), + [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(154), + [5772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(156), + [5775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(156), + [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(156), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 30), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(162), + [5849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), + [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 150), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 150), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(152), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 30), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [5942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [5945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(654), + [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), + [5970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), + [5973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), + [5976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 49), REDUCE(sym_class, 4, 0, 148), + [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 49), REDUCE(sym_class, 4, 0, 148), + [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 149), + [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 149), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [5993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [5996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [5999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [6002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [6005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), + [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), + [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2735), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 217), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 217), + [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 267), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 267), + [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 268), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 268), + [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 296), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 296), + [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 297), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 297), + [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 316), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 316), + [6091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 317), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 317), + [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 332), + [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 332), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), + [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(2725), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 52), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 52), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT_REPEAT(3988), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(1047), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), + [6735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(5417), + [6738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5310), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 31), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [7139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), + [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), + [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), + [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 279), + [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280), + [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 287), + [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 299), + [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 300), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 320), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 325), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 334), + [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(543), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), + [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [7365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [7514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(946), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [7635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1017), + [7638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(952), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [7677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(970), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), + [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 337), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), + [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), + [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 283), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 286), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 302), + [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1045), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 303), + [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1096), + [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(966), + [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 305), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [7789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1101), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 318), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), + [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), + [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 259), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [7840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(950), + [7843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(405), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1091), + [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(962), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [7856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1010), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 57), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 36), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 319), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [7883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [7891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(4487), + [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), + [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(490), + [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4444), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [7997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [8022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 51), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [8056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 65), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 276), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 33), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4528), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [8104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), + [8113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(315), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), + [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [8152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [8273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 333), + [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 335), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [8287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2377), + [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [8314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [8349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), + [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [8361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(282), + [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 51), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 339), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [8407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), + [8437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4842), + [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), + [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 299), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [8497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), + [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [8523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 279), + [8563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(2806), + [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [8658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(629), + [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 35), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 193), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), + [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 36), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 87), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 177), + [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 94), + [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [9147] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [9545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), }; enum ts_external_scanner_symbol_identifiers {